How can I run a CMD or .bat file in silent mode? I'm looking to prevent the CMD interface from being shown to the user.
|
I have proposed in StackOverflow question a way to run a batch file in the background (no DOS windows displayed) That should answer your question. Here it is: From your first script, call your second script with the following line:
Actually, you are calling a vbs script with:
Then, invis.vbs will call your script with the Windows Script Host Run() method, which takes:
See the question for the full invis.vbs script:
Update after Tammen's feedback: If you are in a DOS session and you want to launch another script "in the background", a simple
|
|||||
|
|
Include the phrase
right at the top of your bat script. |
|||||||||
|
|
The solution was including the /b option after the start option, script file works flawlessly :-) kudos to VonC for assistance. |
|||
|
|
|
Use Advanced BAT to EXE Converter from http://www.battoexeconverter.com This will allow you to embed any additional binaries with your batch file in to one stand alone completely silent EXE and its freeware |
|||
|
|
|
If i want to run command promt in silent mode, then there is a simple vbs command:
if i wanted to open an url in cmd silently, then here is a code:
|
|||
|
|
|
Try SilentCMD. This is a small freeware program that executes a batch file without displaying the command prompt window. |
|||
|
|