Home » Questions » Computers [ Ask a new question ]

Fire batch (.bat) file execution and continue

Fire batch (.bat) file execution and continue

I want to write a .bat file that starts executing another few .bat files, without waiting for the 1st to complete before going to the next one. Spawning multiple cmd.exe commands is OK.

Asked by: Guest | Views: 219
Total answers/comments: 1
Guest [Entry]

"I found a way of accomplishing this by using start instead of call:

start script1.bat
start script2.bat

This works pretty much like double-clicking the script files, only from the command-line :-)"