I'm trying to execute multiple instances of EXE simultaneously. However, the script is waiting for previous instance to finish before advancing to the next one. How to make it run all without waiting?

link|improve this question

40% accept rate
What is your current script? – John T Aug 22 '10 at 16:53
feedback

1 Answer

up vote 2 down vote accepted

You can use the START command. For example:

@echo off
start notepad
start notepad
start notepad
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.