Windows batch-file that continues after launching each program
Posted
by
Sandy
on Super User
See other posts from Super User
or by Sandy
Published on 2010-12-26T19:38:14Z
Indexed on
2010/12/26
20:55 UTC
Read the original article
Hit count: 247
I'm trying to create a very simple Windows-XP batch file:
Program1.exe
Sleep 3
Program2.exe
Sleep 5
Program3.exe
Sleep 11
Of course, I don't want to have to exit each program, before the next 1 starts. The default for batch-files seems to be "stop until the previous program exists".
How do I get this script to run as expected?
Edit: The 3 executables listed above are more like "notepad" type programs. They open and run and don't just "open,run,close".
© Super User or respective owner