How can I start multiple programs using one line of command? This is what I have so far:

cmd /C "C:\Program Files\PeerBlock\peerblock.exe" && "C:\Program Files\uTorrent\uTorrent.exe"

I do not want uTorrent to start if PeerBlock is not started.

(I need this for Launchy's runner plugin.)

link|improve this question

68% accept rate
feedback

1 Answer

Make a batch file - call it Launchy.bat or something and add all your commands there.

link|improve this answer
1  
In this case, add start before the commands if they are not console commands, otherwise, the batchfile will wait for each process to exit before continuing. – surfasb Jan 17 at 23:45
+1 for avoiding the dark abyss of "correct quoting" on Windows – Alois Mahdal Jan 18 at 11:18
feedback

Your Answer

 
or
required, but never shown

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