Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IIS sc-win32-status codes [closed]

Tags:

iis

iis-7

[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?

like image 917
Mr Grok Avatar asked Nov 19 '10 09:11

Mr Grok


People also ask

What does SC win32 status mean?

sc-win32-status 64 means “The specified network name is no longer available.” After IIS has sent the final response to the client, typically it waits for an ACK message from the client.

What is SC status?

sc-status is a protocol status code from the appliance to a client. The usual results for sc-status are the following HTTP response codes: 200. 302. 403.

What is IIS in code?

When you try to access content on a server that is running (IIS) 7.0, 7.5 or later versions by using the HTTP protocol, IIS returns a numeric code that indicates the status of the response. The HTTP status code is recorded in the IIS log. Additionally, the HTTP status code may be displayed in the client browser.

How do I read an IIS error log?

There are a few ways to locate the IIS log files in Windows Server 2012. Open the Server Manager and click IIS in the side menu located on the left side of the screen. Right-click the server that is installed under IIS, and on the menu that is displayed, click Internet Information Services (IIS) Manager.


1 Answers

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

like image 79
swatkat Avatar answered Sep 21 '22 13:09

swatkat