Windows batch-file that continues after launching each program

Solution 1:

Another suggestion: If you are putting your program in quotes because there are spaces in the path to the exe, you need to do this:

start "" "C:\myPath\myApp.exe"

Found it here: Run Windows application from Command Prompt

Solution 2:

Use the Start command. Change your batch to this:

Start Program1.exe
Sleep 3
Start Program2.exe
Sleep 5
Start Program3.exe
Sleep 11