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
You can use the && symbol between commands to execute the second command only if the first succeeds. More info here http://commandwindows.com/command1.htm