up vote 7 down vote favorite
share [g+] share [fb]

Say, if I have

  • foo.exe
  • bar.exe
  • baz.exe

How do I run all of them from a batch file asynchronously, i.e. without waiting for the previous program to stop?

link|improve this question

feedback

3 Answers

up vote 15 down vote accepted

Using START command to run each program should get you what you need.

Every START invocation runs the command given in its parameter and returns immediately, unless executed with a /WAIT switch.

That applies to command-line apps. Apps without command line return immediately anyway, so to be sure, if you want to run all asynchronously, use START.

link|improve this answer
Okay, thanks. I should have read each entry of help carefully. :) – RichN Sep 19 '09 at 18:44
1  
I actually had trouble with this the other day. I had to launch 30 explorer windows for a performance test. Didn't work and it wasn't important enough for me to look into it.. started browsing around instead in that window and several hours later when I closed it, another one poped up! And I was like what the hell, closed it.. another poped up! After 4-5 windows and a lot of what the **** I noticed the batchfile still running! – Jonas B Sep 19 '09 at 19:37
Shameless self-advertising: I once created a batch which is able to function as some kind of thread pool, just for processes: stackoverflow.com/questions/672719/… – Joey Sep 19 '09 at 20:50
feedback

Create a batch file with the following lines:

start foo.exe
start bar.exe
start baz.exe

The start command runs your command in a new window, so all 3 commands would run asynchronously.

link|improve this answer
feedback

You can use the start command to spawn background processes without launching new windows:

start /b foo.exe

The new process will not be interruptable with CTRL-C; you can kill it only with CTRL-BREAK (or by closing the window, or via Task Manager.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.