I just start to learn how to build batch file. ( on the windows 7 environment)
I want to build the batch file which is able to run .exe files sequentially .
This will start each file and wait for it to complete and then launch the next one.
@echo off start "" /w /b "d:\MyDriver.exe" start "" /w /b "d:\YouDriver.exe" start "" /w /b "d:\Mysoftware.exe"