I have three .exe files inside a folder and I want to run them serially one after another through a batch file. That means, 2nd .exe file will execute after the operation of 1st .exe file. I have written a file but when I run it, the are not executing serially. My batch file is:
Start "" ".\a.exe"
Start "" ".\b.exe"
Start "" ".\c.exe"
How will I execute these files one after another?
`start/w .\b.exe`
`start/w .\c.exe` – bim Aug 05 '19 at 14:47