Run command prompt in background silently (without opening a window)


If you like programming shell scripts for Windows, you might want to run your command prompt scripts in the background silently without actually opening the command prompt windows. This easily possible with a few lines of vbscript.

Running command prompt in background silently

Using VBScript To Run CMD Script Silently

Here’s a little snippet of one of my command prompt scripts:


rundll32.exe %SystemRoot%\system32\shell32.dll,Control_RunDLL %SystemRoot%\system32\desk.cpl desk,@Themes /Action:OpenTheme /file:"C:\Windows\Resources\Themes\landscapes.theme"

Let’s say you don’t want Windows 7 to open a command prompt window and run it silently, you can write a vbscript for that:

1. Open a notepad editor

2. Insert the following code:


Set WshShell = CreateObject("WScript.Shell")
cmds=WshShell.RUN("E:\scripts/themescript.bat", 0, True)
Set WshShell = Nothing

The 0 makes the shell script run silently.

3. Save your notepad file. When you save it add the extension .vbs and select All files from the dropdown as seen below:
Save VBScript

4. You can now schedule that cmd script and it will not open a command prompt window

This is very handy if you don’t want to be annoyed with dozens of command prompt windows when your scheduled tasks are running.

You might also want to know how to open the command prompt in Windows 8


Or you might like these sexy wallpaper, tweaks and themes:

Written by oliversk Wednesday, September 21st, 2011

Was it helpful? Please bookmark it and spread the word

delicious   facebook   google   twitter  

You love Windows, Gaming and everything digital? Great, we too! We have thousands of great Windows 7 themes, registry tweaks, tutorials, so please use our search box if you look for anything specific. If you have some awesome desktop themes, tips or want to write for us, then drop us a mail: win7themes at googlemail.com

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>