powershell脚本无法正常工作

时间:2017-08-16 15:35:19

标签: powershell

我编写了一个脚本来执行远程服务器列表上的exe,但脚本正在运行。但是我无法看到在远程机器上执行的exe。

任何人都可以帮我纠正下面的剧本。

ForEach ($Computer in Get-Content C:\server.txt)
{

        echo "$Computer"
        $command = "c:\windows\WUInstall.exe /install /reboot"
        Invoke-Command -ComputerName $Computer -ScriptBlock {$command}

}

0 个答案:

没有答案