您的位置:首页 > 其它

[转]GetLastError()

2017-12-28 14:30 211 查看
摘自 :http://blog.sina.com.cn/s/blog_6e521a600100mz0y.html

Microsoft的Visual Studio C++处理中,有个API叫做 GetLastError(),此API通常用来给程序员指明最后的出错代码是什么,然后通过此出错代码到MSDN上可以查到相关的信息,Microsoft把这些信息叫做"System Error Codes",2010版的MSDN中有10张表格,包含了0到15999的出错代码对应的信息,相当的方便。

下面是摘录的一部分,窥一下吧。

Constant/valueDescription
ERROR_SUCCESS0 (0x0)The operation completed successfully.

ERROR_INVALID_FUNCTION1 (0x1)Incorrect function.

ERROR_FILE_NOT_FOUND2 (0x2)The system cannot find the file specified.

ERROR_PATH_NOT_FOUND3 (0x3)The system cannot find the path specified.

ERROR_TOO_MANY_OPEN_FILES4 (0x4)The system cannot open the file.

ERROR_ACCESS_DENIED5 (0x5)Access is denied.

ERROR_INVALID_HANDLE6 (0x6)The handle is invalid.

ERROR_ARENA_TRASHED7 (0x7)The storage control blocks were destroyed.

ERROR_NOT_ENOUGH_MEMORY8 (0x8)Not enough storage is available to process this command.

ERROR_INVALID_BLOCK9 (0x9)The storage control block address is invalid.

ERROR_BAD_ENVIRONMENT10 (0xA)The environment is incorrect.

ERROR_BAD_FORMAT11 (0xB)An attempt was made to load a program with an incorrect format.

ERROR_INVALID_ACCESS12 (0xC)The access code is invalid.

ERROR_INVALID_DATA13 (0xD)The data is invalid.

ERROR_OUTOFMEMORY14 (0xE)Not enough storage is available to complete this operation.

ERROR_INVALID_DRIVE15 (0xF)The system cannot find the drive specified.

ERROR_CURRENT_DIRECTORY16 (0x10)The directory cannot be removed.

ERROR_NOT_SAME_DEVICE17 (0x11)The system cannot move the file to a different disk drive.

ERROR_NO_MORE_FILES18 (0x12)There are no more files.

ERROR_WRITE_PROTECT19 (0x13)The media is write protected.

ERROR_BAD_UNIT20 (0x14)The system cannot find the device specified.

ERROR_NOT_READY21 (0x15)The device is not ready.

ERROR_BAD_COMMAND22 (0x16)The device does not recognize the command.

ERROR_CRC23 (0x17)Data error (cyclic redundancy check).

ERROR_BAD_LENGTH24 (0x18)The program issued a command but the command length is incorrect.

ERROR_SEEK25 (0x19)The drive cannot locate a specific area or track on the disk.

ERROR_NOT_DOS_DISK26 (0x1A)The specified disk or diskette cannot be accessed.

ERROR_SECTOR_NOT_FOUND27 (0x1B)The drive cannot find the sector requested.

ERROR_OUT_OF_PAPER28 (0x1C)The printer is out of paper.

ERROR_WRITE_FAULT29 (0x1D)The system cannot write to the specified device.

ERROR_READ_FAULT30 (0x1E)The system cannot read from the specified device.

ERROR_GEN_FAILURE31 (0x1F)A device attached to the system is not functioning.

ERROR_SHARING_VIOLATION32 (0x20)The process cannot access the file because it is being used by another process.

ERROR_LOCK_VIOLATION33 (0x21)The process cannot access the file because another process has locked a portion of the file.

ERROR_WRONG_DISK34 (0x22)The wrong diskette is in the drive. Insert %2 (Volume Serial Number: %3) into drive %1.

ERROR_SHARING_BUFFER_EXCEEDED36 (0x24)Too many files opened for sharing.

ERROR_HANDLE_EOF38 (0x26)Reached the end of the file.

ERROR_HANDLE_DISK_FULL39 (0x27)The disk is full.

ERROR_NOT_SUPPORTED50 (0x32)The request is not supported.

ERROR_REM_NOT_LIST51 (0x33)Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator.

ERROR_DUP_NAME52 (0x34)You were not connected because a duplicate name exists on the network. If joining a domain, go to System in Control Panel to change the computer name and try again. If joining a workgroup, choose another workgroup name.

ERROR_BAD_NETPATH53 (0x35)The network path was not found.

ERROR_NETWORK_BUSY54 (0x36)The network is busy.

ERROR_DEV_NOT_EXIST55 (0x37)The specified network resource or device is no longer available.

ERROR_TOO_MANY_CMDS56 (0x38)The network BIOS command limit has been reached.

ERROR_ADAP_HDW_ERR57 (0x39)A network adapter hardware error occurred.

ERROR_BAD_NET_RESP58 (0x3A)The specified server cannot perform the requested operation.

ERROR_UNEXP_NET_ERR59 (0x3B)An unexpected network error occurred.

ERROR_BAD_REM_ADAP60 (0x3C)The remote adapter is not compatible.

ERROR_PRINTQ_FULL61 (0x3D)The printer queue is full.

ERROR_NO_SPOOL_SPACE62 (0x3E)Space to store the file waiting to be printed is not available on the server.

ERROR_PRINT_CANCELLED63 (0x3F)Your file waiting to be printed was deleted.

ERROR_NETNAME_DELETED64 (0x40)The specified network name is no longer available.

ERROR_NETWORK_ACCESS_DENIED65 (0x41)Network access is denied.

ERROR_BAD_DEV_TYPE66 (0x42)The network resource type is not correct.

ERROR_BAD_NET_NAME67 (0x43)The network name cannot be found.

ERROR_TOO_MANY_NAMES68 (0x44)The name limit for the local computer network adapter card was exceeded.

ERROR_TOO_MANY_SESS69 (0x45)The network BIOS session limit was exceeded.

ERROR_SHARING_PAUSED70 (0x46)The remote server has been paused or is in the process of being started.

ERROR_REQ_NOT_ACCEP71 (0x47)No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.

ERROR_REDIR_PAUSED72 (0x48)The specified printer or disk device has been paused.

ERROR_FILE_EXISTS80 (0x50)The file exists.

ERROR_CANNOT_MAKE82 (0x52)The directory or file cannot be created.

ERROR_FAIL_I2483 (0x53)Fail on INT 24.

ERROR_OUT_OF_STRUCTURES84 (0x54)Storage to process this request is not available.

ERROR_ALREADY_ASSIGNED85 (0x55)The local device name is already in use.

ERROR_INVALID_PASSWORD86 (0x56)The specified network password is not correct.

ERROR_INVALID_PARAMETER87 (0x57)The parameter is incorrect.

ERROR_NET_WRITE_FAULT88 (0x58)A write fault occurred on the network.

ERROR_NO_PROC_SLOTS89 (0x59)The system cannot start another process at this time.

ERROR_TOO_MANY_SEMAPHORES100 (0x64)Cannot create another system semaphore.

ERROR_EXCL_SEM_ALREADY_OWNED101 (0x65)The exclusive semaphore is owned by another process.

ERROR_SEM_IS_SET102 (0x66)The semaphore is set and cannot be closed.

ERROR_TOO_MANY_SEM_REQUESTS103 (0x67)The semaphore cannot be set again.

ERROR_INVALID_AT_INTERRUPT_TIME104 (0x68)Cannot request exclusive semaphores at interrupt time.

ERROR_SEM_OWNER_DIED105 (0x69)The previous ownership of this semaphore has ended.

ERROR_SEM_USER_LIMIT106 (0x6A)Insert the diskette for drive %1.

ERROR_DISK_CHANGE107 (0x6B)The program stopped because an alternate diskette was not inserted.

ERROR_DRIVE_LOCKED108 (0x6C)The disk is in use or locked by another process.

ERROR_BROKEN_PIPE109 (0x6D)The pipe has been ended.

ERROR_OPEN_FAILED110 (0x6E)The system cannot open the device or file specified.

ERROR_BUFFER_OVERFLOW111 (0x6F)The file name is too long.

ERROR_DISK_FULL112 (0x70)There is not enough space on the disk.

ERROR_NO_MORE_SEARCH_HANDLES113 (0x71)No more internal file identifiers available.

ERROR_INVALID_TARGET_HANDLE114 (0x72)The target internal file identifier is incorrect.

ERROR_INVALID_CATEGORY117 (0x75)The IOCTL call made by the application program is not correct.

ERROR_INVALID_VERIFY_SWITCH118 (0x76)The verify-on-write switch parameter value is not correct.

ERROR_BAD_DRIVER_LEVEL119 (0x77)The system does not support the command requested.

ERROR_CALL_NOT_IMPLEMENTED120 (0x78)This function is not supported on this system.

ERROR_SEM_TIMEOUT121 (0x79)The semaphore timeout period has expired.

ERROR_INSUFFICIENT_BUFFER122 (0x7A)The data area passed to a system call is too small.

ERROR_INVALID_NAME123 (0x7B)The filename, directory name, or volume label syntax is incorrect.

ERROR_INVALID_LEVEL124 (0x7C)The system call level is not correct.

ERROR_NO_VOLUME_LABEL125 (0x7D)The disk has no volume label.

ERROR_MOD_NOT_FOUND126 (0x7E)The specified module could not be found.

ERROR_PROC_NOT_FOUND127 (0x7F)The specified procedure could not be found.

ERROR_WAIT_NO_CHILDREN128 (0x80)There are no child processes to wait for.

ERROR_CHILD_NOT_COMPLETE129 (0x81)The %1 application cannot be run in Win32 mode.

ERROR_DIRECT_ACCESS_HANDLE130 (0x82)Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.

ERROR_NEGATIVE_SEEK131 (0x83)An attempt was made to move the file pointer before the beginning of the file.

ERROR_SEEK_ON_DEVICE132 (0x84)The file pointer cannot be set on the specified device or file.

ERROR_IS_JOIN_TARGET133 (0x85)A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.

ERROR_IS_JOINED134 (0x86)An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.

ERROR_IS_SUBSTED135 (0x87)An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.

ERROR_NOT_JOINED136 (0x88)The system tried to delete the JOIN of a drive that is not joined.

ERROR_NOT_SUBSTED137 (0x89)The system tried to delete the substitution of a drive that is not substituted.

ERROR_JOIN_TO_JOIN138 (0x8A)The system tried to join a drive to a directory on a joined drive.

ERROR_SUBST_TO_SUBST139 (0x8B)The system tried to substitute a drive to a directory on a substituted drive.

ERROR_JOIN_TO_SUBST140 (0x8C)The system tried to join a drive to a directory on a substituted drive.

ERROR_SUBST_TO_JOIN141 (0x8D)The system tried to SUBST a drive to a directory on a joined drive.

ERROR_BUSY_DRIVE142 (0x8E)The system cannot perform a JOIN or SUBST at this time.

ERROR_SAME_DRIVE143 (0x8F)The system cannot join or substitute a drive to or for a directory on the same drive.

ERROR_DIR_NOT_ROOT144 (0x90)The directory is not a subdirectory of the root directory.

ERROR_DIR_NOT_EMPTY145 (0x91)The directory is not empty.

ERROR_IS_SUBST_PATH146 (0x92)The path specified is being used in a substitute.

ERROR_IS_JOIN_PATH147 (0x93)Not enough resources are available to process this command.

ERROR_PATH_BUSY148 (0x94)The path specified cannot be used at this time.

ERROR_IS_SUBST_TARGET149 (0x95)An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.

ERROR_SYSTEM_TRACE150 (0x96)System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.

ERROR_INVALID_EVENT_COUNT151 (0x97)The number of specified semaphore events for DosMuxSemWait is not correct.

ERROR_TOO_MANY_MUXWAITERS152 (0x98)DosMuxSemWait did not execute; too many semaphores are already set.

ERROR_INVALID_LIST_FORMAT153 (0x99)The DosMuxSemWait list is not correct.

ERROR_LABEL_TOO_LONG154 (0x9A)The volume label you entered exceeds the label character limit of the target file system.

ERROR_TOO_MANY_TCBS155 (0x9B)Cannot create another thread.

ERROR_SIGNAL_REFUSED156 (0x9C)The recipient process has refused the signal.

ERROR_DISCARDED157 (0x9D)The segment is already discarded and cannot be locked.

ERROR_NOT_LOCKED158 (0x9E)The segment is already unlocked.

ERROR_BAD_THREADID_ADDR159 (0x9F)The address for the thread ID is not correct.

ERROR_BAD_ARGUMENTS160 (0xA0)One or more arguments are not correct.

ERROR_BAD_PATHNAME161 (0xA1)The specified path is invalid.

