You could do it with Windows Scripting Host:
Put the command in to a batch file and then start it like this:
CreateObject("Wscript.Shel
Simon.
Main Topics
Browse All TopicsHello, I know that if you want to run a program in the background from a unix command line, you simply add & to the end of the command, but is there an equivalent in windows in order to run something in the background?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
At is an interesting idea and one I never thought of for this purpose - worth looking into. Not sure about the VBScript though.
You can also use START - while you will still get a window (another window) where the command is executed, this will allow an existing batch file, for example, to keep running. For example:
@echo off
C:
cd\temp
notepad something.txt
sleep 2
del something.txt
The above batch file would "hang" at the notepad line until the user closed notepad. If you said "START notepad something.txt" then notepad would open, then "sleep" (pause) for 2 seocnds (assuming you have that utility on your PC) and then delete the file. I use a script like this for creating an opening dos help files. For example:
----- man.cmd ------
@echo off
%1 /? > %temp%\%1.hlp
start notepad %1.hlp
sleep 2
del %temp%\%1.hlp
-----------------------
The above script executes whatever command I want with the /? switch. So If I need the instructions on how to use "for" then I type MAN FOR, I get a notepad window (easier than a DOS prompt) with the help info and within 2 seconds, my existing batch file closes and deletes the text file I had to create to put that help info into notepad. Follow? May not even be what you're looking for, but then, just FYI.
No comment has been added to this question in more than 21 days, so it is now classified as abandoned.
I will leave the following recommendation for this question in the Cleanup topic area:
Split between lazarus98 and Sembee and leew
Any objections should be posted here in the next 4 days. After that time, the question will be closed.
Miguel
EE Cleanup Volunteer
Business Accounts
Answer for Membership
by: lazarus98Posted on 2005-02-20 at 09:26:17ID: 13357932
Use the AT Command:
C:\at /?
The AT command schedules commands and programs to run on a computer at
a specified time and date. The Schedule service must be running to use
the AT command.
AT [\\computername] [ [id] [/DELETE] | /DELETE [/YES]]
AT [\\computername] time [/INTERACTIVE]
[ /EVERY:date[,...] | /NEXT:date[,...]] "command"
\\computername Specifies a remote computer. Commands are scheduled on the
local computer if this parameter is omitted.
id Is an identification number assigned to a scheduled
command.
/delete Cancels a scheduled command. If id is omitted, all the
scheduled commands on the computer are canceled.
/yes Used with cancel all jobs command when no further
confirmation is desired.
time Specifies the time when command is to run.
/interactive Allows the job to interact with the desktop of the user
who is logged on at the time the job runs.
/every:date[,...] Runs the command on each specified day(s) of the week or
month. If date is omitted, the current day of the month
is assumed.
/next:date[,...] Runs the specified command on the next occurrence of the
day (for example, next Thursday). If date is omitted, the
current day of the month is assumed.
"command" Is the Windows NT command, or batch program to be run.