Reputation: 497
I have a problem with my batch file (.bat). It has the following lines :
start /d "\\Pcaldatp01\myroute" App1.exe
start /d "\\Pcaldatp01\myroute" App2.exe
start /d "\\Pcaldatp01\myroute" App3.exe
start /d "\\Pcaldatp01\myroute" App1.xlsm
But all of them execute at the same time, I want each application to execute in sequence after the previous one ends.
How to do it?
Upvotes: 1
Views: 185
Reputation: 41287
start "" /wait /d "\\Pcaldatp01\myroute" App1.exe
start "" /wait /d "\\Pcaldatp01\myroute" App2.exe
start "" /wait /d "\\Pcaldatp01\myroute" App3.exe
start "" /wait /d "\\Pcaldatp01\myroute" App1.xlsm
Upvotes: 1