2.3.1 NTSTATUS Values
By combining the NTSTATUS into a single 32-bit numbering space, the following NTSTATUS values are defined. Most values also have a defined default message that can be used to map the value to a human-readable text message. When this is done, the NTSTATUS value is also known as a message identifier.
This document provides the common usage details of the NTSTATUS values; individual protocol specifications provide expanded or modified definitions when needed.
In the following descriptions, a percentage sign that is followed by one or more alphanumeric characters (for example, "%1" or "%hs") indicates a variable that is replaced by text at the time the value is returned.
I would have to say that I come upon the exception code 0xc0000005 (memory access violation - a/k/a "access denied") the most out of any other exception code.
Regards. . .
jcgriff2
[MS-ERREF]: NTSTATUS Values
Location within Windows - on system:
[MS-ERREF]: NTSTATUS Values
* END1 *
END PART 1 - NTSTATUSEXCEPTIONCODES - EXCEPTIONCODESNTSTATUS
- 02/14/2019
By combining the NTSTATUS into a single 32-bit numbering space, the following NTSTATUS values are defined. Most values also have a defined default message that can be used to map the value to a human-readable text message. When this is done, the NTSTATUS value is also known as a message identifier.
This document provides the common usage details of the NTSTATUS values; individual protocol specifications provide expanded or modified definitions when needed.
In the following descriptions, a percentage sign that is followed by one or more alphanumeric characters (for example, "%1" or "%hs") indicates a variable that is replaced by text at the time the value is returned.
I would have to say that I come upon the exception code 0xc0000005 (memory access violation - a/k/a "access denied") the most out of any other exception code.
Regards. . .
jcgriff2
[MS-ERREF]: NTSTATUS Values
Location within Windows - on system:
Code:
C:\Program Files (x86)\Windows Kits\10\Include\10.0.10075.0\shared\ntstatus.h
Return value/code | Description |
0x00000000 STATUS_SUCCESS | The operation completed successfully. |
0x00000000 STATUS_WAIT_0 | The caller specified WaitAny for WaitType and one of the dispatcher objects in the Object array has been set to the signaled state. |
0x00000001 STATUS_WAIT_1 | The caller specified WaitAny for WaitType and one of the dispatcher objects in the Object array has been set to the signaled state. |
0x00000002 STATUS_WAIT_2 | The caller specified WaitAny for WaitType and one of the dispatcher objects in the Object array has been set to the signaled state. |
0x00000003 STATUS_WAIT_3 | The caller specified WaitAny for WaitType and one of the dispatcher objects in the Object array has been set to the signaled state. |
0x0000003F STATUS_WAIT_63 | The caller specified WaitAny for WaitType and one of the dispatcher objects in the Object array has been set to the signaled state. |
0x00000080 STATUS_ABANDONED | The caller attempted to wait for a mutex that has been abandoned. |
0x00000080 STATUS_ABANDONED_WAIT_0 | The caller attempted to wait for a mutex that has been abandoned. |
0x000000BF STATUS_ABANDONED_WAIT_63 | The caller attempted to wait for a mutex that has been abandoned. |
0x000000C0 STATUS_USER_APC | A user-mode APC was delivered before the given Interval expired. |
0x00000101 STATUS_ALERTED | The delay completed because the thread was alerted. |
0x00000102 STATUS_TIMEOUT | The given Timeout interval expired. |
0x00000103 STATUS_PENDING | The operation that was requested is pending completion. |
0x00000104 STATUS_REPARSE | A reparse should be performed by the Object Manager because the name of the file resulted in a symbolic link. |
0x00000105 STATUS_MORE_ENTRIES | Returned by enumeration APIs to indicate more information is available to successive calls. |
0x00000106 STATUS_NOT_ALL_ASSIGNED | Indicates not all privileges or groups that are referenced are assigned to the caller. This allows, for example, all privileges to be disabled without having to know exactly which privileges are assigned. |
0x00000107 STATUS_SOME_NOT_MAPPED | Some of the information to be translated has not been translated. |
0x00000108 STATUS_OPLOCK_BREAK_IN_PROGRESS | An open/create operation completed while an opportunistic lock (oplock) break is underway. |
0x00000109 STATUS_VOLUME_MOUNTED | A new volume has been mounted by a file system. |
0x0000010A STATUS_RXACT_COMMITTED | This success level status indicates that the transaction state already exists for the registry subtree but that a transaction commit was previously aborted. The commit has now been completed. |
0x0000010B STATUS_NOTIFY_CLEANUP | Indicates that a notify change request has been completed due to closing the handle that made the notify change request. |
0x0000010C STATUS_NOTIFY_ENUM_DIR | Indicates that a notify change request is being completed and that the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes. |
0x0000010D STATUS_NO_QUOTAS_FOR_ACCOUNT | {No Quotas} No system quota limits are specifically set for this account. |
0x0000010E STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED | {Connect Failure on Primary Transport} An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed. The computer WAS able to connect on a secondary transport. |
0x00000110 STATUS_PAGE_FAULT_TRANSITION | The page fault was a transition fault. |
0x00000111 STATUS_PAGE_FAULT_DEMAND_ZERO | The page fault was a demand zero fault. |
0x00000112 STATUS_PAGE_FAULT_COPY_ON_WRITE | The page fault was a demand zero fault. |
0x00000113 STATUS_PAGE_FAULT_GUARD_PAGE | The page fault was a demand zero fault. |
0x00000114 STATUS_PAGE_FAULT_PAGING_FILE | The page fault was satisfied by reading from a secondary storage device. |
0x00000115 STATUS_CACHE_PAGE_LOCKED | The cached page was locked during operation. |
0x00000116 STATUS_CRASH_DUMP | The crash dump exists in a paging file. |
0x00000117 STATUS_BUFFER_ALL_ZEROS | The specified buffer contains all zeros. |
0x00000118 STATUS_REPARSE_OBJECT | A reparse should be performed by the Object Manager because the name of the file resulted in a symbolic link. |
0x00000119 STATUS_RESOURCE_REQUIREMENTS_CHANGED | The device has succeeded a query-stop and its resource requirements have changed. |
0x00000120 STATUS_TRANSLATION_COMPLETE | The translator has translated these resources into the global space and no additional translations should be performed. |
0x00000121 STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY | The directory service evaluated group memberships locally, because it was unable to contact a global catalog server. |
0x00000122 STATUS_NOTHING_TO_TERMINATE | A process being terminated has no threads to terminate. |
0x00000123 STATUS_PROCESS_NOT_IN_JOB | The specified process is not part of a job. |
0x00000124 STATUS_PROCESS_IN_JOB | The specified process is part of a job. |
0x00000125 STATUS_VOLSNAP_HIBERNATE_READY | {Volume Shadow Copy Service} The system is now ready for hibernation. |
0x00000126 STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY | A file system or file system filter driver has successfully completed an FsFilter operation. |
0x00000127 STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED | The specified interrupt vector was already connected. |
0x00000128 STATUS_INTERRUPT_STILL_CONNECTED | The specified interrupt vector is still connected. |
0x00000129 STATUS_PROCESS_CLONED | The current process is a cloned process. |
0x0000012A STATUS_FILE_LOCKED_WITH_ONLY_READERS | The file was locked and all users of the file can only read. |
0x0000012B STATUS_FILE_LOCKED_WITH_WRITERS | The file was locked and at least one user of the file can write. |
0x00000202 STATUS_RESOURCEMANAGER_READ_ONLY | The specified ResourceManager made no changes or updates to the resource under this transaction. |
0x00000367 STATUS_WAIT_FOR_OPLOCK | An operation is blocked and waiting for an oplock. |
0x00010001 DBG_EXCEPTION_HANDLED | Debugger handled the exception. |
0x00010002 DBG_CONTINUE | The debugger continued. |
0x001C0001 STATUS_FLT_IO_COMPLETE | The IO was completed by a filter. |
0xC0000467 STATUS_FILE_NOT_AVAILABLE | The file is temporarily unavailable. |
0xC0000480 STATUS_SHARE_UNAVAILABLE | The share is temporarily unavailable. |
0xC0000721 STATUS_CALLBACK_RETURNED_THREAD_AFFINITY | A threadpool worker thread entered a callback at thread affinity %p and exited at affinity %p. This is unexpected, indicating that the callback missed restoring the priority. |
0x40000000 STATUS_OBJECT_NAME_EXISTS | {Object Exists} An attempt was made to create an object but the object name already exists. |
0x40000001 STATUS_THREAD_WAS_SUSPENDED | {Thread Suspended} A thread termination occurred while the thread was suspended. The thread resumed, and termination proceeded. |
0x40000002 STATUS_WORKING_SET_LIMIT_RANGE | {Working Set Range Error} An attempt was made to set the working set minimum or maximum to values that are outside the allowable range. |
0x40000003 STATUS_IMAGE_NOT_AT_BASE | {Image Relocated} An image file could not be mapped at the address that is specified in the image file. Local fixes must be performed on this image. |
0x40000004 STATUS_RXACT_STATE_CREATED | This informational level status indicates that a specified registry subtree transaction state did not yet exist and had to be created. |
0x40000005 STATUS_SEGMENT_NOTIFICATION | {Segment Load} A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. An exception is raised so that a debugger can load, unload, or track symbols and breakpoints within these 16-bit segments. |
0x40000006 STATUS_LOCAL_USER_SESSION_KEY | {Local Session Key} A user session key was requested for a local remote procedure call (RPC) connection. The session key that is returned is a constant value and not unique to this connection. |
0x40000007 STATUS_BAD_CURRENT_DIRECTORY | {Invalid Current Directory} The process cannot switch to the startup current directory %hs. Select OK to set the current directory to %hs, or select CANCEL to exit. |
0x40000008 STATUS_SERIAL_MORE_WRITES | {Serial IOCTL Complete} A serial I/O operation was completed by another write to a serial port. (The IOCTL_SERIAL_XOFF_COUNTER reached zero.) |
0x40000009 STATUS_REGISTRY_RECOVERED | {Registry Recovery} One of the files that contains the system registry data had to be recovered by using a log or alternate copy. The recovery was successful. |
0x4000000A STATUS_FT_READ_RECOVERY_FROM_BACKUP | {Redundant Read} To satisfy a read request, the Windows NT operating system fault-tolerant file system successfully read the requested data from a redundant copy. This was done because the file system encountered a failure on a member of the fault-tolerant volume but was unable to reassign the failing area of the device. |
0x4000000B STATUS_FT_WRITE_RECOVERY | {Redundant Write} To satisfy a write request, the Windows NT fault-tolerant file system successfully wrote a redundant copy of the information. This was done because the file system encountered a failure on a member of the fault-tolerant volume but was unable to reassign the failing area of the device. |
0x4000000C STATUS_SERIAL_COUNTER_TIMEOUT | {Serial IOCTL Timeout} A serial I/O operation completed because the time-out period expired. (The IOCTL_SERIAL_XOFF_COUNTER had not reached zero.) |
0x4000000D STATUS_NULL_LM_PASSWORD | {Password Too Complex} The Windows password is too complex to be converted to a LAN Manager password. The LAN Manager password that returned is a NULL string. |
0x4000000E STATUS_IMAGE_MACHINE_TYPE_MISMATCH | {Machine Type Mismatch} The image file %hs is valid but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load. |
0x4000000F STATUS_RECEIVE_PARTIAL | {Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later. |
0x40000010 STATUS_RECEIVE_EXPEDITED | {Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system. |
0x40000011 STATUS_RECEIVE_PARTIAL_EXPEDITED | {Partial Expedited Data Received} The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later. |
0x40000012 STATUS_EVENT_DONE | {TDI Event Done} The TDI indication has completed successfully. |
0x40000013 STATUS_EVENT_PENDING | {TDI Event Pending} The TDI indication has entered the pending state. |
0x40000014 STATUS_CHECKING_FILE_SYSTEM | Checking file system on %wZ. |
0x40000015 STATUS_FATAL_APP_EXIT | {Fatal Application Exit} %hs |
0x40000016 STATUS_PREDEFINED_HANDLE | The specified registry key is referenced by a predefined handle. |
0x40000017 STATUS_WAS_UNLOCKED | {Page Unlocked} The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process. |
0x40000018 STATUS_SERVICE_NOTIFICATION | %hs |
0x40000019 STATUS_WAS_LOCKED | {Page Locked} One of the pages to lock was already locked. |
0x4000001A STATUS_LOG_HARD_ERROR | Application popup: %1 : %2 |
0x4000001B STATUS_ALREADY_WIN32 | A Win32 process already exists. |
0x4000001C STATUS_WX86_UNSIMULATE | An exception status code that is used by the Win32 x86 emulation subsystem. |
0x4000001D STATUS_WX86_CONTINUE | An exception status code that is used by the Win32 x86 emulation subsystem. |
0x4000001E STATUS_WX86_SINGLE_STEP | An exception status code that is used by the Win32 x86 emulation subsystem. |
0x4000001F STATUS_WX86_BREAKPOINT | An exception status code that is used by the Win32 x86 emulation subsystem. |
0x40000020 STATUS_WX86_EXCEPTION_CONTINUE | An exception status code that is used by the Win32 x86 emulation subsystem. |
0x40000021 STATUS_WX86_EXCEPTION_LASTCHANCE | An exception status code that is used by the Win32 x86 emulation subsystem. |
0x40000022 STATUS_WX86_EXCEPTION_CHAIN | An exception status code that is used by the Win32 x86 emulation subsystem. |
0x40000023 STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE | {Machine Type Mismatch} The image file %hs is valid but is for a machine type other than the current machine. |
0x40000024 STATUS_NO_YIELD_PERFORMED | A yield execution was performed and no thread was available to run. |
0x40000025 STATUS_TIMER_RESUME_IGNORED | The resume flag to a timer API was ignored. |
0x40000026 STATUS_ARBITRATION_UNHANDLED | The arbiter has deferred arbitration of these resources to its parent. |
0x40000027 STATUS_CARDBUS_NOT_SUPPORTED | The device has detected a CardBus card in its slot. |
0x40000028 STATUS_WX86_CREATEWX86TIB | An exception status code that is used by the Win32 x86 emulation subsystem. |
0x40000029 STATUS_MP_PROCESSOR_MISMATCH | The CPUs in this multiprocessor system are not all the same revision level. To use all processors, the operating system restricts itself to the features of the least capable processor in the system. If problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported. |
0x4000002A STATUS_HIBERNATED | The system was put into hibernation. |
0x4000002B STATUS_RESUME_HIBERNATION | The system was resumed from hibernation. |
0x4000002C STATUS_FIRMWARE_UPDATED | Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3]. |
0x4000002D STATUS_DRIVERS_LEAKING_LOCKED_PAGES | A device driver is leaking locked I/O pages and is causing system degradation. The system has automatically enabled the tracking code to try and catch the culprit. |
0x4000002E STATUS_MESSAGE_RETRIEVED | The ALPC message being canceled has already been retrieved from the queue on the other side. |
0x4000002F STATUS_SYSTEM_POWERSTATE_TRANSITION | The system power state is transitioning from %2 to %3. |
0x40000030 STATUS_ALPC_CHECK_COMPLETION_LIST | The receive operation was successful. Check the ALPC completion list for the received message. |
0x40000031 STATUS_SYSTEM_POWERSTATE_COMPLEX_TRANSITION | The system power state is transitioning from %2 to %3 but could enter %4. |
0x40000032 STATUS_ACCESS_AUDIT_BY_POLICY | Access to %1 is monitored by policy rule %2. |
0x40000033 STATUS_ABANDON_HIBERFILE | A valid hibernation file has been invalidated and should be abandoned. |
0x40000034 STATUS_BIZRULES_NOT_ENABLED | Business rule scripts are disabled for the calling application. |
0x40000294 STATUS_WAKE_SYSTEM | The system has awoken. |
0x40000370 STATUS_DS_SHUTTING_DOWN | The directory service is shutting down. |
0x40010001 DBG_REPLY_LATER | Debugger will reply later. |
0x40010002 DBG_UNABLE_TO_PROVIDE_HANDLE | Debugger cannot provide a handle. |
0x40010003 DBG_TERMINATE_THREAD | Debugger terminated the thread. |
0x40010004 DBG_TERMINATE_PROCESS | Debugger terminated the process. |
0x40010005 DBG_CONTROL_C | Debugger obtained control of C. |
0x40010006 DBG_PRINTEXCEPTION_C | Debugger printed an exception on control C. |
0x40010007 DBG_RIPEXCEPTION | Debugger received a RIP exception. |
0x40010008 DBG_CONTROL_BREAK | Debugger received a control break. |
0x40010009 DBG_COMMAND_EXCEPTION | Debugger command communication exception. |
0x40020056 RPC_NT_UUID_LOCAL_ONLY | A UUID that is valid only on this computer has been allocated. |
0x400200AF RPC_NT_SEND_INCOMPLETE | Some data remains to be sent in the request buffer. |
0x400A0004 STATUS_CTX_CDM_CONNECT | The Client Drive Mapping Service has connected on Terminal Connection. |
0x400A0005 STATUS_CTX_CDM_DISCONNECT | The Client Drive Mapping Service has disconnected on Terminal Connection. |
0x4015000D STATUS_SXS_RELEASE_ACTIVATION_CONTEXT | A kernel mode component is releasing a reference on an activation context. |
0x40190034 STATUS_RECOVERY_NOT_NEEDED | The transactional resource manager is already consistent. Recovery is not needed. |
0x40190035 STATUS_RM_ALREADY_STARTED | The transactional resource manager has already been started. |
0x401A000C STATUS_LOG_NO_RESTART | The log service encountered a log stream with no restart area. |
0x401B00EC STATUS_VIDEO_DRIVER_DEBUG_REPORT_REQUEST | {Display Driver Recovered From Failure} The %hs display driver has detected a failure and recovered from it. Some graphical operations might have failed. The next time you restart the machine, a dialog box appears, giving you an opportunity to upload data about this failure to Microsoft. |
0x401E000A STATUS_GRAPHICS_PARTIAL_DATA_POPULATED | The specified buffer is not big enough to contain the entire requested dataset. Partial data is populated up to the size of the buffer. The caller needs to provide a buffer of the size as specified in the partially populated buffer's content (interface specific). |
0x401E0117 STATUS_GRAPHICS_DRIVER_MISMATCH | The kernel driver detected a version mismatch between it and the user mode driver. |
0x401E0307 STATUS_GRAPHICS_MODE_NOT_PINNED | No mode is pinned on the specified VidPN source/target. |
0x401E031E STATUS_GRAPHICS_NO_PREFERRED_MODE | The specified mode set does not specify a preference for one of its modes. |
0x401E034B STATUS_GRAPHICS_DATASET_IS_EMPTY | The specified dataset (for example, mode set, frequency range set, descriptor set, or topology) is empty. |
0x401E034C STATUS_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET | The specified dataset (for example, mode set, frequency range set, descriptor set, or topology) does not contain any more elements. |
0x401E0351 STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED | The specified content transformation is not pinned on the specified VidPN present path. |
0x401E042F STATUS_GRAPHICS_UNKNOWN_CHILD_STATUS | The child device presence was not reliably detected. |
0x401E0437 STATUS_GRAPHICS_LEADLINK_START_DEFERRED | Starting the lead adapter in a linked configuration has been temporarily deferred. |
0x401E0439 STATUS_GRAPHICS_POLLING_TOO_FREQUENTLY | The display adapter is being polled for children too frequently at the same polling level. |
0x401E043A STATUS_GRAPHICS_START_DEFERRED | Starting the adapter has been temporarily deferred. |
0x40230001 STATUS_NDIS_INDICATION_REQUIRED | The request will be completed later by an NDIS status indication. |
0x80000001 STATUS_GUARD_PAGE_VIOLATION | {EXCEPTION} Guard Page Exception A page of memory that marks the end of a data structure, such as a stack or an array, has been accessed. |
0x80000002 STATUS_DATATYPE_MISALIGNMENT | {EXCEPTION} Alignment Fault A data type misalignment was detected in a load or store instruction. |
0x80000003 STATUS_BREAKPOINT | {EXCEPTION} Breakpoint A breakpoint has been reached. |
0x80000004 STATUS_SINGLE_STEP | {EXCEPTION} Single Step A single step or trace operation has just been completed. |
0x80000005 STATUS_BUFFER_OVERFLOW | {Buffer Overflow} The data was too large to fit into the specified buffer. |
0x80000006 STATUS_NO_MORE_FILES | {No More Files} No more files were found which match the file specification. |
0x80000007 STATUS_WAKE_SYSTEM_DEBUGGER | {Kernel Debugger Awakened} The system debugger was awakened by an interrupt. |
0x8000000A STATUS_HANDLES_CLOSED | {Handles Closed} Handles to objects have been automatically closed because of the requested operation. |
0x8000000B STATUS_NO_INHERITANCE | {Non-Inheritable ACL} An access control list (ACL) contains no components that can be inherited. |
0x8000000C STATUS_GUID_SUBSTITUTION_MADE | {GUID Substitution} During the translation of a globally unique identifier (GUID) to a Windows security ID (SID), no administratively defined GUID prefix was found. A substitute prefix was used, which will not compromise system security. However, this might provide a more restrictive access than intended. |
0x8000000D STATUS_PARTIAL_COPY | Because of protection conflicts, not all the requested bytes could be copied. |
0x8000000E STATUS_DEVICE_PAPER_EMPTY | {Out of Paper} The printer is out of paper. |
0x8000000F STATUS_DEVICE_POWERED_OFF | {Device Power Is Off} The printer power has been turned off. |
0x80000010 STATUS_DEVICE_OFF_LINE | {Device Offline} The printer has been taken offline. |
0x80000011 STATUS_DEVICE_BUSY | {Device Busy} The device is currently busy. |
0x80000012 STATUS_NO_MORE_EAS | {No More EAs} No more extended attributes (EAs) were found for the file. |
0x80000013 STATUS_INVALID_EA_NAME | {Illegal EA} The specified extended attribute (EA) name contains at least one illegal character. |
0x80000014 STATUS_EA_LIST_INCONSISTENT | {Inconsistent EA List} The extended attribute (EA) list is inconsistent. |
0x80000015 STATUS_INVALID_EA_FLAG | {Invalid EA Flag} An invalid extended attribute (EA) flag was set. |
0x80000016 STATUS_VERIFY_REQUIRED | {Verifying Disk} The media has changed and a verify operation is in progress; therefore, no reads or writes can be performed to the device, except those that are used in the verify operation. |
0x80000017 STATUS_EXTRANEOUS_INFORMATION | {Too Much Information} The specified access control list (ACL) contained more information than was expected. |
0x80000018 STATUS_RXACT_COMMIT_NECESSARY | This warning level status indicates that the transaction state already exists for the registry subtree, but that a transaction commit was previously aborted. The commit has NOT been completed but has not been rolled back either; therefore, it can still be committed, if needed. |
0x8000001A STATUS_NO_MORE_ENTRIES | {No More Entries} No more entries are available from an enumeration operation. |
0x8000001B STATUS_FILEMARK_DETECTED | {Filemark Found} A filemark was detected. |
0x8000001C STATUS_MEDIA_CHANGED | {Media Changed} The media has changed. |
0x8000001D STATUS_BUS_RESET | {I/O Bus Reset} An I/O bus reset was detected. |
0x8000001E STATUS_END_OF_MEDIA | {End of Media} The end of the media was encountered. |
0x8000001F STATUS_BEGINNING_OF_MEDIA | The beginning of a tape or partition has been detected. |
0x80000020 STATUS_MEDIA_CHECK | {Media Changed} The media might have changed. |
0x80000021 STATUS_SETMARK_DETECTED | A tape access reached a set mark. |
0x80000022 STATUS_NO_DATA_DETECTED | During a tape access, the end of the data written is reached. |
0x80000023 STATUS_REDIRECTOR_HAS_OPEN_HANDLES | The redirector is in use and cannot be unloaded. |
0x80000024 STATUS_SERVER_HAS_OPEN_HANDLES | The server is in use and cannot be unloaded. |
0x80000025 STATUS_ALREADY_DISCONNECTED | The specified connection has already been disconnected. |
0x80000026 STATUS_LONGJUMP | A long jump has been executed. |
0x80000027 STATUS_CLEANER_CARTRIDGE_INSTALLED | A cleaner cartridge is present in the tape library. |
0x80000028 STATUS_PLUGPLAY_QUERY_VETOED | The Plug and Play query operation was not successful. |
0x80000029 STATUS_UNWIND_CONSOLIDATE | A frame consolidation has been executed. |
0x8000002A STATUS_REGISTRY_HIVE_RECOVERED | {Registry Hive Recovered} The registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost. |
0x8000002B STATUS_DLL_MIGHT_BE_INSECURE | The application is attempting to run executable code from the module %hs. This might be insecure. An alternative, %hs, is available. Should the application use the secure module %hs? |
0x8000002C STATUS_DLL_MIGHT_BE_INCOMPATIBLE | The application is loading executable code from the module %hs. This is secure but might be incompatible with previous releases of the operating system. An alternative, %hs, is available. Should the application use the secure module %hs? |
0x8000002D STATUS_STOPPED_ON_SYMLINK | The create operation stopped after reaching a symbolic link. |
0x80000288 STATUS_DEVICE_REQUIRES_CLEANING | The device has indicated that cleaning is necessary. |
0x80000289 STATUS_DEVICE_DOOR_OPEN | The device has indicated that its door is open. Further operations require it closed and secured. |
0x80000803 STATUS_DATA_LOST_REPAIR | Windows discovered a corruption in the file %hs. This file has now been repaired. Check if any data in the file was lost because of the corruption. |
0x80010001 DBG_EXCEPTION_NOT_HANDLED | Debugger did not handle the exception. |
0x80130001 STATUS_CLUSTER_NODE_ALREADY_UP | The cluster node is already up. |
0x80130002 STATUS_CLUSTER_NODE_ALREADY_DOWN | The cluster node is already down. |
0x80130003 STATUS_CLUSTER_NETWORK_ALREADY_ONLINE | The cluster network is already online. |
0x80130004 STATUS_CLUSTER_NETWORK_ALREADY_OFFLINE | The cluster network is already offline. |
0x80130005 STATUS_CLUSTER_NODE_ALREADY_MEMBER | The cluster node is already a member of the cluster. |
0x80190009 STATUS_COULD_NOT_RESIZE_LOG | The log could not be set to the requested size. |
0x80190029 STATUS_NO_TXF_METADATA | There is no transaction metadata on the file. |
0x80190031 STATUS_CANT_RECOVER_WITH_HANDLE_OPEN | The file cannot be recovered because there is a handle still open on it. |
0x80190041 STATUS_TXF_METADATA_ALREADY_PRESENT | Transaction metadata is already present on this file and cannot be superseded. |
0x80190042 STATUS_TRANSACTION_SCOPE_CALLBACKS_NOT_SET | A transaction scope could not be entered because the scope handler has not been initialized. |
0x801B00EB STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD_RECOVERED | {Display Driver Stopped Responding and recovered} The %hs display driver has stopped working normally. The recovery had been performed. |
0x801C0001 STATUS_FLT_BUFFER_TOO_SMALL | {Buffer too small} The buffer is too small to contain the entry. No information has been written to the buffer. |
0x80210001 STATUS_FVE_PARTIAL_METADATA | Volume metadata read or write is incomplete. |
0x80210002 STATUS_FVE_TRANSIENT_STATE | BitLocker encryption keys were ignored because the volume was in a transient state. |
0xC0000001 STATUS_UNSUCCESSFUL | {Operation Failed} The requested operation was unsuccessful. |
0xC0000002 STATUS_NOT_IMPLEMENTED | {Not Implemented} The requested operation is not implemented. |
0xC0000003 STATUS_INVALID_INFO_CLASS | {Invalid Parameter} The specified information class is not a valid information class for the specified object. |
0xC0000004 STATUS_INFO_LENGTH_MISMATCH | The specified information record length does not match the length that is required for the specified information class. |
0xC0000005 STATUS_ACCESS_VIOLATION | The instruction at 0x%08lx referenced memory at 0x%08lx. The memory could not be %s. |
0xC0000006 STATUS_IN_PAGE_ERROR | The instruction at 0x%08lx referenced memory at 0x%08lx. The required data was not placed into memory because of an I/O error status of 0x%08lx. |
0xC0000007 STATUS_PAGEFILE_QUOTA | The page file quota for the process has been exhausted. |
0xC0000008 STATUS_INVALID_HANDLE | An invalid HANDLE was specified. |
0xC0000009 STATUS_BAD_INITIAL_STACK | An invalid initial stack was specified in a call to NtCreateThread. |
0xC000000A STATUS_BAD_INITIAL_PC | An invalid initial start address was specified in a call to NtCreateThread. |
0xC000000B STATUS_INVALID_CID | An invalid client ID was specified. |
0xC000000C STATUS_TIMER_NOT_CANCELED | An attempt was made to cancel or set a timer that has an associated APC and the specified thread is not the thread that originally set the timer with an associated APC routine. |
0xC000000D STATUS_INVALID_PARAMETER | An invalid parameter was passed to a service or function. |
0xC000000E STATUS_NO_SUCH_DEVICE | A device that does not exist was specified. |
0xC000000F STATUS_NO_SUCH_FILE | {File Not Found} The file %hs does not exist. |
0xC0000010 STATUS_INVALID_DEVICE_REQUEST | The specified request is not a valid operation for the target device. |
0xC0000011 STATUS_END_OF_FILE | The end-of-file marker has been reached. There is no valid data in the file beyond this marker. |
0xC0000012 STATUS_WRONG_VOLUME | {Wrong Volume} The wrong volume is in the drive. Insert volume %hs into drive %hs. |
0xC0000013 STATUS_NO_MEDIA_IN_DEVICE | {No Disk} There is no disk in the drive. Insert a disk into drive %hs. |
0xC0000014 STATUS_UNRECOGNIZED_MEDIA | {Unknown Disk Format} The disk in drive %hs is not formatted properly. Check the disk, and reformat it, if needed. |
0xC0000015 STATUS_NONEXISTENT_SECTOR | {Sector Not Found} The specified sector does not exist. |
0xC0000016 STATUS_MORE_PROCESSING_REQUIRED | {Still Busy} The specified I/O request packet (IRP) cannot be disposed of because the I/O operation is not complete. |
0xC0000017 STATUS_NO_MEMORY | {Not Enough Quota} Not enough virtual memory or paging file quota is available to complete the specified operation. |
0xC0000018 STATUS_CONFLICTING_ADDRESSES | {Conflicting Address Range} The specified address range conflicts with the address space. |
0xC0000019 STATUS_NOT_MAPPED_VIEW | The address range to unmap is not a mapped view. |
0xC000001A STATUS_UNABLE_TO_FREE_VM | The virtual memory cannot be freed. |
0xC000001B STATUS_UNABLE_TO_DELETE_SECTION | The specified section cannot be deleted. |
0xC000001C STATUS_INVALID_SYSTEM_SERVICE | An invalid system service was specified in a system service call. |
0xC000001D STATUS_ILLEGAL_INSTRUCTION | {EXCEPTION} Illegal Instruction An attempt was made to execute an illegal instruction. |
0xC000001E STATUS_INVALID_LOCK_SEQUENCE | {Invalid Lock Sequence} An attempt was made to execute an invalid lock sequence. |
0xC000001F STATUS_INVALID_VIEW_SIZE | {Invalid Mapping} An attempt was made to create a view for a section that is bigger than the section. |
0xC0000020 STATUS_INVALID_FILE_FOR_SECTION | {Bad File} The attributes of the specified mapping file for a section of memory cannot be read. |
0xC0000021 STATUS_ALREADY_COMMITTED | {Already Committed} The specified address range is already committed. |
0xC0000022 STATUS_ACCESS_DENIED | {Access Denied} A process has requested access to an object but has not been granted those access rights. |
0xC0000023 STATUS_BUFFER_TOO_SMALL | {Buffer Too Small} The buffer is too small to contain the entry. No information has been written to the buffer. |
0xC0000024 STATUS_OBJECT_TYPE_MISMATCH | {Wrong Type} There is a mismatch between the type of object that is required by the requested operation and the type of object that is specified in the request. |
0xC0000025 STATUS_NONCONTINUABLE_EXCEPTION | {EXCEPTION} Cannot Continue Windows cannot continue from this exception. |
0xC0000026 STATUS_INVALID_DISPOSITION | An invalid exception disposition was returned by an exception handler. |
0xC0000027 STATUS_UNWIND | Unwind exception code. |
0xC0000028 STATUS_BAD_STACK | An invalid or unaligned stack was encountered during an unwind operation. |
0xC0000029 STATUS_INVALID_UNWIND_TARGET | An invalid unwind target was encountered during an unwind operation. |
0xC000002A STATUS_NOT_LOCKED | An attempt was made to unlock a page of memory that was not locked. |
0xC000002B STATUS_PARITY_ERROR | A device parity error on an I/O operation. |
0xC000002C STATUS_UNABLE_TO_DECOMMIT_VM | An attempt was made to decommit uncommitted virtual memory. |
0xC000002D STATUS_NOT_COMMITTED | An attempt was made to change the attributes on memory that has not been committed. |
0xC000002E STATUS_INVALID_PORT_ATTRIBUTES | Invalid object attributes specified to NtCreatePort or invalid port attributes specified to NtConnectPort. |
0xC000002F STATUS_PORT_MESSAGE_TOO_LONG | The length of the message that was passed to NtRequestPort or NtRequestWaitReplyPort is longer than the maximum message that is allowed by the port. |
0xC0000030 STATUS_INVALID_PARAMETER_MIX | An invalid combination of parameters was specified. |
0xC0000031 STATUS_INVALID_QUOTA_LOWER | An attempt was made to lower a quota limit below the current usage. |
0xC0000032 STATUS_DISK_CORRUPT_ERROR | {Corrupt Disk} The file system structure on the disk is corrupt and unusable. Run the Chkdsk utility on the volume %hs. |
0xC0000033 STATUS_OBJECT_NAME_INVALID | The object name is invalid. |
0xC0000034 STATUS_OBJECT_NAME_NOT_FOUND | The object name is not found. |
0xC0000035 STATUS_OBJECT_NAME_COLLISION | The object name already exists. |
0xC0000037 STATUS_PORT_DISCONNECTED | An attempt was made to send a message to a disconnected communication port. |
0xC0000038 STATUS_DEVICE_ALREADY_ATTACHED | An attempt was made to attach to a device that was already attached to another device. |
0xC0000039 STATUS_OBJECT_PATH_INVALID | The object path component was not a directory object. |
0xC000003A STATUS_OBJECT_PATH_NOT_FOUND | {Path Not Found} The path %hs does not exist. |
0xC000003B STATUS_OBJECT_PATH_SYNTAX_BAD | The object path component was not a directory object. |
0xC000003C STATUS_DATA_OVERRUN | {Data Overrun} A data overrun error occurred. |
0xC000003D STATUS_DATA_LATE_ERROR | {Data Late} A data late error occurred. |
0xC000003E STATUS_DATA_ERROR | {Data Error} An error occurred in reading or writing data. |
0xC000003F STATUS_CRC_ERROR | {Bad CRC} A cyclic redundancy check (CRC) checksum error occurred. |
0xC0000040 STATUS_SECTION_TOO_BIG | {Section Too Large} The specified section is too big to map the file. |
0xC0000041 STATUS_PORT_CONNECTION_REFUSED | The NtConnectPort request is refused. |
0xC0000042 STATUS_INVALID_PORT_HANDLE | The type of port handle is invalid for the operation that is requested. |
0xC0000043 STATUS_SHARING_VIOLATION | A file cannot be opened because the share access flags are incompatible. |
0xC0000044 STATUS_QUOTA_EXCEEDED | Insufficient quota exists to complete the operation. |
0xC0000045 STATUS_INVALID_PAGE_PROTECTION | The specified page protection was not valid. |
0xC0000046 STATUS_MUTANT_NOT_OWNED | An attempt to release a mutant object was made by a thread that was not the owner of the mutant object. |
0xC0000047 STATUS_SEMAPHORE_LIMIT_EXCEEDED | An attempt was made to release a semaphore such that its maximum count would have been exceeded. |
0xC0000048 STATUS_PORT_ALREADY_SET | An attempt was made to set the DebugPort or ExceptionPort of a process, but a port already exists in the process, or an attempt was made to set the CompletionPort of a file but a port was already set in the file, or an attempt was made to set the associated completion port of an ALPC port but it is already set. |
0xC0000049 STATUS_SECTION_NOT_IMAGE | An attempt was made to query image information on a section that does not map an image. |
0xC000004A STATUS_SUSPEND_COUNT_EXCEEDED | An attempt was made to suspend a thread whose suspend count was at its maximum. |
0xC000004B STATUS_THREAD_IS_TERMINATING | An attempt was made to suspend a thread that has begun termination. |
0xC000004C STATUS_BAD_WORKING_SET_LIMIT | An attempt was made to set the working set limit to an invalid value (for example, the minimum greater than maximum). |
0xC000004D STATUS_INCOMPATIBLE_FILE_MAP | A section was created to map a file that is not compatible with an already existing section that maps the same file. |
0xC000004E STATUS_SECTION_PROTECTION | A view to a section specifies a protection that is incompatible with the protection of the initial view. |
0xC000004F STATUS_EAS_NOT_SUPPORTED | An operation involving EAs failed because the file system does not support EAs. |
0xC0000050 STATUS_EA_TOO_LARGE | An EA operation failed because the EA set is too large. |
0xC0000051 STATUS_NONEXISTENT_EA_ENTRY | An EA operation failed because the name or EA index is invalid. |
0xC0000052 STATUS_NO_EAS_ON_FILE | The file for which EAs were requested has no EAs. |
0xC0000053 STATUS_EA_CORRUPT_ERROR | The EA is corrupt and cannot be read. |
0xC0000054 STATUS_FILE_LOCK_CONFLICT | A requested read/write cannot be granted due to a conflicting file lock. |
0xC0000055 STATUS_LOCK_NOT_GRANTED | A requested file lock cannot be granted due to other existing locks. |
0xC0000056 STATUS_DELETE_PENDING | A non-close operation has been requested of a file object that has a delete pending. |
0xC0000057 STATUS_CTL_FILE_NOT_SUPPORTED | An attempt was made to set the control attribute on a file. This attribute is not supported in the destination file system. |
0xC0000058 STATUS_UNKNOWN_REVISION | Indicates a revision number that was encountered or specified is not one that is known by the service. It might be a more recent revision than the service is aware of. |
0xC0000059 STATUS_REVISION_MISMATCH | Indicates that two revision levels are incompatible. |
0xC000005A STATUS_INVALID_OWNER | Indicates a particular security ID cannot be assigned as the owner of an object. |
0xC000005B STATUS_INVALID_PRIMARY_GROUP | Indicates a particular security ID cannot be assigned as the primary group of an object. |
0xC000005C STATUS_NO_IMPERSONATION_TOKEN | An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client. |
0xC000005D STATUS_CANT_DISABLE_MANDATORY | A mandatory group cannot be disabled. |
0xC000005E STATUS_NO_LOGON_SERVERS | No logon servers are currently available to service the logon request. |
0xC000005F STATUS_NO_SUCH_LOGON_SESSION | A specified logon session does not exist. It might already have been terminated. |
0xC0000060 STATUS_NO_SUCH_PRIVILEGE | A specified privilege does not exist. |
0xC0000061 STATUS_PRIVILEGE_NOT_HELD | A required privilege is not held by the client. |
0xC0000062 STATUS_INVALID_ACCOUNT_NAME | The name provided is not a properly formed account name. |
0xC0000063 STATUS_USER_EXISTS | The specified account already exists. |
0xC0000064 STATUS_NO_SUCH_USER | The specified account does not exist. |
0xC0000065 STATUS_GROUP_EXISTS | The specified group already exists. |
0xC0000066 STATUS_NO_SUCH_GROUP | The specified group does not exist. |
0xC0000067 STATUS_MEMBER_IN_GROUP | The specified user account is already in the specified group account. Also used to indicate a group cannot be deleted because it contains a member. |
0xC0000068 STATUS_MEMBER_NOT_IN_GROUP | The specified user account is not a member of the specified group account. |
0xC0000069 STATUS_LAST_ADMIN | Indicates the requested operation would disable or delete the last remaining administration account. This is not allowed to prevent creating a situation in which the system cannot be administrated. |
0xC000006A STATUS_WRONG_PASSWORD | When trying to update a password, this return status indicates that the value provided as the current password is not correct. |
0xC000006B STATUS_ILL_FORMED_PASSWORD | When trying to update a password, this return status indicates that the value provided for the new password contains values that are not allowed in passwords. |
0xC000006C STATUS_PASSWORD_RESTRICTION | When trying to update a password, this status indicates that some password update rule has been violated. For example, the password might not meet length criteria. |
0xC000006D STATUS_LOGON_FAILURE | The attempted logon is invalid. This is either due to a bad username or authentication information. |
0xC000006E STATUS_ACCOUNT_RESTRICTION | Indicates a referenced user name and authentication information are valid, but some user account restriction has prevented successful authentication (such as time-of-day restrictions). |
0xC000006F STATUS_INVALID_LOGON_HOURS | The user account has time restrictions and cannot be logged onto at this time. |
0xC0000070 STATUS_INVALID_WORKSTATION | The user account is restricted so that it cannot be used to log on from the source workstation. |
0xC0000071 STATUS_PASSWORD_EXPIRED | The user account password has expired. |
0xC0000072 STATUS_ACCOUNT_DISABLED | The referenced account is currently disabled and cannot be logged on to. |
0xC0000073 STATUS_NONE_MAPPED | None of the information to be translated has been translated. |
0xC0000074 STATUS_TOO_MANY_LUIDS_REQUESTED | The number of LUIDs requested cannot be allocated with a single allocation. |
0xC0000075 STATUS_LUIDS_EXHAUSTED | Indicates there are no more LUIDs to allocate. |
0xC0000076 STATUS_INVALID_SUB_AUTHORITY | Indicates the sub-authority value is invalid for the particular use. |
0xC0000077 STATUS_INVALID_ACL | Indicates the ACL structure is not valid. |
0xC0000078 STATUS_INVALID_SID | Indicates the SID structure is not valid. |
0xC0000079 STATUS_INVALID_SECURITY_DESCR | Indicates the SECURITY_DESCRIPTOR structure is not valid. |
0xC000007A STATUS_PROCEDURE_NOT_FOUND | Indicates the specified procedure address cannot be found in the DLL. |
0xC000007B STATUS_INVALID_IMAGE_FORMAT | {Bad Image} %hs is either not designed to run on Windows or it contains an error. Try installing the program again using the original installation media or contact your system administrator or the software vendor for support. |
0xC000007C STATUS_NO_TOKEN | An attempt was made to reference a token that does not exist. This is typically done by referencing the token that is associated with a thread when the thread is not impersonating a client. |
0xC000007D STATUS_BAD_INHERITANCE_ACL | Indicates that an attempt to build either an inherited ACL or ACE was not successful. This can be caused by a number of things. One of the more probable causes is the replacement of a CreatorId with a SID that did not fit into the ACE or ACL. |
0xC000007E STATUS_RANGE_NOT_LOCKED | The range specified in NtUnlockFile was not locked. |
0xC000007F STATUS_DISK_FULL | An operation failed because the disk was full. |
0xC0000080 STATUS_SERVER_DISABLED | The GUID allocation server is disabled at the moment. |
0xC0000081 STATUS_SERVER_NOT_DISABLED | The GUID allocation server is enabled at the moment. |
0xC0000082 STATUS_TOO_MANY_GUIDS_REQUESTED | Too many GUIDs were requested from the allocation server at once. |
0xC0000083 STATUS_GUIDS_EXHAUSTED | The GUIDs could not be allocated because the Authority Agent was exhausted. |
0xC0000084 STATUS_INVALID_ID_AUTHORITY | The value provided was an invalid value for an identifier authority. |
0xC0000085 STATUS_AGENTS_EXHAUSTED | No more authority agent values are available for the particular identifier authority value. |
0xC0000086 STATUS_INVALID_VOLUME_LABEL | An invalid volume label has been specified. |
0xC0000087 STATUS_SECTION_NOT_EXTENDED | A mapped section could not be extended. |
0xC0000088 STATUS_NOT_MAPPED_DATA | Specified section to flush does not map a data file. |
0xC0000089 STATUS_RESOURCE_DATA_NOT_FOUND | Indicates the specified image file did not contain a resource section. |
0xC000008A STATUS_RESOURCE_TYPE_NOT_FOUND | Indicates the specified resource type cannot be found in the image file. |
0xC000008B STATUS_RESOURCE_NAME_NOT_FOUND | Indicates the specified resource name cannot be found in the image file. |
0xC000008C STATUS_ARRAY_BOUNDS_EXCEEDED | {EXCEPTION} Array bounds exceeded. |
0xC000008D STATUS_FLOAT_DENORMAL_OPERAND | {EXCEPTION} Floating-point denormal operand. |
0xC000008E STATUS_FLOAT_DIVIDE_BY_ZERO | {EXCEPTION} Floating-point division by zero. |
0xC000008F STATUS_FLOAT_INEXACT_RESULT | {EXCEPTION} Floating-point inexact result. |
0xC0000090 STATUS_FLOAT_INVALID_OPERATION | {EXCEPTION} Floating-point invalid operation. |
0xC0000091 STATUS_FLOAT_OVERFLOW | {EXCEPTION} Floating-point overflow. |
0xC0000092 STATUS_FLOAT_STACK_CHECK | {EXCEPTION} Floating-point stack check. |
0xC0000093 STATUS_FLOAT_UNDERFLOW | {EXCEPTION} Floating-point underflow. |
0xC0000094 STATUS_INTEGER_DIVIDE_BY_ZERO | {EXCEPTION} Integer division by zero. |
0xC0000095 STATUS_INTEGER_OVERFLOW | {EXCEPTION} Integer overflow. |
0xC0000096 STATUS_PRIVILEGED_INSTRUCTION | {EXCEPTION} Privileged instruction. |
0xC0000097 STATUS_TOO_MANY_PAGING_FILES | An attempt was made to install more paging files than the system supports. |
0xC0000098 STATUS_FILE_INVALID | The volume for a file has been externally altered such that the opened file is no longer valid. |
0xC0000099 STATUS_ALLOTTED_SPACE_EXCEEDED | When a block of memory is allotted for future updates, such as the memory allocated to hold discretionary access control and primary group information, successive updates might exceed the amount of memory originally allotted. Because a quota might already have been charged to several processes that have handles to the object, it is not reasonable to alter the size of the allocated memory. Instead, a request that requires more memory than has been allotted must fail and the STATUS_ALLOTTED_SPACE_EXCEEDED error returned. |
0xC000009A STATUS_INSUFFICIENT_RESOURCES | Insufficient system resources exist to complete the API. |
0xC000009B STATUS_DFS_EXIT_PATH_FOUND | An attempt has been made to open a DFS exit path control file. |
0xC000009C STATUS_DEVICE_DATA_ERROR | There are bad blocks (sectors) on the hard disk. |
0xC000009D STATUS_DEVICE_NOT_CONNECTED | There is bad cabling, non-termination, or the controller is not able to obtain access to the hard disk. |
0xC000009F STATUS_FREE_VM_NOT_AT_BASE | Virtual memory cannot be freed because the base address is not the base of the region and a region size of zero was specified. |
0xC00000A0 STATUS_MEMORY_NOT_ALLOCATED | An attempt was made to free virtual memory that is not allocated. |
0xC00000A1 STATUS_WORKING_SET_QUOTA | The working set is not big enough to allow the requested pages to be locked. |
0xC00000A2 STATUS_MEDIA_WRITE_PROTECTED | {Write Protect Error} The disk cannot be written to because it is write-protected. Remove the write protection from the volume %hs in drive %hs. |
0xC00000A3 STATUS_DEVICE_NOT_READY | {Drive Not Ready} The drive is not ready for use; its door might be open. Check drive %hs and make sure that a disk is inserted and that the drive door is closed. |
0xC00000A4 STATUS_INVALID_GROUP_ATTRIBUTES | The specified attributes are invalid or are incompatible with the attributes for the group as a whole. |
0xC00000A5 STATUS_BAD_IMPERSONATION_LEVEL | A specified impersonation level is invalid. Also used to indicate that a required impersonation level was not provided. |
0xC00000A6 STATUS_CANT_OPEN_ANONYMOUS | An attempt was made to open an anonymous-level token. Anonymous tokens cannot be opened. |
0xC00000A7 STATUS_BAD_VALIDATION_CLASS | The validation information class requested was invalid. |
0xC00000A8 STATUS_BAD_TOKEN_TYPE | The type of a token object is inappropriate for its attempted use. |
0xC00000A9 STATUS_BAD_MASTER_BOOT_RECORD | The type of a token object is inappropriate for its attempted use. |
0xC00000AA STATUS_INSTRUCTION_MISALIGNMENT | An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references. |
0xC00000AB STATUS_INSTANCE_NOT_AVAILABLE | The maximum named pipe instance count has been reached. |
0xC00000AC STATUS_PIPE_NOT_AVAILABLE | An instance of a named pipe cannot be found in the listening state. |
0xC00000AD STATUS_INVALID_PIPE_STATE | The named pipe is not in the connected or closing state. |
0xC00000AE STATUS_PIPE_BUSY | The specified pipe is set to complete operations and there are current I/O operations queued so that it cannot be changed to queue operations. |
0xC00000AF STATUS_ILLEGAL_FUNCTION | The specified handle is not open to the server end of the named pipe. |
0xC00000B0 STATUS_PIPE_DISCONNECTED | The specified named pipe is in the disconnected state. |
0xC00000B1 STATUS_PIPE_CLOSING | The specified named pipe is in the closing state. |
0xC00000B2 STATUS_PIPE_CONNECTED | The specified named pipe is in the connected state. |
0xC00000B3 STATUS_PIPE_LISTENING | The specified named pipe is in the listening state. |
0xC00000B4 STATUS_INVALID_READ_MODE | The specified named pipe is not in message mode. |
0xC00000B5 STATUS_IO_TIMEOUT | {Device Timeout} The specified I/O operation on %hs was not completed before the time-out period expired. |
0xC00000B6 STATUS_FILE_FORCED_CLOSED | The specified file has been closed by another process. |
0xC00000B7 STATUS_PROFILING_NOT_STARTED | Profiling is not started. |
0xC00000B8 STATUS_PROFILING_NOT_STOPPED | Profiling is not stopped. |
0xC00000B9 STATUS_COULD_NOT_INTERPRET | The passed ACL did not contain the minimum required information. |
0xC00000BA STATUS_FILE_IS_A_DIRECTORY | The file that was specified as a target is a directory, and the caller specified that it could be anything but a directory. |
0xC00000BB STATUS_NOT_SUPPORTED | The request is not supported. |
0xC00000BC STATUS_REMOTE_NOT_LISTENING | This remote computer is not listening. |
0xC00000BD STATUS_DUPLICATE_NAME | A duplicate name exists on the network. |
0xC00000BE STATUS_BAD_NETWORK_PATH | The network path cannot be located. |
0xC00000BF STATUS_NETWORK_BUSY | The network is busy. |
0xC00000C0 STATUS_DEVICE_DOES_NOT_EXIST | This device does not exist. |
0xC00000C1 STATUS_TOO_MANY_COMMANDS | The network BIOS command limit has been reached. |
0xC00000C2 STATUS_ADAPTER_HARDWARE_ERROR | An I/O adapter hardware error has occurred. |
0xC00000C3 STATUS_INVALID_NETWORK_RESPONSE | The network responded incorrectly. |
0xC00000C4 STATUS_UNEXPECTED_NETWORK_ERROR | An unexpected network error occurred. |
0xC00000C5 STATUS_BAD_REMOTE_ADAPTER | The remote adapter is not compatible. |
0xC00000C6 STATUS_PRINT_QUEUE_FULL | The print queue is full. |
0xC00000C7 STATUS_NO_SPOOL_SPACE | Space to store the file that is waiting to be printed is not available on the server. |
0xC00000C8 STATUS_PRINT_CANCELLED | The requested print file has been canceled. |
0xC00000C9 STATUS_NETWORK_NAME_DELETED | The network name was deleted. |
0xC00000CA STATUS_NETWORK_ACCESS_DENIED | Network access is denied. |
0xC00000CB STATUS_BAD_DEVICE_TYPE | {Incorrect Network Resource Type} The specified device type (LPT, for example) conflicts with the actual device type on the remote resource. |
0xC00000CC STATUS_BAD_NETWORK_NAME | {Network Name Not Found} The specified share name cannot be found on the remote server. |
0xC00000CD STATUS_TOO_MANY_NAMES | The name limit for the network adapter card of the local computer was exceeded. |
0xC00000CE STATUS_TOO_MANY_SESSIONS | The network BIOS session limit was exceeded. |
0xC00000CF STATUS_SHARING_PAUSED | File sharing has been temporarily paused. |
0xC00000D0 STATUS_REQUEST_NOT_ACCEPTED | No more connections can be made to this remote computer at this time because the computer has already accepted the maximum number of connections. |
0xC00000D1 STATUS_REDIRECTOR_PAUSED | Print or disk redirection is temporarily paused. |
0xC00000D2 STATUS_NET_WRITE_FAULT | A network data fault occurred. |
0xC00000D3 STATUS_PROFILING_AT_LIMIT | The number of active profiling objects is at the maximum and no more can be started. |
0xC00000D4 STATUS_NOT_SAME_DEVICE | {Incorrect Volume} The destination file of a rename request is located on a different device than the source of the rename request. |
0xC00000D5 STATUS_FILE_RENAMED | The specified file has been renamed and thus cannot be modified. |
0xC00000D6 STATUS_VIRTUAL_CIRCUIT_CLOSED | {Network Request Timeout} The session with a remote server has been disconnected because the time-out interval for a request has expired. |
0xC00000D7 STATUS_NO_SECURITY_ON_OBJECT | Indicates an attempt was made to operate on the security of an object that does not have security associated with it. |
0xC00000D8 STATUS_CANT_WAIT | Used to indicate that an operation cannot continue without blocking for I/O. |
0xC00000D9 STATUS_PIPE_EMPTY | Used to indicate that a read operation was done on an empty pipe. |
0xC00000DA STATUS_CANT_ACCESS_DOMAIN_INFO | Configuration information could not be read from the domain controller, either because the machine is unavailable or access has been denied. |
0xC00000DB STATUS_CANT_TERMINATE_SELF | Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process. |
0xC00000DC STATUS_INVALID_SERVER_STATE | Indicates the Sam Server was in the wrong state to perform the desired operation. |
0xC00000DD STATUS_INVALID_DOMAIN_STATE | Indicates the domain was in the wrong state to perform the desired operation. |
0xC00000DE STATUS_INVALID_DOMAIN_ROLE | This operation is only allowed for the primary domain controller of the domain. |
0xC00000DF STATUS_NO_SUCH_DOMAIN | The specified domain did not exist. |
0xC00000E0 STATUS_DOMAIN_EXISTS | The specified domain already exists. |
0xC00000E1 STATUS_DOMAIN_LIMIT_EXCEEDED | An attempt was made to exceed the limit on the number of domains per server for this release. |
0xC00000E2 STATUS_OPLOCK_NOT_GRANTED | An error status returned when the opportunistic lock (oplock) request is denied. |
0xC00000E3 STATUS_INVALID_OPLOCK_PROTOCOL | An error status returned when an invalid opportunistic lock (oplock) acknowledgment is received by a file system. |
0xC00000E4 STATUS_INTERNAL_DB_CORRUPTION | This error indicates that the requested operation cannot be completed due to a catastrophic media failure or an on-disk data structure corruption. |
0xC00000E5 STATUS_INTERNAL_ERROR | An internal error occurred. |
0xC00000E6 STATUS_GENERIC_NOT_MAPPED | Indicates generic access types were contained in an access mask which should already be mapped to non-generic access types. |
0xC00000E7 STATUS_BAD_DESCRIPTOR_FORMAT | Indicates a security descriptor is not in the necessary format (absolute or self-relative). |
0xC00000E8 STATUS_INVALID_USER_BUFFER | An access to a user buffer failed at an expected point in time. This code is defined because the caller does not want to accept STATUS_ACCESS_VIOLATION in its filter. |
0xC00000E9 STATUS_UNEXPECTED_IO_ERROR | If an I/O error that is not defined in the standard FsRtl filter is returned, it is converted to the following error, which is guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception. |
0xC00000EA STATUS_UNEXPECTED_MM_CREATE_ERR | If an MM error that is not defined in the standard FsRtl filter is returned, it is converted to one of the following errors, which are guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception. |
0xC00000EB STATUS_UNEXPECTED_MM_MAP_ERROR | If an MM error that is not defined in the standard FsRtl filter is returned, it is converted to one of the following errors, which are guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception. |
0xC00000EC STATUS_UNEXPECTED_MM_EXTEND_ERR | If an MM error that is not defined in the standard FsRtl filter is returned, it is converted to one of the following errors, which are guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception. |
0xC00000ED STATUS_NOT_LOGON_PROCESS | The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process. |
0xC00000EE STATUS_LOGON_SESSION_EXISTS | An attempt has been made to start a new session manager or LSA logon session by using an ID that is already in use. |
0xC00000EF STATUS_INVALID_PARAMETER_1 | An invalid parameter was passed to a service or function as the first argument. |
0xC00000F0 STATUS_INVALID_PARAMETER_2 | An invalid parameter was passed to a service or function as the second argument. |
0xC00000F1 STATUS_INVALID_PARAMETER_3 | An invalid parameter was passed to a service or function as the third argument. |
0xC00000F2 STATUS_INVALID_PARAMETER_4 | An invalid parameter was passed to a service or function as the fourth argument. |
0xC00000F3 STATUS_INVALID_PARAMETER_5 | An invalid parameter was passed to a service or function as the fifth argument. |
0xC00000F4 STATUS_INVALID_PARAMETER_6 | An invalid parameter was passed to a service or function as the sixth argument. |
0xC00000F5 STATUS_INVALID_PARAMETER_7 | An invalid parameter was passed to a service or function as the seventh argument. |
0xC00000F6 STATUS_INVALID_PARAMETER_8 | An invalid parameter was passed to a service or function as the eighth argument. |
0xC00000F7 STATUS_INVALID_PARAMETER_9 | An invalid parameter was passed to a service or function as the ninth argument. |
0xC00000F8 STATUS_INVALID_PARAMETER_10 | An invalid parameter was passed to a service or function as the tenth argument. |
0xC00000F9 STATUS_INVALID_PARAMETER_11 | An invalid parameter was passed to a service or function as the eleventh argument. |
0xC00000FA STATUS_INVALID_PARAMETER_12 | An invalid parameter was passed to a service or function as the twelfth argument. |
0xC00000FB STATUS_REDIRECTOR_NOT_STARTED | An attempt was made to access a network file, but the network software was not yet started. |
0xC00000FC STATUS_REDIRECTOR_STARTED | An attempt was made to start the redirector, but the redirector has already been started. |
0xC00000FD STATUS_STACK_OVERFLOW | A new guard page for the stack cannot be created. |
0xC00000FE STATUS_NO_SUCH_PACKAGE | A specified authentication package is unknown. |
0xC00000FF STATUS_BAD_FUNCTION_TABLE | A malformed function table was encountered during an unwind operation. |
0xC0000100 STATUS_VARIABLE_NOT_FOUND | Indicates the specified environment variable name was not found in the specified environment block. |
0xC0000101 STATUS_DIRECTORY_NOT_EMPTY | Indicates that the directory trying to be deleted is not empty. |
0xC0000102 STATUS_FILE_CORRUPT_ERROR | {Corrupt File} The file or directory %hs is corrupt and unreadable. Run the Chkdsk utility. |
0xC0000103 STATUS_NOT_A_DIRECTORY | A requested opened file is not a directory. |
0xC0000104 STATUS_BAD_LOGON_SESSION_STATE | The logon session is not in a state that is consistent with the requested operation. |
0xC0000105 STATUS_LOGON_SESSION_COLLISION | An internal LSA error has occurred. An authentication package has requested the creation of a logon session but the ID of an already existing logon session has been specified. |
0xC0000106 STATUS_NAME_TOO_LONG | A specified name string is too long for its intended use. |
0xC0000107 STATUS_FILES_OPEN | The user attempted to force close the files on a redirected drive, but there were opened files on the drive, and the user did not specify a sufficient level of force. |
0xC0000108 STATUS_CONNECTION_IN_USE | The user attempted to force close the files on a redirected drive, but there were opened directories on the drive, and the user did not specify a sufficient level of force. |
0xC0000109 STATUS_MESSAGE_NOT_FOUND | RtlFindMessage could not locate the requested message ID in the message table resource. |
0xC000010A STATUS_PROCESS_IS_TERMINATING | An attempt was made to duplicate an object handle into or out of an exiting process. |
0xC000010B STATUS_INVALID_LOGON_TYPE | Indicates an invalid value has been provided for the LogonType requested. |
0xC000010C STATUS_NO_GUID_TRANSLATION | Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. This causes the protection attempt to fail, which might cause a file creation attempt to fail. |
0xC000010D STATUS_CANNOT_IMPERSONATE | Indicates that an attempt has been made to impersonate via a named pipe that has not yet been read from. |
0xC000010E STATUS_IMAGE_ALREADY_LOADED | Indicates that the specified image is already loaded. |
0xC0000117 STATUS_NO_LDT | Indicates that an attempt was made to change the size of the LDT for a process that has no LDT. |
0xC0000118 STATUS_INVALID_LDT_SIZE | Indicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors. |
0xC0000119 STATUS_INVALID_LDT_OFFSET | Indicates that the starting value for the LDT information was not an integral multiple of the selector size. |
0xC000011A STATUS_INVALID_LDT_DESCRIPTOR | Indicates that the user supplied an invalid descriptor when trying to set up LDT descriptors. |
0xC000011B STATUS_INVALID_IMAGE_NE_FORMAT | The specified image file did not have the correct format. It appears to be NE format. |
0xC000011C STATUS_RXACT_INVALID_STATE | Indicates that the transaction state of a registry subtree is incompatible with the requested operation. For example, a request has been made to start a new transaction with one already in progress, or a request has been made to apply a transaction when one is not currently in progress. |
0xC000011D STATUS_RXACT_COMMIT_FAILURE | Indicates an error has occurred during a registry transaction commit. The database has been left in an unknown, but probably inconsistent, state. The state of the registry transaction is left as COMMITTING. |
0xC000011E STATUS_MAPPED_FILE_SIZE_ZERO | An attempt was made to map a file of size zero with the maximum size specified as zero. |
0xC000011F STATUS_TOO_MANY_OPENED_FILES | Too many files are opened on a remote server. This error should only be returned by the Windows redirector on a remote drive. |
0xC0000120 STATUS_CANCELLED | The I/O request was canceled. |
0xC0000121 STATUS_CANNOT_DELETE | An attempt has been made to remove a file or directory that cannot be deleted. |
0xC0000122 STATUS_INVALID_COMPUTER_NAME | Indicates a name that was specified as a remote computer name is syntactically invalid. |
0xC0000123 STATUS_FILE_DELETED | An I/O request other than close was performed on a file after it was deleted, which can only happen to a request that did not complete before the last handle was closed via NtClose. |
0xC0000124 STATUS_SPECIAL_ACCOUNT | Indicates an operation that is incompatible with built-in accounts has been attempted on a built-in (special) SAM account. For example, built-in accounts cannot be deleted. |
0xC0000125 STATUS_SPECIAL_GROUP | The operation requested cannot be performed on the specified group because it is a built-in special group. |
0xC0000126 STATUS_SPECIAL_USER | The operation requested cannot be performed on the specified user because it is a built-in special user. |
0xC0000127 STATUS_MEMBERS_PRIMARY_GROUP | Indicates a member cannot be removed from a group because the group is currently the member's primary group. |
0xC0000128 STATUS_FILE_CLOSED | An I/O request other than close and several other special case operations was attempted using a file object that had already been closed. |
0xC0000129 STATUS_TOO_MANY_THREADS | Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token can be performed only when a process has zero or one threads. |
0xC000012A STATUS_THREAD_NOT_IN_PROCESS | An attempt was made to operate on a thread within a specific process, but the specified thread is not in the specified process. |
0xC000012B STATUS_TOKEN_ALREADY_IN_USE | An attempt was made to establish a token for use as a primary token but the token is already in use. A token can only be the primary token of one process at a time. |
0xC000012C STATUS_PAGEFILE_QUOTA_EXCEEDED | The page file quota was exceeded. |
0xC000012D STATUS_COMMITMENT_LIMIT | {Out of Virtual Memory} Your system is low on virtual memory. To ensure that Windows runs correctly, increase the size of your virtual memory paging file. For more information, see Help. |
0xC000012E STATUS_INVALID_IMAGE_LE_FORMAT | The specified image file did not have the correct format: it appears to be LE format. |
0xC000012F STATUS_INVALID_IMAGE_NOT_MZ | The specified image file did not have the correct format: it did not have an initial MZ. |
0xC0000130 STATUS_INVALID_IMAGE_PROTECT | The specified image file did not have the correct format: it did not have a proper e_lfarlc in the MZ header. |
0xC0000131 STATUS_INVALID_IMAGE_WIN_16 | The specified image file did not have the correct format: it appears to be a 16-bit Windows image. |
0xC0000132 STATUS_LOGON_SERVER_CONFLICT | The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role. |
0xC0000133 STATUS_TIME_DIFFERENCE_AT_DC | The time at the primary domain controller is different from the time at the backup domain controller or member server by too large an amount. |
0xC0000134 STATUS_SYNCHRONIZATION_REQUIRED | On applicable Windows Server releases, the SAM database is significantly out of synchronization with the copy on the domain controller. A complete synchronization is required. |
0xC0000135 STATUS_DLL_NOT_FOUND | {Unable To Locate Component} This application has failed to start because %hs was not found. Reinstalling the application might fix this problem. |
0xC0000136 STATUS_OPEN_FAILED | The NtCreateFile API failed. This error should never be returned to an application; it is a place holder for the Windows LAN Manager Redirector to use in its internal error-mapping routines. |
0xC0000137 STATUS_IO_PRIVILEGE_FAILED | {Privilege Failed} The I/O permissions for the process could not be changed. |
0xC0000138 STATUS_ORDINAL_NOT_FOUND | {Ordinal Not Found} The ordinal %ld could not be located in the dynamic link library %hs. |
0xC0000139 STATUS_ENTRYPOINT_NOT_FOUND | {Entry Point Not Found} The procedure entry point %hs could not be located in the dynamic link library %hs. |
0xC000013A STATUS_CONTROL_C_EXIT | {Application Exit by CTRL+C} The application terminated as a result of a CTRL+C. |
0xC000013B STATUS_LOCAL_DISCONNECT | {Virtual Circuit Closed} The network transport on your computer has closed a network connection. There might or might not be I/O requests outstanding. |
0xC000013C STATUS_REMOTE_DISCONNECT | {Virtual Circuit Closed} The network transport on a remote computer has closed a network connection. There might or might not be I/O requests outstanding. |
0xC000013D STATUS_REMOTE_RESOURCES | {Insufficient Resources on Remote Computer} The remote computer has insufficient resources to complete the network request. For example, the remote computer might not have enough available memory to carry out the request at this time. |
0xC000013E STATUS_LINK_FAILED | {Virtual Circuit Closed} An existing connection (virtual circuit) has been broken at the remote computer. There is probably something wrong with the network software protocol or the network hardware on the remote computer. |
0xC000013F STATUS_LINK_TIMEOUT | {Virtual Circuit Closed} The network transport on your computer has closed a network connection because it had to wait too long for a response from the remote computer. |
0xC0000140 STATUS_INVALID_CONNECTION | The connection handle that was given to the transport was invalid. |
0xC0000141 STATUS_INVALID_ADDRESS | The address handle that was given to the transport was invalid. |
0xC0000142 STATUS_DLL_INIT_FAILED | {DLL Initialization Failed} Initialization of the dynamic link library %hs failed. The process is terminating abnormally. |
0xC0000143 STATUS_MISSING_SYSTEMFILE | {Missing System File} The required system file %hs is bad or missing. |
0xC0000144 STATUS_UNHANDLED_EXCEPTION | {Application Error} The exception %s (0x%08lx) occurred in the application at location 0x%08lx. |
0xC0000145 STATUS_APP_INIT_FAILURE | {Application Error} The application failed to initialize properly (0x%lx). Click OK to terminate the application. |
0xC0000146 STATUS_PAGEFILE_CREATE_FAILED | {Unable to Create Paging File} The creation of the paging file %hs failed (%lx). The requested size was %ld. |
0xC0000147 STATUS_NO_PAGEFILE | {No Paging File Specified} No paging file was specified in the system configuration. |
0xC0000148 STATUS_INVALID_LEVEL | {Incorrect System Call Level} An invalid level was passed into the specified system call. |
0xC0000149 STATUS_WRONG_PASSWORD_CORE | {Incorrect Password to LAN Manager Server} You specified an incorrect password to a LAN Manager 2.x or MS-NET server. |
0xC000014A STATUS_ILLEGAL_FLOAT_CONTEXT | {EXCEPTION} A real-mode application issued a floating-point instruction and floating-point hardware is not present. |
0xC000014B STATUS_PIPE_BROKEN | The pipe operation has failed because the other end of the pipe has been closed. |
0xC000014C STATUS_REGISTRY_CORRUPT | {The Registry Is Corrupt} The structure of one of the files that contains registry data is corrupt; the image of the file in memory is corrupt; or the file could not be recovered because the alternate copy or log was absent or corrupt. |
0xC000014D STATUS_REGISTRY_IO_FAILED | An I/O operation initiated by the Registry failed and cannot be recovered. The registry could not read in, write out, or flush one of the files that contain the system's image of the registry. |
0xC000014E STATUS_NO_EVENT_PAIR | An event pair synchronization operation was performed using the thread-specific client/server event pair object, but no event pair object was associated with the thread. |
0xC000014F STATUS_UNRECOGNIZED_VOLUME | The volume does not contain a recognized file system. Be sure that all required file system drivers are loaded and that the volume is not corrupt. |
0xC0000150 STATUS_SERIAL_NO_DEVICE_INITED | No serial device was successfully initialized. The serial driver will unload. |
0xC0000151 STATUS_NO_SUCH_ALIAS | The specified local group does not exist. |
0xC0000152 STATUS_MEMBER_NOT_IN_ALIAS | The specified account name is not a member of the group. |
0xC0000153 STATUS_MEMBER_IN_ALIAS | The specified account name is already a member of the group. |
0xC0000154 STATUS_ALIAS_EXISTS | The specified local group already exists. |
0xC0000155 STATUS_LOGON_NOT_GRANTED | A requested type of logon (for example, interactive, network, and service) is not granted by the local security policy of the target system. Ask the system administrator to grant the necessary form of logon. |
0xC0000156 STATUS_TOO_MANY_SECRETS | The maximum number of secrets that can be stored in a single system was exceeded. The length and number of secrets is limited to satisfy U.S. State Department export restrictions. |
0xC0000157 STATUS_SECRET_TOO_LONG | The length of a secret exceeds the maximum allowable length. The length and number of secrets is limited to satisfy U.S. State Department export restrictions. |
0xC0000158 STATUS_INTERNAL_DB_ERROR | The local security authority (LSA) database contains an internal inconsistency. |
0xC0000159 STATUS_FULLSCREEN_MODE | The requested operation cannot be performed in full-screen mode. |
0xC000015A STATUS_TOO_MANY_CONTEXT_IDS | During a logon attempt, the user's security context accumulated too many security IDs. This is a very unusual situation. Remove the user from some global or local groups to reduce the number of security IDs to incorporate into the security context. |
0xC000015B STATUS_LOGON_TYPE_NOT_GRANTED | A user has requested a type of logon (for example, interactive or network) that has not been granted. An administrator has control over who can logon interactively and through the network. |
0xC000015C STATUS_NOT_REGISTRY_FILE | The system has attempted to load or restore a file into the registry, and the specified file is not in the format of a registry file. |
0xC000015D STATUS_NT_CROSS_ENCRYPTION_REQUIRED | An attempt was made to change a user password in the security account manager without providing the necessary Windows cross-encrypted password. |
0xC000015E STATUS_DOMAIN_CTRLR_CONFIG_ERROR | A domain server has an incorrect configuration. |
0xC000015F STATUS_FT_MISSING_MEMBER | An attempt was made to explicitly access the secondary copy of information via a device control to the fault tolerance driver and the secondary copy is not present in the system. |
0xC0000160 STATUS_ILL_FORMED_SERVICE_ENTRY | A configuration registry node that represents a driver service entry was ill-formed and did not contain the required value entries. |
0xC0000161 STATUS_ILLEGAL_CHARACTER | An illegal character was encountered. For a multibyte character set, this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE. |
0xC0000162 STATUS_UNMAPPABLE_CHARACTER | No mapping for the Unicode character exists in the target multibyte code page. |
0xC0000163 STATUS_UNDEFINED_CHARACTER | The Unicode character is not defined in the Unicode character set that is installed on the system. |
0xC0000164 STATUS_FLOPPY_VOLUME | The paging file cannot be created on a floppy disk. |
0xC0000165 STATUS_FLOPPY_ID_MARK_NOT_FOUND | {Floppy Disk Error} While accessing a floppy disk, an ID address mark was not found. |
0xC0000166 STATUS_FLOPPY_WRONG_CYLINDER | {Floppy Disk Error} While accessing a floppy disk, the track address from the sector ID field was found to be different from the track address that is maintained by the controller. |
0xC0000167 STATUS_FLOPPY_UNKNOWN_ERROR | {Floppy Disk Error} The floppy disk controller reported an error that is not recognized by the floppy disk driver. |
0xC0000168 STATUS_FLOPPY_BAD_REGISTERS | {Floppy Disk Error} While accessing a floppy-disk, the controller returned inconsistent results via its registers. |
0xC0000169 STATUS_DISK_RECALIBRATE_FAILED | {Hard Disk Error} While accessing the hard disk, a recalibrate operation failed, even after retries. |
0xC000016A STATUS_DISK_OPERATION_FAILED | {Hard Disk Error} While accessing the hard disk, a disk operation failed even after retries. |
0xC000016B STATUS_DISK_RESET_FAILED | {Hard Disk Error} While accessing the hard disk, a disk controller reset was needed, but even that failed. |
0xC000016C STATUS_SHARED_IRQ_BUSY | An attempt was made to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened. Two concurrent opens of devices that share an IRQ and only work via interrupts is not supported for the particular bus type that the devices use. |
0xC000016D STATUS_FT_ORPHANING | {FT Orphaning} A disk that is part of a fault-tolerant volume can no longer be accessed. |
0xC000016E STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT | The basic input/output system (BIOS) failed to connect a system interrupt to the device or bus for which the device is connected. |
0xC0000172 STATUS_PARTITION_FAILURE | The tape could not be partitioned. |
0xC0000173 STATUS_INVALID_BLOCK_LENGTH | When accessing a new tape of a multi-volume partition, the current blocksize is incorrect. |
0xC0000174 STATUS_DEVICE_NOT_PARTITIONED | The tape partition information could not be found when loading a tape. |
0xC0000175 STATUS_UNABLE_TO_LOCK_MEDIA | An attempt to lock the eject media mechanism failed. |
0xC0000176 STATUS_UNABLE_TO_UNLOAD_MEDIA | An attempt to unload media failed. |
0xC0000177 STATUS_EOM_OVERFLOW | The physical end of tape was detected. |
0xC0000178 STATUS_NO_MEDIA | {No Media} There is no media in the drive. Insert media into drive %hs. |
0xC000017A STATUS_NO_SUCH_MEMBER | A member could not be added to or removed from the local group because the member does not exist. |
0xC000017B STATUS_INVALID_MEMBER | A new member could not be added to a local group because the member has the wrong account type. |
0xC000017C STATUS_KEY_DELETED | An illegal operation was attempted on a registry key that has been marked for deletion. |
0xC000017D STATUS_NO_LOG_SPACE | The system could not allocate the required space in a registry log. |
0xC000017E STATUS_TOO_MANY_SIDS | Too many SIDs have been specified. |
0xC000017F STATUS_LM_CROSS_ENCRYPTION_REQUIRED | An attempt was made to change a user password in the security account manager without providing the necessary LM cross-encrypted password. |
0xC0000180 STATUS_KEY_HAS_CHILDREN | An attempt was made to create a symbolic link in a registry key that already has subkeys or values. |
0xC0000181 STATUS_CHILD_MUST_BE_VOLATILE | An attempt was made to create a stable subkey under a volatile parent key. |
0xC0000182 STATUS_DEVICE_CONFIGURATION_ERROR | The I/O device is configured incorrectly or the configuration parameters to the driver are incorrect. |
0xC0000183 STATUS_DRIVER_INTERNAL_ERROR | An error was detected between two drivers or within an I/O driver. |
0xC0000184 STATUS_INVALID_DEVICE_STATE | The device is not in a valid state to perform this request. |
0xC0000185 STATUS_IO_DEVICE_ERROR | The I/O device reported an I/O error. |
0xC0000186 STATUS_DEVICE_PROTOCOL_ERROR | A protocol error was detected between the driver and the device. |
0xC0000187 STATUS_BACKUP_CONTROLLER | This operation is only allowed for the primary domain controller of the domain. |
0xC0000188 STATUS_LOG_FILE_FULL | The log file space is insufficient to support this operation. |
0xC0000189 STATUS_TOO_LATE | A write operation was attempted to a volume after it was dismounted. |
0xC000018A STATUS_NO_TRUST_LSA_SECRET | The workstation does not have a trust secret for the primary domain in the local LSA database. |
0xC000018B STATUS_NO_TRUST_SAM_ACCOUNT | On applicable Windows Server releases, the SAM database does not have a computer account for this workstation trust relationship. |
0xC000018C STATUS_TRUSTED_DOMAIN_FAILURE | The logon request failed because the trust relationship between the primary domain and the trusted domain failed. |
0xC000018D STATUS_TRUSTED_RELATIONSHIP_FAILURE | The logon request failed because the trust relationship between this workstation and the primary domain failed. |
0xC000018E STATUS_EVENTLOG_FILE_CORRUPT | The Eventlog log file is corrupt. |
0xC000018F STATUS_EVENTLOG_CANT_START | No Eventlog log file could be opened. The Eventlog service did not start. |
0xC0000190 STATUS_TRUST_FAILURE | The network logon failed. This might be because the validation authority cannot be reached. |
0xC0000191 STATUS_MUTANT_LIMIT_EXCEEDED | An attempt was made to acquire a mutant such that its maximum count would have been exceeded. |
0xC0000192 STATUS_NETLOGON_NOT_STARTED | An attempt was made to logon, but the NetLogon service was not started. |
0xC0000193 STATUS_ACCOUNT_EXPIRED | The user account has expired. |
0xC0000194 STATUS_POSSIBLE_DEADLOCK | {EXCEPTION} Possible deadlock condition. |
0xC0000195 STATUS_NETWORK_CREDENTIAL_CONFLICT | Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again. |
0xC0000196 STATUS_REMOTE_SESSION_LIMIT | An attempt was made to establish a session to a network server, but there are already too many sessions established to that server. |
0xC0000197 STATUS_EVENTLOG_FILE_CHANGED | The log file has changed between reads. |
0xC0000198 STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT | The account used is an interdomain trust account. Use your global user account or local user account to access this server. |
0xC0000199 STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT | The account used is a computer account. Use your global user account or local user account to access this server. |
0xC000019A STATUS_NOLOGON_SERVER_TRUST_ACCOUNT | The account used is a server trust account. Use your global user account or local user account to access this server. |
0xC000019B STATUS_DOMAIN_TRUST_INCONSISTENT | The name or SID of the specified domain is inconsistent with the trust information for that domain. |
0xC000019C STATUS_FS_DRIVER_REQUIRED | A volume has been accessed for which a file system driver is required that has not yet been loaded. |
0xC000019D STATUS_IMAGE_ALREADY_LOADED_AS_DLL | Indicates that the specified image is already loaded as a DLL. |
0xC000019E STATUS_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING | Short name settings cannot be changed on this volume due to the global registry setting. |
0xC000019F STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME | Short names are not enabled on this volume. |
0xC00001A0 STATUS_SECURITY_STREAM_IS_INCONSISTENT | The security stream for the given volume is in an inconsistent state. Please run CHKDSK on the volume. |
0xC00001A1 STATUS_INVALID_LOCK_RANGE | A requested file lock operation cannot be processed due to an invalid byte range. |
0xC00001A2 STATUS_INVALID_ACE_CONDITION | The specified access control entry (ACE) contains an invalid condition. |
0xC00001A3 STATUS_IMAGE_SUBSYSTEM_NOT_PRESENT | The subsystem needed to support the image type is not present. |
0xC00001A4 STATUS_NOTIFICATION_GUID_ALREADY_DEFINED | The specified file already has a notification GUID associated with it. |
0xC0000201 STATUS_NETWORK_OPEN_RESTRICTION | A remote open failed because the network open restrictions were not satisfied. |
0xC0000202 STATUS_NO_USER_SESSION_KEY | There is no user session key for the specified logon session. |
0xC0000203 STATUS_USER_SESSION_DELETED | The remote user session has been deleted. |
0xC0000204 STATUS_RESOURCE_LANG_NOT_FOUND | Indicates the specified resource language ID cannot be found in the image file. |
0xC0000205 STATUS_INSUFF_SERVER_RESOURCES | Insufficient server resources exist to complete the request. |
0xC0000206 STATUS_INVALID_BUFFER_SIZE | The size of the buffer is invalid for the specified operation. |
0xC0000207 STATUS_INVALID_ADDRESS_COMPONENT | The transport rejected the specified network address as invalid. |
0xC0000208 STATUS_INVALID_ADDRESS_WILDCARD | The transport rejected the specified network address due to invalid use of a wildcard. |
0xC0000209 STATUS_TOO_MANY_ADDRESSES | The transport address could not be opened because all the available addresses are in use. |
0xC000020A STATUS_ADDRESS_ALREADY_EXISTS | The transport address could not be opened because it already exists. |
0xC000020B STATUS_ADDRESS_CLOSED | The transport address is now closed. |
0xC000020C STATUS_CONNECTION_DISCONNECTED | The transport connection is now disconnected. |
0xC000020D STATUS_CONNECTION_RESET | The transport connection has been reset. |
0xC000020E STATUS_TOO_MANY_NODES | The transport cannot dynamically acquire any more nodes. |
0xC000020F STATUS_TRANSACTION_ABORTED | The transport aborted a pending transaction. |
0xC0000210 STATUS_TRANSACTION_TIMED_OUT | The transport timed out a request that is waiting for a response. |
0xC0000211 STATUS_TRANSACTION_NO_RELEASE | The transport did not receive a release for a pending response. |
0xC0000212 STATUS_TRANSACTION_NO_MATCH | The transport did not find a transaction that matches the specific token. |
0xC0000213 STATUS_TRANSACTION_RESPONDED | The transport had previously responded to a transaction request. |
0xC0000214 STATUS_TRANSACTION_INVALID_ID | The transport does not recognize the specified transaction request ID. |
0xC0000215 STATUS_TRANSACTION_INVALID_TYPE | The transport does not recognize the specified transaction request type. |
0xC0000216 STATUS_NOT_SERVER_SESSION | The transport can only process the specified request on the server side of a session. |
0xC0000217 STATUS_NOT_CLIENT_SESSION | The transport can only process the specified request on the client side of a session. |
0xC0000218 STATUS_CANNOT_LOAD_REGISTRY_FILE | {Registry File Failure} The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable. |
0xC0000219 STATUS_DEBUG_ATTACH_FAILED | {Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request. Choosing OK will terminate the process, and choosing Cancel will ignore the error. |
0xC000021A STATUS_SYSTEM_PROCESS_TERMINATED | {Fatal System Error} The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). The system has been shut down. |
0xC000021B STATUS_DATA_NOT_ACCEPTED | {Data Not Accepted} The TDI client could not handle the data received during an indication. |
0xC000021C STATUS_NO_BROWSER_SERVERS_FOUND | {Unable to Retrieve Browser Server List} The list of servers for this workgroup is not currently available. |
0xC000021D STATUS_VDM_HARD_ERROR | NTVDM encountered a hard error. |
0xC000021E STATUS_DRIVER_CANCEL_TIMEOUT | {Cancel Timeout} The driver %hs failed to complete a canceled I/O request in the allotted time. |
0xC000021F STATUS_REPLY_MESSAGE_MISMATCH | {Reply Message Mismatch} An attempt was made to reply to an LPC message, but the thread specified by the client ID in the message was not waiting on that message. |
0xC0000220 STATUS_MAPPED_ALIGNMENT | {Mapped View Alignment Incorrect} An attempt was made to map a view of a file, but either the specified base address or the offset into the file were not aligned on the proper allocation granularity. |
0xC0000221 STATUS_IMAGE_CHECKSUM_MISMATCH | {Bad Image Checksum} The image %hs is possibly corrupt. The header checksum does not match the computed checksum. |
0xC0000222 STATUS_LOST_WRITEBEHIND_DATA | {Delayed Write Failed} Windows was unable to save all the data for the file %hs. The data has been lost. This error might be caused by a failure of your computer hardware or network connection. Try to save this file elsewhere. |
0xC0000223 STATUS_CLIENT_SERVER_PARAMETERS_INVALID | The parameters passed to the server in the client/server shared memory window were invalid. Too much data might have been put in the shared memory window. |
0xC0000224 STATUS_PASSWORD_MUST_CHANGE | The user password must be changed before logging on the first time. |
0xC0000225 STATUS_NOT_FOUND | The object was not found. |
0xC0000226 STATUS_NOT_TINY_STREAM | The stream is not a tiny stream. |
0xC0000227 STATUS_RECOVERY_FAILURE | A transaction recovery failed. |
0xC0000228 STATUS_STACK_OVERFLOW_READ | The request must be handled by the stack overflow code. |
0xC0000229 STATUS_FAIL_CHECK | A consistency check failed. |
0xC000022A STATUS_DUPLICATE_OBJECTID | The attempt to insert the ID in the index failed because the ID is already in the index. |
0xC000022B STATUS_OBJECTID_EXISTS | The attempt to set the object ID failed because the object already has an ID. |
0xC000022C STATUS_CONVERT_TO_LARGE | Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing oNode is moved or the extent stream is converted to a large stream. |
0xC000022D STATUS_RETRY | The request needs to be retried. |
0xC000022E STATUS_FOUND_OUT_OF_SCOPE | The attempt to find the object found an object on the volume that matches by ID; however, it is out of the scope of the handle that is used for the operation. |
0xC000022F STATUS_ALLOCATE_BUCKET | The bucket array must be grown. Retry the transaction after doing so. |
0xC0000230 STATUS_PROPSET_NOT_FOUND | The specified property set does not exist on the object. |
0xC0000231 STATUS_MARSHALL_OVERFLOW | The user/kernel marshaling buffer has overflowed. |
0xC0000232 STATUS_INVALID_VARIANT | The supplied variant structure contains invalid data. |
0xC0000233 STATUS_DOMAIN_CONTROLLER_NOT_FOUND | A domain controller for this domain was not found. |
0xC0000234 STATUS_ACCOUNT_LOCKED_OUT | The user account has been automatically locked because too many invalid logon attempts or password change attempts have been requested. |
0xC0000235 STATUS_HANDLE_NOT_CLOSABLE | NtClose was called on a handle that was protected from close via NtSetInformationObject. |
0xC0000236 STATUS_CONNECTION_REFUSED | The transport-connection attempt was refused by the remote system. |
0xC0000237 STATUS_GRACEFUL_DISCONNECT | The transport connection was gracefully closed. |
0xC0000238 STATUS_ADDRESS_ALREADY_ASSOCIATED | The transport endpoint already has an address associated with it. |
0xC0000239 STATUS_ADDRESS_NOT_ASSOCIATED | An address has not yet been associated with the transport endpoint. |
0xC000023A STATUS_CONNECTION_INVALID | An operation was attempted on a nonexistent transport connection. |
0xC000023B STATUS_CONNECTION_ACTIVE | An invalid operation was attempted on an active transport connection. |
0xC000023C STATUS_NETWORK_UNREACHABLE | The remote network is not reachable by the transport. |
0xC000023D STATUS_HOST_UNREACHABLE | The remote system is not reachable by the transport. |
0xC000023E STATUS_PROTOCOL_UNREACHABLE | The remote system does not support the transport protocol. |
0xC000023F STATUS_PORT_UNREACHABLE | No service is operating at the destination port of the transport on the remote system. |
0xC0000240 STATUS_REQUEST_ABORTED | The request was aborted. |
0xC0000241 STATUS_CONNECTION_ABORTED | The transport connection was aborted by the local system. |
0xC0000242 STATUS_BAD_COMPRESSION_BUFFER | The specified buffer contains ill-formed data. |
0xC0000243 STATUS_USER_MAPPED_FILE | The requested operation cannot be performed on a file with a user mapped section open. |
0xC0000244 STATUS_AUDIT_FAILED | {Audit Failed} An attempt to generate a security audit failed. |
0xC0000245 STATUS_TIMER_RESOLUTION_NOT_SET | The timer resolution was not previously set by the current process. |
0xC0000246 STATUS_CONNECTION_COUNT_LIMIT | A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached. |
0xC0000247 STATUS_LOGIN_TIME_RESTRICTION | Attempting to log on during an unauthorized time of day for this account. |
0xC0000248 STATUS_LOGIN_WKSTA_RESTRICTION | The account is not authorized to log on from this station. |
0xC0000249 STATUS_IMAGE_MP_UP_MISMATCH | {UP/MP Image Mismatch} The image %hs has been modified for use on a uniprocessor system, but you are running it on a multiprocessor machine. Reinstall the image file. |
0xC0000250 STATUS_INSUFFICIENT_LOGON_INFO | There is insufficient account information to log you on. |
0xC0000251 STATUS_BAD_DLL_ENTRYPOINT | {Invalid DLL Entrypoint} The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entry point should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO might cause the application to operate incorrectly. |
0xC0000252 STATUS_BAD_SERVICE_ENTRYPOINT | {Invalid Service Callback Entrypoint} The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entry point should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process might operate incorrectly. |
0xC0000253 STATUS_LPC_REPLY_LOST | The server received the messages but did not send a reply. |
0xC0000254 STATUS_IP_ADDRESS_CONFLICT1 | There is an IP address conflict with another system on the network. |
0xC0000255 STATUS_IP_ADDRESS_CONFLICT2 | There is an IP address conflict with another system on the network. |
0xC0000256 STATUS_REGISTRY_QUOTA_LIMIT | {Low On Registry Space} The system has reached the maximum size that is allowed for the system part of the registry. Additional storage requests will be ignored. |
0xC0000257 STATUS_PATH_NOT_COVERED | The contacted server does not support the indicated part of the DFS namespace. |
0xC0000258 STATUS_NO_CALLBACK_ACTIVE | A callback return system service cannot be executed when no callback is active. |
0xC0000259 STATUS_LICENSE_QUOTA_EXCEEDED | The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because the service has already accepted the maximum number of connections. |
0xC000025A STATUS_PWD_TOO_SHORT | The password provided is too short to meet the policy of your user account. Choose a longer password. |
0xC000025B STATUS_PWD_TOO_RECENT | The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar, but potentially discovered, password. If you feel your password has been compromised, contact your administrator immediately to have a new one assigned. |
0xC000025C STATUS_PWD_HISTORY_CONFLICT | You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Select a password that you have not previously used. |
0xC000025E STATUS_PLUGPLAY_NO_DEVICE | You have attempted to load a legacy device driver while its device instance had been disabled. |
0xC000025F STATUS_UNSUPPORTED_COMPRESSION | The specified compression format is unsupported. |
0xC0000260 STATUS_INVALID_HW_PROFILE | The specified hardware profile configuration is invalid. |
0xC0000261 STATUS_INVALID_PLUGPLAY_DEVICE_PATH | The specified Plug and Play registry device path is invalid. |
0xC0000262 STATUS_DRIVER_ORDINAL_NOT_FOUND | {Driver Entry Point Not Found} The %hs device driver could not locate the ordinal %ld in driver %hs. |
0xC0000263 STATUS_DRIVER_ENTRYPOINT_NOT_FOUND | {Driver Entry Point Not Found} The %hs device driver could not locate the entry point %hs in driver %hs. |
0xC0000264 STATUS_RESOURCE_NOT_OWNED | {Application Error} The application attempted to release a resource it did not own. Click OK to terminate the application. |
0xC0000265 STATUS_TOO_MANY_LINKS | An attempt was made to create more links on a file than the file system supports. |
0xC0000266 STATUS_QUOTA_LIST_INCONSISTENT | The specified quota list is internally inconsistent with its descriptor. |
0xC0000267 STATUS_FILE_IS_OFFLINE | The specified file has been relocated to offline storage. |
0xC0000268 STATUS_EVALUATION_EXPIRATION | {Windows Evaluation Notification} The evaluation period for this installation of Windows has expired. This system will shutdown in 1 hour. To restore access to this installation of Windows, upgrade this installation by using a licensed distribution of this product. |
0xC0000269 STATUS_ILLEGAL_DLL_RELOCATION | {Illegal System DLL Relocation} The system DLL %hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL %hs occupied an address range that is reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL. |
0xC000026A STATUS_LICENSE_VIOLATION | {License Violation} The system has detected tampering with your registered product type. This is a violation of your software license. Tampering with the product type is not permitted. |
0xC000026B STATUS_DLL_INIT_FAILED_LOGOFF | {DLL Initialization Failed} The application failed to initialize because the window station is shutting down. |
0xC000026C STATUS_DRIVER_UNABLE_TO_LOAD | {Unable to Load Device Driver} %hs device driver could not be loaded. Error Status was 0x%x. |
0xC000026D STATUS_DFS_UNAVAILABLE | DFS is unavailable on the contacted server. |
0xC000026E STATUS_VOLUME_DISMOUNTED | An operation was attempted to a volume after it was dismounted. |
0xC000026F STATUS_WX86_INTERNAL_ERROR | An internal error occurred in the Win32 x86 emulation subsystem. |
0xC0000270 STATUS_WX86_FLOAT_STACK_CHECK | Win32 x86 emulation subsystem floating-point stack check. |
0xC0000271 STATUS_VALIDATE_CONTINUE | The validation process needs to continue on to the next step. |
0xC0000272 STATUS_NO_MATCH | There was no match for the specified key in the index. |
0xC0000273 STATUS_NO_MORE_MATCHES | There are no more matches for the current index enumeration. |
0xC0000275 STATUS_NOT_A_REPARSE_POINT | The NTFS file or directory is not a reparse point. |
0xC0000276 STATUS_IO_REPARSE_TAG_INVALID | The Windows I/O reparse tag passed for the NTFS reparse point is invalid. |
0xC0000277 STATUS_IO_REPARSE_TAG_MISMATCH | The Windows I/O reparse tag does not match the one that is in the NTFS reparse point. |
0xC0000278 STATUS_IO_REPARSE_DATA_INVALID | The user data passed for the NTFS reparse point is invalid. |
0xC0000279 STATUS_IO_REPARSE_TAG_NOT_HANDLED | The layered file system driver for this I/O tag did not handle it when needed. |
0xC0000280 STATUS_REPARSE_POINT_NOT_RESOLVED | The NTFS symbolic link could not be resolved even though the initial file name is valid. |
0xC0000281 STATUS_DIRECTORY_IS_A_REPARSE_POINT | The NTFS directory is a reparse point. |
0xC0000282 STATUS_RANGE_LIST_CONFLICT | The range could not be added to the range list because of a conflict. |
0xC0000283 STATUS_SOURCE_ELEMENT_EMPTY | The specified medium changer source element contains no media. |
0xC0000284 STATUS_DESTINATION_ELEMENT_FULL | The specified medium changer destination element already contains media. |
0xC0000285 STATUS_ILLEGAL_ELEMENT_ADDRESS | The specified medium changer element does not exist. |
0xC0000286 STATUS_MAGAZINE_NOT_PRESENT | The specified element is contained in a magazine that is no longer present. |
0xC0000287 STATUS_REINITIALIZATION_NEEDED | The device requires re-initialization due to hardware errors. |
0xC000028A STATUS_ENCRYPTION_FAILED | The file encryption attempt failed. |
0xC000028B STATUS_DECRYPTION_FAILED | The file decryption attempt failed. |
0xC000028C STATUS_RANGE_NOT_FOUND | The specified range could not be found in the range list. |
0xC000028D STATUS_NO_RECOVERY_POLICY | There is no encryption recovery policy configured for this system. |
0xC000028E STATUS_NO_EFS | The required encryption driver is not loaded for this system. |
0xC000028F STATUS_WRONG_EFS | The file was encrypted with a different encryption driver than is currently loaded. |
0xC0000290 STATUS_NO_USER_KEYS | There are no EFS keys defined for the user. |
0xC0000291 STATUS_FILE_NOT_ENCRYPTED | The specified file is not encrypted. |
0xC0000292 STATUS_NOT_EXPORT_FORMAT | The specified file is not in the defined EFS export format. |
0xC0000293 STATUS_FILE_ENCRYPTED | The specified file is encrypted and the user does not have the ability to decrypt it. |
0xC0000295 STATUS_WMI_GUID_NOT_FOUND | The GUID passed was not recognized as valid by a WMI data provider. |
0xC0000296 STATUS_WMI_INSTANCE_NOT_FOUND | The instance name passed was not recognized as valid by a WMI data provider. |
0xC0000297 STATUS_WMI_ITEMID_NOT_FOUND | The data item ID passed was not recognized as valid by a WMI data provider. |
0xC0000298 STATUS_WMI_TRY_AGAIN | The WMI request could not be completed and should be retried. |
0xC0000299 STATUS_SHARED_POLICY | The policy object is shared and can only be modified at the root. |
0xC000029A STATUS_POLICY_OBJECT_NOT_FOUND | The policy object does not exist when it should. |
0xC000029B STATUS_POLICY_ONLY_IN_DS | The requested policy information only lives in the Ds. |
0xC000029C STATUS_VOLUME_NOT_UPGRADED | The volume must be upgraded to enable this feature. |
0xC000029D STATUS_REMOTE_STORAGE_NOT_ACTIVE | The remote storage service is not operational at this time. |
0xC000029E STATUS_REMOTE_STORAGE_MEDIA_ERROR | The remote storage service encountered a media error. |
0xC000029F STATUS_NO_TRACKING_SERVICE | The tracking (workstation) service is not running. |
0xC00002A0 STATUS_SERVER_SID_MISMATCH | The server process is running under a SID that is different from the SID that is required by client. |
0xC00002A1 STATUS_DS_NO_ATTRIBUTE_OR_VALUE | The specified directory service attribute or value does not exist. |
0xC00002A2 STATUS_DS_INVALID_ATTRIBUTE_SYNTAX | The attribute syntax specified to the directory service is invalid. |
0xC00002A3 STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED | The attribute type specified to the directory service is not defined. |
0xC00002A4 STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS | The specified directory service attribute or value already exists. |
0xC00002A5 STATUS_DS_BUSY | The directory service is busy. |
0xC00002A6 STATUS_DS_UNAVAILABLE | The directory service is unavailable. |
0xC00002A7 STATUS_DS_NO_RIDS_ALLOCATED | The directory service was unable to allocate a relative identifier. |
0xC00002A8 STATUS_DS_NO_MORE_RIDS | The directory service has exhausted the pool of relative identifiers. |
0xC00002A9 STATUS_DS_INCORRECT_ROLE_OWNER | The requested operation could not be performed because the directory service is not the master for that type of operation. |
0xC00002AA STATUS_DS_RIDMGR_INIT_ERROR | The directory service was unable to initialize the subsystem that allocates relative identifiers. |
0xC00002AB STATUS_DS_OBJ_CLASS_VIOLATION | The requested operation did not satisfy one or more constraints that are associated with the class of the object. |
0xC00002AC STATUS_DS_CANT_ON_NON_LEAF | The directory service can perform the requested operation only on a leaf object. |
0xC00002AD STATUS_DS_CANT_ON_RDN | The directory service cannot perform the requested operation on the Relatively Defined Name (RDN) attribute of an object. |
0xC00002AE STATUS_DS_CANT_MOD_OBJ_CLASS | The directory service detected an attempt to modify the object class of an object. |
0xC00002AF STATUS_DS_CROSS_DOM_MOVE_FAILED | An error occurred while performing a cross domain move operation. |
0xC00002B0 STATUS_DS_GC_NOT_AVAILABLE | Unable to contact the global catalog server. |
0xC00002B1 STATUS_DIRECTORY_SERVICE_REQUIRED | The requested operation requires a directory service, and none was available. |
0xC00002B2 STATUS_REPARSE_ATTRIBUTE_CONFLICT | The reparse attribute cannot be set because it is incompatible with an existing attribute. |
0xC00002B3 STATUS_CANT_ENABLE_DENY_ONLY | A group marked "use for deny only" cannot be enabled. |
0xC00002B4 STATUS_FLOAT_MULTIPLE_FAULTS | {EXCEPTION} Multiple floating-point faults. |
0xC00002B5 STATUS_FLOAT_MULTIPLE_TRAPS | {EXCEPTION} Multiple floating-point traps. |
0xC00002B6 STATUS_DEVICE_REMOVED | The device has been removed. |
0xC00002B7 STATUS_JOURNAL_DELETE_IN_PROGRESS | The volume change journal is being deleted. |
0xC00002B8 STATUS_JOURNAL_NOT_ACTIVE | The volume change journal is not active. |
0xC00002B9 STATUS_NOINTERFACE | The requested interface is not supported. |
0xC00002C1 STATUS_DS_ADMIN_LIMIT_EXCEEDED | A directory service resource limit has been exceeded. |
0xC00002C2 STATUS_DRIVER_FAILED_SLEEP | {System Standby Failed} The driver %hs does not support standby mode. Updating this driver allows the system to go to standby mode. |
0xC00002C3 STATUS_MUTUAL_AUTHENTICATION_FAILED | Mutual Authentication failed. The server password is out of date at the domain controller. |
0xC00002C4 STATUS_CORRUPT_SYSTEM_FILE | The system file %1 has become corrupt and has been replaced. |
0xC00002C5 STATUS_DATATYPE_MISALIGNMENT_ERROR | {EXCEPTION} Alignment Error A data type misalignment error was detected in a load or store instruction. |
0xC00002C6 STATUS_WMI_READ_ONLY | The WMI data item or data block is read-only. |
0xC00002C7 STATUS_WMI_SET_FAILURE | The WMI data item or data block could not be changed. |
0xC00002C8 STATUS_COMMITMENT_MINIMUM | {Virtual Memory Minimum Too Low} Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process, memory requests for some applications might be denied. For more information, see Help. |
0xC00002C9 STATUS_REG_NAT_CONSUMPTION | {EXCEPTION} Register NaT consumption faults. A NaT value is consumed on a non-speculative instruction. |
0xC00002CA STATUS_TRANSPORT_FULL | The transport element of the medium changer contains media, which is causing the operation to fail. |
0xC00002CB STATUS_DS_SAM_INIT_FAILURE | Security Accounts Manager initialization failed because of the following error: %hs Error Status: 0x%x. Click OK to shut down this system and restart in Directory Services Restore Mode. Check the event log for more detailed information. |
0xC00002CC STATUS_ONLY_IF_CONNECTED | This operation is supported only when you are connected to the server. |
0xC00002CD STATUS_DS_SENSITIVE_GROUP_VIOLATION | Only an administrator can modify the membership list of an administrative group. |
0xC00002CE STATUS_PNP_RESTART_ENUMERATION | A device was removed so enumeration must be restarted. |
0xC00002CF STATUS_JOURNAL_ENTRY_DELETED | The journal entry has been deleted from the journal. |
0xC00002D0 STATUS_DS_CANT_MOD_PRIMARYGROUPID | Cannot change the primary group ID of a domain controller account. |
0xC00002D1 STATUS_SYSTEM_IMAGE_BAD_SIGNATURE | {Fatal System Error} The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down. |
0xC00002D2 STATUS_PNP_REBOOT_REQUIRED | The device will not start without a reboot. |
0xC00002D3 STATUS_POWER_STATE_INVALID | The power state of the current device cannot support this request. |
0xC00002D4 STATUS_DS_INVALID_GROUP_TYPE | The specified group type is invalid. |
0xC00002D5 STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN | In a mixed domain, no nesting of a global group if the group is security enabled. |
0xC00002D6 STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN | In a mixed domain, cannot nest local groups with other local groups, if the group is security enabled. |
0xC00002D7 STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER | A global group cannot have a local group as a member. |
0xC00002D8 STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER | A global group cannot have a universal group as a member. |
0xC00002D9 STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER | A universal group cannot have a local group as a member. |
0xC00002DA STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER | A global group cannot have a cross-domain member. |
0xC00002DB STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER | A local group cannot have another cross-domain local group as a member. |
0xC00002DC STATUS_DS_HAVE_PRIMARY_MEMBERS | Cannot change to a security-disabled group because primary members are in this group. |
0xC00002DD STATUS_WMI_NOT_SUPPORTED | The WMI operation is not supported by the data block or method. |
0xC00002DE STATUS_INSUFFICIENT_POWER | There is not enough power to complete the requested operation. |
0xC00002DF STATUS_SAM_NEED_BOOTKEY_PASSWORD | The Security Accounts Manager needs to get the boot password. |
0xC00002E0 STATUS_SAM_NEED_BOOTKEY_FLOPPY | The Security Accounts Manager needs to get the boot key from the floppy disk. |
0xC00002E1 STATUS_DS_CANT_START | The directory service cannot start. |
0xC00002E2 STATUS_DS_INIT_FAILURE | The directory service could not start because of the following error: %hs Error Status: 0x%x. Click OK to shut down this system and restart in Directory Services Restore Mode. Check the event log for more detailed information. |
0xC00002E3 STATUS_SAM_INIT_FAILURE | The Security Accounts Manager initialization failed because of the following error: %hs Error Status: 0x%x. Click OK to shut down this system and restart in Safe Mode. Check the event log for more detailed information. |
0xC00002E4 STATUS_DS_GC_REQUIRED | The requested operation can be performed only on a global catalog server. |
0xC00002E5 STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY | A local group can only be a member of other local groups in the same domain. |
0xC00002E6 STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS | Foreign security principals cannot be members of universal groups. |
0xC00002E7 STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED | Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased. |
0xC00002E9 STATUS_CURRENT_DOMAIN_NOT_ALLOWED | This operation cannot be performed on the current domain. |
0xC00002EA STATUS_CANNOT_MAKE | The directory or file cannot be created. |
0xC00002EB STATUS_SYSTEM_SHUTDOWN | The system is in the process of shutting down. |
0xC00002EC STATUS_DS_INIT_FAILURE_CONSOLE | Directory Services could not start because of the following error: %hs Error Status: 0x%x. Click OK to shut down the system. You can use the recovery console to diagnose the system further. |
0xC00002ED STATUS_DS_SAM_INIT_FAILURE_CONSOLE | Security Accounts Manager initialization failed because of the following error: %hs Error Status: 0x%x. Click OK to shut down the system. You can use the recovery console to diagnose the system further. |
0xC00002EE STATUS_UNFINISHED_CONTEXT_DELETED | A security context was deleted before the context was completed. This is considered a logon failure. |
0xC00002EF STATUS_NO_TGT_REPLY | The client is trying to negotiate a context and the server requires user-to-user but did not send a TGT reply. |
0xC00002F0 STATUS_OBJECTID_NOT_FOUND | An object ID was not found in the file. |
0xC00002F1 STATUS_NO_IP_ADDRESSES | Unable to accomplish the requested task because the local machine does not have any IP addresses. |
0xC00002F2 STATUS_WRONG_CREDENTIAL_HANDLE | The supplied credential handle does not match the credential that is associated with the security context. |
0xC00002F3 STATUS_CRYPTO_SYSTEM_INVALID | The crypto system or checksum function is invalid because a required function is unavailable. |
0xC00002F4 STATUS_MAX_REFERRALS_EXCEEDED | The number of maximum ticket referrals has been exceeded. |
0xC00002F5 STATUS_MUST_BE_KDC | The local machine must be a Kerberos KDC (domain controller) and it is not. |
0xC00002F6 STATUS_STRONG_CRYPTO_NOT_SUPPORTED | The other end of the security negotiation requires strong crypto but it is not supported on the local machine. |
0xC00002F7 STATUS_TOO_MANY_PRINCIPALS | The KDC reply contained more than one principal name. |
0xC00002F8 STATUS_NO_PA_DATA | Expected to find PA data for a hint of what etype to use, but it was not found. |
0xC00002F9 STATUS_PKINIT_NAME_MISMATCH | The client certificate does not contain a valid UPN, or does not match the client name in the logon request. Contact your administrator. |
0xC00002FA STATUS_SMARTCARD_LOGON_REQUIRED | Smart card logon is required and was not used. |
0xC00002FB STATUS_KDC_INVALID_REQUEST | An invalid request was sent to the KDC. |
0xC00002FC STATUS_KDC_UNABLE_TO_REFER | The KDC was unable to generate a referral for the service requested. |
0xC00002FD STATUS_KDC_UNKNOWN_ETYPE | The encryption type requested is not supported by the KDC. |
0xC00002FE STATUS_SHUTDOWN_IN_PROGRESS | A system shutdown is in progress. |
0xC00002FF STATUS_SERVER_SHUTDOWN_IN_PROGRESS | The server machine is shutting down. |
0xC0000300 STATUS_NOT_SUPPORTED_ON_SBS | This operation is not supported on a computer running Windows Server 2003 operating system for Small Business Server. |
0xC0000301 STATUS_WMI_GUID_DISCONNECTED | The WMI GUID is no longer available. |
0xC0000302 STATUS_WMI_ALREADY_DISABLED | Collection or events for the WMI GUID is already disabled. |
0xC0000303 STATUS_WMI_ALREADY_ENABLED | Collection or events for the WMI GUID is already enabled. |
0xC0000304 STATUS_MFT_TOO_FRAGMENTED | The master file table on the volume is too fragmented to complete this operation. |
0xC0000305 STATUS_COPY_PROTECTION_FAILURE | Copy protection failure. |
0xC0000306 STATUS_CSS_AUTHENTICATION_FAILURE | Copy protection error—DVD CSS Authentication failed. |
0xC0000307 STATUS_CSS_KEY_NOT_PRESENT | Copy protection error—The specified sector does not contain a valid key. |
0xC0000308 STATUS_CSS_KEY_NOT_ESTABLISHED | Copy protection error—DVD session key not established. |
0xC0000309 STATUS_CSS_SCRAMBLED_SECTOR | Copy protection error—The read failed because the sector is encrypted. |
0xC000030A STATUS_CSS_REGION_MISMATCH | Copy protection error—The region of the specified DVD does not correspond to the region setting of the drive. |
0xC000030B STATUS_CSS_RESETS_EXHAUSTED | Copy protection error—The region setting of the drive might be permanent. |
0xC0000320 STATUS_PKINIT_FAILURE | The Kerberos protocol encountered an error while validating the KDC certificate during smart card logon. There is more information in the system event log. |
0xC0000321 STATUS_SMARTCARD_SUBSYSTEM_FAILURE | The Kerberos protocol encountered an error while attempting to use the smart card subsystem. |
0xC0000322 STATUS_NO_KERB_KEY | The target server does not have acceptable Kerberos credentials. |
0xC0000350 STATUS_HOST_DOWN | The transport determined that the remote system is down. |
0xC0000351 STATUS_UNSUPPORTED_PREAUTH | An unsupported pre-authentication mechanism was presented to the Kerberos package. |
0xC0000352 STATUS_EFS_ALG_BLOB_TOO_BIG | The encryption algorithm that is used on the source file needs a bigger key buffer than the one that is used on the destination file. |
0xC0000353 STATUS_PORT_NOT_SET | An attempt to remove a processes DebugPort was made, but a port was not already associated with the process. |
0xC0000354 STATUS_DEBUGGER_INACTIVE | An attempt to do an operation on a debug port failed because the port is in the process of being deleted. |
0xC0000355 STATUS_DS_VERSION_CHECK_FAILURE | This version of Windows is not compatible with the behavior version of the directory forest, domain, or domain controller. |
0xC0000356 STATUS_AUDITING_DISABLED | The specified event is currently not being audited. |
0xC0000357 STATUS_PRENT4_MACHINE_ACCOUNT | The machine account was created prior to Windows NT 4.0 operating system. The account needs to be recreated. |
0xC0000358 STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER | An account group cannot have a universal group as a member. |
0xC0000359 STATUS_INVALID_IMAGE_WIN_32 | The specified image file did not have the correct format; it appears to be a 32-bit Windows image. |
0xC000035A STATUS_INVALID_IMAGE_WIN_64 | The specified image file did not have the correct format; it appears to be a 64-bit Windows image. |
0xC000035B STATUS_BAD_BINDINGS | The client's supplied SSPI channel bindings were incorrect. |
0xC000035C STATUS_NETWORK_SESSION_EXPIRED | The client session has expired; so the client must re-authenticate to continue accessing the remote resources. |
0xC000035D STATUS_APPHELP_BLOCK | The AppHelp dialog box canceled; thus preventing the application from starting. |
0xC000035E STATUS_ALL_SIDS_FILTERED | The SID filtering operation removed all SIDs. |
0xC000035F STATUS_NOT_SAFE_MODE_DRIVER | The driver was not loaded because the system is starting in safe mode. |
0xC0000361 STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT | Access to %1 has been restricted by your Administrator by the default software restriction policy level. |
0xC0000362 STATUS_ACCESS_DISABLED_BY_POLICY_PATH | Access to %1 has been restricted by your Administrator by location with policy rule %2 placed on path %3. |
0xC0000363 STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER | Access to %1 has been restricted by your Administrator by software publisher policy. |
0xC0000364 STATUS_ACCESS_DISABLED_BY_POLICY_OTHER | Access to %1 has been restricted by your Administrator by policy rule %2. |
0xC0000365 STATUS_FAILED_DRIVER_ENTRY | The driver was not loaded because it failed its initialization call. |
0xC0000366 STATUS_DEVICE_ENUMERATION_ERROR | The device encountered an error while applying power or reading the device configuration. This might be caused by a failure of your hardware or by a poor connection. |
0xC0000368 STATUS_MOUNT_POINT_NOT_RESOLVED | The create operation failed because the name contained at least one mount point that resolves to a volume to which the specified device object is not attached. |
0xC0000369 STATUS_INVALID_DEVICE_OBJECT_PARAMETER | The device object parameter is either not a valid device object or is not attached to the volume that is specified by the file name. |
0xC000036A STATUS_MCA_OCCURED | A machine check error has occurred. Check the system event log for additional information. |
0xC000036B STATUS_DRIVER_BLOCKED_CRITICAL | Driver %2 has been blocked from loading. |
0xC000036C STATUS_DRIVER_BLOCKED | Driver %2 has been blocked from loading. |
0xC000036D STATUS_DRIVER_DATABASE_ERROR | There was error [%2] processing the driver database. |
0xC000036E STATUS_SYSTEM_HIVE_TOO_LARGE | System hive size has exceeded its limit. |
0xC000036F STATUS_INVALID_IMPORT_OF_NON_DLL | A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image. |
0xC0000371 STATUS_NO_SECRETS | The local account store does not contain secret material for the specified account. |
0xC0000372 STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY | Access to %1 has been restricted by your Administrator by policy rule %2. |
0xC0000373 STATUS_FAILED_STACK_SWITCH | The system was not able to allocate enough memory to perform a stack switch. |
0xC0000374 STATUS_HEAP_CORRUPTION | A heap has been corrupted. |
0xC0000380 STATUS_SMARTCARD_WRONG_PIN | An incorrect PIN was presented to the smart card. |
0xC0000381 STATUS_SMARTCARD_CARD_BLOCKED | The smart card is blocked. |
0xC0000382 STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED | No PIN was presented to the smart card. |
0xC0000383 STATUS_SMARTCARD_NO_CARD | No smart card is available. |
0xC0000384 STATUS_SMARTCARD_NO_KEY_CONTAINER | The requested key container does not exist on the smart card. |
0xC0000385 STATUS_SMARTCARD_NO_CERTIFICATE | The requested certificate does not exist on the smart card. |
0xC0000386 STATUS_SMARTCARD_NO_KEYSET | The requested keyset does not exist. |
0xC0000387 STATUS_SMARTCARD_IO_ERROR | A communication error with the smart card has been detected. |
0xC0000388 STATUS_DOWNGRADE_DETECTED | The system detected a possible attempt to compromise security. Ensure that you can contact the server that authenticated you. |
0xC0000389 STATUS_SMARTCARD_CERT_REVOKED | The smart card certificate used for authentication has been revoked. Contact your system administrator. There might be additional information in the event log. |
0xC000038A STATUS_ISSUING_CA_UNTRUSTED | An untrusted certificate authority was detected while processing the smart card certificate that is used for authentication. Contact your system administrator. |
0xC000038B STATUS_REVOCATION_OFFLINE_C | The revocation status of the smart card certificate that is used for authentication could not be determined. Contact your system administrator. |
0xC000038C STATUS_PKINIT_CLIENT_FAILURE | The smart card certificate used for authentication was not trusted. Contact your system administrator. |
0xC000038D STATUS_SMARTCARD_CERT_EXPIRED | The smart card certificate used for authentication has expired. Contact your system administrator. |
0xC000038E STATUS_DRIVER_FAILED_PRIOR_UNLOAD | The driver could not be loaded because a previous version of the driver is still in memory. |
0xC000038F STATUS_SMARTCARD_SILENT_CONTEXT | The smart card provider could not perform the action because the context was acquired as silent. |
0xC0000401 STATUS_PER_USER_TRUST_QUOTA_EXCEEDED | The delegated trust creation quota of the current user has been exceeded. |
0xC0000402 STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED | The total delegated trust creation quota has been exceeded. |
0xC0000403 STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED | The delegated trust deletion quota of the current user has been exceeded. |
0xC0000404 STATUS_DS_NAME_NOT_UNIQUE | The requested name already exists as a unique identifier. |
0xC0000405 STATUS_DS_DUPLICATE_ID_FOUND | The requested object has a non-unique identifier and cannot be retrieved. |
0xC0000406 STATUS_DS_GROUP_CONVERSION_ERROR | The group cannot be converted due to attribute restrictions on the requested group type. |
0xC0000407 STATUS_VOLSNAP_PREPARE_HIBERNATE | {Volume Shadow Copy Service} Wait while the Volume Shadow Copy Service prepares volume %hs for hibernation. |
0xC0000408 STATUS_USER2USER_REQUIRED | Kerberos sub-protocol User2User is required. |
0xC0000409 STATUS_STACK_BUFFER_OVERRUN | The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application. |
0xC000040A STATUS_NO_S4U_PROT_SUPPORT | The Kerberos subsystem encountered an error. A service for user protocol request was made against a domain controller which does not support service for user. |
0xC000040B STATUS_CROSSREALM_DELEGATION_FAILURE | An attempt was made by this server to make a Kerberos constrained delegation request for a target that is outside the server realm. This action is not supported and the resulting error indicates a misconfiguration on the allowed-to-delegate-to list for this server. Contact your administrator. |
0xC000040C STATUS_REVOCATION_OFFLINE_KDC | The revocation status of the domain controller certificate used for smart card authentication could not be determined. There is additional information in the system event log. Contact your system administrator. |
0xC000040D STATUS_ISSUING_CA_UNTRUSTED_KDC | An untrusted certificate authority was detected while processing the domain controller certificate used for authentication. There is additional information in the system event log. Contact your system administrator. |
0xC000040E STATUS_KDC_CERT_EXPIRED | The domain controller certificate used for smart card logon has expired. Contact your system administrator with the contents of your system event log. |
0xC000040F STATUS_KDC_CERT_REVOKED | The domain controller certificate used for smart card logon has been revoked. Contact your system administrator with the contents of your system event log. |
[MS-ERREF]: NTSTATUS Values
* END1 *
END PART 1 - NTSTATUSEXCEPTIONCODES - EXCEPTIONCODESNTSTATUS
Attachments
Last edited: