Suppose I want to run the following commands:
START foo.exe 1
START foo.exe 2
START foo.exe 3
and then when they complete I want to run
START foo.exe 4
START foo.exe 5
START foo.exe 6
How do I write a bat/cmd file to do it? I think the stumbling point for this is how do I tell when the previous batch of commands has finished so I can start a new batch of commands...