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?
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.