42

[Background] I have a code of 64 in my iis logs which I think are client disconnects whilst uploading large files. I also get some ComExceptions with the same status code which I have gathered are pretty much the same issue. Given the infrequency of these issues I've decided these are only to be expected and are not a problem but it did give rise to this question:

[Question] Is there a list of possible win32 status codes somewhere; particularly the ones that can end up in IIS logs?

Mr Grok
  • 3,876
  • 5
  • 31
  • 40
  • 2
    There is an explanation of 64 sc-win32-status code [here][1]. [1]: http://serverfault.com/questions/52872/iis-logs-show-sc-win32-status-64-but-only-through-some-networks – santos Sep 08 '14 at 11:22

1 Answers1

82

Here's the list of all Win32 error codes. You can use this page to lookup the error code mentioned in IIS logs:
http://msdn.microsoft.com/en-us/library/ms681381.aspx

You can also use command line utility net to find information about a Win32 error code. The syntax would be:
net helpmsg Win32_Status_Code

swatkat
  • 4,785
  • 1
  • 23
  • 17