How do I make a batch file terminate upon encountering an error?
Check the errorlevel in an if statement, and then exit /b (exit the batch file only, not the entire cmd.exe process) for values other than 0. same-executable-over-and-over.exe /with different “parameters” if %errorlevel% neq 0 exit /b %errorlevel% If you want the value of the errorlevel to propagate outside of your batch file if %errorlevel% neq … Read more