All Windows Application Error Codes (NTSTATUS)
Application errors (NTSTATUS codes) occur when a program encounters a fatal runtime error. These typically start with 0xC and indicate issues like access violations, missing DLLs, corrupted executables, or memory problems. They often appear when launching applications or during program execution.
24 application error codes indexed
Search Application Error Codes
Showing 24 of 24 errors
0xC0000005STATUS_ACCESS_VIOLATIONAppCritical0xC0000008STATUS_INVALID_HANDLEAppHigh0xC000000DSTATUS_INVALID_PARAMETERAppMedium0xC0000017STATUS_NO_MEMORYAppHigh0xC000001DSTATUS_ILLEGAL_INSTRUCTIONAppCritical0xC0000022STATUS_ACCESS_DENIEDAppMedium0xC0000034STATUS_OBJECT_NAME_NOT_FOUNDAppMedium0xC000003ASTATUS_OBJECT_PATH_NOT_FOUNDAppMedium0xC0000043STATUS_SHARING_VIOLATIONAppMedium0xC000005ESTATUS_NO_LOGON_SERVERSAppHigh0xC0000096STATUS_PRIVILEGED_INSTRUCTIONAppHigh0xC000009ASTATUS_INSUFFICIENT_RESOURCESAppHigh0xC00000BASTATUS_FILE_IS_A_DIRECTORYAppLow0xC00000FDSTATUS_STACK_OVERFLOWAppCritical0xC0000135STATUS_DLL_NOT_FOUNDAppHigh0xC0000139STATUS_ENTRYPOINT_NOT_FOUNDAppHigh0xC0000142STATUS_DLL_INIT_FAILEDAppHigh0xC0000185STATUS_IO_DEVICE_ERRORAppCritical0xC0000194STATUS_POSSIBLE_DEADLOCKAppHigh0xC000021ASTATUS_SYSTEM_PROCESS_TERMINATEDAppCritical0xC0000225STATUS_NOT_FOUNDAppCritical0xC0000374STATUS_HEAP_CORRUPTIONAppCritical0xC0000409STATUS_STACK_BUFFER_OVERRUNAppCritical0xC0000602STATUS_FAIL_FAST_EXCEPTIONAppCritical
Ad Space – header
Frequently Asked Questions
What is an NTSTATUS error code?
NTSTATUS codes are 32-bit status codes used by the Windows NT kernel and drivers. Codes starting with 0xC indicate errors (e.g., 0xC0000005 = Access Violation). They appear in application crash dialogs, Event Viewer, and Windows Error Reporting logs.
How do I fix 'Application Error 0xC0000005'?
This is an access violation error. Try: 1) Update the application to the latest version, 2) Run as Administrator, 3) Reinstall the Visual C++ Redistributable packages, 4) Check for corrupted files with 'sfc /scannow', 5) Disable Data Execution Prevention (DEP) for the specific app if safe to do so.
Why do I get 'Bad Image' (0xC000007B) errors?
This error occurs when Windows cannot load a DLL required by the application. Common causes: mixing 32-bit and 64-bit components, corrupted Visual C++ Redistributable, corrupted .NET Framework, or incomplete application installation. Reinstall the app and all Visual C++ Redistributable packages.
How do I check Windows Event Viewer for application errors?
Press Win+R, type 'eventvwr.msc', and press Enter. Navigate to Windows Logs > Application. Look for Error and Warning entries with the timestamp matching your crash. The event details will show the faulting application, module, and exception code.