For future reference, sometimes an EXE file will halt the execution of the rest of the BATch file. In otherwords, file1.exe will run and when it finishes, so does the batch file (and you never see file2 run). In such a case, you would add CALL before it:
call file1.exe
call file2.exe
Main Topics
Browse All Topics





by: leewPosted on 2006-06-15 at 11:11:51ID: 16913904
Just list them consecutively. Batch files do not proceed until the each line is done executing.
file1.exe
file2.exe