ERROR_SIGNAL_PENDING162 (0xA2)A signal is already pending.

ERROR_MAX_THRDS_REACHED164 (0xA4)No more threads can be created in the system.

ERROR_LOCK_FAILED167 (0xA7)Unable to lock a region of a file.

ERROR_BUSY170 (0xAA)The requested resource is in use.

ERROR_CANCEL_VIOLATION173 (0xAD)A lock request was not outstanding for the supplied cancel region.

ERROR_ATOMIC_LOCKS_NOT_SUPPORTED174 (0xAE)The file system does not support atomic changes to the lock type.

ERROR_INVALID_SEGMENT_NUMBER180 (0xB4)The system detected a segment number that was not correct.

ERROR_INVALID_ORDINAL182 (0xB6)The operating system cannot run %1.

ERROR_ALREADY_EXISTS183 (0xB7)Cannot create a file when that file already exists.

ERROR_INVALID_FLAG_NUMBER186 (0xBA)The flag passed is not correct.

ERROR_SEM_NOT_FOUND187 (0xBB)The specified system semaphore name was not found.

ERROR_INVALID_STARTING_CODESEG188 (0xBC)The operating system cannot run %1.

ERROR_INVALID_STACKSEG189 (0xBD)The operating system cannot run %1.

ERROR_INVALID_MODULETYPE190 (0xBE)The operating system cannot run %1.

ERROR_INVALID_EXE_SIGNATURE191 (0xBF)Cannot run %1 in Win32 mode.

ERROR_EXE_MARKED_INVALID192 (0xC0)The operating system cannot run %1.

ERROR_BAD_EXE_FORMAT193 (0xC1)%1 is not a valid Win32 application.

ERROR_ITERATED_DATA_EXCEEDS_64k194 (0xC2)The operating system cannot run %1.

ERROR_INVALID_MINALLOCSIZE195 (0xC3)The operating system cannot run %1.

ERROR_DYNLINK_FROM_INVALID_RING196 (0xC4)The operating system cannot run this application program.

ERROR_IOPL_NOT_ENABLED197 (0xC5)The operating system is not presently configured to run this application.

ERROR_INVALID_SEGDPL198 (0xC6)The operating system cannot run %1.

ERROR_AUTODATASEG_EXCEEDS_64k199 (0xC7)The operating system cannot run this application program.

ERROR_RING2SEG_MUST_BE_MOVABLE200 (0xC8)The code segment cannot be greater than or equal to 64K.

ERROR_RELOC_CHAIN_XEEDS_SEGLIM201 (0xC9)The operating system cannot run %1.

ERROR_INFLOOP_IN_RELOC_CHAIN202 (0xCA)The operating system cannot run %1.

ERROR_ENVVAR_NOT_FOUND203 (0xCB)The system could not find the environment option that was entered.

ERROR_NO_SIGNAL_SENT205 (0xCD)No process in the command subtree has a signal handler.

ERROR_FILENAME_EXCED_RANGE206 (0xCE)The filename or extension is too long.

ERROR_RING2_STACK_IN_USE207 (0xCF)The ring 2 stack is in use.

ERROR_META_EXPANSION_TOO_LONG208 (0xD0)The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified.

ERROR_INVALID_SIGNAL_NUMBER209 (0xD1)The signal being posted is not correct.

ERROR_THREAD_1_INACTIVE210 (0xD2)The signal handler cannot be set.

ERROR_LOCKED212 (0xD4)The segment is locked and cannot be reallocated.

ERROR_TOO_MANY_MODULES214 (0xD6)Too many dynamic-link modules are attached to this program or dynamic-link module.

ERROR_NESTING_NOT_ALLOWED215 (0xD7)Cannot nest calls to LoadModule.

ERROR_EXE_MACHINE_TYPE_MISMATCH216 (0xD8)The version of %1 is not compatible with the version you're running. Check your computer's system information to see whether you need a x86 (32-bit) or x64 (64-bit) version of the program, and then contact the software publisher.

ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY217 (0xD9)The image file %1 is signed, unable to modify.

ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY218 (0xDA)The image file %1 is strong signed, unable to modify.

ERROR_FILE_CHECKED_OUT220 (0xDC)This file is checked out or locked for editing by another user.

ERROR_CHECKOUT_REQUIRED221 (0xDD)The file must be checked out before saving changes.

ERROR_BAD_FILE_TYPE222 (0xDE)The file type being saved or retrieved has been blocked.

ERROR_FILE_TOO_LARGE223 (0xDF)The file size exceeds the limit allowed and cannot be saved.

ERROR_FORMS_AUTH_REQUIRED224 (0xE0)Access Denied. Before opening files in this location, you must first add the web site to your trusted sites list, browse to the web site, and select the option to login automatically.

ERROR_VIRUS_INFECTED225 (0xE1)Operation did not complete successfully because the file contains a virus.

ERROR_VIRUS_DELETED226 (0xE2)This file contains a virus and cannot be opened. Due to the nature of this virus, the file has been removed from this location.

ERROR_PIPE_LOCAL229 (0xE5)The pipe is local.

ERROR_BAD_PIPE230 (0xE6)The pipe state is invalid.

ERROR_PIPE_BUSY231 (0xE7)All pipe instances are busy.

ERROR_NO_DATA232 (0xE8)The pipe is being closed.

ERROR_PIPE_NOT_CONNECTED233 (0xE9)No process is on the other end of the pipe.

ERROR_MORE_DATA234 (0xEA)More data is available.

ERROR_VC_DISCONNECTED240 (0xF0)The session was canceled.

ERROR_INVALID_EA_NAME254 (0xFE)The specified extended attribute name was invalid.

ERROR_EA_LIST_INCONSISTENT255 (0xFF)The extended attributes are inconsistent.

WAIT_TIMEOUT258 (0x102)The wait operation timed out.

ERROR_NO_MORE_ITEMS259 (0x103)No more data is available.

ERROR_CANNOT_COPY266 (0x10A)The copy functions cannot be used.

ERROR_DIRECTORY267 (0x10B)The directory name is invalid.

ERROR_EAS_DIDNT_FIT275 (0x113)The extended attributes did not fit in the buffer.

ERROR_EA_FILE_CORRUPT276 (0x114)The extended attribute file on the mounted file system is corrupt.

ERROR_EA_TABLE_FULL277 (0x115)The extended attribute table file is full.

