执行外部命令时阻止Powershell

时间:2014-03-16 11:48:27

标签: powershell synchronization block

当你调用外部.exe命令时,如何在外部结束之前使PowerShell阻塞?

1 个答案:

答案 0 :(得分:5)

Start-Process-Wait参数一起使用。

Start-Process -FilePath ipconfig.exe -ArgumentList '/?' -Wait;