[파워쉘]VBS로 파워쉘 실행
# Script/Powershell2017. 3. 5. 18:22[파워쉘]VBS로 파워쉘 실행

ps="powershell.exe -nologo -command " & Chr(34) & "[xxxx.ps1]" & Chr(34) set shell=createobject("WScript.Shell") shell.Run ps,0,true 출처 : http://kernel64.tistory.com/567

image