Tuesday, November 12, 2013

When SCCM error code is on (-) negative value how to find the details

Some reports that are included together with System Center Configuration Manager 2007
display errors codes that do not contain an error description. However, you can obtain a 

description by deciphering the error code. To do this, follow these steps:

1.   In the System Center Configuration Manager 2007 Administrator Console, open
 the report that contains the error code that you want to decipher.

2.  Convert the error code from decimal to hexadecimal.
For example, if the error code is -2147012889,  you  must convert -2147012889 to a hexadecimal value.
In this case, the hexadecimal value is FFFFFFFF80072EE7.

3. Remove the "FFFFFFFF" in front of the converted error code. In this example, the error code
 becomes 80072EE7.

4.  Use the following information to locate the error description:

Converted error codes that begin with 80072 are typically WinHTTP error codes, such as
"host not found" errors.  Convert the trailing four hexadecimal bytes to a decimal value.
 For example, "2EE7" is "12007" decimal. To view the  WinHTTP error codes, visit the

following Microsoft Web site:

http://msdn2.microsoft.com/en-us/library/aa383770.aspx
For example, error code "12007" maps to the following error description:
ERROR_WINHTTP_NAME_NOT_RESOLVED 12007 The server name cannot be resolved
Converted error codes that begin with 8009 are typically CryptoAPI error codes, such as
"certificate expired"  errors or "CN= mismatch" errors. You can use the Trace32 program to
 view the error code directly when you  typetrace32 together with the error code.

For more information about CryptoAPI error codes and other Windows
System error codes, visit the following Microsoft Web site:

http://msdn2.microsoft.com/en-us/library/ms681381.aspx
Converted error codes that begin with 800402 or 800403 are typically System Center Configuration Manager 2007
 error codes. For more information about custom error codes for Configuration Manager 2007, visit the following
Microsoft Web site:

http://technet.microsoft.com/en-us/library/bb632794.aspx
All other error codes are typically Windows error codes or third-party error codes.
All Windows error codes can be  identified by using the Trace32 program and by specifying the error code,
such as "80072EE7."


Taken from link http://support.microsoft.com/kb/944375

No comments:

Post a Comment