That's handled through the receive-job cmdlet. $job = Start-Job { dir } Receive-Job $job. You only get data if HasMoreData is true on your get-job output.
確定! 回上一頁