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?
|
|
Say, if I have
How do I run all of them from a batch file asynchronously, i.e. without waiting for the previous program to stop? |
|||
|
|
|
|
Using Every 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 |
||||||
|
|
|
Create a batch file with the following lines:
The start command runs your command in a new window, so all 3 commands would run asynchronously. |
||
|
|
|
|
You can use the start command to spawn background processes without launching new windows:
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.) |
||
|
|