System Error Code Lookup
Decode the cryptic 0x… number so you can actually fix the problem.
System Error Code Lookup
Look up common Windows and file-system error codes (0x80070057, etc.) — what they mean and how to fix them.
All codes
Type to filter by code, name, or keyword.
When to use this
Windows, installers, and apps love to fail with a hexadecimal code and nothing else: 0x80070057,0x80070005, 0x80070570. Those numbers are precise — each maps to a named error with a known cause. This tool turns the code into plain English and a concrete next step, so you stop searching blind.
Worked example
An installer dies with 0x80070020. You look it up: ERROR_SHARING_VIOLATION — “the file is being used by another process.” The fix is to close the program holding the file (often a sync client or viewer), not to reinstall Windows. Or0x8007007B means an illegal character in a path — you rename the folder and the backup job runs.
What’s covered
The table focuses on the file-system and permission errors that come up most in everyday troubleshooting: not-found, access denied, sharing violations, disk-full, I/O and CRC corruption, and a few COM/Update failures. It is a reference, not a diagnostic that scans your machine — enter the code you were given.
FAQ
How do I read the code? Hex codes start with 0x. Many tools also show the signed decimal (e.g., -2147024809); both forms are accepted here.
My exact code isn’t listed. It may be a less common or vendor-specific HRESULT. The name and cause pattern (the high bits) usually still point you in the right direction; search the code with the app’s name for specifics.
Does this tool access my system? No. It is a static reference that runs entirely in your browser.