Command 창을 띄우지 않고 Cmd 명령어를 수행하는 방법입니다.
일반 구문
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "cmd /c mkdir C:\temp\SCCM"
Slient 구문
Set WshShell = WScript.CreateObject("WScript.Shell")
return = WshShell.Run ("cmd /c mkdir C:\temp\SCCM" ,0 ,true)
일반 구문으로 실행하는 경우 시간이 소요되는 명령어의 경우 Cmd 창이 뜨게 되며 Slient 구문의 경우 Cmd 창이 뜨지 않고 Background에서 수행되어집니다.
Command 창을 띄우지 않고 Cmd 명령어를 수행하는 방법입니다.
일반 구문
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "cmd /c mkdir C:\temp\SCCM"
Slient 구문
Set WshShell = WScript.CreateObject("WScript.Shell")
return = WshShell.Run ("cmd /c mkdir C:\temp\SCCM" ,0 ,true)
일반 구문으로 실행하는 경우 시간이 소요되는 명령어의 경우 Cmd 창이 뜨게 되며 Slient 구문의 경우 Cmd 창이 뜨지 않고 Background에서 수행되어집니다.