Powershell을 사용하여 PsExec을 시작합니다.
Start-Process -FilePath "psexec.exe" -ArgumentList "-u user -p pass -accepteula -i -h cmd /c `"powershell.exe -NonInteractive -File myscript.ps1`""
그러나 PsExec CMD는 powershell 스크립트가 myscript.ps1
완료될 때까지 표시됩니다.
그렇다면 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가 게시한 것입니다.