Friday, November 9, 2012

how to run .cmd (or .bat) script without the black command window

You just need to wrap your .cmd script with a .vbs script. The content in .vbs is:

CreateObject("Wscript.Shell").Run "your_cmd_file.cmd", 0, True

Then you call your .vbs file instead ; )

0 comments:

Post a Comment