ERROR_INVALID_EA_HANDLE278 (0x116)The specified extended attribute handle is invalid.

ERROR_EAS_NOT_SUPPORTED282 (0x11A)The mounted file system does not support extended attributes.

ERROR_NOT_OWNER288 (0x120)Attempt to release mutex not owned by caller.

ERROR_TOO_MANY_POSTS298 (0x12A)Too many posts were made to a semaphore.

ERROR_PARTIAL_COPY299 (0x12B)Only part of a ReadProcessMemory or WriteProcessMemory request was completed.

ERROR_OPLOCK_NOT_GRANTED300 (0x12C)The oplock request is denied.

ERROR_INVALID_OPLOCK_PROTOCOL301 (0x12D)An invalid oplock acknowledgment was received by the system.

ERROR_DISK_TOO_FRAGMENTED302 (0x12E)The volume is too fragmented to complete this operation.

ERROR_DELETE_PENDING303 (0x12F)The file cannot be opened because it is in the process of being deleted.

ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING304 (0x130)Short name settings may not be changed on this volume due to the global registry setting.

ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME305 (0x131)Short names are not enabled on this volume.

ERROR_SECURITY_STREAM_IS_INCONSISTENT306 (0x132)The security stream for the given volume is in an inconsistent state. Please run CHKDSK on the volume.

ERROR_INVALID_LOCK_RANGE307 (0x133)A requested file lock operation cannot be processed due to an invalid byte range.

ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT308 (0x134)The subsystem needed to support the image type is not present.

ERROR_NOTIFICATION_GUID_ALREADY_DEFINED309 (0x135)The specified file already has a notification GUID associated with it.

ERROR_MR_MID_NOT_FOUND317 (0x13D)The system cannot find message text for message number 0x%1 in the message file for %2.

ERROR_SCOPE_NOT_FOUND318 (0x13E)The scope specified was not found.

ERROR_FAIL_NOACTION_REBOOT350 (0x15E)No action was taken as a system reboot is required.

ERROR_FAIL_SHUTDOWN351 (0x15F)The shutdown operation failed.

ERROR_FAIL_RESTART352 (0x160)The restart operation failed.

ERROR_MAX_SESSIONS_REACHED353 (0x161)The maximum number of sessions has been reached.

ERROR_THREAD_MODE_ALREADY_BACKGROUND400 (0x190)The thread is already in background processing mode.

ERROR_THREAD_MODE_NOT_BACKGROUND401 (0x191)The thread is not in background processing mode.

ERROR_PROCESS_MODE_ALREADY_BACKGROUND402 (0x192)The process is already in background processing mode.

ERROR_PROCESS_MODE_NOT_BACKGROUND403 (0x193)The process is not in background processing mode.

ERROR_INVALID_ADDRESS487 (0x1E7)Attempt to access invalid address.

ERROR_USER_PROFILE_LOAD500 (0x1F4)User profile cannot be loaded.

ERROR_ARITHMETIC_OVERFLOW534 (0x216)Arithmetic result exceeded 32 bits.

ERROR_PIPE_CONNECTED535 (0x217)There is a process on other end of the pipe.

ERROR_PIPE_LISTENING536 (0x218)Waiting for a process to open the other end of the pipe.

ERROR_VERIFIER_STOP537 (0x219)Application verifier has found an error in the current process.

ERROR_ABIOS_ERROR538 (0x21A)An error occurred in the ABIOS subsystem.

ERROR_WX86_WARNING539 (0x21B)A warning occurred in the WX86 subsystem.

ERROR_WX86_ERROR540 (0x21C)An error occurred in the WX86 subsystem.

ERROR_TIMER_NOT_CANCELED541 (0x21D)An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine.

ERROR_UNWIND542 (0x21E)Unwind exception code.

ERROR_BAD_STACK543 (0x21F)An invalid or unaligned stack was encountered during an unwind operation.

ERROR_INVALID_UNWIND_TARGET544 (0x220)An invalid unwind target was encountered during an unwind operation.

ERROR_INVALID_PORT_ATTRIBUTES545 (0x221)Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort

ERROR_PORT_MESSAGE_TOO_LONG546 (0x222)Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.

ERROR_INVALID_QUOTA_LOWER547 (0x223)An attempt was made to lower a quota limit below the current usage.

ERROR_DEVICE_ALREADY_ATTACHED548 (0x224)An attempt was made to attach to a device that was already attached to another device.

ERROR_INSTRUCTION_MISALIGNMENT549 (0x225)An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references.

ERROR_PROFILING_NOT_STARTED550 (0x226)Profiling not started.

ERROR_PROFILING_NOT_STOPPED551 (0x227)Profiling not stopped.

ERROR_COULD_NOT_INTERPRET552 (0x228)The passed ACL did not contain the minimum required information.

ERROR_PROFILING_AT_LIMIT553 (0x229)The number of active profiling objects is at the maximum and no more may be started.

ERROR_CANT_WAIT554 (0x22A)Used to indicate that an operation cannot continue without blocking for I/O.

ERROR_CANT_TERMINATE_SELF555 (0x22B)Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.

ERROR_UNEXPECTED_MM_CREATE_ERR556 (0x22C)If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.

ERROR_UNEXPECTED_MM_MAP_ERROR557 (0x22D)If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.

ERROR_UNEXPECTED_MM_EXTEND_ERR558 (0x22E)If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.

ERROR_BAD_FUNCTION_TABLE559 (0x22F)A malformed function table was encountered during an unwind operation.

ERROR_NO_GUID_TRANSLATION560 (0x230)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 may cause a file creation attempt to fail.

ERROR_INVALID_LDT_SIZE561 (0x231)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.

ERROR_INVALID_LDT_OFFSET563 (0x233)Indicates that the starting value for the LDT information was not an integral multiple of the selector size.

ERROR_INVALID_LDT_DESCRIPTOR564 (0x234)Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors.

ERROR_TOO_MANY_THREADS565 (0x235)Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token may only be performed when a process has zero or one threads.

ERROR_THREAD_NOT_IN_PROCESS566 (0x236)An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified.

ERROR_PAGEFILE_QUOTA_EXCEEDED567 (0x237)Page file quota was exceeded.

ERROR_LOGON_SERVER_CONFLICT568 (0x238)The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.

ERROR_SYNCHRONIZATION_REQUIRED569 (0x239)The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required.

ERROR_NET_OPEN_FAILED570 (0x23A)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.

