Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of Windows application's exit codes

Where can I get the list of Windows application's exit codes?

like image 994
Leonid F. Avatar asked Jul 13 '10 08:07

Leonid F.


2 Answers

An application can specify any exit code it wants. The convention is that zero indicates no error, but other than that there is no standard.

Did you perhaps mean Win32 error codes ? Those are in winerror.h, and documented here

like image 107
Bob Moore Avatar answered Sep 23 '22 16:09

Bob Moore


I know this question has already been answered, but the link to winerror.h no longer works. Here is a more up-to-date resource.

like image 25
Chris Paton Avatar answered Sep 23 '22 16:09

Chris Paton