var shell = WScript.CreateObject("WScript.Shell"); shell.run("コマンド内容",0,false); //run以外にもexec等がある。大きな違いは標準入出力が使えるか否か。 //余談だが、次のようにするとポップアップ表示できる。shell.Popup("message",0,"title",1); shell = null;