0
運行遠程計算機上調用,WMIMethod過程我運行此命令如何在前臺
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文件。我很樂意使用其他解決方案,我可以看到腳本正在運行。
是的,我知道PSEXEC的。正在尋找本地PowerShell解決方案。 –
我想是一個WMI解決方案。這篇文章說2000sp3微軟禁用遠程交互過程後。本文有一個使用任務調度程序的示例,如technet博客http://www.windowsitpro.com/article/vbscript/rem-using-wmi-to-create-remote-interactive-processes – AbdElRaheim