Answers for "batch"

1

batch

The ERRORLEVEL environment variable holds the latest return value:
IF %ERRORLEVEL% NEQ 0 (
  echo "Previous command execution failed."
  exit %ERRORLEVEL%
)
Posted by: Guest on April-06-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language