I have some EXE programs,Want to run using batch file one after another.
Actually one set contains 2 EXE programs with some parameters.
Example.
@ec
To run the .exes sequentually you need to pass the /wait parameter to start
e.g.
@echo off
start /wait prog1.exe
start /wait prog2.exe
start /wait prog3.exe
start /wait prog4.exe
However that does not run start1 and 2 in parallel. For more complex use see answers to this question
you don't even need the "start /wait". it will automatically call the program and wait if you just put "progx.exe"