I have a batch file like this, the issue that I have is that if the first batch file fails, the second one never gets started, how can I get them to both keep going?
@echo off
MapNetworkDrive_J.cmd
MapNetworkDrive_Y.cmd
I have tried this:
@echo off
start MapNetworkDrive_J.cmd
start MapNetworkDrive_Y.cmd
however, this starts two new command windows which after they are done remain open in the users session.
Use the call command:
Try to replace
start
bycmd -c