How to get PowerShell to wait for Invoke-Item completion?

后端 未结 4 2169
萌比男神i
萌比男神i 2021-02-18 22:49

How do I get PowerShell to wait until the Invoke-Item call has finished? I\'m invoking a non-executable item, so I need to use Invoke-Item to open it.

4条回答
  •  不知归路
    2021-02-18 23:33

    One easy way

    $session = New-PSSession -ComputerName "xxxxx" -Name "mySession"
    $Job = Invoke-Command -Session $session -FilePath "xxxxx" -AsJob
    Wait-Job -Job $Job
    

提交回复
热议问题