I have a batch file,
bat1.bat
bat2.bat
but it stops at the end of bat1
any clues?
Something else to look for:
I had a similar issue where I was calling multiple batch files using the call
command but it did not pass back the control to the original .bat file.
I found out that I had an exit
command at the end of the batch file which closed the DOS window before going back to the original .bat
file and finishing the commands there.