如何在前台远程计算机上使用Invoke-WMIMethod运行进程

时间:2013-01-08 12:08:50

标签: windows wmi powershell-v2.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文件。我愿意使用其他可以看到脚本运行的解决方案。