I\'m trying to write a Windows cmd script to perform several tasks in series. However, it always stops after the first command in the script.
The command it stops af
If you are running in Windows you can use the following command.
Drive:
cd "Script location" schtasks /run /tn "TASK1" schtasks /run /tn "TASK2" schtasks /run /tn "TASK3" exit