ERROR_IO_PRIVILEGE_FAILED571 (0x23B){Privilege Failed} The I/O permissions for the process could not be changed.

ERROR_CONTROL_C_EXIT572 (0x23C){Application Exit by CTRL+C} The application terminated as a result of a CTRL+C.

ERROR_MISSING_SYSTEMFILE573 (0x23D){Missing System File} The required system file %hs is bad or missing.

ERROR_UNHANDLED_EXCEPTION574 (0x23E){Application Error} The exception %s (0xlx) occurred in the application at location 0xlx.

ERROR_APP_INIT_FAILURE575 (0x23F){Application Error} The application failed to initialize properly (0x%lx). Click OK to terminate the application.

ERROR_PAGEFILE_CREATE_FAILED576 (0x240){Unable to Create Paging File} The creation of the paging file %hs failed (%lx). The requested size was %ld.

ERROR_INVALID_IMAGE_HASH577 (0x241)Windows cannot verify the digital signature for this file. A recent hardware or software change might have installed a file that is signed incorrectly or damaged, or that might be malicious software from an unknown source.

ERROR_NO_PAGEFILE578 (0x242){No Paging File Specified} No paging file was specified in the system configuration.

ERROR_ILLEGAL_FLOAT_CONTEXT579 (0x243){EXCEPTION} A real-mode application issued a floating-point instruction and floating-point hardware is not present.

ERROR_NO_EVENT_PAIR580 (0x244)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.

ERROR_DOMAIN_CTRLR_CONFIG_ERROR581 (0x245)A Windows Server has an incorrect configuration.

ERROR_ILLEGAL_CHARACTER582 (0x246)An illegal character was encountered. For a multi-byte character set this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE.

ERROR_UNDEFINED_CHARACTER583 (0x247)The Unicode character is not defined in the Unicode character set installed on the system.

ERROR_FLOPPY_VOLUME584 (0x248)The paging file cannot be created on a floppy diskette.

ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT585 (0x249)The system BIOS failed to connect a system interrupt to the device or bus for which the device is connected.

ERROR_BACKUP_CONTROLLER586 (0x24A)This operation is only allowed for the Primary Domain Controller of the domain.

ERROR_MUTANT_LIMIT_EXCEEDED587 (0x24B)An attempt was made to acquire a mutant such that its maximum count would have been exceeded.

ERROR_FS_DRIVER_REQUIRED588 (0x24C)A volume has been accessed for which a file system driver is required that has not yet been loaded.

ERROR_CANNOT_LOAD_REGISTRY_FILE589 (0x24D){Registry File Failure} The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable.

