我有一个PowerShell脚本(通过WinRM运行),该脚本连续向调用者输出一些信息。在某个时候,它会运行一个可执行文件(持续几分钟):
Write-Output "Starting..."
cmd /c """$exePath"""
Write-Output "Finished"
我想与exe并行执行另一项工作,该工作还会不断向脚本调用者输出一些信息:
While (exe not finished) {
Write-Output "Some info"
Start-Sleep -Seconds 1
}
呼叫者应该收到每一行
Starting
Some info
Some info
Some info
Finished
一旦执行,因为它必须在GUI上连续显示它们。
我该如何实现?我无法连续调用Receive-Job
,因为脚本忙于可执行文件。
答案 0 :(得分:1)
您可以执行以下操作:
$job = Start-Job -ScriptBlock {start-sleep 20 # Your scriptblock here}
while ($job.state -eq 'running'){
Write-Output "Job still running"
Start-Sleep 1
}