0

我正在运行这个命令

Invoke-WmiMethod -ComputerName $machine -Credential $cred -Impersonation 3 -Path Win32_process -Name create -ArgumentList "powershell.exe -ExecutionPolicy Unrestricted -File C:\Windows_Updates.ps1" -Verbose

唯一的问题是在远程机器上,它被创建为后台进程。当我打开任务管理器时,我可以看到 powershell.exe,但我无法确定发生了什么。我几乎到处都看过,但找不到解决方案。

基本上我需要远程执行powershell文件。我愿意使用其他可以看到脚本运行的解决方案。

4

1 回答 1

-1

我不认为这是可能的。改用 psexec

http://blogs.technet.com/b/heyscriptingguy/archive/2005/09/06/how-can-i-remotely-start-an-interactive-process.aspx

sysinternals psexec http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx

于 2013-01-08T12:10:54.177 回答