ERROR_DEBUG_ATTACH_FAILED590 (0x24E){Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error.

ERROR_SYSTEM_PROCESS_TERMINATED591 (0x24F){Fatal System Error} The %hs system process terminated unexpectedly with a status of 0xx (0xx 0xx). The system has been shut down.

ERROR_DATA_NOT_ACCEPTED592 (0x250){Data Not Accepted} The TDI client could not handle the data received during an indication.

ERROR_VDM_HARD_ERROR593 (0x251)NTVDM encountered a hard error.

ERROR_DRIVER_CANCEL_TIMEOUT594 (0x252){Cancel Timeout} The driver %hs failed to complete a canceled I/O request in the allotted time.

ERROR_REPLY_MESSAGE_MISMATCH595 (0x253){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.

ERROR_LOST_WRITEBEHIND_DATA596 (0x254){Delayed Write Failed} Windows was unable to save all the data for the file %hs. The data has been lost. This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere.

ERROR_CLIENT_SERVER_PARAMETERS_INVALID597 (0x255)The parameter(s) passed to the server in the client/server shared memory window were invalid. Too much data may have been put in the shared memory window.

ERROR_NOT_TINY_STREAM598 (0x256)The stream is not a tiny stream.

ERROR_STACK_OVERFLOW_READ599 (0x257)The request must be handled by the stack overflow code.

ERROR_CONVERT_TO_LARGE600 (0x258)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.

ERROR_FOUND_OUT_OF_SCOPE601 (0x259)The attempt to find the object found an object matching by ID on the volume but it is out of the scope of the handle used for the operation.

ERROR_ALLOCATE_BUCKET602 (0x25A)The bucket array must be grown. Retry transaction after doing so.

ERROR_MARSHALL_OVERFLOW603 (0x25B)The user/kernel marshalling buffer has overflowed.

ERROR_INVALID_VARIANT604 (0x25C)The supplied variant structure contains invalid data.

ERROR_BAD_COMPRESSION_BUFFER605 (0x25D)The specified buffer contains ill-formed data.

ERROR_AUDIT_FAILED606 (0x25E){Audit Failed} An attempt to generate a security audit failed.

ERROR_TIMER_RESOLUTION_NOT_SET607 (0x25F)The timer resolution was not previously set by the current process.

ERROR_INSUFFICIENT_LOGON_INFO608 (0x260)There is insufficient account information to log you on.

ERROR_BAD_DLL_ENTRYPOINT609 (0x261){Invalid DLL Entrypoint} The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO may cause the application to operate incorrectly.

ERROR_BAD_SERVICE_ENTRYPOINT610 (0x262){Invalid Service Callback Entrypoint} The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process may operate incorrectly.

ERROR_IP_ADDRESS_CONFLICT1611 (0x263)There is an IP address conflict with another system on the network

ERROR_IP_ADDRESS_CONFLICT2612 (0x264)There is an IP address conflict with another system on the network

ERROR_REGISTRY_QUOTA_LIMIT613 (0x265){Low On Registry Space} The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored.

ERROR_NO_CALLBACK_ACTIVE614 (0x266)A callback return system service cannot be executed when no callback is active.

ERROR_PWD_TOO_SHORT615 (0x267)The password provided is too short to meet the policy of your user account. Please choose a longer password.

ERROR_PWD_TOO_RECENT616 (0x268)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 then please contact your administrator immediately to have a new one assigned.

ERROR_PWD_HISTORY_CONFLICT617 (0x269)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. Please select a password that you have not previously used.

ERROR_UNSUPPORTED_COMPRESSION618 (0x26A)The specified compression format is unsupported.

ERROR_INVALID_HW_PROFILE619 (0x26B)The specified hardware profile configuration is invalid.

ERROR_INVALID_PLUGPLAY_DEVICE_PATH620 (0x26C)The specified Plug and Play registry device path is invalid.

ERROR_QUOTA_LIST_INCONSISTENT621 (0x26D)The specified quota list is internally inconsistent with its descriptor.

ERROR_EVALUATION_EXPIRATION622 (0x26E){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, please upgrade this installation using a licensed distribution of this product.

ERROR_ILLEGAL_DLL_RELOCATION623 (0x26F){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 reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL.

ERROR_DLL_INIT_FAILED_LOGOFF624 (0x270){DLL Initialization Failed} The application failed to initialize because the window station is shutting down.

ERROR_VALIDATE_CONTINUE625 (0x271)The validation process needs to continue on to the next step.

ERROR_NO_MORE_MATCHES626 (0x272)There are no more matches for the current index enumeration.

ERROR_RANGE_LIST_CONFLICT627 (0x273)The range could not be added to the range list because of a conflict.

ERROR_SERVER_SID_MISMATCH628 (0x274)The server process is running under a SID different than that required by client.

ERROR_CANT_ENABLE_DENY_ONLY629 (0x275)A group marked use for deny only cannot be enabled.

ERROR_FLOAT_MULTIPLE_FAULTS630 (0x276){EXCEPTION} Multiple floating point faults.

ERROR_FLOAT_MULTIPLE_TRAPS631 (0x277){EXCEPTION} Multiple floating point traps.

ERROR_NOINTERFACE632 (0x278)The requested interface is not supported.

ERROR_DRIVER_FAILED_SLEEP633 (0x279){System Standby Failed} The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode.

ERROR_CORRUPT_SYSTEM_FILE634 (0x27A)The system file %1 has become corrupt and has been replaced.

ERROR_COMMITMENT_MINIMUM635 (0x27B){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 may be denied. For more information, see Help.

ERROR_PNP_RESTART_ENUMERATION636 (0x27C)A device was removed so enumeration must be restarted.

ERROR_SYSTEM_IMAGE_BAD_SIGNATURE637 (0x27D){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.

ERROR_PNP_REBOOT_REQUIRED638 (0x27E)Device will not start without a reboot.

ERROR_INSUFFICIENT_POWER639 (0x27F)There is not enough power to complete the requested operation.

ERROR_MULTIPLE_FAULT_VIOLATION640 (0x280)ERROR_MULTIPLE_FAULT_VIOLATION

ERROR_SYSTEM_SHUTDOWN641 (0x281)The system is in the process of shutting down.

ERROR_PORT_NOT_SET642 (0x282)An attempt to remove a processes DebugPort was made, but a port was not already associated with the process.

ERROR_DS_VERSION_CHECK_FAILURE643 (0x283)This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller.

ERROR_RANGE_NOT_FOUND644 (0x284)The specified range could not be found in the range list.

ERROR_NOT_SAFE_MODE_DRIVER646 (0x286)The driver was not loaded because the system is booting into safe mode.

ERROR_FAILED_DRIVER_ENTRY647 (0x287)The driver was not loaded because it failed it's initialization call.

ERROR_DEVICE_ENUMERATION_ERROR648 (0x288)The "%hs" encountered an error while applying power or reading the device configuration. This may be caused by a failure of your hardware or by a poor connection.

ERROR_MOUNT_POINT_NOT_RESOLVED649 (0x289)The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached.

ERROR_INVALID_DEVICE_OBJECT_PARAMETER650 (0x28A)The device object parameter is either not a valid device object or is not attached to the volume specified by the file name.

ERROR_MCA_OCCURED651 (0x28B)A Machine Check Error has occurred. Please check the system eventlog for additional information.

ERROR_DRIVER_DATABASE_ERROR652 (0x28C)There was error [%2] processing the driver database.

ERROR_SYSTEM_HIVE_TOO_LARGE653 (0x28D)System hive size has exceeded its limit.

ERROR_DRIVER_FAILED_PRIOR_UNLOAD654 (0x28E)The driver could not be loaded because a previous version of the driver is still in memory.

ERROR_VOLSNAP_PREPARE_HIBERNATE655 (0x28F){Volume Shadow Copy Service} Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.

ERROR_HIBERNATION_FAILURE656 (0x290)The system has failed to hibernate (The error code is %hs). Hibernation will be disabled until the system is restarted.

ERROR_FILE_SYSTEM_LIMITATION665 (0x299)The requested operation could not be completed due to a file system limitation

ERROR_ASSERTION_FAILURE668 (0x29C)An assertion failure has occurred.

ERROR_ACPI_ERROR669 (0x29D)An error occurred in the ACPI subsystem.

ERROR_WOW_ASSERTION670 (0x29E)WOW Assertion Error.

ERROR_PNP_BAD_MPS_TABLE671 (0x29F)A device is missing in the system BIOS MPS table. This device will not be used. Please contact your system vendor for system BIOS update.

ERROR_PNP_TRANSLATION_FAILED672 (0x2A0)A translator failed to translate resources.

ERROR_PNP_IRQ_TRANSLATION_FAILED673 (0x2A1)A IRQ translator failed to translate resources.

ERROR_PNP_INVALID_ID674 (0x2A2)Driver %2 returned invalid ID for a child device (%3).

ERROR_WAKE_SYSTEM_DEBUGGER675 (0x2A3){Kernel Debugger Awakened} the system debugger was awakened by an interrupt.

ERROR_HANDLES_CLOSED676 (0x2A4){Handles Closed} Handles to objects have been automatically closed as a result of the requested operation.

ERROR_EXTRANEOUS_INFORMATION677 (0x2A5){Too Much Information} The specified access control list (ACL) contained more information than was expected.

ERROR_RXACT_COMMIT_NECESSARY678 (0x2A6)This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired).

ERROR_MEDIA_CHECK679 (0x2A7){Media Changed} The media may have changed.

ERROR_GUID_SUBSTITUTION_MADE680 (0x2A8){GUID Substitution} During the translation of a global 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 may provide a more restrictive access than intended.

ERROR_STOPPED_ON_SYMLINK681 (0x2A9)The create operation stopped after reaching a symbolic link

ERROR_LONGJUMP682 (0x2AA)A long jump has been executed.

ERROR_PLUGPLAY_QUERY_VETOED683 (0x2AB)The Plug and Play query operation was not successful.

ERROR_UNWIND_CONSOLIDATE684 (0x2AC)A frame consolidation has been executed.

ERROR_REGISTRY_HIVE_RECOVERED685 (0x2AD){Registry Hive Recovered} Registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost.

ERROR_DLL_MIGHT_BE_INSECURE686 (0x2AE)The application is attempting to run executable code from the module %hs. This may be insecure. An alternative, %hs, is available. Should the application use the secure module %hs?

ERROR_DLL_MIGHT_BE_INCOMPATIBLE687 (0x2AF)The application is loading executable code from the module %hs. This is secure, but may be incompatible with previous releases of the operating system. An alternative, %hs, is available. Should the application use the secure module %hs?

ERROR_DBG_EXCEPTION_NOT_HANDLED688 (0x2B0)Debugger did not handle the exception.

ERROR_DBG_REPLY_LATER689 (0x2B1)Debugger will reply later.

ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE690 (0x2B2)Debugger cannot provide handle.

ERROR_DBG_TERMINATE_THREAD691 (0x2B3)Debugger terminated thread.

ERROR_DBG_TERMINATE_PROCESS692 (0x2B4)Debugger terminated process.

ERROR_DBG_CONTROL_C693 (0x2B5)Debugger got control C.

ERROR_DBG_PRINTEXCEPTION_C694 (0x2B6)Debugger printed exception on control C.

ERROR_DBG_RIPEXCEPTION695 (0x2B7)Debugger received RIP exception.

ERROR_DBG_CONTROL_BREAK696 (0x2B8)Debugger received control break.

ERROR_DBG_COMMAND_EXCEPTION697 (0x2B9)Debugger command communication exception.

ERROR_OBJECT_NAME_EXISTS698 (0x2BA){Object Exists} An attempt was made to create an object and the object name already existed.

ERROR_THREAD_WAS_SUSPENDED699 (0x2BB){Thread Suspended} A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded.

ERROR_IMAGE_NOT_AT_BASE700 (0x2BC){Image Relocated} An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image.

ERROR_RXACT_STATE_CREATED701 (0x2BD)This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created.

ERROR_SEGMENT_NOTIFICATION702 (0x2BE){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 a debugger can load, unload or track symbols and breakpoints within these 16-bit segments.

ERROR_BAD_CURRENT_DIRECTORY703 (0x2BF){Invalid Current Directory} The process cannot switch to the startup current directory %hs. Select OK to set current directory to %hs, or select CANCEL to exit.

ERROR_FT_READ_RECOVERY_FROM_BACKUP704 (0x2C0){Redundant Read} To satisfy a read request, the NT 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.

ERROR_FT_WRITE_RECOVERY705 (0x2C1){Redundant Write} To satisfy a write request, the 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 not able to reassign the failing area of the device.

ERROR_IMAGE_MACHINE_TYPE_MISMATCH706 (0x2C2){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.

ERROR_RECEIVE_PARTIAL707 (0x2C3){Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later.

ERROR_RECEIVE_EXPEDITED708 (0x2C4){Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system.

ERROR_RECEIVE_PARTIAL_EXPEDITED709 (0x2C5){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.

ERROR_EVENT_DONE710 (0x2C6){TDI Event Done} The TDI indication has completed successfully.

ERROR_EVENT_PENDING711 (0x2C7){TDI Event Pending} The TDI indication has entered the pending state.

ERROR_CHECKING_FILE_SYSTEM712 (0x2C8)Checking file system on %wZ

ERROR_FATAL_APP_EXIT713 (0x2C9){Fatal Application Exit} %hs

ERROR_PREDEFINED_HANDLE714 (0x2CA)The specified registry key is referenced by a predefined handle.

ERROR_WAS_UNLOCKED715 (0x2CB){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.

ERROR_SERVICE_NOTIFICATION716 (0x2CC)%hs

ERROR_WAS_LOCKED717 (0x2CD){Page Locked} One of the pages to lock was already locked.

ERROR_LOG_HARD_ERROR718 (0x2CE)Application popup: %1 : %2

ERROR_ALREADY_WIN32719 (0x2CF)ERROR_ALREADY_WIN32

ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE720 (0x2D0){Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine.

ERROR_NO_YIELD_PERFORMED721 (0x2D1)A yield execution was performed and no thread was available to run.

ERROR_TIMER_RESUME_IGNORED722 (0x2D2)The resumable flag to a timer API was ignored.

ERROR_ARBITRATION_UNHANDLED723 (0x2D3)The arbiter has deferred arbitration of these resources to its parent

ERROR_CARDBUS_NOT_SUPPORTED724 (0x2D4)The inserted CardBus device cannot be started because of a configuration error on "%hs".

ERROR_MP_PROCESSOR_MISMATCH725 (0x2D5)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. Should problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported.

ERROR_HIBERNATED726 (0x2D6)The system was put into hibernation.

ERROR_RESUME_HIBERNATION727 (0x2D7)The system was resumed from hibernation.

ERROR_FIRMWARE_UPDATED728 (0x2D8)Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3].

ERROR_DRIVERS_LEAKING_LOCKED_PAGES729 (0x2D9)A device driver is leaking locked I/O pages causing system degradation. The system has automatically enabled tracking code in order to try and catch the culprit.

ERROR_WAKE_SYSTEM730 (0x2DA)The system has awoken

ERROR_WAIT_1731 (0x2DB)ERROR_WAIT_1

ERROR_WAIT_2732 (0x2DC)ERROR_WAIT_2

ERROR_WAIT_3733 (0x2DD)ERROR_WAIT_3

ERROR_WAIT_63734 (0x2DE)ERROR_WAIT_63

ERROR_ABANDONED_WAIT_0735 (0x2DF)ERROR_ABANDONED_WAIT_0

ERROR_ABANDONED_WAIT_63736 (0x2E0)ERROR_ABANDONED_WAIT_63

ERROR_USER_APC737 (0x2E1)ERROR_USER_APC

ERROR_KERNEL_APC738 (0x2E2)ERROR_KERNEL_APC

ERROR_ALERTED739 (0x2E3)ERROR_ALERTED

ERROR_ELEVATION_REQUIRED740 (0x2E4)The requested operation requires elevation.

ERROR_REPARSE741 (0x2E5)A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.

ERROR_OPLOCK_BREAK_IN_PROGRESS742 (0x2E6)An open/create operation completed while an oplock break is underway.

ERROR_VOLUME_MOUNTED743 (0x2E7)A new volume has been mounted by a file system.

ERROR_RXACT_COMMITTED744 (0x2E8)This success level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has now been completed.

ERROR_NOTIFY_CLEANUP745 (0x2E9)This indicates that a notify change request has been completed due to closing the handle which made the notify change request.

ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED746 (0x2EA){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.

ERROR_PAGE_FAULT_TRANSITION747 (0x2EB)Page fault was a transition fault.

ERROR_PAGE_FAULT_DEMAND_ZERO748 (0x2EC)Page fault was a demand zero fault.

ERROR_PAGE_FAULT_COPY_ON_WRITE749 (0x2ED)Page fault was a demand zero fault.

ERROR_PAGE_FAULT_GUARD_PAGE750 (0x2EE)Page fault was a demand zero fault.

ERROR_PAGE_FAULT_PAGING_FILE751 (0x2EF)Page fault was satisfied by reading from a secondary storage device.

ERROR_CACHE_PAGE_LOCKED752 (0x2F0)Cached page was locked during operation.

ERROR_CRASH_DUMP753 (0x2F1)Crash dump exists in paging file.

ERROR_BUFFER_ALL_ZEROS754 (0x2F2)Specified buffer contains all zeros.

ERROR_REPARSE_OBJECT755 (0x2F3)A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.

ERROR_RESOURCE_REQUIREMENTS_CHANGED756 (0x2F4)The device has succeeded a query-stop and its resource requirements have changed.

ERROR_TRANSLATION_COMPLETE757 (0x2F5)The translator has translated these resources into the global space and no further translations should be performed.

ERROR_NOTHING_TO_TERMINATE758 (0x2F6)A process being terminated has no threads to terminate.

ERROR_PROCESS_NOT_IN_JOB759 (0x2F7)The specified process is not part of a job.

ERROR_PROCESS_IN_JOB760 (0x2F8)The specified process is part of a job.

ERROR_VOLSNAP_HIBERNATE_READY761 (0x2F9){Volume Shadow Copy Service} The system is now ready for hibernation.

ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY762 (0x2FA)A file system or file system filter driver has successfully completed an FsFilter operation.

ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED763 (0x2FB)The specified interrupt vector was already connected.

ERROR_INTERRUPT_STILL_CONNECTED764 (0x2FC)The specified interrupt vector is still connected.

ERROR_WAIT_FOR_OPLOCK765 (0x2FD)An operation is blocked waiting for an oplock.

ERROR_DBG_EXCEPTION_HANDLED766 (0x2FE)Debugger handled exception

ERROR_DBG_CONTINUE767 (0x2FF)Debugger continued

ERROR_CALLBACK_POP_STACK768 (0x300)An exception occurred in a user mode callback and the kernel callback frame should be removed.

ERROR_COMPRESSION_DISABLED769 (0x301)Compression is disabled for this volume.

ERROR_CANTFETCHBACKWARDS770 (0x302)The data provider cannot fetch backwards through a result set.

ERROR_CANTSCROLLBACKWARDS771 (0x303)The data provider cannot scroll backwards through a result set.

ERROR_ROWSNOTRELEASED772 (0x304)The data provider requires that previously fetched data is released before asking for more data.

ERROR_BAD_ACCESSOR_FLAGS773 (0x305)The data provider was not able to interpret the flags set for a column binding in an accessor.

ERROR_ERRORS_ENCOUNTERED774 (0x306)One or more errors occurred while processing the request.

ERROR_NOT_CAPABLE775 (0x307)The implementation is not capable of performing the request.

ERROR_REQUEST_OUT_OF_SEQUENCE776 (0x308)The client of a component requested an operation which is not valid given the state of the component instance.

ERROR_VERSION_PARSE_ERROR777 (0x309)A version number could not be parsed.

ERROR_BADSTARTPOSITION778 (0x30A)The iterator's start position is invalid.

ERROR_MEMORY_HARDWARE779 (0x30B)The hardware has reported an uncorrectable memory error.

ERROR_DISK_REPAIR_DISABLED780 (0x30C)The attempted operation required self healing to be enabled.

ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE781 (0x30D)The Desktop heap encountered an error while allocating session memory. There is more information in the system event log.

ERROR_SYSTEM_POWERSTATE_TRANSITION782 (0x30E)The system power state is transitioning from %2 to %3.

ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION783 (0x30F)The system power state is transitioning from %2 to %3 but could enter %4.

ERROR_MCA_EXCEPTION784 (0x310)A thread is getting dispatched with MCA EXCEPTION because of MCA.

ERROR_ACCESS_AUDIT_BY_POLICY785 (0x311)Access to %1 is monitored by policy rule %2.

ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY786 (0x312)Access to %1 has been restricted by your Administrator by policy rule %2.

ERROR_ABANDON_HIBERFILE787 (0x313)A valid hibernation file has been invalidated and should be abandoned.

ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED788 (0x314){Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error may be caused by network connectivity issues. Please try to save this file elsewhere.

ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR789 (0x315){Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error was returned by the server on which the file exists. Please try to save this file elsewhere.

ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR790 (0x316){Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error may be caused if the device has been removed or the media is write-protected.

ERROR_BAD_MCFG_TABLE791 (0x317)The resources required for this device conflict with the MCFG table.

ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE800 (0x320)The oplock that was associated with this handle is now associated with a different handle.

ERROR_CANNOT_GRANT_REQUESTED_OPLOCK801 (0x321)An oplock of the requested level cannot be granted. An oplock of a lower level may be available.

ERROR_CANNOT_BREAK_OPLOCK802 (0x322)The operation did not complete successfully because it would cause an oplock to be broken. The caller has requested that existing oplocks not be broken.

ERROR_OPLOCK_HANDLE_CLOSED803 (0x323)The handle with which this oplock was associated has been closed. The oplock is now broken.

ERROR_NO_ACE_CONDITION804 (0x324)The specified access control entry (ACE) does not contain a condition.

ERROR_INVALID_ACE_CONDITION805 (0x325)The specified access control entry (ACE) contains an invalid condition.

ERROR_EA_ACCESS_DENIED994 (0x3E2)Access to the extended attribute was denied.

ERROR_OPERATION_ABORTED995 (0x3E3)The I/O operation has been aborted because of either a thread exit or an application request.

ERROR_IO_INCOMPLETE996 (0x3E4)Overlapped I/O event is not in a signaled state.

ERROR_IO_PENDING997 (0x3E5)Overlapped I/O operation is in progress.

ERROR_NOACCESS998 (0x3E6)Invalid access to memory location.

ERROR_SWAPERROR999 (0x3E7)Error performing inpage operati

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: