我正在使用 Powershell 启动 PsExec:
Start-Process -FilePath "psexec.exe" -ArgumentList "-u user -p pass -accepteula -i -h cmd /c `"powershell.exe -NonInteractive -File myscript.ps1`""
myscript.ps1
但是在 powershell 脚本完成之前,PsExec CMD 是可见的。
那么我该如何隐藏 PsExec CMD?
答案1
我问错问题了。
由于我开始PsExec
使用Start-Process
,因此我可以非常轻松地控制它,-windowstyle hidden
如链接中所述https://stackoverflow.com/questions/1802127/how-to-run-a-powershell-script-without-displaying-a-window由@Christoper Hostage 发布