Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Quick Tip - Steps to Decode Windows Error Code

0.00/5 (No votes)
31 Mar 2016 1  
Steps to decode Windows Error code

Introduction

In Microsoft world, many times we come across these types of errors (Message box with some error code / Hex code). I have experienced this on Windows services / Visual studio / Task schedulers / office tools etc.

A quick tip to analyze these errors or at least understand the cause before we hit Google and look for solution.

Using These Steps

  1. Sample Error

  2. Open the calculator in Scientific mode. Select ‘Dec’ and enter the above highlighted code.

  3. Click on the ‘Hex’ to convert it to Hex value. Value you should get is – ‘80070775’.
    // 8007 - Represents Win 32 Status code.
    // 0775 - Represents the error code.
  4. Enter the Error code – 0775 in the calculator, make sure ‘Hex’ is selected.

  5. Click on ‘Dec’ to get the decimal value – 1909 in this case.

  6. Go to command prompt and type as seen below. net helpmsg 1909.

Points of Interest

  • Decoding the hex code

History

  • 31st March, 2016: Initial version

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here