diff options
Diffstat (limited to 'BUILD/RunSilent.vbs')
-rw-r--r-- | BUILD/RunSilent.vbs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/BUILD/RunSilent.vbs b/BUILD/RunSilent.vbs new file mode 100644 index 00000000..a6fe4f6b --- /dev/null +++ b/BUILD/RunSilent.vbs @@ -0,0 +1,17 @@ +set argIn = WScript.Arguments +num = argIn.Count + +if num = 0 then + WScript.Echo "Call a Windows batch file (*.cmd, *.bat) without showing the console window" & VbCrLf & VbCrLf &_ + "Command line:" & VbCrLf & "WScript RunSilent.vbs MyBatchfile.cmd <command line arguments>" + WScript.Quit 1 +end if + +argOut = "" +for i = 0 to num - 1 + argOut = argOut & """" & argIn.Item(i) & """ " +next + +set WshShell = WScript.CreateObject("WScript.Shell") + +WshShell.Run argOut, 0, True
\ No newline at end of file |