Can a Windows batch file call another program without waiting for that program to finish?
Solution 1:
You can use the start
command.
Like so:
start someprogram.exe
It will start the program then give control back to the main batch file, running the second program in the background.