30

print exit code in cmd in windows os ....some command return exit code ...where this code store...and i want to print this exit code and assign it to variable

Osama Ahmad
  • 805
  • 4
  • 12
  • 18

1 Answers1

62

You can use %ERRORLEVEL% environment variable, it will hold the last code that was returned. You can echo it or assign it to a variable, depending on your needs.

Adrian Fâciu
  • 12,414
  • 3
  • 53
  • 68