Msdn error code

Windows System Error Codes enum (C#). GitHub Gist: instantly share code, notes, and snippets.
// Title: An exhaustive enum of all Windows System Error Codes // Source: https://msdn.microsoft.com/en-us/library/windows/desktop/ms681381.aspx // Description: Error codes are a means to provide information to outside systems on why a program terminated. This list // need not be included in its entirety. It is meant to aid in conforming to the existing error code usage. // See this link form more information on usage. https://msdn.microsoft.com/en-us/library/system.environment.exitcode.aspx // Note: Internet error codes are excluded from this list. See here: https://msdn.microsoft.com/en-us/library/windows/desktop/aa385465.aspx // Updated: 2016/10/31 namespace Core { public class ErrorHandling { enum ExitCodes : int { ERROR_SUCCESS = 0, // (0x0) The operation completed successfully. ERROR_INVALID_FUNCTION = 1, // (0x1) Incorrect function. ERROR_FILE_NOT_FOUND = 2, // (0x2) The system cannot find the file specified. ERROR_PATH_NOT_FOUND = 3, // (0x3) The system cannot find the path specified. ERROR_TOO_MANY_OPEN_FILES = 4, // (0x4) The system cannot open the file. ERROR_ACCESS_DENIED = 5, // (0x5) Access is denied. ERROR_INVALID_HANDLE = 6, // (0x6) The handle is invalid. ERROR_ARENA_TRASHED = 7, // (0x7) The storage control blocks were destroyed. ERROR_NOT_ENOUGH_MEMORY = 8, // (0x8) Not enough storage is available to process this command. ERROR_INVALID_BLOCK = 9, // (0x9) The storage control block address is invalid. ERROR_BAD_ENVIRONMENT = 10, // (0xA) The environment is incorrect. ERROR_BAD_FORMAT = 11, // (0xB) An attempt was made to load a program with an incorrect format. ERROR_INVALID_ACCESS = 12, // (0xC) The access code is invalid. ERROR_INVALID_DATA = 13, // (0xD) The data is invalid. ERROR_OUTOFMEMORY = 14, // (0xE) Not enough storage is available to complete this operation. ERROR_INVALID_DRIVE = 15, // (0xF) The system cannot find the drive specified. ERROR_CURRENT_DIRECTORY = 16, // (0x10) The directory cannot be removed. ERROR_NOT_SAME_DEVICE = 17, // (0x11) The system cannot move the file to a different disk drive. ERROR_NO_MORE_FILES = 18, // (0x12) There are no more files. ERROR_WRITE_PROTECT = 19, // (0x13) The media is write protected. ERROR_BAD_UNIT = 20, // (0x14) The system cannot find the device specified. ERROR_NOT_READY = 21, // (0x15) The device is not ready. ERROR_BAD_COMMAND = 22, // (0x16) The device does not recognize the command. ERROR_CRC = 23, // (0x17) Data error, // (cyclic redundancy check). ERROR_BAD_LENGTH = 24, // (0x18) The program issued a command but the command length is incorrect. ERROR_SEEK = 25, // (0x19) The drive cannot locate a specific area or track on the disk. ERROR_NOT_DOS_DISK = 26, // (0x1A) The specified disk or diskette cannot be accessed. ERROR_SECTOR_NOT_FOUND = 27, // (0x1B) The drive cannot find the sector requested. ERROR_OUT_OF_PAPER = 28, // (0x1C) The printer is out of paper. ERROR_WRITE_FAULT = 29, // (0x1D) The system cannot write to the specified device. ERROR_READ_FAULT = 30, // (0x1E) The system cannot read from the specified device. ERROR_GEN_FAILURE = 31, // (0x1F) A device attached to the system is not functioning. ERROR_SHARING_VIOLATION = 32, // (0x20) The process cannot access the file because it is being used by another process. ERROR_LOCK_VIOLATION = 33, // (0x21) The process cannot access the file because another process has locked a portion of the file. ERROR_WRONG_DISK = 34, // (0x22) The wrong diskette is in the drive. Insert %2, // (Volume Serial Number: %3) into drive %1. ERROR_SHARING_BUFFER_EXCEEDED = 36, // (0x24) Too many files opened for sharing. ERROR_HANDLE_EOF = 38, // (0x26) Reached the end of the file. ERROR_HANDLE_DISK_FULL = 39, // (0x27) The disk is full. ERROR_NOT_SUPPORTED = 50, // (0x32) The request is not supported. ERROR_REM_NOT_LIST = 51, // (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_NAME = 52, // (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_NETPATH = 53, // (0x35) The network path was not found. ERROR_NETWORK_BUSY = 54, // (0x36) The network is busy. ERROR_DEV_NOT_EXIST = 55, // (0x37) The specified network resource or device is no longer available. ERROR_TOO_MANY_CMDS = 56, // (0x38) The network BIOS command limit has been reached. ERROR_ADAP_HDW_ERR = 57, // (0x39) A network adapter hardware error occurred. ERROR_BAD_NET_RESP = 58, // (0x3A) The specified server cannot perform the requested operation. ERROR_UNEXP_NET_ERR = 59, // (0x3B) An unexpected network error occurred. ERROR_BAD_REM_ADAP = 60, // (0x3C) The remote adapter is not compatible. ERROR_PRINTQ_FULL = 61, // (0x3D) The printer queue is full. ERROR_NO_SPOOL_SPACE = 62, // (0x3E) Space to store the file waiting to be printed is not available on the server. ERROR_PRINT_CANCELLED = 63, // (0x3F) Your file waiting to be printed was deleted. ERROR_NETNAME_DELETED = 64, // (0x40) The specified network name is no longer available. ERROR_NETWORK_ACCESS_DENIED = 65, // (0x41) Network access is denied. ERROR_BAD_DEV_TYPE = 66, // (0x42) The network resource type is not correct. ERROR_BAD_NET_NAME = 67, // (0x43) The network name cannot be found. ERROR_TOO_MANY_NAMES = 68, // (0x44) The name limit for the local computer network adapter card was exceeded. ERROR_TOO_MANY_SESS = 69, // (0x45) The network BIOS session limit was exceeded. ERROR_SHARING_PAUSED = 70, // (0x46) The remote server has been paused or is in the process of being started. ERROR_REQ_NOT_ACCEP = 71, // (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_PAUSED = 72, // (0x48) The specified printer or disk device has been paused. ERROR_FILE_EXISTS = 80, // (0x50) The file exists. ERROR_CANNOT_MAKE = 82, // (0x52) The directory or file cannot be created. ERROR_FAIL_I24 = 83, // (0x53) Fail on INT 24. ERROR_OUT_OF_STRUCTURES = 84, // (0x54) Storage to process this request is not available. ERROR_ALREADY_ASSIGNED = 85, // (0x55) The local device name is already in use. ERROR_INVALID_PASSWORD = 86, // (0x56) The specified network password is not correct. ERROR_INVALID_PARAMETER = 87, // (0x57) The parameter is incorrect. ERROR_NET_WRITE_FAULT = 88, // (0x58) A write fault occurred on the network. ERROR_NO_PROC_SLOTS = 89, // (0x59) The system cannot start another process at this time. ERROR_TOO_MANY_SEMAPHORES = 100, // (0x64) Cannot create another system semaphore. ERROR_EXCL_SEM_ALREADY_OWNED = 101, // (0x65) The exclusive semaphore is owned by another process. ERROR_SEM_IS_SET = 102, // (0x66) The semaphore is set and cannot be closed. ERROR_TOO_MANY_SEM_REQUESTS = 103, // (0x67) The semaphore cannot be set again. ERROR_INVALID_AT_INTERRUPT_TIME = 104, // (0x68) Cannot request exclusive semaphores at interrupt time. ERROR_SEM_OWNER_DIED = 105, // (0x69) The previous ownership of this semaphore has ended. ERROR_SEM_USER_LIMIT = 106, // (0x6A) Insert the diskette for drive %1. ERROR_DISK_CHANGE = 107, // (0x6B) The program stopped because an alternate diskette was not inserted. ERROR_DRIVE_LOCKED = 108, // (0x6C) The disk is in use or locked by another process. ERROR_BROKEN_PIPE = 109, // (0x6D) The pipe has been ended. ERROR_OPEN_FAILED = 110, // (0x6E) The system cannot open the device or file specified. ERROR_BUFFER_OVERFLOW = 111, // (0x6F) The file name is too long. ERROR_DISK_FULL = 112, // (0x70) There is not enough space on the disk. ERROR_NO_MORE_SEARCH_HANDLES = 113, // (0x71) No more internal file identifiers available. ERROR_INVALID_TARGET_HANDLE = 114, // (0x72) The target internal file identifier is incorrect. ERROR_INVALID_CATEGORY = 117, // (0x75) The IOCTL call made by the application program is not correct. ERROR_INVALID_VERIFY_SWITCH = 118, // (0x76) The verify-on-write switch parameter value is not correct. ERROR_BAD_DRIVER_LEVEL = 119, // (0x77) The system does not support the command requested. ERROR_CALL_NOT_IMPLEMENTED = 120, // (0x78) This function is not supported on this system. ERROR_SEM_TIMEOUT = 121, // (0x79) The semaphore timeout period has expired. ERROR_INSUFFICIENT_BUFFER = 122, // (0x7A) The data area passed to a system call is too small. ERROR_INVALID_NAME = 123, // (0x7B) The filename, directory name, or volume label syntax is incorrect. ERROR_INVALID_LEVEL = 124, // (0x7C) The system call level is not correct. ERROR_NO_VOLUME_LABEL = 125, // (0x7D) The disk has no volume label. ERROR_MOD_NOT_FOUND = 126, // (0x7E) The specified module could not be found. ERROR_PROC_NOT_FOUND = 127, // (0x7F) The specified procedure could not be found. ERROR_WAIT_NO_CHILDREN = 128, // (0x80) There are no child processes to wait for. ERROR_CHILD_NOT_COMPLETE = 129, // (0x81) The %1 application cannot be run in Win32 mode. ERROR_DIRECT_ACCESS_HANDLE = 130, // (0x82) Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O. ERROR_NEGATIVE_SEEK = 131, // (0x83) An attempt was made to move the file pointer before the beginning of the file. ERROR_SEEK_ON_DEVICE = 132, // (0x84) The file pointer cannot be set on the specified device or file. ERROR_IS_JOIN_TARGET = 133, // (0x85) A JOIN or SUBST command cannot be used for a drive that contains previously joined drives. ERROR_IS_JOINED = 134, // (0x86) An attempt was made to use a JOIN or SUBST command on a drive that has already been joined. ERROR_IS_SUBSTED = 135, // (0x87) An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted. ERROR_NOT_JOINED = 136, // (0x88) The system tried to delete the JOIN of a drive that is not joined. ERROR_NOT_SUBSTED = 137, // (0x89) The system tried to delete the substitution of a drive that is not substituted. ERROR_JOIN_TO_JOIN = 138, // (0x8A) The system tried to join a drive to a directory on a joined drive. ERROR_SUBST_TO_SUBST = 139, // (0x8B) The system tried to substitute a drive to a directory on a substituted drive. ERROR_JOIN_TO_SUBST = 140, // (0x8C) The system tried to join a drive to a directory on a substituted drive. ERROR_SUBST_TO_JOIN = 141, // (0x8D) The system tried to SUBST a drive to a directory on a joined drive. ERROR_BUSY_DRIVE = 142, // (0x8E) The system cannot perform a JOIN or SUBST at this time. ERROR_SAME_DRIVE = 143, // (0x8F) The system cannot join or substitute a drive to or for a directory on the same drive. ERROR_DIR_NOT_ROOT = 144, // (0x90) The directory is not a subdirectory of the root directory. ERROR_DIR_NOT_EMPTY = 145, // (0x91) The directory is not empty. ERROR_IS_SUBST_PATH = 146, // (0x92) The path specified is being used in a substitute. ERROR_IS_JOIN_PATH = 147, // (0x93) Not enough resources are available to process this command. ERROR_PATH_BUSY = 148, // (0x94) The path specified cannot be used at this time. ERROR_IS_SUBST_TARGET = 149, // (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_TRACE = 150, // (0x96) System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed. ERROR_INVALID_EVENT_COUNT = 151, // (0x97) The number of specified semaphore events for DosMuxSemWait is not correct. ERROR_TOO_MANY_MUXWAITERS = 152, // (0x98) DosMuxSemWait did not execute, too many semaphores are already set. ERROR_INVALID_LIST_FORMAT = 153, // (0x99) The DosMuxSemWait list is not correct. ERROR_LABEL_TOO_LONG = 154, // (0x9A) The volume label you entered exceeds the label character limit of the target file system. ERROR_TOO_MANY_TCBS = 155, // (0x9B) Cannot create another thread. ERROR_SIGNAL_REFUSED = 156, // (0x9C) The recipient process has refused the signal. ERROR_DISCARDED = 157, // (0x9D) The segment is already discarded and cannot be locked. ERROR_NOT_LOCKED = 158, // (0x9E) The segment is already unlocked. ERROR_BAD_THREADID_ADDR = 159, // (0x9F) The address for the thread ID is not correct. ERROR_BAD_ARGUMENTS = 160, // (0xA0) One or more arguments are not correct. ERROR_BAD_PATHNAME = 161, // (0xA1) The specified path is invalid. ERROR_SIGNAL_PENDING = 162, // (0xA2) A signal is already pending. ERROR_MAX_THRDS_REACHED = 164, // (0xA4) No more threads can be created in the system. ERROR_LOCK_FAILED = 167, // (0xA7) Unable to lock a region of a file. ERROR_BUSY = 170, // (0xAA) The requested resource is in use. ERROR_DEVICE_SUPPORT_IN_PROGRESS = 171, // (0xAB) Device’s command support detection is in progress. ERROR_CANCEL_VIOLATION = 173, // (0xAD) A lock request was not outstanding for the supplied cancel region. ERROR_ATOMIC_LOCKS_NOT_SUPPORTED = 174, // (0xAE) The file system does not support atomic changes to the lock type. ERROR_INVALID_SEGMENT_NUMBER = 180, // (0xB4) The system detected a segment number that was not correct. ERROR_INVALID_ORDINAL = 182, // (0xB6) The operating system cannot run %1. ERROR_ALREADY_EXISTS = 183, // (0xB7) Cannot create a file when that file already exists. ERROR_INVALID_FLAG_NUMBER = 186, // (0xBA) The flag passed is not correct. ERROR_SEM_NOT_FOUND = 187, // (0xBB) The specified system semaphore name was not found. ERROR_INVALID_STARTING_CODESEG = 188, // (0xBC) The operating system cannot run %1. ERROR_INVALID_STACKSEG = 189, // (0xBD) The operating system cannot run %1. ERROR_INVALID_MODULETYPE = 190, // (0xBE) The operating system cannot run %1. ERROR_INVALID_EXE_SIGNATURE = 191, // (0xBF) Cannot run %1 in Win32 mode. ERROR_EXE_MARKED_INVALID = 192, // (0xC0) The operating system cannot run %1. ERROR_BAD_EXE_FORMAT = 193, // (0xC1) %1 is not a valid Win32 application. ERROR_ITERATED_DATA_EXCEEDS_64k = 194, // (0xC2) The operating system cannot run %1. ERROR_INVALID_MINALLOCSIZE = 195, // (0xC3) The operating system cannot run %1. ERROR_DYNLINK_FROM_INVALID_RING = 196, // (0xC4) The operating system cannot run this application program. ERROR_IOPL_NOT_ENABLED = 197, // (0xC5) The operating system is not presently configured to run this application. ERROR_INVALID_SEGDPL = 198, // (0xC6) The operating system cannot run %1. ERROR_AUTODATASEG_EXCEEDS_64k = 199, // (0xC7) The operating system cannot run this application program. ERROR_RING2SEG_MUST_BE_MOVABLE = 200, // (0xC8) The code segment cannot be greater than or equal to 64K. ERROR_RELOC_CHAIN_XEEDS_SEGLIM = 201, // (0xC9) The operating system cannot run %1. ERROR_INFLOOP_IN_RELOC_CHAIN = 202, // (0xCA) The operating system cannot run %1. ERROR_ENVVAR_NOT_FOUND = 203, // (0xCB) The system could not find the environment option that was entered. ERROR_NO_SIGNAL_SENT = 205, // (0xCD) No process in the command subtree has a signal handler. ERROR_FILENAME_EXCED_RANGE = 206, // (0xCE) The filename or extension is too long. ERROR_RING2_STACK_IN_USE = 207, // (0xCF) The ring 2 stack is in use. ERROR_META_EXPANSION_TOO_LONG = 208, // (0xD0) The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified. ERROR_INVALID_SIGNAL_NUMBER = 209, // (0xD1) The signal being posted is not correct. ERROR_THREAD_1_INACTIVE = 210, // (0xD2) The signal handler cannot be set. ERROR_LOCKED = 212, // (0xD4) The segment is locked and cannot be reallocated. ERROR_TOO_MANY_MODULES = 214, // (0xD6) Too many dynamic-link modules are attached to this program or dynamic-link module. ERROR_NESTING_NOT_ALLOWED = 215, // (0xD7) Cannot nest calls to LoadModule. ERROR_EXE_MACHINE_TYPE_MISMATCH = 216, // (0xD8) This version of %1 is not compatible with the version of Windows you’re running. Check your computer’s system information and then contact the software publisher. ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY = 217, // (0xD9) The image file %1 is signed, unable to modify. ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY = 218, // (0xDA) The image file %1 is strong signed, unable to modify. ERROR_FILE_CHECKED_OUT = 220, // (0xDC) This file is checked out or locked for editing by another user. ERROR_CHECKOUT_REQUIRED = 221, // (0xDD) The file must be checked out before saving changes. ERROR_BAD_FILE_TYPE = 222, // (0xDE) The file type being saved or retrieved has been blocked. ERROR_FILE_TOO_LARGE = 223, // (0xDF) The file size exceeds the limit allowed and cannot be saved. ERROR_FORMS_AUTH_REQUIRED = 224, // (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_INFECTED = 225, // (0xE1) Operation did not complete successfully because the file contains a virus or potentially unwanted software. ERROR_VIRUS_DELETED = 226, // (0xE2) This file contains a virus or potentially unwanted software and cannot be opened. Due to the nature of this virus or potentially unwanted software, the file has been removed from this location. ERROR_PIPE_LOCAL = 229, // (0xE5) The pipe is local. ERROR_BAD_PIPE = 230, // (0xE6) The pipe state is invalid. ERROR_PIPE_BUSY = 231, // (0xE7) All pipe instances are busy. ERROR_NO_DATA = 232, // (0xE8) The pipe is being closed. ERROR_PIPE_NOT_CONNECTED = 233, // (0xE9) No process is on the other end of the pipe. ERROR_MORE_DATA = 234, // (0xEA) More data is available. ERROR_VC_DISCONNECTED = 240, // (0xF0) The session was canceled. ERROR_INVALID_EA_NAME = 254, // (0xFE) The specified extended attribute name was invalid. ERROR_EA_LIST_INCONSISTENT = 255, // (0xFF) The extended attributes are inconsistent. WAIT_TIMEOUT = 258, // (0x102) The wait operation timed out. ERROR_NO_MORE_ITEMS = 259, // (0x103) No more data is available. ERROR_CANNOT_COPY = 266, // (0x10A) The copy functions cannot be used. ERROR_DIRECTORY = 267, // (0x10B) The directory name is invalid. ERROR_EAS_DIDNT_FIT = 275, // (0x113) The extended attributes did not fit in the buffer. ERROR_EA_FILE_CORRUPT = 276, // (0x114) The extended attribute file on the mounted file system is corrupt. ERROR_EA_TABLE_FULL = 277, // (0x115) The extended attribute table file is full. ERROR_INVALID_EA_HANDLE = 278, // (0x116) The specified extended attribute handle is invalid. ERROR_EAS_NOT_SUPPORTED = 282, // (0x11A) The mounted file system does not support extended attributes. ERROR_NOT_OWNER = 288, // (0x120) Attempt to release mutex not owned by caller. ERROR_TOO_MANY_POSTS = 298, // (0x12A) Too many posts were made to a semaphore. ERROR_PARTIAL_COPY = 299, // (0x12B) Only part of a ReadProcessMemory or WriteProcessMemory request was completed. ERROR_OPLOCK_NOT_GRANTED = 300, // (0x12C) The oplock request is denied. ERROR_INVALID_OPLOCK_PROTOCOL = 301, // (0x12D) An invalid oplock acknowledgment was received by the system. ERROR_DISK_TOO_FRAGMENTED = 302, // (0x12E) The volume is too fragmented to complete this operation. ERROR_DELETE_PENDING = 303, // (0x12F) The file cannot be opened because it is in the process of being deleted. ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING = 304, // (0x130) Short name settings may not be changed on this volume due to the global registry setting. ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME = 305, // (0x131) Short names are not enabled on this volume. ERROR_SECURITY_STREAM_IS_INCONSISTENT = 306, // (0x132) The security stream for the given volume is in an inconsistent state. Please run CHKDSK on the volume. ERROR_INVALID_LOCK_RANGE = 307, // (0x133) A requested file lock operation cannot be processed due to an invalid byte range. ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT = 308, // (0x134) The subsystem needed to support the image type is not present. ERROR_NOTIFICATION_GUID_ALREADY_DEFINED = 309, // (0x135) The specified file already has a notification GUID associated with it. ERROR_INVALID_EXCEPTION_HANDLER = 310, // (0x136) An invalid exception handler routine has been detected. ERROR_DUPLICATE_PRIVILEGES = 311, // (0x137) Duplicate privileges were specified for the token. ERROR_NO_RANGES_PROCESSED = 312, // (0x138) No ranges for the specified operation were able to be processed. ERROR_NOT_ALLOWED_ON_SYSTEM_FILE = 313, // (0x139) Operation is not allowed on a file system internal file. ERROR_DISK_RESOURCES_EXHAUSTED = 314, // (0x13A) The physical resources of this disk have been exhausted. ERROR_INVALID_TOKEN = 315, // (0x13B) The token representing the data is invalid. ERROR_DEVICE_FEATURE_NOT_SUPPORTED = 316, // (0x13C) The device does not support the command feature. ERROR_MR_MID_NOT_FOUND = 317, // (0x13D) The system cannot find message text for message number 0x%1 in the message file for %2. ERROR_SCOPE_NOT_FOUND = 318, // (0x13E) The scope specified was not found. ERROR_UNDEFINED_SCOPE = 319, // (0x13F) The Central Access Policy specified is not defined on the target machine. ERROR_INVALID_CAP = 320, // (0x140) The Central Access Policy obtained from Active Directory is invalid. ERROR_DEVICE_UNREACHABLE = 321, // (0x141) The device is unreachable. ERROR_DEVICE_NO_RESOURCES = 322, // (0x142) The target device has insufficient resources to complete the operation. ERROR_DATA_CHECKSUM_ERROR = 323, // (0x143) A data integrity checksum error occurred. Data in the file stream is corrupt. ERROR_INTERMIXED_KERNEL_EA_OPERATION = 324, // (0x144) An attempt was made to modify both a KERNEL and normal Extended Attribute, // (EA) in the same operation. ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED = 326, // (0x146) Device does not support file-level TRIM. ERROR_OFFSET_ALIGNMENT_VIOLATION = 327, // (0x147) The command specified a data offset that does not align to the device’s granularity/alignment. ERROR_INVALID_FIELD_IN_PARAMETER_LIST = 328, // (0x148) The command specified an invalid field in its parameter list. ERROR_OPERATION_IN_PROGRESS = 329, // (0x149) An operation is currently in progress with the device. ERROR_BAD_DEVICE_PATH = 330, // (0x14A) An attempt was made to send down the command via an invalid path to the target device. ERROR_TOO_MANY_DESCRIPTORS = 331, // (0x14B) The command specified a number of descriptors that exceeded the maximum supported by the device. ERROR_SCRUB_DATA_DISABLED = 332, // (0x14C) Scrub is disabled on the specified file. ERROR_NOT_REDUNDANT_STORAGE = 333, // (0x14D) The storage device does not provide redundancy. ERROR_RESIDENT_FILE_NOT_SUPPORTED = 334, // (0x14E) An operation is not supported on a resident file. ERROR_COMPRESSED_FILE_NOT_SUPPORTED = 335, // (0x14F) An operation is not supported on a compressed file. ERROR_DIRECTORY_NOT_SUPPORTED = 336, // (0x150) An operation is not supported on a directory. ERROR_NOT_READ_FROM_COPY = 337, // (0x151) The specified copy of the requested data could not be read. ERROR_FAIL_NOACTION_REBOOT = 350, // (0x15E) No action was taken as a system reboot is required. ERROR_FAIL_SHUTDOWN = 351, // (0x15F) The shutdown operation failed. ERROR_FAIL_RESTART = 352, // (0x160) The restart operation failed. ERROR_MAX_SESSIONS_REACHED = 353, // (0x161) The maximum number of sessions has been reached. ERROR_THREAD_MODE_ALREADY_BACKGROUND = 400, // (0x190) The thread is already in background processing mode. ERROR_THREAD_MODE_NOT_BACKGROUND = 401, // (0x191) The thread is not in background processing mode. ERROR_PROCESS_MODE_ALREADY_BACKGROUND = 402, // (0x192) The process is already in background processing mode. ERROR_PROCESS_MODE_NOT_BACKGROUND = 403, // (0x193) The process is not in background processing mode. ERROR_INVALID_ADDRESS = 487, // (0x1E7) Attempt to access invalid address. ERROR_USER_PROFILE_LOAD = 500, // (0x1F4) User profile cannot be loaded. ERROR_ARITHMETIC_OVERFLOW = 534, // (0x216) Arithmetic result exceeded 32 bits. ERROR_PIPE_CONNECTED = 535, // (0x217) There is a process on other end of the pipe. ERROR_PIPE_LISTENING = 536, // (0x218) Waiting for a process to open the other end of the pipe. ERROR_VERIFIER_STOP = 537, // (0x219) Application verifier has found an error in the current process. ERROR_ABIOS_ERROR = 538, // (0x21A) An error occurred in the ABIOS subsystem. ERROR_WX86_WARNING = 539, // (0x21B) A warning occurred in the WX86 subsystem. ERROR_WX86_ERROR = 540, // (0x21C) An error occurred in the WX86 subsystem. ERROR_TIMER_NOT_CANCELED = 541, // (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_UNWIND = 542, // (0x21E) Unwind exception code. ERROR_BAD_STACK = 543, // (0x21F) An invalid or unaligned stack was encountered during an unwind operation. ERROR_INVALID_UNWIND_TARGET = 544, // (0x220) An invalid unwind target was encountered during an unwind operation. ERROR_INVALID_PORT_ATTRIBUTES = 545, // (0x221) Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort ERROR_PORT_MESSAGE_TOO_LONG = 546, // (0x222) Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port. ERROR_INVALID_QUOTA_LOWER = 547, // (0x223) An attempt was made to lower a quota limit below the current usage. ERROR_DEVICE_ALREADY_ATTACHED = 548, // (0x224) An attempt was made to attach to a device that was already attached to another device. ERROR_INSTRUCTION_MISALIGNMENT = 549, // (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_STARTED = 550, // (0x226) Profiling not started. ERROR_PROFILING_NOT_STOPPED = 551, // (0x227) Profiling not stopped. ERROR_COULD_NOT_INTERPRET = 552, // (0x228) The passed ACL did not contain the minimum required information. ERROR_PROFILING_AT_LIMIT = 553, // (0x229) The number of active profiling objects is at the maximum and no more may be started. ERROR_CANT_WAIT = 554, // (0x22A) Used to indicate that an operation cannot continue without blocking for I/O. ERROR_CANT_TERMINATE_SELF = 555, // (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_ERR = 556, // (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_ERROR = 557, // (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_ERR = 558, // (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_TABLE = 559, // (0x22F) A malformed function table was encountered during an unwind operation. ERROR_NO_GUID_TRANSLATION = 560, // (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_SIZE = 561, // (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_OFFSET = 563, // (0x233) Indicates that the starting value for the LDT information was not an integral multiple of the selector size. ERROR_INVALID_LDT_DESCRIPTOR = 564, // (0x234) Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors. ERROR_TOO_MANY_THREADS = 565, // (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_PROCESS = 566, // (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_EXCEEDED = 567, // (0x237) Page file quota was exceeded. ERROR_LOGON_SERVER_CONFLICT = 568, // (0x238) The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role. ERROR_SYNCHRONIZATION_REQUIRED = 569, // (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_FAILED = 570, // (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_FAILED = 571, // (0x23B) {Privilege Failed} The I/O permissions for the process could not be changed. ERROR_CONTROL_C_EXIT = 572, // (0x23C) {Application Exit by CTRL+C} The application terminated as a result of a CTRL+C. ERROR_MISSING_SYSTEMFILE = 573, // (0x23D) {Missing System File} The required system file %hs is bad or missing. ERROR_UNHANDLED_EXCEPTION = 574, // (0x23E) {Application Error} The exception %s, // (0x%08lx) occurred in the application at location 0x%08lx. ERROR_APP_INIT_FAILURE = 575, // (0x23F) {Application Error} The application was unable to start correctly, // (0x%lx). Click OK to close the application. ERROR_PAGEFILE_CREATE_FAILED = 576, // (0x240) {Unable to Create Paging File} The creation of the paging file %hs failed, // (%lx). The requested size was %ld. ERROR_INVALID_IMAGE_HASH = 577, // (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_PAGEFILE = 578, // (0x242) {No Paging File Specified} No paging file was specified in the system configuration. ERROR_ILLEGAL_FLOAT_CONTEXT = 579, // (0x243) {EXCEPTION} A real-mode application issued a floating-point instruction and floating-point hardware is not present. ERROR_NO_EVENT_PAIR = 580, // (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_ERROR = 581, // (0x245) A Windows Server has an incorrect configuration. ERROR_ILLEGAL_CHARACTER = 582, // (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_CHARACTER = 583, // (0x247) The Unicode character is not defined in the Unicode character set installed on the system. ERROR_FLOPPY_VOLUME = 584, // (0x248) The paging file cannot be created on a floppy diskette. ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT = 585, // (0x249) The system BIOS failed to connect a system interrupt to the device or bus for which the device is connected. ERROR_BACKUP_CONTROLLER = 586, // (0x24A) This operation is only allowed for the Primary Domain Controller of the domain. ERROR_MUTANT_LIMIT_EXCEEDED = 587, // (0x24B) An attempt was made to acquire a mutant such that its maximum count would have been exceeded. ERROR_FS_DRIVER_REQUIRED = 588, // (0x24C) A volume has been accessed for which a file system driver is required that has not yet been loaded. ERROR_CANNOT_LOAD_REGISTRY_FILE = 589, // (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_FAILED = 590, // (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_TERMINATED = 591, // (0x24F) {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. ERROR_DATA_NOT_ACCEPTED = 592, // (0x250) {Data Not Accepted} The TDI client could not handle the data received during an indication. ERROR_VDM_HARD_ERROR = 593, // (0x251) NTVDM encountered a hard error. ERROR_DRIVER_CANCEL_TIMEOUT = 594, // (0x252) {Cancel Timeout} The driver %hs failed to complete a cancelled I/O request in the allotted time. ERROR_REPLY_MESSAGE_MISMATCH = 595, // (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_DATA = 596, // (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_INVALID = 597, // (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_STREAM = 598, // (0x256) The stream is not a tiny stream. ERROR_STACK_OVERFLOW_READ = 599, // (0x257) The request must be handled by the stack overflow code. ERROR_CONVERT_TO_LARGE = 600, // (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_SCOPE = 601, // (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_BUCKET = 602, // (0x25A) The bucket array must be grown. Retry transaction after doing so. ERROR_MARSHALL_OVERFLOW = 603, // (0x25B) The user/kernel marshalling buffer has overflowed. ERROR_INVALID_VARIANT = 604, // (0x25C) The supplied variant structure contains invalid data. ERROR_BAD_COMPRESSION_BUFFER = 605, // (0x25D) The specified buffer contains ill-formed data. ERROR_AUDIT_FAILED = 606, // (0x25E) {Audit Failed} An attempt to generate a security audit failed. ERROR_TIMER_RESOLUTION_NOT_SET = 607, // (0x25F) The timer resolution was not previously set by the current process. ERROR_INSUFFICIENT_LOGON_INFO = 608, // (0x260) There is insufficient account information to log you on. ERROR_BAD_DLL_ENTRYPOINT = 609, // (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_ENTRYPOINT = 610, // (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_CONFLICT1 = 611, // (0x263) There is an IP address conflict with another system on the network. ERROR_IP_ADDRESS_CONFLICT2 = 612, // (0x264) There is an IP address conflict with another system on the network. ERROR_REGISTRY_QUOTA_LIMIT = 613, // (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_ACTIVE = 614, // (0x266) A callback return system service cannot be executed when no callback is active. ERROR_PWD_TOO_SHORT = 615, // (0x267) The password provided is too short to meet the policy of your user account. Please choose a longer password. ERROR_PWD_TOO_RECENT = 616, // (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_CONFLICT = 617, // (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_COMPRESSION = 618, // (0x26A) The specified compression format is unsupported. ERROR_INVALID_HW_PROFILE = 619, // (0x26B) The specified hardware profile configuration is invalid. ERROR_INVALID_PLUGPLAY_DEVICE_PATH = 620, // (0x26C) The specified Plug and Play registry device path is invalid. ERROR_QUOTA_LIST_INCONSISTENT = 621, // (0x26D) The specified quota list is internally inconsistent with its descriptor. ERROR_EVALUATION_EXPIRATION = 622, // (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_RELOCATION = 623, // (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_LOGOFF = 624, // (0x270) {DLL Initialization Failed} The application failed to initialize because the window station is shutting down. ERROR_VALIDATE_CONTINUE = 625, // (0x271) The validation process needs to continue on to the next step. ERROR_NO_MORE_MATCHES = 626, // (0x272) There are no more matches for the current index enumeration. ERROR_RANGE_LIST_CONFLICT = 627, // (0x273) The range could not be added to the range list because of a conflict. ERROR_SERVER_SID_MISMATCH = 628, // (0x274) The server process is running under a SID different than that required by client. ERROR_CANT_ENABLE_DENY_ONLY = 629, // (0x275) A group marked use for deny only cannot be enabled. ERROR_FLOAT_MULTIPLE_FAULTS = 630, // (0x276) {EXCEPTION} Multiple floating point faults. ERROR_FLOAT_MULTIPLE_TRAPS = 631, // (0x277) {EXCEPTION} Multiple floating point traps. ERROR_NOINTERFACE = 632, // (0x278) The requested interface is not supported. ERROR_DRIVER_FAILED_SLEEP = 633, // (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_FILE = 634, // (0x27A) The system file %1 has become corrupt and has been replaced. ERROR_COMMITMENT_MINIMUM = 635, // (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_ENUMERATION = 636, // (0x27C) A device was removed so enumeration must be restarted. ERROR_SYSTEM_IMAGE_BAD_SIGNATURE = 637, // (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_REQUIRED = 638, // (0x27E) Device will not start without a reboot. ERROR_INSUFFICIENT_POWER = 639, // (0x27F) There is not enough power to complete the requested operation. ERROR_MULTIPLE_FAULT_VIOLATION = 640, // (0x280) ERROR_MULTIPLE_FAULT_VIOLATION ERROR_SYSTEM_SHUTDOWN = 641, // (0x281) The system is in the process of shutting down. ERROR_PORT_NOT_SET = 642, // (0x282) An attempt to remove a processes DebugPort was made, but a port was not already associated with the process. ERROR_DS_VERSION_CHECK_FAILURE = 643, // (0x283) This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller. ERROR_RANGE_NOT_FOUND = 644, // (0x284) The specified range could not be found in the range list. ERROR_NOT_SAFE_MODE_DRIVER = 646, // (0x286) The driver was not loaded because the system is booting into safe mode. ERROR_FAILED_DRIVER_ENTRY = 647, // (0x287) The driver was not loaded because it failed its initialization call. ERROR_DEVICE_ENUMERATION_ERROR = 648, // (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_RESOLVED = 649, // (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_PARAMETER = 650, // (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_OCCURED = 651, // (0x28B) A Machine Check Error has occurred. Please check the system eventlog for additional information. ERROR_DRIVER_DATABASE_ERROR = 652, // (0x28C) There was error [%2] processing the driver database. ERROR_SYSTEM_HIVE_TOO_LARGE = 653, // (0x28D) System hive size has exceeded its limit. ERROR_DRIVER_FAILED_PRIOR_UNLOAD = 654, // (0x28E) The driver could not be loaded because a previous version of the driver is still in memory. ERROR_VOLSNAP_PREPARE_HIBERNATE = 655, // (0x28F) {Volume Shadow Copy Service} Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation. ERROR_HIBERNATION_FAILURE = 656, // (0x290) The system has failed to hibernate, // (The error code is %hs). Hibernation will be disabled until the system is restarted. ERROR_PWD_TOO_LONG = 657, // (0x291) The password provided is too long to meet the policy of your user account. Please choose a shorter password. ERROR_FILE_SYSTEM_LIMITATION = 665, // (0x299) The requested operation could not be completed due to a file system limitation. ERROR_ASSERTION_FAILURE = 668, // (0x29C) An assertion failure has occurred. ERROR_ACPI_ERROR = 669, // (0x29D) An error occurred in the ACPI subsystem. ERROR_WOW_ASSERTION = 670, // (0x29E) WOW Assertion Error. ERROR_PNP_BAD_MPS_TABLE = 671, // (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_FAILED = 672, // (0x2A0) A translator failed to translate resources. ERROR_PNP_IRQ_TRANSLATION_FAILED = 673, // (0x2A1) A IRQ translator failed to translate resources. ERROR_PNP_INVALID_ID = 674, // (0x2A2) Driver %2 returned invalid ID for a child device, // (%3). ERROR_WAKE_SYSTEM_DEBUGGER = 675, // (0x2A3) {Kernel Debugger Awakened} the system debugger was awakened by an interrupt. ERROR_HANDLES_CLOSED = 676, // (0x2A4) {Handles Closed} Handles to objects have been automatically closed as a result of the requested operation. ERROR_EXTRANEOUS_INFORMATION = 677, // (0x2A5) {Too Much Information} The specified access control list, // (ACL) contained more information than was expected. ERROR_RXACT_COMMIT_NECESSARY = 678, // (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_CHECK = 679, // (0x2A7) {Media Changed} The media may have changed. ERROR_GUID_SUBSTITUTION_MADE = 680, // (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_SYMLINK = 681, // (0x2A9) The create operation stopped after reaching a symbolic link. ERROR_LONGJUMP = 682, // (0x2AA) A long jump has been executed. ERROR_PLUGPLAY_QUERY_VETOED = 683, // (0x2AB) The Plug and Play query operation was not successful. ERROR_UNWIND_CONSOLIDATE = 684, // (0x2AC) A frame consolidation has been executed. ERROR_REGISTRY_HIVE_RECOVERED = 685, // (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_INSECURE = 686, // (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_INCOMPATIBLE = 687, // (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_HANDLED = 688, // (0x2B0) Debugger did not handle the exception. ERROR_DBG_REPLY_LATER = 689, // (0x2B1) Debugger will reply later. ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE = 690, // (0x2B2) Debugger cannot provide handle. ERROR_DBG_TERMINATE_THREAD = 691, // (0x2B3) Debugger terminated thread. ERROR_DBG_TERMINATE_PROCESS = 692, // (0x2B4) Debugger terminated process. ERROR_DBG_CONTROL_C = 693, // (0x2B5) Debugger got control C. ERROR_DBG_PRINTEXCEPTION_C = 694, // (0x2B6) Debugger printed exception on control C. ERROR_DBG_RIPEXCEPTION = 695, // (0x2B7) Debugger received RIP exception. ERROR_DBG_CONTROL_BREAK = 696, // (0x2B8) Debugger received control break. ERROR_DBG_COMMAND_EXCEPTION = 697, // (0x2B9) Debugger command communication exception. ERROR_OBJECT_NAME_EXISTS = 698, // (0x2BA) {Object Exists} An attempt was made to create an object and the object name already existed. ERROR_THREAD_WAS_SUSPENDED = 699, // (0x2BB) {Thread Suspended} A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded. ERROR_IMAGE_NOT_AT_BASE = 700, // (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_CREATED = 701, // (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_NOTIFICATION = 702, // (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_DIRECTORY = 703, // (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_BACKUP = 704, // (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_RECOVERY = 705, // (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_MISMATCH = 706, // (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_PARTIAL = 707, // (0x2C3) {Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later. ERROR_RECEIVE_EXPEDITED = 708, // (0x2C4) {Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system. ERROR_RECEIVE_PARTIAL_EXPEDITED = 709, // (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_DONE = 710, // (0x2C6) {TDI Event Done} The TDI indication has completed successfully. ERROR_EVENT_PENDING = 711, // (0x2C7) {TDI Event Pending} The TDI indication has entered the pending state. ERROR_CHECKING_FILE_SYSTEM = 712, // (0x2C8) Checking file system on %wZ. ERROR_FATAL_APP_EXIT = 713, // (0x2C9) {Fatal Application Exit} %hs. ERROR_PREDEFINED_HANDLE = 714, // (0x2CA) The specified registry key is referenced by a predefined handle. ERROR_WAS_UNLOCKED = 715, // (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_NOTIFICATION = 716, // (0x2CC) %hs ERROR_WAS_LOCKED = 717, // (0x2CD) {Page Locked} One of the pages to lock was already locked. ERROR_LOG_HARD_ERROR = 718, // (0x2CE) Application popup: %1 : %2 ERROR_ALREADY_WIN32 = 719, // (0x2CF) ERROR_ALREADY_WIN32 ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE = 720, // (0x2D0) {Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine. ERROR_NO_YIELD_PERFORMED = 721, // (0x2D1) A yield execution was performed and no thread was available to run. ERROR_TIMER_RESUME_IGNORED = 722, // (0x2D2) The resumable flag to a timer API was ignored. ERROR_ARBITRATION_UNHANDLED = 723, // (0x2D3) The arbiter has deferred arbitration of these resources to its parent. ERROR_CARDBUS_NOT_SUPPORTED = 724, // (0x2D4) The inserted CardBus device cannot be started because of a configuration error on «%hs». ERROR_MP_PROCESSOR_MISMATCH = 725, // (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_HIBERNATED = 726, // (0x2D6) The system was put into hibernation. ERROR_RESUME_HIBERNATION = 727, // (0x2D7) The system was resumed from hibernation. ERROR_FIRMWARE_UPDATED = 728, // (0x2D8) Windows has detected that the system firmware, // (BIOS) was updated [previous firmware date = %2, current firmware date %3]. ERROR_DRIVERS_LEAKING_LOCKED_PAGES = 729, // (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_SYSTEM = 730, // (0x2DA) The system has awoken. ERROR_WAIT_1 = 731, // (0x2DB) ERROR_WAIT_1 ERROR_WAIT_2 = 732, // (0x2DC) ERROR_WAIT_2 ERROR_WAIT_3 = 733, // (0x2DD) ERROR_WAIT_3 ERROR_WAIT_63 = 734, // (0x2DE) ERROR_WAIT_63 ERROR_ABANDONED_WAIT_0 = 735, // (0x2DF) ERROR_ABANDONED_WAIT_0 ERROR_ABANDONED_WAIT_63 = 736, // (0x2E0) ERROR_ABANDONED_WAIT_63 ERROR_USER_APC = 737, // (0x2E1) ERROR_USER_APC ERROR_KERNEL_APC = 738, // (0x2E2) ERROR_KERNEL_APC ERROR_ALERTED = 739, // (0x2E3) ERROR_ALERTED ERROR_ELEVATION_REQUIRED = 740, // (0x2E4) The requested operation requires elevation. ERROR_REPARSE = 741, // (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_PROGRESS = 742, // (0x2E6) An open/create operation completed while an oplock break is underway. ERROR_VOLUME_MOUNTED = 743, // (0x2E7) A new volume has been mounted by a file system. ERROR_RXACT_COMMITTED = 744, // (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_CLEANUP = 745, // (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_FAILED = 746, // (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_TRANSITION = 747, // (0x2EB) Page fault was a transition fault. ERROR_PAGE_FAULT_DEMAND_ZERO = 748, // (0x2EC) Page fault was a demand zero fault. ERROR_PAGE_FAULT_COPY_ON_WRITE = 749, // (0x2ED) Page fault was a demand zero fault. ERROR_PAGE_FAULT_GUARD_PAGE = 750, // (0x2EE) Page fault was a demand zero fault. ERROR_PAGE_FAULT_PAGING_FILE = 751, // (0x2EF) Page fault was satisfied by reading from a secondary storage device. ERROR_CACHE_PAGE_LOCKED = 752, // (0x2F0) Cached page was locked during operation. ERROR_CRASH_DUMP = 753, // (0x2F1) Crash dump exists in paging file. ERROR_BUFFER_ALL_ZEROS = 754, // (0x2F2) Specified buffer contains all zeros. ERROR_REPARSE_OBJECT = 755, // (0x2F3) A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. ERROR_RESOURCE_REQUIREMENTS_CHANGED = 756, // (0x2F4) The device has succeeded a query-stop and its resource requirements have changed. ERROR_TRANSLATION_COMPLETE = 757, // (0x2F5) The translator has translated these resources into the global space and no further translations should be performed. ERROR_NOTHING_TO_TERMINATE = 758, // (0x2F6) A process being terminated has no threads to terminate. ERROR_PROCESS_NOT_IN_JOB = 759, // (0x2F7) The specified process is not part of a job. ERROR_PROCESS_IN_JOB = 760, // (0x2F8) The specified process is part of a job. ERROR_VOLSNAP_HIBERNATE_READY = 761, // (0x2F9) {Volume Shadow Copy Service} The system is now ready for hibernation. ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY = 762, // (0x2FA) A file system or file system filter driver has successfully completed an FsFilter operation. ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED = 763, // (0x2FB) The specified interrupt vector was already connected. ERROR_INTERRUPT_STILL_CONNECTED = 764, // (0x2FC) The specified interrupt vector is still connected. ERROR_WAIT_FOR_OPLOCK = 765, // (0x2FD) An operation is blocked waiting for an oplock. ERROR_DBG_EXCEPTION_HANDLED = 766, // (0x2FE) Debugger handled exception. ERROR_DBG_CONTINUE = 767, // (0x2FF) Debugger continued. ERROR_CALLBACK_POP_STACK = 768, // (0x300) An exception occurred in a user mode callback and the kernel callback frame should be removed. ERROR_COMPRESSION_DISABLED = 769, // (0x301) Compression is disabled for this volume. ERROR_CANTFETCHBACKWARDS = 770, // (0x302) The data provider cannot fetch backwards through a result set. ERROR_CANTSCROLLBACKWARDS = 771, // (0x303) The data provider cannot scroll backwards through a result set. ERROR_ROWSNOTRELEASED = 772, // (0x304) The data provider requires that previously fetched data is released before asking for more data. ERROR_BAD_ACCESSOR_FLAGS = 773, // (0x305) The data provider was not able to interpret the flags set for a column binding in an accessor. ERROR_ERRORS_ENCOUNTERED = 774, // (0x306) One or more errors occurred while processing the request. ERROR_NOT_CAPABLE = 775, // (0x307) The implementation is not capable of performing the request. ERROR_REQUEST_OUT_OF_SEQUENCE = 776, // (0x308) The client of a component requested an operation which is not valid given the state of the component instance. ERROR_VERSION_PARSE_ERROR = 777, // (0x309) A version number could not be parsed. ERROR_BADSTARTPOSITION = 778, // (0x30A) The iterator’s start position is invalid. ERROR_MEMORY_HARDWARE = 779, // (0x30B) The hardware has reported an uncorrectable memory error. ERROR_DISK_REPAIR_DISABLED = 780, // (0x30C) The attempted operation required self healing to be enabled. ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE = 781, // (0x30D) The Desktop heap encountered an error while allocating session memory. There is more information in the system event log. ERROR_SYSTEM_POWERSTATE_TRANSITION = 782, // (0x30E) The system power state is transitioning from %2 to %3. ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION = 783, // (0x30F) The system power state is transitioning from %2 to %3 but could enter %4. ERROR_MCA_EXCEPTION = 784, // (0x310) A thread is getting dispatched with MCA EXCEPTION because of MCA. ERROR_ACCESS_AUDIT_BY_POLICY = 785, // (0x311) Access to %1 is monitored by policy rule %2. ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY = 786, // (0x312) Access to %1 has been restricted by your Administrator by policy rule %2. ERROR_ABANDON_HIBERFILE = 787, // (0x313) A valid hibernation file has been invalidated and should be abandoned. ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED = 788, // (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_ERROR = 789, // (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_ERROR = 790, // (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_TABLE = 791, // (0x317) The resources required for this device conflict with the MCFG table. ERROR_DISK_REPAIR_REDIRECTED = 792, // (0x318) The volume repair could not be performed while it is online. Please schedule to take the volume offline so that it can be repaired. ERROR_DISK_REPAIR_UNSUCCESSFUL = 793, // (0x319) The volume repair was not successful. ERROR_CORRUPT_LOG_OVERFULL = 794, // (0x31A) One of the volume corruption logs is full. Further corruptions that may be detected won’t be logged. ERROR_CORRUPT_LOG_CORRUPTED = 795, // (0x31B) One of the volume corruption logs is internally corrupted and needs to be recreated. The volume may contain undetected corruptions and must be scanned. ERROR_CORRUPT_LOG_UNAVAILABLE = 796, // (0x31C) One of the volume corruption logs is unavailable for being operated on. ERROR_CORRUPT_LOG_DELETED_FULL = 797, // (0x31D) One of the volume corruption logs was deleted while still having corruption records in them. The volume contains detected corruptions and must be scanned. ERROR_CORRUPT_LOG_CLEARED = 798, // (0x31E) One of the volume corruption logs was cleared by chkdsk and no longer contains real corruptions. ERROR_ORPHAN_NAME_EXHAUSTED = 799, // (0x31F) Orphaned files exist on the volume but could not be recovered because no more new names could be created in the recovery directory. Files must be moved from the recovery directory. ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE = 800, // (0x320) The oplock that was associated with this handle is now associated with a different handle. ERROR_CANNOT_GRANT_REQUESTED_OPLOCK = 801, // (0x321) An oplock of the requested level cannot be granted. An oplock of a lower level may be available. ERROR_CANNOT_BREAK_OPLOCK = 802, // (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_CLOSED = 803, // (0x323) The handle with which this oplock was associated has been closed. The oplock is now broken. ERROR_NO_ACE_CONDITION = 804, // (0x324) The specified access control entry, // (ACE) does not contain a condition. ERROR_INVALID_ACE_CONDITION = 805, // (0x325) The specified access control entry, // (ACE) contains an invalid condition. ERROR_FILE_HANDLE_REVOKED = 806, // (0x326) Access to the specified file handle has been revoked. ERROR_IMAGE_AT_DIFFERENT_BASE = 807, // (0x327) An image file was mapped at a different address from the one specified in the image file but fixups will still be automatically performed on the image. ERROR_EA_ACCESS_DENIED = 994, // (0x3E2) Access to the extended attribute was denied. ERROR_OPERATION_ABORTED = 995, // (0x3E3) The I/O operation has been aborted because of either a thread exit or an application request. ERROR_IO_INCOMPLETE = 996, // (0x3E4) Overlapped I/O event is not in a signaled state. ERROR_IO_PENDING = 997, // (0x3E5) Overlapped I/O operation is in progress. ERROR_NOACCESS = 998, // (0x3E6) Invalid access to memory location. ERROR_SWAPERROR = 999, // (0x3E7) Error performing inpage operation. ERROR_STACK_OVERFLOW = 1001, // (0x3E9) Recursion too deep, the stack overflowed. ERROR_INVALID_MESSAGE = 1002, // (0x3EA) The window cannot act on the sent message. ERROR_CAN_NOT_COMPLETE = 1003, // (0x3EB) Cannot complete this function. ERROR_INVALID_FLAGS = 1004, // (0x3EC) Invalid flags. ERROR_UNRECOGNIZED_VOLUME = 1005, // (0x3ED) The volume does not contain a recognized file system. Please make sure that all required file system drivers are loaded and that the volume is not corrupted. ERROR_FILE_INVALID = 1006, // (0x3EE) The volume for a file has been externally altered so that the opened file is no longer valid. ERROR_FULLSCREEN_MODE = 1007, // (0x3EF) The requested operation cannot be performed in full-screen mode. ERROR_NO_TOKEN = 1008, // (0x3F0) An attempt was made to reference a token that does not exist. ERROR_BADDB = 1009, // (0x3F1) The configuration registry database is corrupt. ERROR_BADKEY = 1010, // (0x3F2) The configuration registry key is invalid. ERROR_CANTOPEN = 1011, // (0x3F3) The configuration registry key could not be opened. ERROR_CANTREAD = 1012, // (0x3F4) The configuration registry key could not be read. ERROR_CANTWRITE = 1013, // (0x3F5) The configuration registry key could not be written. ERROR_REGISTRY_RECOVERED = 1014, // (0x3F6) One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful. ERROR_REGISTRY_CORRUPT = 1015, // (0x3F7) The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system’s memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted. ERROR_REGISTRY_IO_FAILED = 1016, // (0x3F8) An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system’s image of the registry. ERROR_NOT_REGISTRY_FILE = 1017, // (0x3F9) The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format. ERROR_KEY_DELETED = 1018, // (0x3FA) Illegal operation attempted on a registry key that has been marked for deletion. ERROR_NO_LOG_SPACE = 1019, // (0x3FB) System could not allocate the required space in a registry log. ERROR_KEY_HAS_CHILDREN = 1020, // (0x3FC) Cannot create a symbolic link in a registry key that already has subkeys or values. ERROR_CHILD_MUST_BE_VOLATILE = 1021, // (0x3FD) Cannot create a stable subkey under a volatile parent key. ERROR_NOTIFY_ENUM_DIR = 1022, // (0x3FE) A notify change request is being completed and the information is not being returned in the caller’s buffer. The caller now needs to enumerate the files to find the changes. ERROR_DEPENDENT_SERVICES_RUNNING = 1051, // (0x41B) A stop control has been sent to a service that other running services are dependent on. ERROR_INVALID_SERVICE_CONTROL = 1052, // (0x41C) The requested control is not valid for this service. ERROR_SERVICE_REQUEST_TIMEOUT = 1053, // (0x41D) The service did not respond to the start or control request in a timely fashion. ERROR_SERVICE_NO_THREAD = 1054, // (0x41E) A thread could not be created for the service. ERROR_SERVICE_DATABASE_LOCKED = 1055, // (0x41F) The service database is locked. ERROR_SERVICE_ALREADY_RUNNING = 1056, // (0x420) An instance of the service is already running. ERROR_INVALID_SERVICE_ACCOUNT = 1057, // (0x421) The account name is invalid or does not exist, or the password is invalid for the account name specified. ERROR_SERVICE_DISABLED = 1058, // (0x422) The service cannot be started, either because it is disabled or because it has no enabled devices associated with it. ERROR_CIRCULAR_DEPENDENCY = 1059, // (0x423) Circular service dependency was specified. ERROR_SERVICE_DOES_NOT_EXIST = 1060, // (0x424) The specified service does not exist as an installed service. ERROR_SERVICE_CANNOT_ACCEPT_CTRL = 1061, // (0x425) The service cannot accept control messages at this time. ERROR_SERVICE_NOT_ACTIVE = 1062, // (0x426) The service has not been started. ERROR_FAILED_SERVICE_CONTROLLER_CONNECT = 1063, // (0x427) The service process could not connect to the service controller. ERROR_EXCEPTION_IN_SERVICE = 1064, // (0x428) An exception occurred in the service when handling the control request. ERROR_DATABASE_DOES_NOT_EXIST = 1065, // (0x429) The database specified does not exist. ERROR_SERVICE_SPECIFIC_ERROR = 1066, // (0x42A) The service has returned a service-specific error code. ERROR_PROCESS_ABORTED = 1067, // (0x42B) The process terminated unexpectedly. ERROR_SERVICE_DEPENDENCY_FAIL = 1068, // (0x42C) The dependency service or group failed to start. ERROR_SERVICE_LOGON_FAILED = 1069, // (0x42D) The service did not start due to a logon failure. ERROR_SERVICE_START_HANG = 1070, // (0x42E) After starting, the service hung in a start-pending state. ERROR_INVALID_SERVICE_LOCK = 1071, // (0x42F) The specified service database lock is invalid. ERROR_SERVICE_MARKED_FOR_DELETE = 1072, // (0x430) The specified service has been marked for deletion. ERROR_SERVICE_EXISTS = 1073, // (0x431) The specified service already exists. ERROR_ALREADY_RUNNING_LKG = 1074, // (0x432) The system is currently running with the last-known-good configuration. ERROR_SERVICE_DEPENDENCY_DELETED = 1075, // (0x433) The dependency service does not exist or has been marked for deletion. ERROR_BOOT_ALREADY_ACCEPTED = 1076, // (0x434) The current boot has already been accepted for use as the last-known-good control set. ERROR_SERVICE_NEVER_STARTED = 1077, // (0x435) No attempts to start the service have been made since the last boot. ERROR_DUPLICATE_SERVICE_NAME = 1078, // (0x436) The name is already in use as either a service name or a service display name. ERROR_DIFFERENT_SERVICE_ACCOUNT = 1079, // (0x437) The account specified for this service is different from the account specified for other services running in the same process. ERROR_CANNOT_DETECT_DRIVER_FAILURE = 1080, // (0x438) Failure actions can only be set for Win32 services, not for drivers. ERROR_CANNOT_DETECT_PROCESS_ABORT = 1081, // (0x439) This service runs in the same process as the service control manager. Therefore, the service control manager cannot take action if this service’s process terminates unexpectedly. ERROR_NO_RECOVERY_PROGRAM = 1082, // (0x43A) No recovery program has been configured for this service. ERROR_SERVICE_NOT_IN_EXE = 1083, // (0x43B) The executable program that this service is configured to run in does not implement the service. ERROR_NOT_SAFEBOOT_SERVICE = 1084, // (0x43C) This service cannot be started in Safe Mode. ERROR_END_OF_MEDIA = 1100, // (0x44C) The physical end of the tape has been reached. ERROR_FILEMARK_DETECTED = 1101, // (0x44D) A tape access reached a filemark. ERROR_BEGINNING_OF_MEDIA = 1102, // (0x44E) The beginning of the tape or a partition was encountered. ERROR_SETMARK_DETECTED = 1103, // (0x44F) A tape access reached the end of a set of files. ERROR_NO_DATA_DETECTED = 1104, // (0x450) No more data is on the tape. ERROR_PARTITION_FAILURE = 1105, // (0x451) Tape could not be partitioned. ERROR_INVALID_BLOCK_LENGTH = 1106, // (0x452) When accessing a new tape of a multivolume partition, the current block size is incorrect. ERROR_DEVICE_NOT_PARTITIONED = 1107, // (0x453) Tape partition information could not be found when loading a tape. ERROR_UNABLE_TO_LOCK_MEDIA = 1108, // (0x454) Unable to lock the media eject mechanism. ERROR_UNABLE_TO_UNLOAD_MEDIA = 1109, // (0x455) Unable to unload the media. ERROR_MEDIA_CHANGED = 1110, // (0x456) The media in the drive may have changed. ERROR_BUS_RESET = 1111, // (0x457) The I/O bus was reset. ERROR_NO_MEDIA_IN_DRIVE = 1112, // (0x458) No media in drive. ERROR_NO_UNICODE_TRANSLATION = 1113, // (0x459) No mapping for the Unicode character exists in the target multi-byte code page. ERROR_DLL_INIT_FAILED = 1114, // (0x45A) A dynamic link library, // (DLL) initialization routine failed. ERROR_SHUTDOWN_IN_PROGRESS = 1115, // (0x45B) A system shutdown is in progress. ERROR_NO_SHUTDOWN_IN_PROGRESS = 1116, // (0x45C) Unable to abort the system shutdown because no shutdown was in progress. ERROR_IO_DEVICE = 1117, // (0x45D) The request could not be performed because of an I/O device error. ERROR_SERIAL_NO_DEVICE = 1118, // (0x45E) No serial device was successfully initialized. The serial driver will unload. ERROR_IRQ_BUSY = 1119, // (0x45F) Unable 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. ERROR_MORE_WRITES = 1120, // (0x460) A serial I/O operation was completed by another write to the serial port. The IOCTL_SERIAL_XOFF_COUNTER reached zero.) ERROR_COUNTER_TIMEOUT = 1121, // (0x461) A serial I/O operation completed because the timeout period expired. The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.) ERROR_FLOPPY_ID_MARK_NOT_FOUND = 1122, // (0x462) No ID address mark was found on the floppy disk. ERROR_FLOPPY_WRONG_CYLINDER = 1123, // (0x463) Mismatch between the floppy disk sector ID field and the floppy disk controller track address. ERROR_FLOPPY_UNKNOWN_ERROR = 1124, // (0x464) The floppy disk controller reported an error that is not recognized by the floppy disk driver. ERROR_FLOPPY_BAD_REGISTERS = 1125, // (0x465) The floppy disk controller returned inconsistent results in its registers. ERROR_DISK_RECALIBRATE_FAILED = 1126, // (0x466) While accessing the hard disk, a recalibrate operation failed, even after retries. ERROR_DISK_OPERATION_FAILED = 1127, // (0x467) While accessing the hard disk, a disk operation failed even after retries. ERROR_DISK_RESET_FAILED = 1128, // (0x468) While accessing the hard disk, a disk controller reset was needed, but even that failed. ERROR_EOM_OVERFLOW = 1129, // (0x469) Physical end of tape encountered. ERROR_NOT_ENOUGH_SERVER_MEMORY = 1130, // (0x46A) Not enough server storage is available to process this command. ERROR_POSSIBLE_DEADLOCK = 1131, // (0x46B) A potential deadlock condition has been detected. ERROR_MAPPED_ALIGNMENT = 1132, // (0x46C) The base address or the file offset specified does not have the proper alignment. ERROR_SET_POWER_STATE_VETOED = 1140, // (0x474) An attempt to change the system power state was vetoed by another application or driver. ERROR_SET_POWER_STATE_FAILED = 1141, // (0x475) The system BIOS failed an attempt to change the system power state. ERROR_TOO_MANY_LINKS = 1142, // (0x476) An attempt was made to create more links on a file than the file system supports. ERROR_OLD_WIN_VERSION = 1150, // (0x47E) The specified program requires a newer version of Windows. ERROR_APP_WRONG_OS = 1151, // (0x47F) The specified program is not a Windows or MS-DOS program. ERROR_SINGLE_INSTANCE_APP = 1152, // (0x480) Cannot start more than one instance of the specified program. ERROR_RMODE_APP = 1153, // (0x481) The specified program was written for an earlier version of Windows. ERROR_INVALID_DLL = 1154, // (0x482) One of the library files needed to run this application is damaged. ERROR_NO_ASSOCIATION = 1155, // (0x483) No application is associated with the specified file for this operation. ERROR_DDE_FAIL = 1156, // (0x484) An error occurred in sending the command to the application. ERROR_DLL_NOT_FOUND = 1157, // (0x485) One of the library files needed to run this application cannot be found. ERROR_NO_MORE_USER_HANDLES = 1158, // (0x486) The current process has used all of its system allowance of handles for Window Manager objects. ERROR_MESSAGE_SYNC_ONLY = 1159, // (0x487) The message can be used only with synchronous operations. ERROR_SOURCE_ELEMENT_EMPTY = 1160, // (0x488) The indicated source element has no media. ERROR_DESTINATION_ELEMENT_FULL = 1161, // (0x489) The indicated destination element already contains media. ERROR_ILLEGAL_ELEMENT_ADDRESS = 1162, // (0x48A) The indicated element does not exist. ERROR_MAGAZINE_NOT_PRESENT = 1163, // (0x48B) The indicated element is part of a magazine that is not present. ERROR_DEVICE_REINITIALIZATION_NEEDED = 1164, // (0x48C) The indicated device requires reinitialization due to hardware errors. ERROR_DEVICE_REQUIRES_CLEANING = 1165, // (0x48D) The device has indicated that cleaning is required before further operations are attempted. ERROR_DEVICE_DOOR_OPEN = 1166, // (0x48E) The device has indicated that its door is open. ERROR_DEVICE_NOT_CONNECTED = 1167, // (0x48F) The device is not connected. ERROR_NOT_FOUND = 1168, // (0x490) Element not found. ERROR_NO_MATCH = 1169, // (0x491) There was no match for the specified key in the index. ERROR_SET_NOT_FOUND = 1170, // (0x492) The property set specified does not exist on the object. ERROR_POINT_NOT_FOUND = 1171, // (0x493) The point passed to GetMouseMovePoints is not in the buffer. ERROR_NO_TRACKING_SERVICE = 1172, // (0x494) The tracking, // (workstation) service is not running. ERROR_NO_VOLUME_ID = 1173, // (0x495) The Volume ID could not be found. ERROR_UNABLE_TO_REMOVE_REPLACED = 1175, // (0x497) Unable to remove the file to be replaced. ERROR_UNABLE_TO_MOVE_REPLACEMENT = 1176, // (0x498) Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name. ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 = 1177, // (0x499) Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name. ERROR_JOURNAL_DELETE_IN_PROGRESS = 1178, // (0x49A) The volume change journal is being deleted. ERROR_JOURNAL_NOT_ACTIVE = 1179, // (0x49B) The volume change journal is not active. ERROR_POTENTIAL_FILE_FOUND = 1180, // (0x49C) A file was found, but it may not be the correct file. ERROR_JOURNAL_ENTRY_DELETED = 1181, // (0x49D) The journal entry has been deleted from the journal. ERROR_SHUTDOWN_IS_SCHEDULED = 1190, // (0x4A6) A system shutdown has already been scheduled. ERROR_SHUTDOWN_USERS_LOGGED_ON = 1191, // (0x4A7) The system shutdown cannot be initiated because there are other users logged on to the computer. ERROR_BAD_DEVICE = 1200, // (0x4B0) The specified device name is invalid. ERROR_CONNECTION_UNAVAIL = 1201, // (0x4B1) The device is not currently connected but it is a remembered connection. ERROR_DEVICE_ALREADY_REMEMBERED = 1202, // (0x4B2) The local device name has a remembered connection to another network resource. ERROR_NO_NET_OR_BAD_PATH = 1203, // (0x4B3) The network path was either typed incorrectly, does not exist, or the network provider is not currently available. Please try retyping the path or contact your network administrator. ERROR_BAD_PROVIDER = 1204, // (0x4B4) The specified network provider name is invalid. ERROR_CANNOT_OPEN_PROFILE = 1205, // (0x4B5) Unable to open the network connection profile. ERROR_BAD_PROFILE = 1206, // (0x4B6) The network connection profile is corrupted. ERROR_NOT_CONTAINER = 1207, // (0x4B7) Cannot enumerate a noncontainer. ERROR_EXTENDED_ERROR = 1208, // (0x4B8) An extended error has occurred. ERROR_INVALID_GROUPNAME = 1209, // (0x4B9) The format of the specified group name is invalid. ERROR_INVALID_COMPUTERNAME = 1210, // (0x4BA) The format of the specified computer name is invalid. ERROR_INVALID_EVENTNAME = 1211, // (0x4BB) The format of the specified event name is invalid. ERROR_INVALID_DOMAINNAME = 1212, // (0x4BC) The format of the specified domain name is invalid. ERROR_INVALID_SERVICENAME = 1213, // (0x4BD) The format of the specified service name is invalid. ERROR_INVALID_NETNAME = 1214, // (0x4BE) The format of the specified network name is invalid. ERROR_INVALID_SHARENAME = 1215, // (0x4BF) The format of the specified share name is invalid. ERROR_INVALID_PASSWORDNAME = 1216, // (0x4C0) The format of the specified password is invalid. ERROR_INVALID_MESSAGENAME = 1217, // (0x4C1) The format of the specified message name is invalid. ERROR_INVALID_MESSAGEDEST = 1218, // (0x4C2) The format of the specified message destination is invalid. ERROR_SESSION_CREDENTIAL_CONFLICT = 1219, // (0x4C3) 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. ERROR_REMOTE_SESSION_LIMIT_EXCEEDED = 1220, // (0x4C4) An attempt was made to establish a session to a network server, but there are already too many sessions established to that server. ERROR_DUP_DOMAINNAME = 1221, // (0x4C5) The workgroup or domain name is already in use by another computer on the network. ERROR_NO_NETWORK = 1222, // (0x4C6) The network is not present or not started. ERROR_CANCELLED = 1223, // (0x4C7) The operation was canceled by the user. ERROR_USER_MAPPED_FILE = 1224, // (0x4C8) The requested operation cannot be performed on a file with a user-mapped section open. ERROR_CONNECTION_REFUSED = 1225, // (0x4C9) The remote computer refused the network connection. ERROR_GRACEFUL_DISCONNECT = 1226, // (0x4CA) The network connection was gracefully closed. ERROR_ADDRESS_ALREADY_ASSOCIATED = 1227, // (0x4CB) The network transport endpoint already has an address associated with it. ERROR_ADDRESS_NOT_ASSOCIATED = 1228, // (0x4CC) An address has not yet been associated with the network endpoint. ERROR_CONNECTION_INVALID = 1229, // (0x4CD) An operation was attempted on a nonexistent network connection. ERROR_CONNECTION_ACTIVE = 1230, // (0x4CE) An invalid operation was attempted on an active network connection. ERROR_NETWORK_UNREACHABLE = 1231, // (0x4CF) The network location cannot be reached. For information about network troubleshooting, see Windows Help. ERROR_HOST_UNREACHABLE = 1232, // (0x4D0) The network location cannot be reached. For information about network troubleshooting, see Windows Help. ERROR_PROTOCOL_UNREACHABLE = 1233, // (0x4D1) The network location cannot be reached. For information about network troubleshooting, see Windows Help. ERROR_PORT_UNREACHABLE = 1234, // (0x4D2) No service is operating at the destination network endpoint on the remote system. ERROR_REQUEST_ABORTED = 1235, // (0x4D3) The request was aborted. ERROR_CONNECTION_ABORTED = 1236, // (0x4D4) The network connection was aborted by the local system. ERROR_RETRY = 1237, // (0x4D5) The operation could not be completed. A retry should be performed. ERROR_CONNECTION_COUNT_LIMIT = 1238, // (0x4D6) A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached. ERROR_LOGIN_TIME_RESTRICTION = 1239, // (0x4D7) Attempting to log in during an unauthorized time of day for this account. ERROR_LOGIN_WKSTA_RESTRICTION = 1240, // (0x4D8) The account is not authorized to log in from this station. ERROR_INCORRECT_ADDRESS = 1241, // (0x4D9) The network address could not be used for the operation requested. ERROR_ALREADY_REGISTERED = 1242, // (0x4DA) The service is already registered. ERROR_SERVICE_NOT_FOUND = 1243, // (0x4DB) The specified service does not exist. ERROR_NOT_AUTHENTICATED = 1244, // (0x4DC) The operation being requested was not performed because the user has not been authenticated. ERROR_NOT_LOGGED_ON = 1245, // (0x4DD) The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist. ERROR_CONTINUE = 1246, // (0x4DE) Continue with work in progress. ERROR_ALREADY_INITIALIZED = 1247, // (0x4DF) An attempt was made to perform an initialization operation when initialization has already been completed. ERROR_NO_MORE_DEVICES = 1248, // (0x4E0) No more local devices. ERROR_NO_SUCH_SITE = 1249, // (0x4E1) The specified site does not exist. ERROR_DOMAIN_CONTROLLER_EXISTS = 1250, // (0x4E2) A domain controller with the specified name already exists. ERROR_ONLY_IF_CONNECTED = 1251, // (0x4E3) This operation is supported only when you are connected to the server. ERROR_OVERRIDE_NOCHANGES = 1252, // (0x4E4) The group policy framework should call the extension even if there are no changes. ERROR_BAD_USER_PROFILE = 1253, // (0x4E5) The specified user does not have a valid profile. ERROR_NOT_SUPPORTED_ON_SBS = 1254, // (0x4E6) This operation is not supported on a computer running Windows Server 2003 for Small Business Server. ERROR_SERVER_SHUTDOWN_IN_PROGRESS = 1255, // (0x4E7) The server machine is shutting down. ERROR_HOST_DOWN = 1256, // (0x4E8) The remote system is not available. For information about network troubleshooting, see Windows Help. ERROR_NON_ACCOUNT_SID = 1257, // (0x4E9) The security identifier provided is not from an account domain. ERROR_NON_DOMAIN_SID = 1258, // (0x4EA) The security identifier provided does not have a domain component. ERROR_APPHELP_BLOCK = 1259, // (0x4EB) AppHelp dialog canceled thus preventing the application from starting. ERROR_ACCESS_DISABLED_BY_POLICY = 1260, // (0x4EC) This program is blocked by group policy. For more information, contact your system administrator. ERROR_REG_NAT_CONSUMPTION = 1261, // (0x4ED) A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific. ERROR_CSCSHARE_OFFLINE = 1262, // (0x4EE) The share is currently offline or does not exist. ERROR_PKINIT_FAILURE = 1263, // (0x4EF) The Kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. There is more information in the system event log. ERROR_SMARTCARD_SUBSYSTEM_FAILURE = 1264, // (0x4F0) The Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem. ERROR_DOWNGRADE_DETECTED = 1265, // (0x4F1) The system cannot contact a domain controller to service the authentication request. Please try again later. ERROR_MACHINE_LOCKED = 1271, // (0x4F7) The machine is locked and cannot be shut down without the force option. ERROR_CALLBACK_SUPPLIED_INVALID_DATA = 1273, // (0x4F9) An application-defined callback gave invalid data when called. ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED = 1274, // (0x4FA) The group policy framework should call the extension in the synchronous foreground policy refresh. ERROR_DRIVER_BLOCKED = 1275, // (0x4FB) This driver has been blocked from loading. ERROR_INVALID_IMPORT_OF_NON_DLL = 1276, // (0x4FC) A dynamic link library, // (DLL) referenced a module that was neither a DLL nor the process’s executable image. ERROR_ACCESS_DISABLED_WEBBLADE = 1277, // (0x4FD) Windows cannot open this program since it has been disabled. ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER = 1278, // (0x4FE) Windows cannot open this program because the license enforcement system has been tampered with or become corrupted. ERROR_RECOVERY_FAILURE = 1279, // (0x4FF) A transaction recover failed. ERROR_ALREADY_FIBER = 1280, // (0x500) The current thread has already been converted to a fiber. ERROR_ALREADY_THREAD = 1281, // (0x501) The current thread has already been converted from a fiber. ERROR_STACK_BUFFER_OVERRUN = 1282, // (0x502) 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. ERROR_PARAMETER_QUOTA_EXCEEDED = 1283, // (0x503) Data present in one of the parameters is more than the function can operate on. ERROR_DEBUGGER_INACTIVE = 1284, // (0x504) An attempt to do an operation on a debug object failed because the object is in the process of being deleted. ERROR_DELAY_LOAD_FAILED = 1285, // (0x505) An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed. ERROR_VDM_DISALLOWED = 1286, // (0x506) %1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator. ERROR_UNIDENTIFIED_ERROR = 1287, // (0x507) Insufficient information exists to identify the cause of failure. ERROR_INVALID_CRUNTIME_PARAMETER = 1288, // (0x508) The parameter passed to a C runtime function is incorrect. ERROR_BEYOND_VDL = 1289, // (0x509) The operation occurred beyond the valid data length of the file. ERROR_INCOMPATIBLE_SERVICE_SID_TYPE = 1290, // (0x50A) The service start failed since one or more services in the same process have an incompatible service SID type setting. A service with restricted service SID type can only coexist in the same process with other services with a restricted SID type. If the service SID type for this service was just configured, the hosting process must be restarted in order to start this service. //On Windows Server 2003 and Windows XP, an unrestricted service cannot coexist in the same process with other services. The service with the unrestricted service SID type must be moved to an owned process in order to start this service. ERROR_DRIVER_PROCESS_TERMINATED = 1291, // (0x50B) The process hosting the driver for this device has been terminated. ERROR_IMPLEMENTATION_LIMIT = 1292, // (0x50C) An operation attempted to exceed an implementation-defined limit. ERROR_PROCESS_IS_PROTECTED = 1293, // (0x50D) Either the target process, or the target thread’s containing process, is a protected process. ERROR_SERVICE_NOTIFY_CLIENT_LAGGING = 1294, // (0x50E) The service notification client is lagging too far behind the current state of services in the machine. ERROR_DISK_QUOTA_EXCEEDED = 1295, // (0x50F) The requested file operation failed because the storage quota was exceeded. To free up disk space, move files to a different location or delete unnecessary files. For more information, contact your system administrator. ERROR_CONTENT_BLOCKED = 1296, // (0x510) The requested file operation failed because the storage policy blocks that type of file. For more information, contact your system administrator. ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE = 1297, // (0x511) A privilege that the service requires to function properly does not exist in the service account configuration. You may use the Services Microsoft Management Console, // (MMC) snap-in, // (services.msc) and the Local Security Settings MMC snap-in, // (secpol.msc) to view the service configuration and the account configuration. ERROR_APP_HANG = 1298, // (0x512) A thread involved in this operation appears to be unresponsive. ERROR_INVALID_LABEL = 1299, // (0x513) Indicates a particular Security ID may not be assigned as the label of an object. ERROR_NOT_ALL_ASSIGNED = 1300, // (0x514) Not all privileges or groups referenced are assigned to the caller. ERROR_SOME_NOT_MAPPED = 1301, // (0x515) Some mapping between account names and security IDs was not done. ERROR_NO_QUOTAS_FOR_ACCOUNT = 1302, // (0x516) No system quota limits are specifically set for this account. ERROR_LOCAL_USER_SESSION_KEY = 1303, // (0x517) No encryption key is available. A well-known encryption key was returned. ERROR_NULL_LM_PASSWORD = 1304, // (0x518) The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string. ERROR_UNKNOWN_REVISION = 1305, // (0x519) The revision level is unknown. ERROR_REVISION_MISMATCH = 1306, // (0x51A) Indicates two revision levels are incompatible. ERROR_INVALID_OWNER = 1307, // (0x51B) This security ID may not be assigned as the owner of this object. ERROR_INVALID_PRIMARY_GROUP = 1308, // (0x51C) This security ID may not be assigned as the primary group of an object. ERROR_NO_IMPERSONATION_TOKEN = 1309, // (0x51D) An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client. ERROR_CANT_DISABLE_MANDATORY = 1310, // (0x51E) The group may not be disabled. ERROR_NO_LOGON_SERVERS = 1311, // (0x51F) There are currently no logon servers available to service the logon request. ERROR_NO_SUCH_LOGON_SESSION = 1312, // (0x520) A specified logon session does not exist. It may already have been terminated. ERROR_NO_SUCH_PRIVILEGE = 1313, // (0x521) A specified privilege does not exist. ERROR_PRIVILEGE_NOT_HELD = 1314, // (0x522) A required privilege is not held by the client. ERROR_INVALID_ACCOUNT_NAME = 1315, // (0x523) The name provided is not a properly formed account name. ERROR_USER_EXISTS = 1316, // (0x524) The specified account already exists. ERROR_NO_SUCH_USER = 1317, // (0x525) The specified account does not exist. ERROR_GROUP_EXISTS = 1318, // (0x526) The specified group already exists. ERROR_NO_SUCH_GROUP = 1319, // (0x527) The specified group does not exist. ERROR_MEMBER_IN_GROUP = 1320, // (0x528) Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member. ERROR_MEMBER_NOT_IN_GROUP = 1321, // (0x529) The specified user account is not a member of the specified group account. ERROR_LAST_ADMIN = 1322, // (0x52A) This operation is disallowed as it could result in an administration account being disabled, deleted or unable to log on. ERROR_WRONG_PASSWORD = 1323, // (0x52B) Unable to update the password. The value provided as the current password is incorrect. ERROR_ILL_FORMED_PASSWORD = 1324, // (0x52C) Unable to update the password. The value provided for the new password contains values that are not allowed in passwords. ERROR_PASSWORD_RESTRICTION = 1325, // (0x52D) Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirements of the domain. ERROR_LOGON_FAILURE = 1326, // (0x52E) The user name or password is incorrect. ERROR_ACCOUNT_RESTRICTION = 1327, // (0x52F) Account restrictions are preventing this user from signing in. For example: blank passwords aren’t allowed, sign-in times are limited, or a policy restriction has been enforced. ERROR_INVALID_LOGON_HOURS = 1328, // (0x530) Your account has time restrictions that keep you from signing in right now. ERROR_INVALID_WORKSTATION = 1329, // (0x531) This user isn’t allowed to sign in to this computer. ERROR_PASSWORD_EXPIRED = 1330, // (0x532) The password for this account has expired. ERROR_ACCOUNT_DISABLED = 1331, // (0x533) This user can’t sign in because this account is currently disabled. ERROR_NONE_MAPPED = 1332, // (0x534) No mapping between account names and security IDs was done. ERROR_TOO_MANY_LUIDS_REQUESTED = 1333, // (0x535) Too many local user identifiers, // (LUIDs) were requested at one time. ERROR_LUIDS_EXHAUSTED = 1334, // (0x536) No more local user identifiers, // (LUIDs) are available. ERROR_INVALID_SUB_AUTHORITY = 1335, // (0x537) The subauthority part of a security ID is invalid for this particular use. ERROR_INVALID_ACL = 1336, // (0x538) The access control list, // (ACL) structure is invalid. ERROR_INVALID_SID = 1337, // (0x539) The security ID structure is invalid. ERROR_INVALID_SECURITY_DESCR = 1338, // (0x53A) The security descriptor structure is invalid. ERROR_BAD_INHERITANCE_ACL = 1340, // (0x53C) The inherited access control list, // (ACL) or access control entry, // (ACE) could not be built. ERROR_SERVER_DISABLED = 1341, // (0x53D) The server is currently disabled. ERROR_SERVER_NOT_DISABLED = 1342, // (0x53E) The server is currently enabled. ERROR_INVALID_ID_AUTHORITY = 1343, // (0x53F) The value provided was an invalid value for an identifier authority. ERROR_ALLOTTED_SPACE_EXCEEDED = 1344, // (0x540) No more memory is available for security information updates. ERROR_INVALID_GROUP_ATTRIBUTES = 1345, // (0x541) The specified attributes are invalid, or incompatible with the attributes for the group as a whole. ERROR_BAD_IMPERSONATION_LEVEL = 1346, // (0x542) Either a required impersonation level was not provided, or the provided impersonation level is invalid. ERROR_CANT_OPEN_ANONYMOUS = 1347, // (0x543) Cannot open an anonymous level security token. ERROR_BAD_VALIDATION_CLASS = 1348, // (0x544) The validation information class requested was invalid. ERROR_BAD_TOKEN_TYPE = 1349, // (0x545) The type of the token is inappropriate for its attempted use. ERROR_NO_SECURITY_ON_OBJECT = 1350, // (0x546) Unable to perform a security operation on an object that has no associated security. ERROR_CANT_ACCESS_DOMAIN_INFO = 1351, // (0x547) Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied. ERROR_INVALID_SERVER_STATE = 1352, // (0x548) The security account manager, // (SAM) or local security authority, // (LSA) server was in the wrong state to perform the security operation. ERROR_INVALID_DOMAIN_STATE = 1353, // (0x549) The domain was in the wrong state to perform the security operation. ERROR_INVALID_DOMAIN_ROLE = 1354, // (0x54A) This operation is only allowed for the Primary Domain Controller of the domain. ERROR_NO_SUCH_DOMAIN = 1355, // (0x54B) The specified domain either does not exist or could not be contacted. ERROR_DOMAIN_EXISTS = 1356, // (0x54C) The specified domain already exists. ERROR_DOMAIN_LIMIT_EXCEEDED = 1357, // (0x54D) An attempt was made to exceed the limit on the number of domains per server. ERROR_INTERNAL_DB_CORRUPTION = 1358, // (0x54E) Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk. ERROR_INTERNAL_ERROR = 1359, // (0x54F) An internal error occurred. ERROR_GENERIC_NOT_MAPPED = 1360, // (0x550) Generic access types were contained in an access mask which should already be mapped to nongeneric types. ERROR_BAD_DESCRIPTOR_FORMAT = 1361, // (0x551) A security descriptor is not in the right format, // (absolute or self-relative). ERROR_NOT_LOGON_PROCESS = 1362, // (0x552) The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process. ERROR_LOGON_SESSION_EXISTS = 1363, // (0x553) Cannot start a new logon session with an ID that is already in use. ERROR_NO_SUCH_PACKAGE = 1364, // (0x554) A specified authentication package is unknown. ERROR_BAD_LOGON_SESSION_STATE = 1365, // (0x555) The logon session is not in a state that is consistent with the requested operation. ERROR_LOGON_SESSION_COLLISION = 1366, // (0x556) The logon session ID is already in use. ERROR_INVALID_LOGON_TYPE = 1367, // (0x557) A logon request contained an invalid logon type value. ERROR_CANNOT_IMPERSONATE = 1368, // (0x558) Unable to impersonate using a named pipe until data has been read from that pipe. ERROR_RXACT_INVALID_STATE = 1369, // (0x559) The transaction state of a registry subtree is incompatible with the requested operation. ERROR_RXACT_COMMIT_FAILURE = 1370, // (0x55A) An internal security database corruption has been encountered. ERROR_SPECIAL_ACCOUNT = 1371, // (0x55B) Cannot perform this operation on built-in accounts. ERROR_SPECIAL_GROUP = 1372, // (0x55C) Cannot perform this operation on this built-in special group. ERROR_SPECIAL_USER = 1373, // (0x55D) Cannot perform this operation on this built-in special user. ERROR_MEMBERS_PRIMARY_GROUP = 1374, // (0x55E) The user cannot be removed from a group because the group is currently the user’s primary group. ERROR_TOKEN_ALREADY_IN_USE = 1375, // (0x55F) The token is already in use as a primary token. ERROR_NO_SUCH_ALIAS = 1376, // (0x560) The specified local group does not exist. ERROR_MEMBER_NOT_IN_ALIAS = 1377, // (0x561) The specified account name is not a member of the group. ERROR_MEMBER_IN_ALIAS = 1378, // (0x562) The specified account name is already a member of the group. ERROR_ALIAS_EXISTS = 1379, // (0x563) The specified local group already exists. ERROR_LOGON_NOT_GRANTED = 1380, // (0x564) Logon failure: the user has not been granted the requested logon type at this computer. ERROR_TOO_MANY_SECRETS = 1381, // (0x565) The maximum number of secrets that may be stored in a single system has been exceeded. ERROR_SECRET_TOO_LONG = 1382, // (0x566) The length of a secret exceeds the maximum length allowed. ERROR_INTERNAL_DB_ERROR = 1383, // (0x567) The local security authority database contains an internal inconsistency. ERROR_TOO_MANY_CONTEXT_IDS = 1384, // (0x568) During a logon attempt, the user’s security context accumulated too many security IDs. ERROR_LOGON_TYPE_NOT_GRANTED = 1385, // (0x569) Logon failure: the user has not been granted the requested logon type at this computer. ERROR_NT_CROSS_ENCRYPTION_REQUIRED = 1386, // (0x56A) A cross-encrypted password is necessary to change a user password. ERROR_NO_SUCH_MEMBER = 1387, // (0x56B) A member could not be added to or removed from the local group because the member does not exist. ERROR_INVALID_MEMBER = 1388, // (0x56C) A new member could not be added to a local group because the member has the wrong account type. ERROR_TOO_MANY_SIDS = 1389, // (0x56D) Too many security IDs have been specified. ERROR_LM_CROSS_ENCRYPTION_REQUIRED = 1390, // (0x56E) A cross-encrypted password is necessary to change this user password. ERROR_NO_INHERITANCE = 1391, // (0x56F) Indicates an ACL contains no inheritable components. ERROR_FILE_CORRUPT = 1392, // (0x570) The file or directory is corrupted and unreadable. ERROR_DISK_CORRUPT = 1393, // (0x571) The disk structure is corrupted and unreadable. ERROR_NO_USER_SESSION_KEY = 1394, // (0x572) There is no user session key for the specified logon session. ERROR_LICENSE_QUOTA_EXCEEDED = 1395, // (0x573) 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 there are already as many connections as the service can accept. ERROR_WRONG_TARGET_NAME = 1396, // (0x574) The target account name is incorrect. ERROR_MUTUAL_AUTH_FAILED = 1397, // (0x575) Mutual Authentication failed. The server’s password is out of date at the domain controller. ERROR_TIME_SKEW = 1398, // (0x576) There is a time and/or date difference between the client and server. ERROR_CURRENT_DOMAIN_NOT_ALLOWED = 1399, // (0x577) This operation cannot be performed on the current domain. ERROR_INVALID_WINDOW_HANDLE = 1400, // (0x578) Invalid window handle. ERROR_INVALID_MENU_HANDLE = 1401, // (0x579) Invalid menu handle. ERROR_INVALID_CURSOR_HANDLE = 1402, // (0x57A) Invalid cursor handle. ERROR_INVALID_ACCEL_HANDLE = 1403, // (0x57B) Invalid accelerator table handle. ERROR_INVALID_HOOK_HANDLE = 1404, // (0x57C) Invalid hook handle. ERROR_INVALID_DWP_HANDLE = 1405, // (0x57D) Invalid handle to a multiple-window position structure. ERROR_TLW_WITH_WSCHILD = 1406, // (0x57E) Cannot create a top-level child window. ERROR_CANNOT_FIND_WND_CLASS = 1407, // (0x57F) Cannot find window class. ERROR_WINDOW_OF_OTHER_THREAD = 1408, // (0x580) Invalid window, it belongs to other thread. ERROR_HOTKEY_ALREADY_REGISTERED = 1409, // (0x581) Hot key is already registered. ERROR_CLASS_ALREADY_EXISTS = 1410, // (0x582) Class already exists. ERROR_CLASS_DOES_NOT_EXIST = 1411, // (0x583) Class does not exist. ERROR_CLASS_HAS_WINDOWS = 1412, // (0x584) Class still has open windows. ERROR_INVALID_INDEX = 1413, // (0x585) Invalid index. ERROR_INVALID_ICON_HANDLE = 1414, // (0x586) Invalid icon handle. ERROR_PRIVATE_DIALOG_INDEX = 1415, // (0x587) Using private DIALOG window words. ERROR_LISTBOX_ID_NOT_FOUND = 1416, // (0x588) The list box identifier was not found. ERROR_NO_WILDCARD_CHARACTERS = 1417, // (0x589) No wildcards were found. ERROR_CLIPBOARD_NOT_OPEN = 1418, // (0x58A) Thread does not have a clipboard open. ERROR_HOTKEY_NOT_REGISTERED = 1419, // (0x58B) Hot key is not registered. ERROR_WINDOW_NOT_DIALOG = 1420, // (0x58C) The window is not a valid dialog window. ERROR_CONTROL_ID_NOT_FOUND = 1421, // (0x58D) Control ID not found. ERROR_INVALID_COMBOBOX_MESSAGE = 1422, // (0x58E) Invalid message for a combo box because it does not have an edit control. ERROR_WINDOW_NOT_COMBOBOX = 1423, // (0x58F) The window is not a combo box. ERROR_INVALID_EDIT_HEIGHT = 1424, // (0x590) Height must be less than 256. ERROR_DC_NOT_FOUND = 1425, // (0x591) Invalid device context, // (DC) handle. ERROR_INVALID_HOOK_FILTER = 1426, // (0x592) Invalid hook procedure type. ERROR_INVALID_FILTER_PROC = 1427, // (0x593) Invalid hook procedure. ERROR_HOOK_NEEDS_HMOD = 1428, // (0x594) Cannot set nonlocal hook without a module handle. ERROR_GLOBAL_ONLY_HOOK = 1429, // (0x595) This hook procedure can only be set globally. ERROR_JOURNAL_HOOK_SET = 1430, // (0x596) The journal hook procedure is already installed. ERROR_HOOK_NOT_INSTALLED = 1431, // (0x597) The hook procedure is not installed. ERROR_INVALID_LB_MESSAGE = 1432, // (0x598) Invalid message for single-selection list box. ERROR_SETCOUNT_ON_BAD_LB = 1433, // (0x599) LB_SETCOUNT sent to non-lazy list box. ERROR_LB_WITHOUT_TABSTOPS = 1434, // (0x59A) This list box does not support tab stops. ERROR_DESTROY_OBJECT_OF_OTHER_THREAD = 1435, // (0x59B) Cannot destroy object created by another thread. ERROR_CHILD_WINDOW_MENU = 1436, // (0x59C) Child windows cannot have menus. ERROR_NO_SYSTEM_MENU = 1437, // (0x59D) The window does not have a system menu. ERROR_INVALID_MSGBOX_STYLE = 1438, // (0x59E) Invalid message box style. ERROR_INVALID_SPI_VALUE = 1439, // (0x59F) Invalid system-wide, // (SPI_*) parameter. ERROR_SCREEN_ALREADY_LOCKED = 1440, // (0x5A0) Screen already locked. ERROR_HWNDS_HAVE_DIFF_PARENT = 1441, // (0x5A1) All handles to windows in a multiple-window position structure must have the same parent. ERROR_NOT_CHILD_WINDOW = 1442, // (0x5A2) The window is not a child window. ERROR_INVALID_GW_COMMAND = 1443, // (0x5A3) Invalid GW_* command. ERROR_INVALID_THREAD_ID = 1444, // (0x5A4) Invalid thread identifier. ERROR_NON_MDICHILD_WINDOW = 1445, // (0x5A5) Cannot process a message from a window that is not a multiple document interface, // (MDI) window. ERROR_POPUP_ALREADY_ACTIVE = 1446, // (0x5A6) Popup menu already active. ERROR_NO_SCROLLBARS = 1447, // (0x5A7) The window does not have scroll bars. ERROR_INVALID_SCROLLBAR_RANGE = 1448, // (0x5A8) Scroll bar range cannot be greater than MAXLONG. ERROR_INVALID_SHOWWIN_COMMAND = 1449, // (0x5A9) Cannot show or remove the window in the way specified. ERROR_NO_SYSTEM_RESOURCES = 1450, // (0x5AA) Insufficient system resources exist to complete the requested service. ERROR_NONPAGED_SYSTEM_RESOURCES = 1451, // (0x5AB) Insufficient system resources exist to complete the requested service. ERROR_PAGED_SYSTEM_RESOURCES = 1452, // (0x5AC) Insufficient system resources exist to complete the requested service. ERROR_WORKING_SET_QUOTA = 1453, // (0x5AD) Insufficient quota to complete the requested service. ERROR_PAGEFILE_QUOTA = 1454, // (0x5AE) Insufficient quota to complete the requested service. ERROR_COMMITMENT_LIMIT = 1455, // (0x5AF) The paging file is too small for this operation to complete. ERROR_MENU_ITEM_NOT_FOUND = 1456, // (0x5B0) A menu item was not found. ERROR_INVALID_KEYBOARD_HANDLE = 1457, // (0x5B1) Invalid keyboard layout handle. ERROR_HOOK_TYPE_NOT_ALLOWED = 1458, // (0x5B2) Hook type not allowed. ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION = 1459, // (0x5B3) This operation requires an interactive window station. ERROR_TIMEOUT = 1460, // (0x5B4) This operation returned because the timeout period expired. ERROR_INVALID_MONITOR_HANDLE = 1461, // (0x5B5) Invalid monitor handle. ERROR_INCORRECT_SIZE = 1462, // (0x5B6) Incorrect size argument. ERROR_SYMLINK_CLASS_DISABLED = 1463, // (0x5B7) The symbolic link cannot be followed because its type is disabled. ERROR_SYMLINK_NOT_SUPPORTED = 1464, // (0x5B8) This application does not support the current operation on symbolic links. ERROR_XML_PARSE_ERROR = 1465, // (0x5B9) Windows was unable to parse the requested XML data. ERROR_XMLDSIG_ERROR = 1466, // (0x5BA) An error was encountered while processing an XML digital signature. ERROR_RESTART_APPLICATION = 1467, // (0x5BB) This application must be restarted. ERROR_WRONG_COMPARTMENT = 1468, // (0x5BC) The caller made the connection request in the wrong routing compartment. ERROR_AUTHIP_FAILURE = 1469, // (0x5BD) There was an AuthIP failure when attempting to connect to the remote host. ERROR_NO_NVRAM_RESOURCES = 1470, // (0x5BE) Insufficient NVRAM resources exist to complete the requested service. A reboot might be required. ERROR_NOT_GUI_PROCESS = 1471, // (0x5BF) Unable to finish the requested operation because the specified process is not a GUI process. ERROR_EVENTLOG_FILE_CORRUPT = 1500, // (0x5DC) The event log file is corrupted. ERROR_EVENTLOG_CANT_START = 1501, // (0x5DD) No event log file could be opened, so the event logging service did not start. ERROR_LOG_FILE_FULL = 1502, // (0x5DE) The event log file is full. ERROR_EVENTLOG_FILE_CHANGED = 1503, // (0x5DF) The event log file has changed between read operations. ERROR_INVALID_TASK_NAME = 1550, // (0x60E) The specified task name is invalid. ERROR_INVALID_TASK_INDEX = 1551, // (0x60F) The specified task index is invalid. ERROR_THREAD_ALREADY_IN_TASK = 1552, // (0x610) The specified thread is already joining a task. ERROR_INSTALL_SERVICE_FAILURE = 1601, // (0x641) The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance. ERROR_INSTALL_USEREXIT = 1602, // (0x642) User cancelled installation. ERROR_INSTALL_FAILURE = 1603, // (0x643) Fatal error during installation. ERROR_INSTALL_SUSPEND = 1604, // (0x644) Installation suspended, incomplete. ERROR_UNKNOWN_PRODUCT = 1605, // (0x645) This action is only valid for products that are currently installed. ERROR_UNKNOWN_FEATURE = 1606, // (0x646) Feature ID not registered. ERROR_UNKNOWN_COMPONENT = 1607, // (0x647) Component ID not registered. ERROR_UNKNOWN_PROPERTY = 1608, // (0x648) Unknown property. ERROR_INVALID_HANDLE_STATE = 1609, // (0x649) Handle is in an invalid state. ERROR_BAD_CONFIGURATION = 1610, // (0x64A) The configuration data for this product is corrupt. Contact your support personnel. ERROR_INDEX_ABSENT = 1611, // (0x64B) Component qualifier not present. ERROR_INSTALL_SOURCE_ABSENT = 1612, // (0x64C) The installation source for this product is not available. Verify that the source exists and that you can access it. ERROR_INSTALL_PACKAGE_VERSION = 1613, // (0x64D) This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service. ERROR_PRODUCT_UNINSTALLED = 1614, // (0x64E) Product is uninstalled. ERROR_BAD_QUERY_SYNTAX = 1615, // (0x64F) SQL query syntax invalid or unsupported. ERROR_INVALID_FIELD = 1616, // (0x650) Record field does not exist. ERROR_DEVICE_REMOVED = 1617, // (0x651) The device has been removed. ERROR_INSTALL_ALREADY_RUNNING = 1618, // (0x652) Another installation is already in progress. Complete that installation before proceeding with this install. ERROR_INSTALL_PACKAGE_OPEN_FAILED = 1619, // (0x653) This installation package could not be opened. Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package. ERROR_INSTALL_PACKAGE_INVALID = 1620, // (0x654) This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package. ERROR_INSTALL_UI_FAILURE = 1621, // (0x655) There was an error starting the Windows Installer service user interface. Contact your support personnel. ERROR_INSTALL_LOG_FAILURE = 1622, // (0x656) Error opening installation log file. Verify that the specified log file location exists and that you can write to it. ERROR_INSTALL_LANGUAGE_UNSUPPORTED = 1623, // (0x657) The language of this installation package is not supported by your system. ERROR_INSTALL_TRANSFORM_FAILURE = 1624, // (0x658) Error applying transforms. Verify that the specified transform paths are valid. ERROR_INSTALL_PACKAGE_REJECTED = 1625, // (0x659) This installation is forbidden by system policy. Contact your system administrator. ERROR_FUNCTION_NOT_CALLED = 1626, // (0x65A) Function could not be executed. ERROR_FUNCTION_FAILED = 1627, // (0x65B) Function failed during execution. ERROR_INVALID_TABLE = 1628, // (0x65C) Invalid or unknown table specified. ERROR_DATATYPE_MISMATCH = 1629, // (0x65D) Data supplied is of wrong type. ERROR_UNSUPPORTED_TYPE = 1630, // (0x65E) Data of this type is not supported. ERROR_CREATE_FAILED = 1631, // (0x65F) The Windows Installer service failed to start. Contact your support personnel. ERROR_INSTALL_TEMP_UNWRITABLE = 1632, // (0x660) The Temp folder is on a drive that is full or is inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder. ERROR_INSTALL_PLATFORM_UNSUPPORTED = 1633, // (0x661) This installation package is not supported by this processor type. Contact your product vendor. ERROR_INSTALL_NOTUSED = 1634, // (0x662) Component not used on this computer. ERROR_PATCH_PACKAGE_OPEN_FAILED = 1635, // (0x663) This update package could not be opened. Verify that the update package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer update package. ERROR_PATCH_PACKAGE_INVALID = 1636, // (0x664) This update package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer update package. ERROR_PATCH_PACKAGE_UNSUPPORTED = 1637, // (0x665) This update package cannot be processed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service. ERROR_PRODUCT_VERSION = 1638, // (0x666) Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel. ERROR_INVALID_COMMAND_LINE = 1639, // (0x667) Invalid command line argument. Consult the Windows Installer SDK for detailed command line help. ERROR_INSTALL_REMOTE_DISALLOWED = 1640, // (0x668) Only administrators have permission to add, remove, or configure server software during a Terminal services remote session. If you want to install or configure software on the server, contact your network administrator. ERROR_SUCCESS_REBOOT_INITIATED = 1641, // (0x669) The requested operation completed successfully. The system will be restarted so the changes can take effect. ERROR_PATCH_TARGET_NOT_FOUND = 1642, // (0x66A) The upgrade cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade. ERROR_PATCH_PACKAGE_REJECTED = 1643, // (0x66B) The update package is not permitted by software restriction policy. ERROR_INSTALL_TRANSFORM_REJECTED = 1644, // (0x66C) One or more customizations are not permitted by software restriction policy. ERROR_INSTALL_REMOTE_PROHIBITED = 1645, // (0x66D) The Windows Installer does not permit installation from a Remote Desktop Connection. ERROR_PATCH_REMOVAL_UNSUPPORTED = 1646, // (0x66E) Uninstallation of the update package is not supported. ERROR_UNKNOWN_PATCH = 1647, // (0x66F) The update is not applied to this product. ERROR_PATCH_NO_SEQUENCE = 1648, // (0x670) No valid sequence could be found for the set of updates. ERROR_PATCH_REMOVAL_DISALLOWED = 1649, // (0x671) Update removal was disallowed by policy. ERROR_INVALID_PATCH_XML = 1650, // (0x672) The XML update data is invalid. ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT = 1651, // (0x673) Windows Installer does not permit updating of managed advertised products. At least one feature of the product must be installed before applying the update. ERROR_INSTALL_SERVICE_SAFEBOOT = 1652, // (0x674) The Windows Installer service is not accessible in Safe Mode. Please try again when your computer is not in Safe Mode or you can use System Restore to return your machine to a previous good state. ERROR_FAIL_FAST_EXCEPTION = 1653, // (0x675) A fail fast exception occurred. Exception handlers will not be invoked and the process will be terminated immediately. ERROR_INSTALL_REJECTED = 1654, // (0x676) The app that you are trying to run is not supported on this version of Windows. RPC_S_INVALID_STRING_BINDING = 1700, // (0x6A4) The string binding is invalid. RPC_S_WRONG_KIND_OF_BINDING = 1701, // (0x6A5) The binding handle is not the correct type. RPC_S_INVALID_BINDING = 1702, // (0x6A6) The binding handle is invalid. RPC_S_PROTSEQ_NOT_SUPPORTED = 1703, // (0x6A7) The RPC protocol sequence is not supported. RPC_S_INVALID_RPC_PROTSEQ = 1704, // (0x6A8) The RPC protocol sequence is invalid. RPC_S_INVALID_STRING_UUID = 1705, // (0x6A9) The string universal unique identifier, // (UUID) is invalid. RPC_S_INVALID_ENDPOINT_FORMAT = 1706, // (0x6AA) The endpoint format is invalid. RPC_S_INVALID_NET_ADDR = 1707, // (0x6AB) The network address is invalid. RPC_S_NO_ENDPOINT_FOUND = 1708, // (0x6AC) No endpoint was found. RPC_S_INVALID_TIMEOUT = 1709, // (0x6AD) The timeout value is invalid. RPC_S_OBJECT_NOT_FOUND = 1710, // (0x6AE) The object universal unique identifier, // (UUID) was not found. RPC_S_ALREADY_REGISTERED = 1711, // (0x6AF) The object universal unique identifier, // (UUID) has already been registered. RPC_S_TYPE_ALREADY_REGISTERED = 1712, // (0x6B0) The type universal unique identifier, // (UUID) has already been registered. RPC_S_ALREADY_LISTENING = 1713, // (0x6B1) The RPC server is already listening. RPC_S_NO_PROTSEQS_REGISTERED = 1714, // (0x6B2) No protocol sequences have been registered. RPC_S_NOT_LISTENING = 1715, // (0x6B3) The RPC server is not listening. RPC_S_UNKNOWN_MGR_TYPE = 1716, // (0x6B4) The manager type is unknown. RPC_S_UNKNOWN_IF = 1717, // (0x6B5) The interface is unknown. RPC_S_NO_BINDINGS = 1718, // (0x6B6) There are no bindings. RPC_S_NO_PROTSEQS = 1719, // (0x6B7) There are no protocol sequences. RPC_S_CANT_CREATE_ENDPOINT = 1720, // (0x6B8) The endpoint cannot be created. RPC_S_OUT_OF_RESOURCES = 1721, // (0x6B9) Not enough resources are available to complete this operation. RPC_S_SERVER_UNAVAILABLE = 1722, // (0x6BA) The RPC server is unavailable. RPC_S_SERVER_TOO_BUSY = 1723, // (0x6BB) The RPC server is too busy to complete this operation. RPC_S_INVALID_NETWORK_OPTIONS = 1724, // (0x6BC) The network options are invalid. RPC_S_NO_CALL_ACTIVE = 1725, // (0x6BD) There are no remote procedure calls active on this thread. RPC_S_CALL_FAILED = 1726, // (0x6BE) The remote procedure call failed. RPC_S_CALL_FAILED_DNE = 1727, // (0x6BF) The remote procedure call failed and did not execute. RPC_S_PROTOCOL_ERROR = 1728, // (0x6C0) A remote procedure call, // (RPC) protocol error occurred. RPC_S_PROXY_ACCESS_DENIED = 1729, // (0x6C1) Access to the HTTP proxy is denied. RPC_S_UNSUPPORTED_TRANS_SYN = 1730, // (0x6C2) The transfer syntax is not supported by the RPC server. RPC_S_UNSUPPORTED_TYPE = 1732, // (0x6C4) The universal unique identifier, // (UUID) type is not supported. RPC_S_INVALID_TAG = 1733, // (0x6C5) The tag is invalid. RPC_S_INVALID_BOUND = 1734, // (0x6C6) The array bounds are invalid. RPC_S_NO_ENTRY_NAME = 1735, // (0x6C7) The binding does not contain an entry name. RPC_S_INVALID_NAME_SYNTAX = 1736, // (0x6C8) The name syntax is invalid. RPC_S_UNSUPPORTED_NAME_SYNTAX = 1737, // (0x6C9) The name syntax is not supported. RPC_S_UUID_NO_ADDRESS = 1739, // (0x6CB) No network address is available to use to construct a universal unique identifier, // (UUID). RPC_S_DUPLICATE_ENDPOINT = 1740, // (0x6CC) The endpoint is a duplicate. RPC_S_UNKNOWN_AUTHN_TYPE = 1741, // (0x6CD) The authentication type is unknown. RPC_S_MAX_CALLS_TOO_SMALL = 1742, // (0x6CE) The maximum number of calls is too small. RPC_S_STRING_TOO_LONG = 1743, // (0x6CF) The string is too long. RPC_S_PROTSEQ_NOT_FOUND = 1744, // (0x6D0) The RPC protocol sequence was not found. RPC_S_PROCNUM_OUT_OF_RANGE = 1745, // (0x6D1) The procedure number is out of range. RPC_S_BINDING_HAS_NO_AUTH = 1746, // (0x6D2) The binding does not contain any authentication information. RPC_S_UNKNOWN_AUTHN_SERVICE = 1747, // (0x6D3) The authentication service is unknown. RPC_S_UNKNOWN_AUTHN_LEVEL = 1748, // (0x6D4) The authentication level is unknown. RPC_S_INVALID_AUTH_IDENTITY = 1749, // (0x6D5) The security context is invalid. RPC_S_UNKNOWN_AUTHZ_SERVICE = 1750, // (0x6D6) The authorization service is unknown. EPT_S_INVALID_ENTRY = 1751, // (0x6D7) The entry is invalid. EPT_S_CANT_PERFORM_OP = 1752, // (0x6D8) The server endpoint cannot perform the operation. EPT_S_NOT_REGISTERED = 1753, // (0x6D9) There are no more endpoints available from the endpoint mapper. RPC_S_NOTHING_TO_EXPORT = 1754, // (0x6DA) No interfaces have been exported. RPC_S_INCOMPLETE_NAME = 1755, // (0x6DB) The entry name is incomplete. RPC_S_INVALID_VERS_OPTION = 1756, // (0x6DC) The version option is invalid. RPC_S_NO_MORE_MEMBERS = 1757, // (0x6DD) There are no more members. RPC_S_NOT_ALL_OBJS_UNEXPORTED = 1758, // (0x6DE) There is nothing to unexport. RPC_S_INTERFACE_NOT_FOUND = 1759, // (0x6DF) The interface was not found. RPC_S_ENTRY_ALREADY_EXISTS = 1760, // (0x6E0) The entry already exists. RPC_S_ENTRY_NOT_FOUND = 1761, // (0x6E1) The entry is not found. RPC_S_NAME_SERVICE_UNAVAILABLE = 1762, // (0x6E2) The name service is unavailable. RPC_S_INVALID_NAF_ID = 1763, // (0x6E3) The network address family is invalid. RPC_S_CANNOT_SUPPORT = 1764, // (0x6E4) The requested operation is not supported. RPC_S_NO_CONTEXT_AVAILABLE = 1765, // (0x6E5) No security context is available to allow impersonation. RPC_S_INTERNAL_ERROR = 1766, // (0x6E6) An internal error occurred in a remote procedure call, // (RPC). RPC_S_ZERO_DIVIDE = 1767, // (0x6E7) The RPC server attempted an integer division by zero. RPC_S_ADDRESS_ERROR = 1768, // (0x6E8) An addressing error occurred in the RPC server. RPC_S_FP_DIV_ZERO = 1769, // (0x6E9) A floating-point operation at the RPC server caused a division by zero. RPC_S_FP_UNDERFLOW = 1770, // (0x6EA) A floating-point underflow occurred at the RPC server. RPC_S_FP_OVERFLOW = 1771, // (0x6EB) A floating-point overflow occurred at the RPC server. RPC_X_NO_MORE_ENTRIES = 1772, // (0x6EC) The list of RPC servers available for the binding of auto handles has been exhausted. RPC_X_SS_CHAR_TRANS_OPEN_FAIL = 1773, // (0x6ED) Unable to open the character translation table file. RPC_X_SS_CHAR_TRANS_SHORT_FILE = 1774, // (0x6EE) The file containing the character translation table has fewer than 512 bytes. RPC_X_SS_IN_NULL_CONTEXT = 1775, // (0x6EF) A null context handle was passed from the client to the host during a remote procedure call. RPC_X_SS_CONTEXT_DAMAGED = 1777, // (0x6F1) The context handle changed during a remote procedure call. RPC_X_SS_HANDLES_MISMATCH = 1778, // (0x6F2) The binding handles passed to a remote procedure call do not match. RPC_X_SS_CANNOT_GET_CALL_HANDLE = 1779, // (0x6F3) The stub is unable to get the remote procedure call handle. RPC_X_NULL_REF_POINTER = 1780, // (0x6F4) A null reference pointer was passed to the stub. RPC_X_ENUM_VALUE_OUT_OF_RANGE = 1781, // (0x6F5) The enumeration value is out of range. RPC_X_BYTE_COUNT_TOO_SMALL = 1782, // (0x6F6) The byte count is too small. RPC_X_BAD_STUB_DATA = 1783, // (0x6F7) The stub received bad data. ERROR_INVALID_USER_BUFFER = 1784, // (0x6F8) The supplied user buffer is not valid for the requested operation. ERROR_UNRECOGNIZED_MEDIA = 1785, // (0x6F9) The disk media is not recognized. It may not be formatted. ERROR_NO_TRUST_LSA_SECRET = 1786, // (0x6FA) The workstation does not have a trust secret. ERROR_NO_TRUST_SAM_ACCOUNT = 1787, // (0x6FB) The security database on the server does not have a computer account for this workstation trust relationship. ERROR_TRUSTED_DOMAIN_FAILURE = 1788, // (0x6FC) The trust relationship between the primary domain and the trusted domain failed. ERROR_TRUSTED_RELATIONSHIP_FAILURE = 1789, // (0x6FD) The trust relationship between this workstation and the primary domain failed. ERROR_TRUST_FAILURE = 1790, // (0x6FE) The network logon failed. RPC_S_CALL_IN_PROGRESS = 1791, // (0x6FF) A remote procedure call is already in progress for this thread. ERROR_NETLOGON_NOT_STARTED = 1792, // (0x700) An attempt was made to logon, but the network logon service was not started. ERROR_ACCOUNT_EXPIRED = 1793, // (0x701) The user’s account has expired. ERROR_REDIRECTOR_HAS_OPEN_HANDLES = 1794, // (0x702) The redirector is in use and cannot be unloaded. ERROR_PRINTER_DRIVER_ALREADY_INSTALLED = 1795, // (0x703) The specified printer driver is already installed. ERROR_UNKNOWN_PORT = 1796, // (0x704) The specified port is unknown. ERROR_UNKNOWN_PRINTER_DRIVER = 1797, // (0x705) The printer driver is unknown. ERROR_UNKNOWN_PRINTPROCESSOR = 1798, // (0x706) The print processor is unknown. ERROR_INVALID_SEPARATOR_FILE = 1799, // (0x707) The specified separator file is invalid. ERROR_INVALID_PRIORITY = 1800, // (0x708) The specified priority is invalid. ERROR_INVALID_PRINTER_NAME = 1801, // (0x709) The printer name is invalid. ERROR_PRINTER_ALREADY_EXISTS = 1802, // (0x70A) The printer already exists. ERROR_INVALID_PRINTER_COMMAND = 1803, // (0x70B) The printer command is invalid. ERROR_INVALID_DATATYPE = 1804, // (0x70C) The specified datatype is invalid. ERROR_INVALID_ENVIRONMENT = 1805, // (0x70D) The environment specified is invalid. RPC_S_NO_MORE_BINDINGS = 1806, // (0x70E) There are no more bindings. ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT = 1807, // (0x70F) The account used is an interdomain trust account. Use your global user account or local user account to access this server. ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT = 1808, // (0x710) The account used is a computer account. Use your global user account or local user account to access this server. ERROR_NOLOGON_SERVER_TRUST_ACCOUNT = 1809, // (0x711) The account used is a server trust account. Use your global user account or local user account to access this server. ERROR_DOMAIN_TRUST_INCONSISTENT = 1810, // (0x712) The name or security ID, // (SID) of the domain specified is inconsistent with the trust information for that domain. ERROR_SERVER_HAS_OPEN_HANDLES = 1811, // (0x713) The server is in use and cannot be unloaded. ERROR_RESOURCE_DATA_NOT_FOUND = 1812, // (0x714) The specified image file did not contain a resource section. ERROR_RESOURCE_TYPE_NOT_FOUND = 1813, // (0x715) The specified resource type cannot be found in the image file. ERROR_RESOURCE_NAME_NOT_FOUND = 1814, // (0x716) The specified resource name cannot be found in the image file. ERROR_RESOURCE_LANG_NOT_FOUND = 1815, // (0x717) The specified resource language ID cannot be found in the image file. ERROR_NOT_ENOUGH_QUOTA = 1816, // (0x718) Not enough quota is available to process this command. RPC_S_NO_INTERFACES = 1817, // (0x719) No interfaces have been registered. RPC_S_CALL_CANCELLED = 1818, // (0x71A) The remote procedure call was cancelled. RPC_S_BINDING_INCOMPLETE = 1819, // (0x71B) The binding handle does not contain all required information. RPC_S_COMM_FAILURE = 1820, // (0x71C) A communications failure occurred during a remote procedure call. RPC_S_UNSUPPORTED_AUTHN_LEVEL = 1821, // (0x71D) The requested authentication level is not supported. RPC_S_NO_PRINC_NAME = 1822, // (0x71E) No principal name registered. RPC_S_NOT_RPC_ERROR = 1823, // (0x71F) The error specified is not a valid Windows RPC error code. RPC_S_UUID_LOCAL_ONLY = 1824, // (0x720) A UUID that is valid only on this computer has been allocated. RPC_S_SEC_PKG_ERROR = 1825, // (0x721) A security package specific error occurred. RPC_S_NOT_CANCELLED = 1826, // (0x722) Thread is not canceled. RPC_X_INVALID_ES_ACTION = 1827, // (0x723) Invalid operation on the encoding/decoding handle. RPC_X_WRONG_ES_VERSION = 1828, // (0x724) Incompatible version of the serializing package. RPC_X_WRONG_STUB_VERSION = 1829, // (0x725) Incompatible version of the RPC stub. RPC_X_INVALID_PIPE_OBJECT = 1830, // (0x726) The RPC pipe object is invalid or corrupted. RPC_X_WRONG_PIPE_ORDER = 1831, // (0x727) An invalid operation was attempted on an RPC pipe object. RPC_X_WRONG_PIPE_VERSION = 1832, // (0x728) Unsupported RPC pipe version. RPC_S_COOKIE_AUTH_FAILED = 1833, // (0x729) HTTP proxy server rejected the connection because the cookie authentication failed. RPC_S_GROUP_MEMBER_NOT_FOUND = 1898, // (0x76A) The group member was not found. EPT_S_CANT_CREATE = 1899, // (0x76B) The endpoint mapper database entry could not be created. RPC_S_INVALID_OBJECT = 1900, // (0x76C) The object universal unique identifier, // (UUID) is the nil UUID. ERROR_INVALID_TIME = 1901, // (0x76D) The specified time is invalid. ERROR_INVALID_FORM_NAME = 1902, // (0x76E) The specified form name is invalid. ERROR_INVALID_FORM_SIZE = 1903, // (0x76F) The specified form size is invalid. ERROR_ALREADY_WAITING = 1904, // (0x770) The specified printer handle is already being waited on. ERROR_PRINTER_DELETED = 1905, // (0x771) The specified printer has been deleted. ERROR_INVALID_PRINTER_STATE = 1906, // (0x772) The state of the printer is invalid. ERROR_PASSWORD_MUST_CHANGE = 1907, // (0x773) The user’s password must be changed before signing in. ERROR_DOMAIN_CONTROLLER_NOT_FOUND = 1908, // (0x774) Could not find the domain controller for this domain. ERROR_ACCOUNT_LOCKED_OUT = 1909, // (0x775) The referenced account is currently locked out and may not be logged on to. OR_INVALID_OXID = 1910, // (0x776) The object exporter specified was not found. OR_INVALID_OID = 1911, // (0x777) The object specified was not found. OR_INVALID_SET = 1912, // (0x778) The object resolver set specified was not found. RPC_S_SEND_INCOMPLETE = 1913, // (0x779) Some data remains to be sent in the request buffer. RPC_S_INVALID_ASYNC_HANDLE = 1914, // (0x77A) Invalid asynchronous remote procedure call handle. RPC_S_INVALID_ASYNC_CALL = 1915, // (0x77B) Invalid asynchronous RPC call handle for this operation. RPC_X_PIPE_CLOSED = 1916, // (0x77C) The RPC pipe object has already been closed. RPC_X_PIPE_DISCIPLINE_ERROR = 1917, // (0x77D) The RPC call completed before all pipes were processed. RPC_X_PIPE_EMPTY = 1918, // (0x77E) No more data is available from the RPC pipe. ERROR_NO_SITENAME = 1919, // (0x77F) No site name is available for this machine. ERROR_CANT_ACCESS_FILE = 1920, // (0x780) The file cannot be accessed by the system. ERROR_CANT_RESOLVE_FILENAME = 1921, // (0x781) The name of the file cannot be resolved by the system. RPC_S_ENTRY_TYPE_MISMATCH = 1922, // (0x782) The entry is not of the expected type. RPC_S_NOT_ALL_OBJS_EXPORTED = 1923, // (0x783) Not all object UUIDs could be exported to the specified entry. RPC_S_INTERFACE_NOT_EXPORTED = 1924, // (0x784) Interface could not be exported to the specified entry. RPC_S_PROFILE_NOT_ADDED = 1925, // (0x785) The specified profile entry could not be added. RPC_S_PRF_ELT_NOT_ADDED = 1926, // (0x786) The specified profile element could not be added. RPC_S_PRF_ELT_NOT_REMOVED = 1927, // (0x787) The specified profile element could not be removed. RPC_S_GRP_ELT_NOT_ADDED = 1928, // (0x788) The group element could not be added. RPC_S_GRP_ELT_NOT_REMOVED = 1929, // (0x789) The group element could not be removed. ERROR_KM_DRIVER_BLOCKED = 1930, // (0x78A) The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers. ERROR_CONTEXT_EXPIRED = 1931, // (0x78B) The context has expired and can no longer be used. ERROR_PER_USER_TRUST_QUOTA_EXCEEDED = 1932, // (0x78C) The current user’s delegated trust creation quota has been exceeded. ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED = 1933, // (0x78D) The total delegated trust creation quota has been exceeded. ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED = 1934, // (0x78E) The current user’s delegated trust deletion quota has been exceeded. ERROR_AUTHENTICATION_FIREWALL_FAILED = 1935, // (0x78F) The computer you are signing into is protected by an authentication firewall. The specified account is not allowed to authenticate to the computer. ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED = 1936, // (0x790) Remote connections to the Print Spooler are blocked by a policy set on your machine. ERROR_NTLM_BLOCKED = 1937, // (0x791) Authentication failed because NTLM authentication has been disabled. ERROR_PASSWORD_CHANGE_REQUIRED = 1938, // (0x792) Logon Failure: EAS policy requires that the user change their password before this operation can be performed. ERROR_INVALID_PIXEL_FORMAT = 2000, // (0x7D0) The pixel format is invalid. ERROR_BAD_DRIVER = 2001, // (0x7D1) The specified driver is invalid. ERROR_INVALID_WINDOW_STYLE = 2002, // (0x7D2) The window style or class attribute is invalid for this operation. ERROR_METAFILE_NOT_SUPPORTED = 2003, // (0x7D3) The requested metafile operation is not supported. ERROR_TRANSFORM_NOT_SUPPORTED = 2004, // (0x7D4) The requested transformation operation is not supported. ERROR_CLIPPING_NOT_SUPPORTED = 2005, // (0x7D5) The requested clipping operation is not supported. ERROR_INVALID_CMM = 2010, // (0x7DA) The specified color management module is invalid. ERROR_INVALID_PROFILE = 2011, // (0x7DB) The specified color profile is invalid. ERROR_TAG_NOT_FOUND = 2012, // (0x7DC) The specified tag was not found. ERROR_TAG_NOT_PRESENT = 2013, // (0x7DD) A required tag is not present. ERROR_DUPLICATE_TAG = 2014, // (0x7DE) The specified tag is already present. ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE = 2015, // (0x7DF) The specified color profile is not associated with the specified device. ERROR_PROFILE_NOT_FOUND = 2016, // (0x7E0) The specified color profile was not found. ERROR_INVALID_COLORSPACE = 2017, // (0x7E1) The specified color space is invalid. ERROR_ICM_NOT_ENABLED = 2018, // (0x7E2) Image Color Management is not enabled. ERROR_DELETING_ICM_XFORM = 2019, // (0x7E3) There was an error while deleting the color transform. ERROR_INVALID_TRANSFORM = 2020, // (0x7E4) The specified color transform is invalid. ERROR_COLORSPACE_MISMATCH = 2021, // (0x7E5) The specified transform does not match the bitmap’s color space. ERROR_INVALID_COLORINDEX = 2022, // (0x7E6) The specified named color index is not present in the profile. ERROR_PROFILE_DOES_NOT_MATCH_DEVICE = 2023, // (0x7E7) The specified profile is intended for a device of a different type than the specified device. ERROR_CONNECTED_OTHER_PASSWORD = 2108, // (0x83C) The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified. ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT = 2109, // (0x83D) The network connection was made successfully using default credentials. ERROR_BAD_USERNAME = 2202, // (0x89A) The specified username is invalid. ERROR_NOT_CONNECTED = 2250, // (0x8CA) This network connection does not exist. ERROR_OPEN_FILES = 2401, // (0x961) This network connection has files open or requests pending. ERROR_ACTIVE_CONNECTIONS = 2402, // (0x962) Active connections still exist. ERROR_DEVICE_IN_USE = 2404, // (0x964) The device is in use by an active process and cannot be disconnected. ERROR_UNKNOWN_PRINT_MONITOR = 3000, // (0xBB8) The specified print monitor is unknown. ERROR_PRINTER_DRIVER_IN_USE = 3001, // (0xBB9) The specified printer driver is currently in use. ERROR_SPOOL_FILE_NOT_FOUND = 3002, // (0xBBA) The spool file was not found. ERROR_SPL_NO_STARTDOC = 3003, // (0xBBB) A StartDocPrinter call was not issued. ERROR_SPL_NO_ADDJOB = 3004, // (0xBBC) An AddJob call was not issued. ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED = 3005, // (0xBBD) The specified print processor has already been installed. ERROR_PRINT_MONITOR_ALREADY_INSTALLED = 3006, // (0xBBE) The specified print monitor has already been installed. ERROR_INVALID_PRINT_MONITOR = 3007, // (0xBBF) The specified print monitor does not have the required functions. ERROR_PRINT_MONITOR_IN_USE = 3008, // (0xBC0) The specified print monitor is currently in use. ERROR_PRINTER_HAS_JOBS_QUEUED = 3009, // (0xBC1) The requested operation is not allowed when there are jobs queued to the printer. ERROR_SUCCESS_REBOOT_REQUIRED = 3010, // (0xBC2) The requested operation is successful. Changes will not be effective until the system is rebooted. ERROR_SUCCESS_RESTART_REQUIRED = 3011, // (0xBC3) The requested operation is successful. Changes will not be effective until the service is restarted. ERROR_PRINTER_NOT_FOUND = 3012, // (0xBC4) No printers were found. ERROR_PRINTER_DRIVER_WARNED = 3013, // (0xBC5) The printer driver is known to be unreliable. ERROR_PRINTER_DRIVER_BLOCKED = 3014, // (0xBC6) The printer driver is known to harm the system. ERROR_PRINTER_DRIVER_PACKAGE_IN_USE = 3015, // (0xBC7) The specified printer driver package is currently in use. ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND = 3016, // (0xBC8) Unable to find a core driver package that is required by the printer driver package. ERROR_FAIL_REBOOT_REQUIRED = 3017, // (0xBC9) The requested operation failed. A system reboot is required to roll back changes made. ERROR_FAIL_REBOOT_INITIATED = 3018, // (0xBCA) The requested operation failed. A system reboot has been initiated to roll back changes made. ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED = 3019, // (0xBCB) The specified printer driver was not found on the system and needs to be downloaded. ERROR_PRINT_JOB_RESTART_REQUIRED = 3020, // (0xBCC) The requested print job has failed to print. A print system update requires the job to be resubmitted. ERROR_INVALID_PRINTER_DRIVER_MANIFEST = 3021, // (0xBCD) The printer driver does not contain a valid manifest, or contains too many manifests. ERROR_PRINTER_NOT_SHAREABLE = 3022, // (0xBCE) The specified printer cannot be shared. ERROR_REQUEST_PAUSED = 3050, // (0xBEA) The operation was paused. ERROR_IO_REISSUE_AS_CACHED = 3950, // (0xF6E) Reissue the given operation as a cached IO operation. ERROR_WINS_INTERNAL = 4000, // (0xFA0) WINS encountered an error while processing the command. ERROR_CAN_NOT_DEL_LOCAL_WINS = 4001, // (0xFA1) The local WINS cannot be deleted. ERROR_STATIC_INIT = 4002, // (0xFA2) The importation from the file failed. ERROR_INC_BACKUP = 4003, // (0xFA3) The backup failed. Was a full backup done before? ERROR_FULL_BACKUP = 4004, // (0xFA4) The backup failed. Check the directory to which you are backing the database. ERROR_REC_NON_EXISTENT = 4005, // (0xFA5) The name does not exist in the WINS database. ERROR_RPL_NOT_ALLOWED = 4006, // (0xFA6) Replication with a nonconfigured partner is not allowed. PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED = 4050, // (0xFD2) The version of the supplied content information is not supported. PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO = 4051, // (0xFD3) The supplied content information is malformed. PEERDIST_ERROR_MISSING_DATA = 4052, // (0xFD4) The requested data cannot be found in local or peer caches. PEERDIST_ERROR_NO_MORE = 4053, // (0xFD5) No more data is available or required. PEERDIST_ERROR_NOT_INITIALIZED = 4054, // (0xFD6) The supplied object has not been initialized. PEERDIST_ERROR_ALREADY_INITIALIZED = 4055, // (0xFD7) The supplied object has already been initialized. PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS = 4056, // (0xFD8) A shutdown operation is already in progress. PEERDIST_ERROR_INVALIDATED = 4057, // (0xFD9) The supplied object has already been invalidated. PEERDIST_ERROR_ALREADY_EXISTS = 4058, // (0xFDA) An element already exists and was not replaced. PEERDIST_ERROR_OPERATION_NOTFOUND = 4059, // (0xFDB) Can not cancel the requested operation as it has already been completed. PEERDIST_ERROR_ALREADY_COMPLETED = 4060, // (0xFDC) Can not perform the reqested operation because it has already been carried out. PEERDIST_ERROR_OUT_OF_BOUNDS = 4061, // (0xFDD) An operation accessed data beyond the bounds of valid data. PEERDIST_ERROR_VERSION_UNSUPPORTED = 4062, // (0xFDE) The requested version is not supported. PEERDIST_ERROR_INVALID_CONFIGURATION = 4063, // (0xFDF) A configuration value is invalid. PEERDIST_ERROR_NOT_LICENSED = 4064, // (0xFE0) The SKU is not licensed. PEERDIST_ERROR_SERVICE_UNAVAILABLE = 4065, // (0xFE1) PeerDist Service is still initializing and will be available shortly. PEERDIST_ERROR_TRUST_FAILURE = 4066, // (0xFE2) Communication with one or more computers will be temporarily blocked due to recent errors. ERROR_DHCP_ADDRESS_CONFLICT = 4100, // (0x1004) The DHCP client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address. ERROR_WMI_GUID_NOT_FOUND = 4200, // (0x1068) The GUID passed was not recognized as valid by a WMI data provider. ERROR_WMI_INSTANCE_NOT_FOUND = 4201, // (0x1069) The instance name passed was not recognized as valid by a WMI data provider. ERROR_WMI_ITEMID_NOT_FOUND = 4202, // (0x106A) The data item ID passed was not recognized as valid by a WMI data provider. ERROR_WMI_TRY_AGAIN = 4203, // (0x106B) The WMI request could not be completed and should be retried. ERROR_WMI_DP_NOT_FOUND = 4204, // (0x106C) The WMI data provider could not be located. ERROR_WMI_UNRESOLVED_INSTANCE_REF = 4205, // (0x106D) The WMI data provider references an instance set that has not been registered. ERROR_WMI_ALREADY_ENABLED = 4206, // (0x106E) The WMI data block or event notification has already been enabled. ERROR_WMI_GUID_DISCONNECTED = 4207, // (0x106F) The WMI data block is no longer available. ERROR_WMI_SERVER_UNAVAILABLE = 4208, // (0x1070) The WMI data service is not available. ERROR_WMI_DP_FAILED = 4209, // (0x1071) The WMI data provider failed to carry out the request. ERROR_WMI_INVALID_MOF = 4210, // (0x1072) The WMI MOF information is not valid. ERROR_WMI_INVALID_REGINFO = 4211, // (0x1073) The WMI registration information is not valid. ERROR_WMI_ALREADY_DISABLED = 4212, // (0x1074) The WMI data block or event notification has already been disabled. ERROR_WMI_READ_ONLY = 4213, // (0x1075) The WMI data item or data block is read only. ERROR_WMI_SET_FAILURE = 4214, // (0x1076) The WMI data item or data block could not be changed. ERROR_NOT_APPCONTAINER = 4250, // (0x109A) This operation is only valid in the context of an app container. ERROR_APPCONTAINER_REQUIRED = 4251, // (0x109B) This application can only run in the context of an app container. ERROR_NOT_SUPPORTED_IN_APPCONTAINER = 4252, // (0x109C) This functionality is not supported in the context of an app container. ERROR_INVALID_PACKAGE_SID_LENGTH = 4253, // (0x109D) The length of the SID supplied is not a valid length for app container SIDs. ERROR_INVALID_MEDIA = 4300, // (0x10CC) The media identifier does not represent a valid medium. ERROR_INVALID_LIBRARY = 4301, // (0x10CD) The library identifier does not represent a valid library. ERROR_INVALID_MEDIA_POOL = 4302, // (0x10CE) The media pool identifier does not represent a valid media pool. ERROR_DRIVE_MEDIA_MISMATCH = 4303, // (0x10CF) The drive and medium are not compatible or exist in different libraries. ERROR_MEDIA_OFFLINE = 4304, // (0x10D0) The medium currently exists in an offline library and must be online to perform this operation. ERROR_LIBRARY_OFFLINE = 4305, // (0x10D1) The operation cannot be performed on an offline library. ERROR_EMPTY = 4306, // (0x10D2) The library, drive, or media pool is empty. ERROR_NOT_EMPTY = 4307, // (0x10D3) The library, drive, or media pool must be empty to perform this operation. ERROR_MEDIA_UNAVAILABLE = 4308, // (0x10D4) No media is currently available in this media pool or library. ERROR_RESOURCE_DISABLED = 4309, // (0x10D5) A resource required for this operation is disabled. ERROR_INVALID_CLEANER = 4310, // (0x10D6) The media identifier does not represent a valid cleaner. ERROR_UNABLE_TO_CLEAN = 4311, // (0x10D7) The drive cannot be cleaned or does not support cleaning. ERROR_OBJECT_NOT_FOUND = 4312, // (0x10D8) The object identifier does not represent a valid object. ERROR_DATABASE_FAILURE = 4313, // (0x10D9) Unable to read from or write to the database. ERROR_DATABASE_FULL = 4314, // (0x10DA) The database is full. ERROR_MEDIA_INCOMPATIBLE = 4315, // (0x10DB) The medium is not compatible with the device or media pool. ERROR_RESOURCE_NOT_PRESENT = 4316, // (0x10DC) The resource required for this operation does not exist. ERROR_INVALID_OPERATION = 4317, // (0x10DD) The operation identifier is not valid. ERROR_MEDIA_NOT_AVAILABLE = 4318, // (0x10DE) The media is not mounted or ready for use. ERROR_DEVICE_NOT_AVAILABLE = 4319, // (0x10DF) The device is not ready for use. ERROR_REQUEST_REFUSED = 4320, // (0x10E0) The operator or administrator has refused the request. ERROR_INVALID_DRIVE_OBJECT = 4321, // (0x10E1) The drive identifier does not represent a valid drive. ERROR_LIBRARY_FULL = 4322, // (0x10E2) Library is full. No slot is available for use. ERROR_MEDIUM_NOT_ACCESSIBLE = 4323, // (0x10E3) The transport cannot access the medium. ERROR_UNABLE_TO_LOAD_MEDIUM = 4324, // (0x10E4) Unable to load the medium into the drive. ERROR_UNABLE_TO_INVENTORY_DRIVE = 4325, // (0x10E5) Unable to retrieve the drive status. ERROR_UNABLE_TO_INVENTORY_SLOT = 4326, // (0x10E6) Unable to retrieve the slot status. ERROR_UNABLE_TO_INVENTORY_TRANSPORT = 4327, // (0x10E7) Unable to retrieve status about the transport. ERROR_TRANSPORT_FULL = 4328, // (0x10E8) Cannot use the transport because it is already in use. ERROR_CONTROLLING_IEPORT = 4329, // (0x10E9) Unable to open or close the inject/eject port. ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA = 4330, // (0x10EA) Unable to eject the medium because it is in a drive. ERROR_CLEANER_SLOT_SET = 4331, // (0x10EB) A cleaner slot is already reserved. ERROR_CLEANER_SLOT_NOT_SET = 4332, // (0x10EC) A cleaner slot is not reserved. ERROR_CLEANER_CARTRIDGE_SPENT = 4333, // (0x10ED) The cleaner cartridge has performed the maximum number of drive cleanings. ERROR_UNEXPECTED_OMID = 4334, // (0x10EE) Unexpected on-medium identifier. ERROR_CANT_DELETE_LAST_ITEM = 4335, // (0x10EF) The last remaining item in this group or resource cannot be deleted. ERROR_MESSAGE_EXCEEDS_MAX_SIZE = 4336, // (0x10F0) The message provided exceeds the maximum size allowed for this parameter. ERROR_VOLUME_CONTAINS_SYS_FILES = 4337, // (0x10F1) The volume contains system or paging files. ERROR_INDIGENOUS_TYPE = 4338, // (0x10F2) The media type cannot be removed from this library since at least one drive in the library reports it can support this media type. ERROR_NO_SUPPORTING_DRIVES = 4339, // (0x10F3) This offline media cannot be mounted on this system since no enabled drives are present which can be used. ERROR_CLEANER_CARTRIDGE_INSTALLED = 4340, // (0x10F4) A cleaner cartridge is present in the tape library. ERROR_IEPORT_FULL = 4341, // (0x10F5) Cannot use the inject/eject port because it is not empty. ERROR_FILE_OFFLINE = 4350, // (0x10FE) This file is currently not available for use on this computer. ERROR_REMOTE_STORAGE_NOT_ACTIVE = 4351, // (0x10FF) The remote storage service is not operational at this time. ERROR_REMOTE_STORAGE_MEDIA_ERROR = 4352, // (0x1100) The remote storage service encountered a media error. ERROR_NOT_A_REPARSE_POINT = 4390, // (0x1126) The file or directory is not a reparse point. ERROR_REPARSE_ATTRIBUTE_CONFLICT = 4391, // (0x1127) The reparse point attribute cannot be set because it conflicts with an existing attribute. ERROR_INVALID_REPARSE_DATA = 4392, // (0x1128) The data present in the reparse point buffer is invalid. ERROR_REPARSE_TAG_INVALID = 4393, // (0x1129) The tag present in the reparse point buffer is invalid. ERROR_REPARSE_TAG_MISMATCH = 4394, // (0x112A) There is a mismatch between the tag specified in the request and the tag present in the reparse point. ERROR_APP_DATA_NOT_FOUND = 4400, // (0x1130) Fast Cache data not found. ERROR_APP_DATA_EXPIRED = 4401, // (0x1131) Fast Cache data expired. ERROR_APP_DATA_CORRUPT = 4402, // (0x1132) Fast Cache data corrupt. ERROR_APP_DATA_LIMIT_EXCEEDED = 4403, // (0x1133) Fast Cache data has exceeded its max size and cannot be updated. ERROR_APP_DATA_REBOOT_REQUIRED = 4404, // (0x1134) Fast Cache has been ReArmed and requires a reboot until it can be updated. ERROR_SECUREBOOT_ROLLBACK_DETECTED = 4420, // (0x1144) Secure Boot detected that rollback of protected data has been attempted. ERROR_SECUREBOOT_POLICY_VIOLATION = 4421, // (0x1145) The value is protected by Secure Boot policy and cannot be modified or deleted. ERROR_SECUREBOOT_INVALID_POLICY = 4422, // (0x1146) The Secure Boot policy is invalid. ERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND = 4423, // (0x1147) A new Secure Boot policy did not contain the current publisher on its update list. ERROR_SECUREBOOT_POLICY_NOT_SIGNED = 4424, // (0x1148) The Secure Boot policy is either not signed or is signed by a non-trusted signer. ERROR_SECUREBOOT_NOT_ENABLED = 4425, // (0x1149) Secure Boot is not enabled on this machine. ERROR_SECUREBOOT_FILE_REPLACED = 4426, // (0x114A) Secure Boot requires that certain files and drivers are not replaced by other files or drivers. ERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED = 4440, // (0x1158) The copy offload read operation is not supported by a filter. ERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED = 4441, // (0x1159) The copy offload write operation is not supported by a filter. ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED = 4442, // (0x115A) The copy offload read operation is not supported for the file. ERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED = 4443, // (0x115B) The copy offload write operation is not supported for the file. ERROR_VOLUME_NOT_SIS_ENABLED = 4500, // (0x1194) Single Instance Storage is not available on this volume. ERROR_DEPENDENT_RESOURCE_EXISTS = 5001, // (0x1389) The operation cannot be completed because other resources are dependent on this resource. ERROR_DEPENDENCY_NOT_FOUND = 5002, // (0x138A) The cluster resource dependency cannot be found. ERROR_DEPENDENCY_ALREADY_EXISTS = 5003, // (0x138B) The cluster resource cannot be made dependent on the specified resource because it is already dependent. ERROR_RESOURCE_NOT_ONLINE = 5004, // (0x138C) The cluster resource is not online. ERROR_HOST_NODE_NOT_AVAILABLE = 5005, // (0x138D) A cluster node is not available for this operation. ERROR_RESOURCE_NOT_AVAILABLE = 5006, // (0x138E) The cluster resource is not available. ERROR_RESOURCE_NOT_FOUND = 5007, // (0x138F) The cluster resource could not be found. ERROR_SHUTDOWN_CLUSTER = 5008, // (0x1390) The cluster is being shut down. ERROR_CANT_EVICT_ACTIVE_NODE = 5009, // (0x1391) A cluster node cannot be evicted from the cluster unless the node is down or it is the last node. ERROR_OBJECT_ALREADY_EXISTS = 5010, // (0x1392) The object already exists. ERROR_OBJECT_IN_LIST = 5011, // (0x1393) The object is already in the list. ERROR_GROUP_NOT_AVAILABLE = 5012, // (0x1394) The cluster group is not available for any new requests. ERROR_GROUP_NOT_FOUND = 5013, // (0x1395) The cluster group could not be found. ERROR_GROUP_NOT_ONLINE = 5014, // (0x1396) The operation could not be completed because the cluster group is not online. ERROR_HOST_NODE_NOT_RESOURCE_OWNER = 5015, // (0x1397) The operation failed because either the specified cluster node is not the owner of the resource, or the node is not a possible owner of the resource. ERROR_HOST_NODE_NOT_GROUP_OWNER = 5016, // (0x1398) The operation failed because either the specified cluster node is not the owner of the group, or the node is not a possible owner of the group. ERROR_RESMON_CREATE_FAILED = 5017, // (0x1399) The cluster resource could not be created in the specified resource monitor. ERROR_RESMON_ONLINE_FAILED = 5018, // (0x139A) The cluster resource could not be brought online by the resource monitor. ERROR_RESOURCE_ONLINE = 5019, // (0x139B) The operation could not be completed because the cluster resource is online. ERROR_QUORUM_RESOURCE = 5020, // (0x139C) The cluster resource could not be deleted or brought offline because it is the quorum resource. ERROR_NOT_QUORUM_CAPABLE = 5021, // (0x139D) The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource. ERROR_CLUSTER_SHUTTING_DOWN = 5022, // (0x139E) The cluster software is shutting down. ERROR_INVALID_STATE = 5023, // (0x139F) The group or resource is not in the correct state to perform the requested operation. ERROR_RESOURCE_PROPERTIES_STORED = 5024, // (0x13A0) The properties were stored but not all changes will take effect until the next time the resource is brought online. ERROR_NOT_QUORUM_CLASS = 5025, // (0x13A1) The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class. ERROR_CORE_RESOURCE = 5026, // (0x13A2) The cluster resource could not be deleted since it is a core resource. ERROR_QUORUM_RESOURCE_ONLINE_FAILED = 5027, // (0x13A3) The quorum resource failed to come online. ERROR_QUORUMLOG_OPEN_FAILED = 5028, // (0x13A4) The quorum log could not be created or mounted successfully. ERROR_CLUSTERLOG_CORRUPT = 5029, // (0x13A5) The cluster log is corrupt. ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE = 5030, // (0x13A6) The record could not be written to the cluster log since it exceeds the maximum size. ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE = 5031, // (0x13A7) The cluster log exceeds its maximum size. ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND = 5032, // (0x13A8) No checkpoint record was found in the cluster log. ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE = 5033, // (0x13A9) The minimum required disk space needed for logging is not available. ERROR_QUORUM_OWNER_ALIVE = 5034, // (0x13AA) The cluster node failed to take control of the quorum resource because the resource is owned by another active node. ERROR_NETWORK_NOT_AVAILABLE = 5035, // (0x13AB) A cluster network is not available for this operation. ERROR_NODE_NOT_AVAILABLE = 5036, // (0x13AC) A cluster node is not available for this operation. ERROR_ALL_NODES_NOT_AVAILABLE = 5037, // (0x13AD) All cluster nodes must be running to perform this operation. ERROR_RESOURCE_FAILED = 5038, // (0x13AE) A cluster resource failed. ERROR_CLUSTER_INVALID_NODE = 5039, // (0x13AF) The cluster node is not valid. ERROR_CLUSTER_NODE_EXISTS = 5040, // (0x13B0) The cluster node already exists. ERROR_CLUSTER_JOIN_IN_PROGRESS = 5041, // (0x13B1) A node is in the process of joining the cluster. ERROR_CLUSTER_NODE_NOT_FOUND = 5042, // (0x13B2) The cluster node was not found. ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND = 5043, // (0x13B3) The cluster local node information was not found. ERROR_CLUSTER_NETWORK_EXISTS = 5044, // (0x13B4) The cluster network already exists. ERROR_CLUSTER_NETWORK_NOT_FOUND = 5045, // (0x13B5) The cluster network was not found. ERROR_CLUSTER_NETINTERFACE_EXISTS = 5046, // (0x13B6) The cluster network interface already exists. ERROR_CLUSTER_NETINTERFACE_NOT_FOUND = 5047, // (0x13B7) The cluster network interface was not found. ERROR_CLUSTER_INVALID_REQUEST = 5048, // (0x13B8) The cluster request is not valid for this object. ERROR_CLUSTER_INVALID_NETWORK_PROVIDER = 5049, // (0x13B9) The cluster network provider is not valid. ERROR_CLUSTER_NODE_DOWN = 5050, // (0x13BA) The cluster node is down. ERROR_CLUSTER_NODE_UNREACHABLE = 5051, // (0x13BB) The cluster node is not reachable. ERROR_CLUSTER_NODE_NOT_MEMBER = 5052, // (0x13BC) The cluster node is not a member of the cluster. ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS = 5053, // (0x13BD) A cluster join operation is not in progress. ERROR_CLUSTER_INVALID_NETWORK = 5054, // (0x13BE) The cluster network is not valid. ERROR_CLUSTER_NODE_UP = 5056, // (0x13C0) The cluster node is up. ERROR_CLUSTER_IPADDR_IN_USE = 5057, // (0x13C1) The cluster IP address is already in use. ERROR_CLUSTER_NODE_NOT_PAUSED = 5058, // (0x13C2) The cluster node is not paused. ERROR_CLUSTER_NO_SECURITY_CONTEXT = 5059, // (0x13C3) No cluster security context is available. ERROR_CLUSTER_NETWORK_NOT_INTERNAL = 5060, // (0x13C4) The cluster network is not configured for internal cluster communication. ERROR_CLUSTER_NODE_ALREADY_UP = 5061, // (0x13C5) The cluster node is already up. ERROR_CLUSTER_NODE_ALREADY_DOWN = 5062, // (0x13C6) The cluster node is already down. ERROR_CLUSTER_NETWORK_ALREADY_ONLINE = 5063, // (0x13C7) The cluster network is already online. ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE = 5064, // (0x13C8) The cluster network is already offline. ERROR_CLUSTER_NODE_ALREADY_MEMBER = 5065, // (0x13C9) The cluster node is already a member of the cluster. ERROR_CLUSTER_LAST_INTERNAL_NETWORK = 5066, // (0x13CA) The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes. The internal communication capability cannot be removed from the network. ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS = 5067, // (0x13CB) One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network. ERROR_INVALID_OPERATION_ON_QUORUM = 5068, // (0x13CC) This operation cannot be performed on the cluster resource as it the quorum resource. You may not bring the quorum resource offline or modify its possible owners list. ERROR_DEPENDENCY_NOT_ALLOWED = 5069, // (0x13CD) The cluster quorum resource is not allowed to have any dependencies. ERROR_CLUSTER_NODE_PAUSED = 5070, // (0x13CE) The cluster node is paused. ERROR_NODE_CANT_HOST_RESOURCE = 5071, // (0x13CF) The cluster resource cannot be brought online. The owner node cannot run this resource. ERROR_CLUSTER_NODE_NOT_READY = 5072, // (0x13D0) The cluster node is not ready to perform the requested operation. ERROR_CLUSTER_NODE_SHUTTING_DOWN = 5073, // (0x13D1) The cluster node is shutting down. ERROR_CLUSTER_JOIN_ABORTED = 5074, // (0x13D2) The cluster join operation was aborted. ERROR_CLUSTER_INCOMPATIBLE_VERSIONS = 5075, // (0x13D3) The cluster join operation failed due to incompatible software versions between the joining node and its sponsor. ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED = 5076, // (0x13D4) This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor. ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED = 5077, // (0x13D5) The system configuration changed during the cluster join or form operation. The join or form operation was aborted. ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND = 5078, // (0x13D6) The specified resource type was not found. ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED = 5079, // (0x13D7) The specified node does not support a resource of this type. This may be due to version inconsistencies or due to the absence of the resource DLL on this node. ERROR_CLUSTER_RESNAME_NOT_FOUND = 5080, // (0x13D8) The specified resource name is not supported by this resource DLL. This may be due to a bad, // (or changed) name supplied to the resource DLL. ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED = 5081, // (0x13D9) No authentication package could be registered with the RPC server. ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST = 5082, // (0x13DA) You cannot bring the group online because the owner of the group is not in the preferred list for the group. To change the owner node for the group, move the group. ERROR_CLUSTER_DATABASE_SEQMISMATCH = 5083, // (0x13DB) The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This may happen during a join operation if the cluster database was changing during the join. ERROR_RESMON_INVALID_STATE = 5084, // (0x13DC) The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This may happen if the resource is in a pending state. ERROR_CLUSTER_GUM_NOT_LOCKER = 5085, // (0x13DD) A non locker code got a request to reserve the lock for making global updates. ERROR_QUORUM_DISK_NOT_FOUND = 5086, // (0x13DE) The quorum disk could not be located by the cluster service. ERROR_DATABASE_BACKUP_CORRUPT = 5087, // (0x13DF) The backed up cluster database is possibly corrupt. ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT = 5088, // (0x13E0) A DFS root already exists in this cluster node. ERROR_RESOURCE_PROPERTY_UNCHANGEABLE = 5089, // (0x13E1) An attempt to modify a resource property failed because it conflicts with another existing property. ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE = 5890, // (0x1702) An operation was attempted that is incompatible with the current membership state of the node. ERROR_CLUSTER_QUORUMLOG_NOT_FOUND = 5891, // (0x1703) The quorum resource does not contain the quorum log. ERROR_CLUSTER_MEMBERSHIP_HALT = 5892, // (0x1704) The membership engine requested shutdown of the cluster service on this node. ERROR_CLUSTER_INSTANCE_ID_MISMATCH = 5893, // (0x1705) The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node. ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP = 5894, // (0x1706) A matching cluster network for the specified IP address could not be found. ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH = 5895, // (0x1707) The actual data type of the property did not match the expected data type of the property. ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP = 5896, // (0x1708) The cluster node was evicted from the cluster successfully, but the node was not cleaned up. To determine what cleanup steps failed and how to recover, see the Failover Clustering application event log using Event Viewer. ERROR_CLUSTER_PARAMETER_MISMATCH = 5897, // (0x1709) Two or more parameter values specified for a resource’s properties are in conflict. ERROR_NODE_CANNOT_BE_CLUSTERED = 5898, // (0x170A) This computer cannot be made a member of a cluster. ERROR_CLUSTER_WRONG_OS_VERSION = 5899, // (0x170B) This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed. ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME = 5900, // (0x170C) A cluster cannot be created with the specified cluster name because that cluster name is already in use. Specify a different name for the cluster. ERROR_CLUSCFG_ALREADY_COMMITTED = 5901, // (0x170D) The cluster configuration action has already been committed. ERROR_CLUSCFG_ROLLBACK_FAILED = 5902, // (0x170E) The cluster configuration action could not be rolled back. ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT = 5903, // (0x170F) The drive letter assigned to a system disk on one node conflicted with the drive letter assigned to a disk on another node. ERROR_CLUSTER_OLD_VERSION = 5904, // (0x1710) One or more nodes in the cluster are running a version of Windows that does not support this operation. ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME = 5905, // (0x1711) The name of the corresponding computer account doesn’t match the Network Name for this resource. ERROR_CLUSTER_NO_NET_ADAPTERS = 5906, // (0x1712) No network adapters are available. ERROR_CLUSTER_POISONED = 5907, // (0x1713) The cluster node has been poisoned. ERROR_CLUSTER_GROUP_MOVING = 5908, // (0x1714) The group is unable to accept the request since it is moving to another node. ERROR_CLUSTER_RESOURCE_TYPE_BUSY = 5909, // (0x1715) The resource type cannot accept the request since is too busy performing another operation. ERROR_RESOURCE_CALL_TIMED_OUT = 5910, // (0x1716) The call to the cluster resource DLL timed out. ERROR_INVALID_CLUSTER_IPV6_ADDRESS = 5911, // (0x1717) The address is not valid for an IPv6 Address resource. A global IPv6 address is required, and it must match a cluster network. Compatibility addresses are not permitted. ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION = 5912, // (0x1718) An internal cluster error occurred. A call to an invalid function was attempted. ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS = 5913, // (0x1719) A parameter value is out of acceptable range. ERROR_CLUSTER_PARTIAL_SEND = 5914, // (0x171A) A network error occurred while sending data to another node in the cluster. The number of bytes transmitted was less than required. ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION = 5915, // (0x171B) An invalid cluster registry operation was attempted. ERROR_CLUSTER_INVALID_STRING_TERMINATION = 5916, // (0x171C) An input string of characters is not properly terminated. ERROR_CLUSTER_INVALID_STRING_FORMAT = 5917, // (0x171D) An input string of characters is not in a valid format for the data it represents. ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS = 5918, // (0x171E) An internal cluster error occurred. A cluster database transaction was attempted while a transaction was already in progress. ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS = 5919, // (0x171F) An internal cluster error occurred. There was an attempt to commit a cluster database transaction while no transaction was in progress. ERROR_CLUSTER_NULL_DATA = 5920, // (0x1720) An internal cluster error occurred. Data was not properly initialized. ERROR_CLUSTER_PARTIAL_READ = 5921, // (0x1721) An error occurred while reading from a stream of data. An unexpected number of bytes was returned. ERROR_CLUSTER_PARTIAL_WRITE = 5922, // (0x1722) An error occurred while writing to a stream of data. The required number of bytes could not be written. ERROR_CLUSTER_CANT_DESERIALIZE_DATA = 5923, // (0x1723) An error occurred while deserializing a stream of cluster data. ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT = 5924, // (0x1724) One or more property values for this resource are in conflict with one or more property values associated with its dependent resource(s). ERROR_CLUSTER_NO_QUORUM = 5925, // (0x1725) A quorum of cluster nodes was not present to form a cluster. ERROR_CLUSTER_INVALID_IPV6_NETWORK = 5926, // (0x1726) The cluster network is not valid for an IPv6 Address resource, or it does not match the configured address. ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK = 5927, // (0x1727) The cluster network is not valid for an IPv6 Tunnel resource. Check the configuration of the IP Address resource on which the IPv6 Tunnel resource depends. ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP = 5928, // (0x1728) Quorum resource cannot reside in the Available Storage group. ERROR_DEPENDENCY_TREE_TOO_COMPLEX = 5929, // (0x1729) The dependencies for this resource are nested too deeply. ERROR_EXCEPTION_IN_RESOURCE_CALL = 5930, // (0x172A) The call into the resource DLL raised an unhandled exception. ERROR_CLUSTER_RHS_FAILED_INITIALIZATION = 5931, // (0x172B) The RHS process failed to initialize. ERROR_CLUSTER_NOT_INSTALLED = 5932, // (0x172C) The Failover Clustering feature is not installed on this node. ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE = 5933, // (0x172D) The resources must be online on the same node for this operation. ERROR_CLUSTER_MAX_NODES_IN_CLUSTER = 5934, // (0x172E) A new node can not be added since this cluster is already at its maximum number of nodes. ERROR_CLUSTER_TOO_MANY_NODES = 5935, // (0x172F) This cluster can not be created since the specified number of nodes exceeds the maximum allowed limit. ERROR_CLUSTER_OBJECT_ALREADY_USED = 5936, // (0x1730) An attempt to use the specified cluster name failed because an enabled computer object with the given name already exists in the domain. ERROR_NONCORE_GROUPS_FOUND = 5937, // (0x1731) This cluster cannot be destroyed. It has non-core application groups which must be deleted before the cluster can be destroyed. ERROR_FILE_SHARE_RESOURCE_CONFLICT = 5938, // (0x1732) File share associated with file share witness resource cannot be hosted by this cluster or any of its nodes. ERROR_CLUSTER_EVICT_INVALID_REQUEST = 5939, // (0x1733) Eviction of this node is invalid at this time. Due to quorum requirements node eviction will result in cluster shutdown. If it is the last node in the cluster, destroy cluster command should be used. ERROR_CLUSTER_SINGLETON_RESOURCE = 5940, // (0x1734) Only one instance of this resource type is allowed in the cluster. ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE = 5941, // (0x1735) Only one instance of this resource type is allowed per resource group. ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED = 5942, // (0x1736) The resource failed to come online due to the failure of one or more provider resources. ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR = 5943, // (0x1737) The resource has indicated that it cannot come online on any node. ERROR_CLUSTER_GROUP_BUSY = 5944, // (0x1738) The current operation cannot be performed on this group at this time. ERROR_CLUSTER_NOT_SHARED_VOLUME = 5945, // (0x1739) The directory or file is not located on a cluster shared volume. ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR = 5946, // (0x173A) The Security Descriptor does not meet the requirements for a cluster. ERROR_CLUSTER_SHARED_VOLUMES_IN_USE = 5947, // (0x173B) There is one or more shared volumes resources configured in the cluster. Those resources must be moved to available storage in order for operation to succeed. ERROR_CLUSTER_USE_SHARED_VOLUMES_API = 5948, // (0x173C) This group or resource cannot be directly manipulated. Use shared volume APIs to perform desired operation. ERROR_CLUSTER_BACKUP_IN_PROGRESS = 5949, // (0x173D) Back up is in progress. Please wait for backup completion before trying this operation again. ERROR_NON_CSV_PATH = 5950, // (0x173E) The path does not belong to a cluster shared volume. ERROR_CSV_VOLUME_NOT_LOCAL = 5951, // (0x173F) The cluster shared volume is not locally mounted on this node. ERROR_CLUSTER_WATCHDOG_TERMINATING = 5952, // (0x1740) The cluster watchdog is terminating. ERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES = 5953, // (0x1741) A resource vetoed a move between two nodes because they are incompatible. ERROR_CLUSTER_INVALID_NODE_WEIGHT = 5954, // (0x1742) The request is invalid either because node weight cannot be changed while the cluster is in disk-only quorum mode, or because changing the node weight would violate the minimum cluster quorum requirements. ERROR_CLUSTER_RESOURCE_VETOED_CALL = 5955, // (0x1743) The resource vetoed the call. ERROR_RESMON_SYSTEM_RESOURCES_LACKING = 5956, // (0x1744) Resource could not start or run because it could not reserve sufficient system resources. ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION = 5957, // (0x1745) A resource vetoed a move between two nodes because the destination currently does not have enough resources to complete the operation. ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE = 5958, // (0x1746) A resource vetoed a move between two nodes because the source currently does not have enough resources to complete the operation. ERROR_CLUSTER_GROUP_QUEUED = 5959, // (0x1747) The requested operation can not be completed because the group is queued for an operation. ERROR_CLUSTER_RESOURCE_LOCKED_STATUS = 5960, // (0x1748) The requested operation can not be completed because a resource has locked status. ERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED = 5961, // (0x1749) The resource cannot move to another node because a cluster shared volume vetoed the operation. ERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS = 5962, // (0x174A) A node drain is already in progress. //This value was also named ERROR_CLUSTER_NODE_EVACUATION_IN_PROGRESS ERROR_CLUSTER_DISK_NOT_CONNECTED = 5963, // (0x174B) Clustered storage is not connected to the node. ERROR_DISK_NOT_CSV_CAPABLE = 5964, // (0x174C) The disk is not configured in a way to be used with CSV. CSV disks must have at least one partition that is formatted with NTFS. ERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE = 5965, // (0x174D) The resource must be part of the Available Storage group to complete this action. ERROR_CLUSTER_SHARED_VOLUME_REDIRECTED = 5966, // (0x174E) CSVFS failed operation as volume is in redirected mode. ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED = 5967, // (0x174F) CSVFS failed operation as volume is not in redirected mode. ERROR_CLUSTER_CANNOT_RETURN_PROPERTIES = 5968, // (0x1750) Cluster properties cannot be returned at this time. ERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES = 5969, // (0x1751) The clustered disk resource contains software snapshot diff area that are not supported for Cluster Shared Volumes. ERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE = 5970, // (0x1752) The operation cannot be completed because the resource is in maintenance mode. ERROR_CLUSTER_AFFINITY_CONFLICT = 5971, // (0x1753) The operation cannot be completed because of cluster affinity conflicts. ERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE = 5972, // (0x1754) The operation cannot be completed because the resource is a replica virtual machine. ERROR_ENCRYPTION_FAILED = 6000, // (0x1770) The specified file could not be encrypted. ERROR_DECRYPTION_FAILED = 6001, // (0x1771) The specified file could not be decrypted. ERROR_FILE_ENCRYPTED = 6002, // (0x1772) The specified file is encrypted and the user does not have the ability to decrypt it. ERROR_NO_RECOVERY_POLICY = 6003, // (0x1773) There is no valid encryption recovery policy configured for this system. ERROR_NO_EFS = 6004, // (0x1774) The required encryption driver is not loaded for this system. ERROR_WRONG_EFS = 6005, // (0x1775) The file was encrypted with a different encryption driver than is currently loaded. ERROR_NO_USER_KEYS = 6006, // (0x1776) There are no EFS keys defined for the user. ERROR_FILE_NOT_ENCRYPTED = 6007, // (0x1777) The specified file is not encrypted. ERROR_NOT_EXPORT_FORMAT = 6008, // (0x1778) The specified file is not in the defined EFS export format. ERROR_FILE_READ_ONLY = 6009, // (0x1779) The specified file is read only. ERROR_DIR_EFS_DISALLOWED = 6010, // (0x177A) The directory has been disabled for encryption. ERROR_EFS_SERVER_NOT_TRUSTED = 6011, // (0x177B) The server is not trusted for remote encryption operation. ERROR_BAD_RECOVERY_POLICY = 6012, // (0x177C) Recovery policy configured for this system contains invalid recovery certificate. ERROR_EFS_ALG_BLOB_TOO_BIG = 6013, // (0x177D) The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file. ERROR_VOLUME_NOT_SUPPORT_EFS = 6014, // (0x177E) The disk partition does not support file encryption. ERROR_EFS_DISABLED = 6015, // (0x177F) This machine is disabled for file encryption. ERROR_EFS_VERSION_NOT_SUPPORT = 6016, // (0x1780) A newer system is required to decrypt this encrypted file. ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE = 6017, // (0x1781) The remote server sent an invalid response for a file being opened with Client Side Encryption. ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER = 6018, // (0x1782) Client Side Encryption is not supported by the remote server even though it claims to support it. ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE = 6019, // (0x1783) File is encrypted and should be opened in Client Side Encryption mode. ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE = 6020, // (0x1784) A new encrypted file is being created and a $EFS needs to be provided. ERROR_CS_ENCRYPTION_FILE_NOT_CSE = 6021, // (0x1785) The SMB client requested a CSE FSCTL on a non-CSE file. ERROR_ENCRYPTION_POLICY_DENIES_OPERATION = 6022, // (0x1786) The requested operation was blocked by policy. For more information, contact your system administrator. ERROR_NO_BROWSER_SERVERS_FOUND = 6118, // (0x17E6) The list of servers for this workgroup is not currently available. SCHED_E_SERVICE_NOT_LOCALSYSTEM = 6200, // (0x1838) The Task Scheduler service must be configured to run in the System account to function properly. Individual tasks may be configured to run in other accounts. ERROR_LOG_SECTOR_INVALID = 6600, // (0x19C8) Log service encountered an invalid log sector. ERROR_LOG_SECTOR_PARITY_INVALID = 6601, // (0x19C9) Log service encountered a log sector with invalid block parity. ERROR_LOG_SECTOR_REMAPPED = 6602, // (0x19CA) Log service encountered a remapped log sector. ERROR_LOG_BLOCK_INCOMPLETE = 6603, // (0x19CB) Log service encountered a partial or incomplete log block. ERROR_LOG_INVALID_RANGE = 6604, // (0x19CC) Log service encountered an attempt access data outside the active log range. ERROR_LOG_BLOCKS_EXHAUSTED = 6605, // (0x19CD) Log service user marshalling buffers are exhausted. ERROR_LOG_READ_CONTEXT_INVALID = 6606, // (0x19CE) Log service encountered an attempt read from a marshalling area with an invalid read context. ERROR_LOG_RESTART_INVALID = 6607, // (0x19CF) Log service encountered an invalid log restart area. ERROR_LOG_BLOCK_VERSION = 6608, // (0x19D0) Log service encountered an invalid log block version. ERROR_LOG_BLOCK_INVALID = 6609, // (0x19D1) Log service encountered an invalid log block. ERROR_LOG_READ_MODE_INVALID = 6610, // (0x19D2) Log service encountered an attempt to read the log with an invalid read mode. ERROR_LOG_NO_RESTART = 6611, // (0x19D3) Log service encountered a log stream with no restart area. ERROR_LOG_METADATA_CORRUPT = 6612, // (0x19D4) Log service encountered a corrupted metadata file. ERROR_LOG_METADATA_INVALID = 6613, // (0x19D5) Log service encountered a metadata file that could not be created by the log file system. ERROR_LOG_METADATA_INCONSISTENT = 6614, // (0x19D6) Log service encountered a metadata file with inconsistent data. ERROR_LOG_RESERVATION_INVALID = 6615, // (0x19D7) Log service encountered an attempt to erroneous allocate or dispose reservation space. ERROR_LOG_CANT_DELETE = 6616, // (0x19D8) Log service cannot delete log file or file system container. ERROR_LOG_CONTAINER_LIMIT_EXCEEDED = 6617, // (0x19D9) Log service has reached the maximum allowable containers allocated to a log file. ERROR_LOG_START_OF_LOG = 6618, // (0x19DA) Log service has attempted to read or write backward past the start of the log. ERROR_LOG_POLICY_ALREADY_INSTALLED = 6619, // (0x19DB) Log policy could not be installed because a policy of the same type is already present. ERROR_LOG_POLICY_NOT_INSTALLED = 6620, // (0x19DC) Log policy in question was not installed at the time of the request. ERROR_LOG_POLICY_INVALID = 6621, // (0x19DD) The installed set of policies on the log is invalid. ERROR_LOG_POLICY_CONFLICT = 6622, // (0x19DE) A policy on the log in question prevented the operation from completing. ERROR_LOG_PINNED_ARCHIVE_TAIL = 6623, // (0x19DF) Log space cannot be reclaimed because the log is pinned by the archive tail. ERROR_LOG_RECORD_NONEXISTENT = 6624, // (0x19E0) Log record is not a record in the log file. ERROR_LOG_RECORDS_RESERVED_INVALID = 6625, // (0x19E1) Number of reserved log records or the adjustment of the number of reserved log records is invalid. ERROR_LOG_SPACE_RESERVED_INVALID = 6626, // (0x19E2) Reserved log space or the adjustment of the log space is invalid. ERROR_LOG_TAIL_INVALID = 6627, // (0x19E3) An new or existing archive tail or base of the active log is invalid. ERROR_LOG_FULL = 6628, // (0x19E4) Log space is exhausted. ERROR_COULD_NOT_RESIZE_LOG = 6629, // (0x19E5) The log could not be set to the requested size. ERROR_LOG_MULTIPLEXED = 6630, // (0x19E6) Log is multiplexed, no direct writes to the physical log is allowed. ERROR_LOG_DEDICATED = 6631, // (0x19E7) The operation failed because the log is a dedicated log. ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS = 6632, // (0x19E8) The operation requires an archive context. ERROR_LOG_ARCHIVE_IN_PROGRESS = 6633, // (0x19E9) Log archival is in progress. ERROR_LOG_EPHEMERAL = 6634, // (0x19EA) The operation requires a non-ephemeral log, but the log is ephemeral. ERROR_LOG_NOT_ENOUGH_CONTAINERS = 6635, // (0x19EB) The log must have at least two containers before it can be read from or written to. ERROR_LOG_CLIENT_ALREADY_REGISTERED = 6636, // (0x19EC) A log client has already registered on the stream. ERROR_LOG_CLIENT_NOT_REGISTERED = 6637, // (0x19ED) A log client has not been registered on the stream. ERROR_LOG_FULL_HANDLER_IN_PROGRESS = 6638, // (0x19EE) A request has already been made to handle the log full condition. ERROR_LOG_CONTAINER_READ_FAILED = 6639, // (0x19EF) Log service encountered an error when attempting to read from a log container. ERROR_LOG_CONTAINER_WRITE_FAILED = 6640, // (0x19F0) Log service encountered an error when attempting to write to a log container. ERROR_LOG_CONTAINER_OPEN_FAILED = 6641, // (0x19F1) Log service encountered an error when attempting open a log container. ERROR_LOG_CONTAINER_STATE_INVALID = 6642, // (0x19F2) Log service encountered an invalid container state when attempting a requested action. ERROR_LOG_STATE_INVALID = 6643, // (0x19F3) Log service is not in the correct state to perform a requested action. ERROR_LOG_PINNED = 6644, // (0x19F4) Log space cannot be reclaimed because the log is pinned. ERROR_LOG_METADATA_FLUSH_FAILED = 6645, // (0x19F5) Log metadata flush failed. ERROR_LOG_INCONSISTENT_SECURITY = 6646, // (0x19F6) Security on the log and its containers is inconsistent. ERROR_LOG_APPENDED_FLUSH_FAILED = 6647, // (0x19F7) Records were appended to the log or reservation changes were made, but the log could not be flushed. ERROR_LOG_PINNED_RESERVATION = 6648, // (0x19F8) The log is pinned due to reservation consuming most of the log space. Free some reserved records to make space available. ERROR_INVALID_TRANSACTION = 6700, // (0x1A2C) The transaction handle associated with this operation is not valid. ERROR_TRANSACTION_NOT_ACTIVE = 6701, // (0x1A2D) The requested operation was made in the context of a transaction that is no longer active. ERROR_TRANSACTION_REQUEST_NOT_VALID = 6702, // (0x1A2E) The requested operation is not valid on the Transaction object in its current state. ERROR_TRANSACTION_NOT_REQUESTED = 6703, // (0x1A2F) The caller has called a response API, but the response is not expected because the TM did not issue the corresponding request to the caller. ERROR_TRANSACTION_ALREADY_ABORTED = 6704, // (0x1A30) It is too late to perform the requested operation, since the Transaction has already been aborted. ERROR_TRANSACTION_ALREADY_COMMITTED = 6705, // (0x1A31) It is too late to perform the requested operation, since the Transaction has already been committed. ERROR_TM_INITIALIZATION_FAILED = 6706, // (0x1A32) The Transaction Manager was unable to be successfully initialized. Transacted operations are not supported. ERROR_RESOURCEMANAGER_READ_ONLY = 6707, // (0x1A33) The specified ResourceManager made no changes or updates to the resource under this transaction. ERROR_TRANSACTION_NOT_JOINED = 6708, // (0x1A34) The resource manager has attempted to prepare a transaction that it has not successfully joined. ERROR_TRANSACTION_SUPERIOR_EXISTS = 6709, // (0x1A35) The Transaction object already has a superior enlistment, and the caller attempted an operation that would have created a new superior. Only a single superior enlistment is allow. ERROR_CRM_PROTOCOL_ALREADY_EXISTS = 6710, // (0x1A36) The RM tried to register a protocol that already exists. ERROR_TRANSACTION_PROPAGATION_FAILED = 6711, // (0x1A37) The attempt to propagate the Transaction failed. ERROR_CRM_PROTOCOL_NOT_FOUND = 6712, // (0x1A38) The requested propagation protocol was not registered as a CRM. ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER = 6713, // (0x1A39) The buffer passed in to PushTransaction or PullTransaction is not in a valid format. ERROR_CURRENT_TRANSACTION_NOT_VALID = 6714, // (0x1A3A) The current transaction context associated with the thread is not a valid handle to a transaction object. ERROR_TRANSACTION_NOT_FOUND = 6715, // (0x1A3B) The specified Transaction object could not be opened, because it was not found. ERROR_RESOURCEMANAGER_NOT_FOUND = 6716, // (0x1A3C) The specified ResourceManager object could not be opened, because it was not found. ERROR_ENLISTMENT_NOT_FOUND = 6717, // (0x1A3D) The specified Enlistment object could not be opened, because it was not found. ERROR_TRANSACTIONMANAGER_NOT_FOUND = 6718, // (0x1A3E) The specified TransactionManager object could not be opened, because it was not found. ERROR_TRANSACTIONMANAGER_NOT_ONLINE = 6719, // (0x1A3F) The object specified could not be created or opened, because its associated TransactionManager is not online. The TransactionManager must be brought fully Online by calling RecoverTransactionManager to recover to the end of its LogFile before objects in its Transaction or ResourceManager namespaces can be opened. In addition, errors in writing records to its LogFile can cause a TransactionManager to go offline. ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION = 6720, // (0x1A40) The specified TransactionManager was unable to create the objects contained in its logfile in the Ob namespace. Therefore, the TransactionManager was unable to recover. ERROR_TRANSACTION_NOT_ROOT = 6721, // (0x1A41) The call to create a superior Enlistment on this Transaction object could not be completed, because the Transaction object specified for the enlistment is a subordinate branch of the Transaction. Only the root of the Transaction can be enlisted on as a superior. ERROR_TRANSACTION_OBJECT_EXPIRED = 6722, // (0x1A42) Because the associated transaction manager or resource manager has been closed, the handle is no longer valid. ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED = 6723, // (0x1A43) The specified operation could not be performed on this Superior enlistment, because the enlistment was not created with the corresponding completion response in the NotificationMask. ERROR_TRANSACTION_RECORD_TOO_LONG = 6724, // (0x1A44) The specified operation could not be performed, because the record that would be logged was too long. This can occur because of two conditions: either there are too many Enlistments on this Transaction, or the combined RecoveryInformation being logged on behalf of those Enlistments is too long. ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED = 6725, // (0x1A45) Implicit transaction are not supported. ERROR_TRANSACTION_INTEGRITY_VIOLATED = 6726, // (0x1A46) The kernel transaction manager had to abort or forget the transaction because it blocked forward progress. ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH = 6727, // (0x1A47) The TransactionManager identity that was supplied did not match the one recorded in the TransactionManager’s log file. ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT = 6728, // (0x1A48) This snapshot operation cannot continue because a transactional resource manager cannot be frozen in its current state. Please try again. ERROR_TRANSACTION_MUST_WRITETHROUGH = 6729, // (0x1A49) The transaction cannot be enlisted on with the specified EnlistmentMask, because the transaction has already completed the PrePrepare phase. In order to ensure correctness, the ResourceManager must switch to a write- through mode and cease caching data within this transaction. Enlisting for only subsequent transaction phases may still succeed. ERROR_TRANSACTION_NO_SUPERIOR = 6730, // (0x1A4A) The transaction does not have a superior enlistment. ERROR_HEURISTIC_DAMAGE_POSSIBLE = 6731, // (0x1A4B) The attempt to commit the Transaction completed, but it is possible that some portion of the transaction tree did not commit successfully due to heuristics. Therefore it is possible that some data modified in the transaction may not have committed, resulting in transactional inconsistency. If possible, check the consistency of the associated data. ERROR_TRANSACTIONAL_CONFLICT = 6800, // (0x1A90) The function attempted to use a name that is reserved for use by another transaction. ERROR_RM_NOT_ACTIVE = 6801, // (0x1A91) Transaction support within the specified resource manager is not started or was shut down due to an error. ERROR_RM_METADATA_CORRUPT = 6802, // (0x1A92) The metadata of the RM has been corrupted. The RM will not function. ERROR_DIRECTORY_NOT_RM = 6803, // (0x1A93) The specified directory does not contain a resource manager. ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE = 6805, // (0x1A95) The remote server or share does not support transacted file operations. ERROR_LOG_RESIZE_INVALID_SIZE = 6806, // (0x1A96) The requested log size is invalid. ERROR_OBJECT_NO_LONGER_EXISTS = 6807, // (0x1A97) The object, // (file, stream, link) corresponding to the handle has been deleted by a Transaction Savepoint Rollback. ERROR_STREAM_MINIVERSION_NOT_FOUND = 6808, // (0x1A98) The specified file miniversion was not found for this transacted file open. ERROR_STREAM_MINIVERSION_NOT_VALID = 6809, // (0x1A99) The specified file miniversion was found but has been invalidated. Most likely cause is a transaction savepoint rollback. ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION = 6810, // (0x1A9A) A miniversion may only be opened in the context of the transaction that created it. ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT = 6811, // (0x1A9B) It is not possible to open a miniversion with modify access. ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS = 6812, // (0x1A9C) It is not possible to create any more miniversions for this stream. ERROR_REMOTE_FILE_VERSION_MISMATCH = 6814, // (0x1A9E) The remote server sent mismatching version number or Fid for a file opened with transactions. ERROR_HANDLE_NO_LONGER_VALID = 6815, // (0x1A9F) The handle has been invalidated by a transaction. The most likely cause is the presence of memory mapping on a file or an open handle when the transaction ended or rolled back to savepoint. ERROR_NO_TXF_METADATA = 6816, // (0x1AA0) There is no transaction metadata on the file. ERROR_LOG_CORRUPTION_DETECTED = 6817, // (0x1AA1) The log data is corrupt. ERROR_CANT_RECOVER_WITH_HANDLE_OPEN = 6818, // (0x1AA2) The file can’t be recovered because there is a handle still open on it. ERROR_RM_DISCONNECTED = 6819, // (0x1AA3) The transaction outcome is unavailable because the resource manager responsible for it has disconnected. ERROR_ENLISTMENT_NOT_SUPERIOR = 6820, // (0x1AA4) The request was rejected because the enlistment in question is not a superior enlistment. ERROR_RECOVERY_NOT_NEEDED = 6821, // (0x1AA5) The transactional resource manager is already consistent. Recovery is not needed. ERROR_RM_ALREADY_STARTED = 6822, // (0x1AA6) The transactional resource manager has already been started. ERROR_FILE_IDENTITY_NOT_PERSISTENT = 6823, // (0x1AA7) The file cannot be opened transactionally, because its identity depends on the outcome of an unresolved transaction. ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY = 6824, // (0x1AA8) The operation cannot be performed because another transaction is depending on the fact that this property will not change. ERROR_CANT_CROSS_RM_BOUNDARY = 6825, // (0x1AA9) The operation would involve a single file with two transactional resource managers and is therefore not allowed. ERROR_TXF_DIR_NOT_EMPTY = 6826, // (0x1AAA) The $Txf directory must be empty for this operation to succeed. ERROR_INDOUBT_TRANSACTIONS_EXIST = 6827, // (0x1AAB) The operation would leave a transactional resource manager in an inconsistent state and is therefore not allowed. ERROR_TM_VOLATILE = 6828, // (0x1AAC) The operation could not be completed because the transaction manager does not have a log. ERROR_ROLLBACK_TIMER_EXPIRED = 6829, // (0x1AAD) A rollback could not be scheduled because a previously scheduled rollback has already executed or been queued for execution. ERROR_TXF_ATTRIBUTE_CORRUPT = 6830, // (0x1AAE) The transactional metadata attribute on the file or directory is corrupt and unreadable. ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION = 6831, // (0x1AAF) The encryption operation could not be completed because a transaction is active. ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED = 6832, // (0x1AB0) This object is not allowed to be opened in a transaction. ERROR_LOG_GROWTH_FAILED = 6833, // (0x1AB1) An attempt to create space in the transactional resource manager’s log failed. The failure status has been recorded in the event log. ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE = 6834, // (0x1AB2) Memory mapping, // (creating a mapped section) a remote file under a transaction is not supported. ERROR_TXF_METADATA_ALREADY_PRESENT = 6835, // (0x1AB3) Transaction metadata is already present on this file and cannot be superseded. ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET = 6836, // (0x1AB4) A transaction scope could not be entered because the scope handler has not been initialized. ERROR_TRANSACTION_REQUIRED_PROMOTION = 6837, // (0x1AB5) Promotion was required in order to allow the resource manager to enlist, but the transaction was set to disallow it. ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION = 6838, // (0x1AB6) This file is open for modification in an unresolved transaction and may be opened for execute only by a transacted reader. ERROR_TRANSACTIONS_NOT_FROZEN = 6839, // (0x1AB7) The request to thaw frozen transactions was ignored because transactions had not previously been frozen. ERROR_TRANSACTION_FREEZE_IN_PROGRESS = 6840, // (0x1AB8) Transactions cannot be frozen because a freeze is already in progress. ERROR_NOT_SNAPSHOT_VOLUME = 6841, // (0x1AB9) The target volume is not a snapshot volume. This operation is only valid on a volume mounted as a snapshot. ERROR_NO_SAVEPOINT_WITH_OPEN_FILES = 6842, // (0x1ABA) The savepoint operation failed because files are open on the transaction. This is not permitted. ERROR_DATA_LOST_REPAIR = 6843, // (0x1ABB) Windows has discovered corruption in a file, and that file has since been repaired. Data loss may have occurred. ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION = 6844, // (0x1ABC) The sparse operation could not be completed because a transaction is active on the file. ERROR_TM_IDENTITY_MISMATCH = 6845, // (0x1ABD) The call to create a TransactionManager object failed because the Tm Identity stored in the logfile does not match the Tm Identity that was passed in as an argument. ERROR_FLOATED_SECTION = 6846, // (0x1ABE) I/O was attempted on a section object that has been floated as a result of a transaction ending. There is no valid data. ERROR_CANNOT_ACCEPT_TRANSACTED_WORK = 6847, // (0x1ABF) The transactional resource manager cannot currently accept transacted work due to a transient condition such as low resources. ERROR_CANNOT_ABORT_TRANSACTIONS = 6848, // (0x1AC0) The transactional resource manager had too many tranactions outstanding that could not be aborted. The transactional resource manger has been shut down. ERROR_BAD_CLUSTERS = 6849, // (0x1AC1) The operation could not be completed due to bad clusters on disk. ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION = 6850, // (0x1AC2) The compression operation could not be completed because a transaction is active on the file. ERROR_VOLUME_DIRTY = 6851, // (0x1AC3) The operation could not be completed because the volume is dirty. Please run chkdsk and try again. ERROR_NO_LINK_TRACKING_IN_TRANSACTION = 6852, // (0x1AC4) The link tracking operation could not be completed because a transaction is active. ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION = 6853, // (0x1AC5) This operation cannot be performed in a transaction. ERROR_EXPIRED_HANDLE = 6854, // (0x1AC6) The handle is no longer properly associated with its transaction. It may have been opened in a transactional resource manager that was subsequently forced to restart. Please close the handle and open a new one. ERROR_TRANSACTION_NOT_ENLISTED = 6855, // (0x1AC7) The specified operation could not be performed because the resource manager is not enlisted in the transaction. ERROR_CTX_WINSTATION_NAME_INVALID = 7001, // (0x1B59) The specified session name is invalid. ERROR_CTX_INVALID_PD = 7002, // (0x1B5A) The specified protocol driver is invalid. ERROR_CTX_PD_NOT_FOUND = 7003, // (0x1B5B) The specified protocol driver was not found in the system path. ERROR_CTX_WD_NOT_FOUND = 7004, // (0x1B5C) The specified terminal connection driver was not found in the system path. ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY = 7005, // (0x1B5D) A registry key for event logging could not be created for this session. ERROR_CTX_SERVICE_NAME_COLLISION = 7006, // (0x1B5E) A service with the same name already exists on the system. ERROR_CTX_CLOSE_PENDING = 7007, // (0x1B5F) A close operation is pending on the session. ERROR_CTX_NO_OUTBUF = 7008, // (0x1B60) There are no free output buffers available. ERROR_CTX_MODEM_INF_NOT_FOUND = 7009, // (0x1B61) The MODEM.INF file was not found. ERROR_CTX_INVALID_MODEMNAME = 7010, // (0x1B62) The modem name was not found in MODEM.INF. ERROR_CTX_MODEM_RESPONSE_ERROR = 7011, // (0x1B63) The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem. ERROR_CTX_MODEM_RESPONSE_TIMEOUT = 7012, // (0x1B64) The modem did not respond to the command sent to it. Verify that the modem is properly cabled and powered on. ERROR_CTX_MODEM_RESPONSE_NO_CARRIER = 7013, // (0x1B65) Carrier detect has failed or carrier has been dropped due to disconnect. ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE = 7014, // (0x1B66) Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional. ERROR_CTX_MODEM_RESPONSE_BUSY = 7015, // (0x1B67) Busy signal detected at remote site on callback. ERROR_CTX_MODEM_RESPONSE_VOICE = 7016, // (0x1B68) Voice detected at remote site on callback. ERROR_CTX_TD_ERROR = 7017, // (0x1B69) Transport driver error. ERROR_CTX_WINSTATION_NOT_FOUND = 7022, // (0x1B6E) The specified session cannot be found. ERROR_CTX_WINSTATION_ALREADY_EXISTS = 7023, // (0x1B6F) The specified session name is already in use. ERROR_CTX_WINSTATION_BUSY = 7024, // (0x1B70) The task you are trying to do can’t be completed because Remote Desktop Services is currently busy. Please try again in a few minutes. Other users should still be able to log on. ERROR_CTX_BAD_VIDEO_MODE = 7025, // (0x1B71) An attempt has been made to connect to a session whose video mode is not supported by the current client. ERROR_CTX_GRAPHICS_INVALID = 7035, // (0x1B7B) The application attempted to enable DOS graphics mode. DOS graphics mode is not supported. ERROR_CTX_LOGON_DISABLED = 7037, // (0x1B7D) Your interactive logon privilege has been disabled. Please contact your administrator. ERROR_CTX_NOT_CONSOLE = 7038, // (0x1B7E) The requested operation can be performed only on the system console. This is most often the result of a driver or system DLL requiring direct console access. ERROR_CTX_CLIENT_QUERY_TIMEOUT = 7040, // (0x1B80) The client failed to respond to the server connect message. ERROR_CTX_CONSOLE_DISCONNECT = 7041, // (0x1B81) Disconnecting the console session is not supported. ERROR_CTX_CONSOLE_CONNECT = 7042, // (0x1B82) Reconnecting a disconnected session to the console is not supported. ERROR_CTX_SHADOW_DENIED = 7044, // (0x1B84) The request to control another session remotely was denied. ERROR_CTX_WINSTATION_ACCESS_DENIED = 7045, // (0x1B85) The requested session access is denied. ERROR_CTX_INVALID_WD = 7049, // (0x1B89) The specified terminal connection driver is invalid. ERROR_CTX_SHADOW_INVALID = 7050, // (0x1B8A) The requested session cannot be controlled remotely. This may be because the session is disconnected or does not currently have a user logged on. ERROR_CTX_SHADOW_DISABLED = 7051, // (0x1B8B) The requested session is not configured to allow remote control. ERROR_CTX_CLIENT_LICENSE_IN_USE = 7052, // (0x1B8C) Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number is currently being used by another user. Please call your system administrator to obtain a unique license number. ERROR_CTX_CLIENT_LICENSE_NOT_SET = 7053, // (0x1B8D) Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number has not been entered for this copy of the Terminal Server client. Please contact your system administrator. ERROR_CTX_LICENSE_NOT_AVAILABLE = 7054, // (0x1B8E) The number of connections to this computer is limited and all connections are in use right now. Try connecting later or contact your system administrator. ERROR_CTX_LICENSE_CLIENT_INVALID = 7055, // (0x1B8F) The client you are using is not licensed to use this system. Your logon request is denied. ERROR_CTX_LICENSE_EXPIRED = 7056, // (0x1B90) The system license has expired. Your logon request is denied. ERROR_CTX_SHADOW_NOT_RUNNING = 7057, // (0x1B91) Remote control could not be terminated because the specified session is not currently being remotely controlled. ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE = 7058, // (0x1B92) The remote control of the console was terminated because the display mode was changed. Changing the display mode in a remote control session is not supported. ERROR_ACTIVATION_COUNT_EXCEEDED = 7059, // (0x1B93) Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared. ERROR_CTX_WINSTATIONS_DISABLED = 7060, // (0x1B94) Remote logins are currently disabled. ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED = 7061, // (0x1B95) You do not have the proper encryption level to access this Session. ERROR_CTX_SESSION_IN_USE = 7062, // (0x1B96) The user %s\%s is currently logged on to this computer. Only the current user or an administrator can log on to this computer. ERROR_CTX_NO_FORCE_LOGOFF = 7063, // (0x1B97) The user %s\%s is already logged on to the console of this computer. You do not have permission to log in at this time. To resolve this issue, contact %s\%s and have them log off. ERROR_CTX_ACCOUNT_RESTRICTION = 7064, // (0x1B98) Unable to log you on because of an account restriction. ERROR_RDP_PROTOCOL_ERROR = 7065, // (0x1B99) The RDP protocol component %2 detected an error in the protocol stream and has disconnected the client. ERROR_CTX_CDM_CONNECT = 7066, // (0x1B9A) The Client Drive Mapping Service Has Connected on Terminal Connection. ERROR_CTX_CDM_DISCONNECT = 7067, // (0x1B9B) The Client Drive Mapping Service Has Disconnected on Terminal Connection. ERROR_CTX_SECURITY_LAYER_ERROR = 7068, // (0x1B9C) The Terminal Server security layer detected an error in the protocol stream and has disconnected the client. ERROR_TS_INCOMPATIBLE_SESSIONS = 7069, // (0x1B9D) The target session is incompatible with the current session. ERROR_TS_VIDEO_SUBSYSTEM_ERROR = 7070, // (0x1B9E) Windows can’t connect to your session because a problem occurred in the Windows video subsystem. Try connecting again later, or contact the server administrator for assistance. FRS_ERR_INVALID_API_SEQUENCE = 8001, // (0x1F41) The file replication service API was called incorrectly. FRS_ERR_STARTING_SERVICE = 8002, // (0x1F42) The file replication service cannot be started. FRS_ERR_STOPPING_SERVICE = 8003, // (0x1F43) The file replication service cannot be stopped. FRS_ERR_INTERNAL_API = 8004, // (0x1F44) The file replication service API terminated the request. The event log may have more information. FRS_ERR_INTERNAL = 8005, // (0x1F45) The file replication service terminated the request. The event log may have more information. FRS_ERR_SERVICE_COMM = 8006, // (0x1F46) The file replication service cannot be contacted. The event log may have more information. FRS_ERR_INSUFFICIENT_PRIV = 8007, // (0x1F47) The file replication service cannot satisfy the request because the user has insufficient privileges. The event log may have more information. FRS_ERR_AUTHENTICATION = 8008, // (0x1F48) The file replication service cannot satisfy the request because authenticated RPC is not available. The event log may have more information. FRS_ERR_PARENT_INSUFFICIENT_PRIV = 8009, // (0x1F49) The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller. The event log may have more information. FRS_ERR_PARENT_AUTHENTICATION = 8010, // (0x1F4A) The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller. The event log may have more information. FRS_ERR_CHILD_TO_PARENT_COMM = 8011, // (0x1F4B) The file replication service cannot communicate with the file replication service on the domain controller. The event log may have more information. FRS_ERR_PARENT_TO_CHILD_COMM = 8012, // (0x1F4C) The file replication service on the domain controller cannot communicate with the file replication service on this computer. The event log may have more information. FRS_ERR_SYSVOL_POPULATE = 8013, // (0x1F4D) The file replication service cannot populate the system volume because of an internal error. The event log may have more information. FRS_ERR_SYSVOL_POPULATE_TIMEOUT = 8014, // (0x1F4E) The file replication service cannot populate the system volume because of an internal timeout. The event log may have more information. FRS_ERR_SYSVOL_IS_BUSY = 8015, // (0x1F4F) The file replication service cannot process the request. The system volume is busy with a previous request. FRS_ERR_SYSVOL_DEMOTE = 8016, // (0x1F50) The file replication service cannot stop replicating the system volume because of an internal error. The event log may have more information. FRS_ERR_INVALID_SERVICE_PARAMETER = 8017, // (0x1F51) The file replication service detected an invalid parameter. ERROR_DS_NOT_INSTALLED = 8200, // (0x2008) An error occurred while installing the directory service. For more information, see the event log. ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY = 8201, // (0x2009) The directory service evaluated group memberships locally. ERROR_DS_NO_ATTRIBUTE_OR_VALUE = 8202, // (0x200A) The specified directory service attribute or value does not exist. ERROR_DS_INVALID_ATTRIBUTE_SYNTAX = 8203, // (0x200B) The attribute syntax specified to the directory service is invalid. ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED = 8204, // (0x200C) The attribute type specified to the directory service is not defined. ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS = 8205, // (0x200D) The specified directory service attribute or value already exists. ERROR_DS_BUSY = 8206, // (0x200E) The directory service is busy. ERROR_DS_UNAVAILABLE = 8207, // (0x200F) The directory service is unavailable. ERROR_DS_NO_RIDS_ALLOCATED = 8208, // (0x2010) The directory service was unable to allocate a relative identifier. ERROR_DS_NO_MORE_RIDS = 8209, // (0x2011) The directory service has exhausted the pool of relative identifiers. ERROR_DS_INCORRECT_ROLE_OWNER = 8210, // (0x2012) The requested operation could not be performed because the directory service is not the master for that type of operation. ERROR_DS_RIDMGR_INIT_ERROR = 8211, // (0x2013) The directory service was unable to initialize the subsystem that allocates relative identifiers. ERROR_DS_OBJ_CLASS_VIOLATION = 8212, // (0x2014) The requested operation did not satisfy one or more constraints associated with the class of the object. ERROR_DS_CANT_ON_NON_LEAF = 8213, // (0x2015) The directory service can perform the requested operation only on a leaf object. ERROR_DS_CANT_ON_RDN = 8214, // (0x2016) The directory service cannot perform the requested operation on the RDN attribute of an object. ERROR_DS_CANT_MOD_OBJ_CLASS = 8215, // (0x2017) The directory service detected an attempt to modify the object class of an object. ERROR_DS_CROSS_DOM_MOVE_ERROR = 8216, // (0x2018) The requested cross-domain move operation could not be performed. ERROR_DS_GC_NOT_AVAILABLE = 8217, // (0x2019) Unable to contact the global catalog server. ERROR_SHARED_POLICY = 8218, // (0x201A) The policy object is shared and can only be modified at the root. ERROR_POLICY_OBJECT_NOT_FOUND = 8219, // (0x201B) The policy object does not exist. ERROR_POLICY_ONLY_IN_DS = 8220, // (0x201C) The requested policy information is only in the directory service. ERROR_PROMOTION_ACTIVE = 8221, // (0x201D) A domain controller promotion is currently active. ERROR_NO_PROMOTION_ACTIVE = 8222, // (0x201E) A domain controller promotion is not currently active. ERROR_DS_OPERATIONS_ERROR = 8224, // (0x2020) An operations error occurred. ERROR_DS_PROTOCOL_ERROR = 8225, // (0x2021) A protocol error occurred. ERROR_DS_TIMELIMIT_EXCEEDED = 8226, // (0x2022) The time limit for this request was exceeded. ERROR_DS_SIZELIMIT_EXCEEDED = 8227, // (0x2023) The size limit for this request was exceeded. ERROR_DS_ADMIN_LIMIT_EXCEEDED = 8228, // (0x2024) The administrative limit for this request was exceeded. ERROR_DS_COMPARE_FALSE = 8229, // (0x2025) The compare response was false. ERROR_DS_COMPARE_TRUE = 8230, // (0x2026) The compare response was true. ERROR_DS_AUTH_METHOD_NOT_SUPPORTED = 8231, // (0x2027) The requested authentication method is not supported by the server. ERROR_DS_STRONG_AUTH_REQUIRED = 8232, // (0x2028) A more secure authentication method is required for this server. ERROR_DS_INAPPROPRIATE_AUTH = 8233, // (0x2029) Inappropriate authentication. ERROR_DS_AUTH_UNKNOWN = 8234, // (0x202A) The authentication mechanism is unknown. ERROR_DS_REFERRAL = 8235, // (0x202B) A referral was returned from the server. ERROR_DS_UNAVAILABLE_CRIT_EXTENSION = 8236, // (0x202C) The server does not support the requested critical extension. ERROR_DS_CONFIDENTIALITY_REQUIRED = 8237, // (0x202D) This request requires a secure connection. ERROR_DS_INAPPROPRIATE_MATCHING = 8238, // (0x202E) Inappropriate matching. ERROR_DS_CONSTRAINT_VIOLATION = 8239, // (0x202F) A constraint violation occurred. ERROR_DS_NO_SUCH_OBJECT = 8240, // (0x2030) There is no such object on the server. ERROR_DS_ALIAS_PROBLEM = 8241, // (0x2031) There is an alias problem. ERROR_DS_INVALID_DN_SYNTAX = 8242, // (0x2032) An invalid dn syntax has been specified. ERROR_DS_IS_LEAF = 8243, // (0x2033) The object is a leaf object. ERROR_DS_ALIAS_DEREF_PROBLEM = 8244, // (0x2034) There is an alias dereferencing problem. ERROR_DS_UNWILLING_TO_PERFORM = 8245, // (0x2035) The server is unwilling to process the request. ERROR_DS_LOOP_DETECT = 8246, // (0x2036) A loop has been detected. ERROR_DS_NAMING_VIOLATION = 8247, // (0x2037) There is a naming violation. ERROR_DS_OBJECT_RESULTS_TOO_LARGE = 8248, // (0x2038) The result set is too large. ERROR_DS_AFFECTS_MULTIPLE_DSAS = 8249, // (0x2039) The operation affects multiple DSAs. ERROR_DS_SERVER_DOWN = 8250, // (0x203A) The server is not operational. ERROR_DS_LOCAL_ERROR = 8251, // (0x203B) A local error has occurred. ERROR_DS_ENCODING_ERROR = 8252, // (0x203C) An encoding error has occurred. ERROR_DS_DECODING_ERROR = 8253, // (0x203D) A decoding error has occurred. ERROR_DS_FILTER_UNKNOWN = 8254, // (0x203E) The search filter cannot be recognized. ERROR_DS_PARAM_ERROR = 8255, // (0x203F) One or more parameters are illegal. ERROR_DS_NOT_SUPPORTED = 8256, // (0x2040) The specified method is not supported. ERROR_DS_NO_RESULTS_RETURNED = 8257, // (0x2041) No results were returned. ERROR_DS_CONTROL_NOT_FOUND = 8258, // (0x2042) The specified control is not supported by the server. ERROR_DS_CLIENT_LOOP = 8259, // (0x2043) A referral loop was detected by the client. ERROR_DS_REFERRAL_LIMIT_EXCEEDED = 8260, // (0x2044) The preset referral limit was exceeded. ERROR_DS_SORT_CONTROL_MISSING = 8261, // (0x2045) The search requires a SORT control. ERROR_DS_OFFSET_RANGE_ERROR = 8262, // (0x2046) The search results exceed the offset range specified. ERROR_DS_RIDMGR_DISABLED = 8263, // (0x2047) The directory service detected the subsystem that allocates relative identifiers is disabled. This can occur as a protective mechanism when the system determines a significant portion of relative identifiers, // (RIDs) have been exhausted. Please see http://go.microsoft.com/fwlink/p/?linkid=228610 for recommended diagnostic steps and the procedure to re-enable account creation. ERROR_DS_ROOT_MUST_BE_NC = 8301, // (0x206D) The root object must be the head of a naming context. The root object cannot have an instantiated parent. ERROR_DS_ADD_REPLICA_INHIBITED = 8302, // (0x206E) The add replica operation cannot be performed. The naming context must be writeable in order to create the replica. ERROR_DS_ATT_NOT_DEF_IN_SCHEMA = 8303, // (0x206F) A reference to an attribute that is not defined in the schema occurred. ERROR_DS_MAX_OBJ_SIZE_EXCEEDED = 8304, // (0x2070) The maximum size of an object has been exceeded. ERROR_DS_OBJ_STRING_NAME_EXISTS = 8305, // (0x2071) An attempt was made to add an object to the directory with a name that is already in use. ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA = 8306, // (0x2072) An attempt was made to add an object of a class that does not have an RDN defined in the schema. ERROR_DS_RDN_DOESNT_MATCH_SCHEMA = 8307, // (0x2073) An attempt was made to add an object using an RDN that is not the RDN defined in the schema. ERROR_DS_NO_REQUESTED_ATTS_FOUND = 8308, // (0x2074) None of the requested attributes were found on the objects. ERROR_DS_USER_BUFFER_TO_SMALL = 8309, // (0x2075) The user buffer is too small. ERROR_DS_ATT_IS_NOT_ON_OBJ = 8310, // (0x2076) The attribute specified in the operation is not present on the object. ERROR_DS_ILLEGAL_MOD_OPERATION = 8311, // (0x2077) Illegal modify operation. Some aspect of the modification is not permitted. ERROR_DS_OBJ_TOO_LARGE = 8312, // (0x2078) The specified object is too large. ERROR_DS_BAD_INSTANCE_TYPE = 8313, // (0x2079) The specified instance type is not valid. ERROR_DS_MASTERDSA_REQUIRED = 8314, // (0x207A) The operation must be performed at a master DSA. ERROR_DS_OBJECT_CLASS_REQUIRED = 8315, // (0x207B) The object class attribute must be specified. ERROR_DS_MISSING_REQUIRED_ATT = 8316, // (0x207C) A required attribute is missing. ERROR_DS_ATT_NOT_DEF_FOR_CLASS = 8317, // (0x207D) An attempt was made to modify an object to include an attribute that is not legal for its class. ERROR_DS_ATT_ALREADY_EXISTS = 8318, // (0x207E) The specified attribute is already present on the object. ERROR_DS_CANT_ADD_ATT_VALUES = 8320, // (0x2080) The specified attribute is not present, or has no values. ERROR_DS_SINGLE_VALUE_CONSTRAINT = 8321, // (0x2081) Multiple values were specified for an attribute that can have only one value. ERROR_DS_RANGE_CONSTRAINT = 8322, // (0x2082) A value for the attribute was not in the acceptable range of values. ERROR_DS_ATT_VAL_ALREADY_EXISTS = 8323, // (0x2083) The specified value already exists. ERROR_DS_CANT_REM_MISSING_ATT = 8324, // (0x2084) The attribute cannot be removed because it is not present on the object. ERROR_DS_CANT_REM_MISSING_ATT_VAL = 8325, // (0x2085) The attribute value cannot be removed because it is not present on the object. ERROR_DS_ROOT_CANT_BE_SUBREF = 8326, // (0x2086) The specified root object cannot be a subref. ERROR_DS_NO_CHAINING = 8327, // (0x2087) Chaining is not permitted. ERROR_DS_NO_CHAINED_EVAL = 8328, // (0x2088) Chained evaluation is not permitted. ERROR_DS_NO_PARENT_OBJECT = 8329, // (0x2089) The operation could not be performed because the object’s parent is either uninstantiated or deleted. ERROR_DS_PARENT_IS_AN_ALIAS = 8330, // (0x208A) Having a parent that is an alias is not permitted. Aliases are leaf objects. ERROR_DS_CANT_MIX_MASTER_AND_REPS = 8331, // (0x208B) The object and parent must be of the same type, either both masters or both replicas. ERROR_DS_CHILDREN_EXIST = 8332, // (0x208C) The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object. ERROR_DS_OBJ_NOT_FOUND = 8333, // (0x208D) Directory object not found. ERROR_DS_ALIASED_OBJ_MISSING = 8334, // (0x208E) The aliased object is missing. ERROR_DS_BAD_NAME_SYNTAX = 8335, // (0x208F) The object name has bad syntax. ERROR_DS_ALIAS_POINTS_TO_ALIAS = 8336, // (0x2090) It is not permitted for an alias to refer to another alias. ERROR_DS_CANT_DEREF_ALIAS = 8337, // (0x2091) The alias cannot be dereferenced. ERROR_DS_OUT_OF_SCOPE = 8338, // (0x2092) The operation is out of scope. ERROR_DS_OBJECT_BEING_REMOVED = 8339, // (0x2093) The operation cannot continue because the object is in the process of being removed. ERROR_DS_CANT_DELETE_DSA_OBJ = 8340, // (0x2094) The DSA object cannot be deleted. ERROR_DS_GENERIC_ERROR = 8341, // (0x2095) A directory service error has occurred. ERROR_DS_DSA_MUST_BE_INT_MASTER = 8342, // (0x2096) The operation can only be performed on an internal master DSA object. ERROR_DS_CLASS_NOT_DSA = 8343, // (0x2097) The object must be of class DSA. ERROR_DS_INSUFF_ACCESS_RIGHTS = 8344, // (0x2098) Insufficient access rights to perform the operation. ERROR_DS_ILLEGAL_SUPERIOR = 8345, // (0x2099) The object cannot be added because the parent is not on the list of possible superiors. ERROR_DS_ATTRIBUTE_OWNED_BY_SAM = 8346, // (0x209A) Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager, // (SAM). ERROR_DS_NAME_TOO_MANY_PARTS = 8347, // (0x209B) The name has too many parts. ERROR_DS_NAME_TOO_LONG = 8348, // (0x209C) The name is too long. ERROR_DS_NAME_VALUE_TOO_LONG = 8349, // (0x209D) The name value is too long. ERROR_DS_NAME_UNPARSEABLE = 8350, // (0x209E) The directory service encountered an error parsing a name. ERROR_DS_NAME_TYPE_UNKNOWN = 8351, // (0x209F) The directory service cannot get the attribute type for a name. ERROR_DS_NOT_AN_OBJECT = 8352, // (0x20A0) The name does not identify an object, the name identifies a phantom. ERROR_DS_SEC_DESC_TOO_SHORT = 8353, // (0x20A1) The security descriptor is too short. ERROR_DS_SEC_DESC_INVALID = 8354, // (0x20A2) The security descriptor is invalid. ERROR_DS_NO_DELETED_NAME = 8355, // (0x20A3) Failed to create name for deleted object. ERROR_DS_SUBREF_MUST_HAVE_PARENT = 8356, // (0x20A4) The parent of a new subref must exist. ERROR_DS_NCNAME_MUST_BE_NC = 8357, // (0x20A5) The object must be a naming context. ERROR_DS_CANT_ADD_SYSTEM_ONLY = 8358, // (0x20A6) It is not permitted to add an attribute which is owned by the system. ERROR_DS_CLASS_MUST_BE_CONCRETE = 8359, // (0x20A7) The class of the object must be structural, you cannot instantiate an abstract class. ERROR_DS_INVALID_DMD = 8360, // (0x20A8) The schema object could not be found. ERROR_DS_OBJ_GUID_EXISTS = 8361, // (0x20A9) A local object with this GUID, // (dead or alive) already exists. ERROR_DS_NOT_ON_BACKLINK = 8362, // (0x20AA) The operation cannot be performed on a back link. ERROR_DS_NO_CROSSREF_FOR_NC = 8363, // (0x20AB) The cross reference for the specified naming context could not be found. ERROR_DS_SHUTTING_DOWN = 8364, // (0x20AC) The operation could not be performed because the directory service is shutting down. ERROR_DS_UNKNOWN_OPERATION = 8365, // (0x20AD) The directory service request is invalid. ERROR_DS_INVALID_ROLE_OWNER = 8366, // (0x20AE) The role owner attribute could not be read. ERROR_DS_COULDNT_CONTACT_FSMO = 8367, // (0x20AF) The requested FSMO operation failed. The current FSMO holder could not be contacted. ERROR_DS_CROSS_NC_DN_RENAME = 8368, // (0x20B0) Modification of a DN across a naming context is not permitted. ERROR_DS_CANT_MOD_SYSTEM_ONLY = 8369, // (0x20B1) The attribute cannot be modified because it is owned by the system. ERROR_DS_REPLICATOR_ONLY = 8370, // (0x20B2) Only the replicator can perform this function. ERROR_DS_OBJ_CLASS_NOT_DEFINED = 8371, // (0x20B3) The specified class is not defined. ERROR_DS_OBJ_CLASS_NOT_SUBCLASS = 8372, // (0x20B4) The specified class is not a subclass. ERROR_DS_NAME_REFERENCE_INVALID = 8373, // (0x20B5) The name reference is invalid. ERROR_DS_CROSS_REF_EXISTS = 8374, // (0x20B6) A cross reference already exists. ERROR_DS_CANT_DEL_MASTER_CROSSREF = 8375, // (0x20B7) It is not permitted to delete a master cross reference. ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD = 8376, // (0x20B8) Subtree notifications are only supported on NC heads. ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX = 8377, // (0x20B9) Notification filter is too complex. ERROR_DS_DUP_RDN = 8378, // (0x20BA) Schema update failed: duplicate RDN. ERROR_DS_DUP_OID = 8379, // (0x20BB) Schema update failed: duplicate OID. ERROR_DS_DUP_MAPI_ID = 8380, // (0x20BC) Schema update failed: duplicate MAPI identifier. ERROR_DS_DUP_SCHEMA_ID_GUID = 8381, // (0x20BD) Schema update failed: duplicate schema-id GUID. ERROR_DS_DUP_LDAP_DISPLAY_NAME = 8382, // (0x20BE) Schema update failed: duplicate LDAP display name. ERROR_DS_SEMANTIC_ATT_TEST = 8383, // (0x20BF) Schema update failed: range-lower less than range upper. ERROR_DS_SYNTAX_MISMATCH = 8384, // (0x20C0) Schema update failed: syntax mismatch. ERROR_DS_EXISTS_IN_MUST_HAVE = 8385, // (0x20C1) Schema deletion failed: attribute is used in must-contain. ERROR_DS_EXISTS_IN_MAY_HAVE = 8386, // (0x20C2) Schema deletion failed: attribute is used in may-contain. ERROR_DS_NONEXISTENT_MAY_HAVE = 8387, // (0x20C3) Schema update failed: attribute in may-contain does not exist. ERROR_DS_NONEXISTENT_MUST_HAVE = 8388, // (0x20C4) Schema update failed: attribute in must-contain does not exist. ERROR_DS_AUX_CLS_TEST_FAIL = 8389, // (0x20C5) Schema update failed: class in aux-class list does not exist or is not an auxiliary class. ERROR_DS_NONEXISTENT_POSS_SUP = 8390, // (0x20C6) Schema update failed: class in poss-superiors does not exist. ERROR_DS_SUB_CLS_TEST_FAIL = 8391, // (0x20C7) Schema update failed: class in subclassof list does not exist or does not satisfy hierarchy rules. ERROR_DS_BAD_RDN_ATT_ID_SYNTAX = 8392, // (0x20C8) Schema update failed: Rdn-Att-Id has wrong syntax. ERROR_DS_EXISTS_IN_AUX_CLS = 8393, // (0x20C9) Schema deletion failed: class is used as auxiliary class. ERROR_DS_EXISTS_IN_SUB_CLS = 8394, // (0x20CA) Schema deletion failed: class is used as sub class. ERROR_DS_EXISTS_IN_POSS_SUP = 8395, // (0x20CB) Schema deletion failed: class is used as poss superior. ERROR_DS_RECALCSCHEMA_FAILED = 8396, // (0x20CC) Schema update failed in recalculating validation cache. ERROR_DS_TREE_DELETE_NOT_FINISHED = 8397, // (0x20CD) The tree deletion is not finished. The request must be made again to continue deleting the tree. ERROR_DS_CANT_DELETE = 8398, // (0x20CE) The requested delete operation could not be performed. ERROR_DS_ATT_SCHEMA_REQ_ID = 8399, // (0x20CF) Cannot read the governs class identifier for the schema record. ERROR_DS_BAD_ATT_SCHEMA_SYNTAX = 8400, // (0x20D0) The attribute schema has bad syntax. ERROR_DS_CANT_CACHE_ATT = 8401, // (0x20D1) The attribute could not be cached. ERROR_DS_CANT_CACHE_CLASS = 8402, // (0x20D2) The class could not be cached. ERROR_DS_CANT_REMOVE_ATT_CACHE = 8403, // (0x20D3) The attribute could not be removed from the cache. ERROR_DS_CANT_REMOVE_CLASS_CACHE = 8404, // (0x20D4) The class could not be removed from the cache. ERROR_DS_CANT_RETRIEVE_DN = 8405, // (0x20D5) The distinguished name attribute could not be read. ERROR_DS_MISSING_SUPREF = 8406, // (0x20D6) No superior reference has been configured for the directory service. The directory service is therefore unable to issue referrals to objects outside this forest. ERROR_DS_CANT_RETRIEVE_INSTANCE = 8407, // (0x20D7) The instance type attribute could not be retrieved. ERROR_DS_CODE_INCONSISTENCY = 8408, // (0x20D8) An internal error has occurred. ERROR_DS_DATABASE_ERROR = 8409, // (0x20D9) A database error has occurred. ERROR_DS_GOVERNSID_MISSING = 8410, // (0x20DA) The attribute GOVERNSID is missing. ERROR_DS_MISSING_EXPECTED_ATT = 8411, // (0x20DB) An expected attribute is missing. ERROR_DS_NCNAME_MISSING_CR_REF = 8412, // (0x20DC) The specified naming context is missing a cross reference. ERROR_DS_SECURITY_CHECKING_ERROR = 8413, // (0x20DD) A security checking error has occurred. ERROR_DS_SCHEMA_NOT_LOADED = 8414, // (0x20DE) The schema is not loaded. ERROR_DS_SCHEMA_ALLOC_FAILED = 8415, // (0x20DF) Schema allocation failed. Please check if the machine is running low on memory. ERROR_DS_ATT_SCHEMA_REQ_SYNTAX = 8416, // (0x20E0) Failed to obtain the required syntax for the attribute schema. ERROR_DS_GCVERIFY_ERROR = 8417, // (0x20E1) The global catalog verification failed. The global catalog is not available or does not support the operation. Some part of the directory is currently not available. ERROR_DS_DRA_SCHEMA_MISMATCH = 8418, // (0x20E2) The replication operation failed because of a schema mismatch between the servers involved. ERROR_DS_CANT_FIND_DSA_OBJ = 8419, // (0x20E3) The DSA object could not be found. ERROR_DS_CANT_FIND_EXPECTED_NC = 8420, // (0x20E4) The naming context could not be found. ERROR_DS_CANT_FIND_NC_IN_CACHE = 8421, // (0x20E5) The naming context could not be found in the cache. ERROR_DS_CANT_RETRIEVE_CHILD = 8422, // (0x20E6) The child object could not be retrieved. ERROR_DS_SECURITY_ILLEGAL_MODIFY = 8423, // (0x20E7) The modification was not permitted for security reasons. ERROR_DS_CANT_REPLACE_HIDDEN_REC = 8424, // (0x20E8) The operation cannot replace the hidden record. ERROR_DS_BAD_HIERARCHY_FILE = 8425, // (0x20E9) The hierarchy file is invalid. ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED = 8426, // (0x20EA) The attempt to build the hierarchy table failed. ERROR_DS_CONFIG_PARAM_MISSING = 8427, // (0x20EB) The directory configuration parameter is missing from the registry. ERROR_DS_COUNTING_AB_INDICES_FAILED = 8428, // (0x20EC) The attempt to count the address book indices failed. ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED = 8429, // (0x20ED) The allocation of the hierarchy table failed. ERROR_DS_INTERNAL_FAILURE = 8430, // (0x20EE) The directory service encountered an internal failure. ERROR_DS_UNKNOWN_ERROR = 8431, // (0x20EF) The directory service encountered an unknown failure. ERROR_DS_ROOT_REQUIRES_CLASS_TOP = 8432, // (0x20F0) A root object requires a class of ‘top’. ERROR_DS_REFUSING_FSMO_ROLES = 8433, // (0x20F1) This directory server is shutting down, and cannot take ownership of new floating single-master operation roles. ERROR_DS_MISSING_FSMO_SETTINGS = 8434, // (0x20F2) The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles. ERROR_DS_UNABLE_TO_SURRENDER_ROLES = 8435, // (0x20F3) The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers. ERROR_DS_DRA_GENERIC = 8436, // (0x20F4) The replication operation failed. ERROR_DS_DRA_INVALID_PARAMETER = 8437, // (0x20F5) An invalid parameter was specified for this replication operation. ERROR_DS_DRA_BUSY = 8438, // (0x20F6) The directory service is too busy to complete the replication operation at this time. ERROR_DS_DRA_BAD_DN = 8439, // (0x20F7) The distinguished name specified for this replication operation is invalid. ERROR_DS_DRA_BAD_NC = 8440, // (0x20F8) The naming context specified for this replication operation is invalid. ERROR_DS_DRA_DN_EXISTS = 8441, // (0x20F9) The distinguished name specified for this replication operation already exists. ERROR_DS_DRA_INTERNAL_ERROR = 8442, // (0x20FA) The replication system encountered an internal error. ERROR_DS_DRA_INCONSISTENT_DIT = 8443, // (0x20FB) The replication operation encountered a database inconsistency. ERROR_DS_DRA_CONNECTION_FAILED = 8444, // (0x20FC) The server specified for this replication operation could not be contacted. ERROR_DS_DRA_BAD_INSTANCE_TYPE = 8445, // (0x20FD) The replication operation encountered an object with an invalid instance type. ERROR_DS_DRA_OUT_OF_MEM = 8446, // (0x20FE) The replication operation failed to allocate memory. ERROR_DS_DRA_MAIL_PROBLEM = 8447, // (0x20FF) The replication operation encountered an error with the mail system. ERROR_DS_DRA_REF_ALREADY_EXISTS = 8448, // (0x2100) The replication reference information for the target server already exists. ERROR_DS_DRA_REF_NOT_FOUND = 8449, // (0x2101) The replication reference information for the target server does not exist. ERROR_DS_DRA_OBJ_IS_REP_SOURCE = 8450, // (0x2102) The naming context cannot be removed because it is replicated to another server. ERROR_DS_DRA_DB_ERROR = 8451, // (0x2103) The replication operation encountered a database error. ERROR_DS_DRA_NO_REPLICA = 8452, // (0x2104) The naming context is in the process of being removed or is not replicated from the specified server. ERROR_DS_DRA_ACCESS_DENIED = 8453, // (0x2105) Replication access was denied. ERROR_DS_DRA_NOT_SUPPORTED = 8454, // (0x2106) The requested operation is not supported by this version of the directory service. ERROR_DS_DRA_RPC_CANCELLED = 8455, // (0x2107) The replication remote procedure call was cancelled. ERROR_DS_DRA_SOURCE_DISABLED = 8456, // (0x2108) The source server is currently rejecting replication requests. ERROR_DS_DRA_SINK_DISABLED = 8457, // (0x2109) The destination server is currently rejecting replication requests. ERROR_DS_DRA_NAME_COLLISION = 8458, // (0x210A) The replication operation failed due to a collision of object names. ERROR_DS_DRA_SOURCE_REINSTALLED = 8459, // (0x210B) The replication source has been reinstalled. ERROR_DS_DRA_MISSING_PARENT = 8460, // (0x210C) The replication operation failed because a required parent object is missing. ERROR_DS_DRA_PREEMPTED = 8461, // (0x210D) The replication operation was preempted. ERROR_DS_DRA_ABANDON_SYNC = 8462, // (0x210E) The replication synchronization attempt was abandoned because of a lack of updates. ERROR_DS_DRA_SHUTDOWN = 8463, // (0x210F) The replication operation was terminated because the system is shutting down. ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET = 8464, // (0x2110) Synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from source. This condition is normal if a recent schema change modified the partial attribute set. The destination partial attribute set is not a subset of source partial attribute set. ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA = 8465, // (0x2111) The replication synchronization attempt failed because a master replica attempted to sync from a partial replica. ERROR_DS_DRA_EXTN_CONNECTION_FAILED = 8466, // (0x2112) The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation. ERROR_DS_INSTALL_SCHEMA_MISMATCH = 8467, // (0x2113) The version of the directory service schema of the source forest is not compatible with the version of directory service on this computer. ERROR_DS_DUP_LINK_ID = 8468, // (0x2114) Schema update failed: An attribute with the same link identifier already exists. ERROR_DS_NAME_ERROR_RESOLVING = 8469, // (0x2115) Name translation: Generic processing error. ERROR_DS_NAME_ERROR_NOT_FOUND = 8470, // (0x2116) Name translation: Could not find the name or insufficient right to see name. ERROR_DS_NAME_ERROR_NOT_UNIQUE = 8471, // (0x2117) Name translation: Input name mapped to more than one output name. ERROR_DS_NAME_ERROR_NO_MAPPING = 8472, // (0x2118) Name translation: Input name found, but not the associated output format. ERROR_DS_NAME_ERROR_DOMAIN_ONLY = 8473, // (0x2119) Name translation: Unable to resolve completely, only the domain was found. ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 8474, // (0x211A) Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire. ERROR_DS_CONSTRUCTED_ATT_MOD = 8475, // (0x211B) Modification of a constructed attribute is not allowed. ERROR_DS_WRONG_OM_OBJ_CLASS = 8476, // (0x211C) The OM-Object-Class specified is incorrect for an attribute with the specified syntax. ERROR_DS_DRA_REPL_PENDING = 8477, // (0x211D) The replication request has been posted, waiting for reply. ERROR_DS_DS_REQUIRED = 8478, // (0x211E) The requested operation requires a directory service, and none was available. ERROR_DS_INVALID_LDAP_DISPLAY_NAME = 8479, // (0x211F) The LDAP display name of the class or attribute contains non-ASCII characters. ERROR_DS_NON_BASE_SEARCH = 8480, // (0x2120) The requested search operation is only supported for base searches. ERROR_DS_CANT_RETRIEVE_ATTS = 8481, // (0x2121) The search failed to retrieve attributes from the database. ERROR_DS_BACKLINK_WITHOUT_LINK = 8482, // (0x2122) The schema update operation tried to add a backward link attribute that has no corresponding forward link. ERROR_DS_EPOCH_MISMATCH = 8483, // (0x2123) Source and destination of a cross-domain move do not agree on the object’s epoch number. Either source or destination does not have the latest version of the object. ERROR_DS_SRC_NAME_MISMATCH = 8484, // (0x2124) Source and destination of a cross-domain move do not agree on the object’s current name. Either source or destination does not have the latest version of the object. ERROR_DS_SRC_AND_DST_NC_IDENTICAL = 8485, // (0x2125) Source and destination for the cross-domain move operation are identical. Caller should use local move operation instead of cross-domain move operation. ERROR_DS_DST_NC_MISMATCH = 8486, // (0x2126) Source and destination for a cross-domain move are not in agreement on the naming contexts in the forest. Either source or destination does not have the latest version of the Partitions container. ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC = 8487, // (0x2127) Destination of a cross-domain move is not authoritative for the destination naming context. ERROR_DS_SRC_GUID_MISMATCH = 8488, // (0x2128) Source and destination of a cross-domain move do not agree on the identity of the source object. Either source or destination does not have the latest version of the source object. ERROR_DS_CANT_MOVE_DELETED_OBJECT = 8489, // (0x2129) Object being moved across-domains is already known to be deleted by the destination server. The source server does not have the latest version of the source object. ERROR_DS_PDC_OPERATION_IN_PROGRESS = 8490, // (0x212A) Another operation which requires exclusive access to the PDC FSMO is already in progress. ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD = 8491, // (0x212B) A cross-domain move operation failed such that two versions of the moved object exist — one each in the source and destination domains. The destination object needs to be removed to restore the system to a consistent state. ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION = 8492, // (0x212C) This object may not be moved across domain boundaries either because cross-domain moves for this class are disallowed, or the object has some special characteristics, e.g.: trust account or restricted RID, which prevent its move. ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS = 8493, // (0x212D) Can’t move objects with memberships across domain boundaries as once moved, this would violate the membership conditions of the account group. Remove the object from any account group memberships and retry. ERROR_DS_NC_MUST_HAVE_NC_PARENT = 8494, // (0x212E) A naming context head must be the immediate child of another naming context head, not of an interior node. ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE = 8495, // (0x212F) The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context. Please ensure that the domain naming master role is held by a server that is configured as a global catalog server, and that the server is up to date with its replication partners., // (Applies only to Windows 2000 Domain Naming masters.) ERROR_DS_DST_DOMAIN_NOT_NATIVE = 8496, // (0x2130) Destination domain must be in native mode. ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER = 8497, // (0x2131) The operation cannot be performed because the server does not have an infrastructure container in the domain of interest. ERROR_DS_CANT_MOVE_ACCOUNT_GROUP = 8498, // (0x2132) Cross-domain move of non-empty account groups is not allowed. ERROR_DS_CANT_MOVE_RESOURCE_GROUP = 8499, // (0x2133) Cross-domain move of non-empty resource groups is not allowed. ERROR_DS_INVALID_SEARCH_FLAG = 8500, // (0x2134) The search flags for the attribute are invalid. The ANR bit is valid only on attributes of Unicode or Teletex strings. ERROR_DS_NO_TREE_DELETE_ABOVE_NC = 8501, // (0x2135) Tree deletions starting at an object which has an NC head as a descendant are not allowed. ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE = 8502, // (0x2136) The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use. ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE = 8503, // (0x2137) The directory service failed to identify the list of objects to delete while attempting a tree deletion. ERROR_DS_SAM_INIT_FAILURE = 8504, // (0x2138) Security Accounts Manager initialization failed because of the following error: %1. Error Status: 0x%2. Please shutdown this system and reboot into Directory Services Restore Mode, check the event log for more detailed information. ERROR_DS_SENSITIVE_GROUP_VIOLATION = 8505, // (0x2139) Only an administrator can modify the membership list of an administrative group. ERROR_DS_CANT_MOD_PRIMARYGROUPID = 8506, // (0x213A) Cannot change the primary group ID of a domain controller account. ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD = 8507, // (0x213B) An attempt is made to modify the base schema. ERROR_DS_NONSAFE_SCHEMA_CHANGE = 8508, // (0x213C) Adding a new mandatory attribute to an existing class, deleting a mandatory attribute from an existing class, or adding an optional attribute to the special class Top that is not a backlink attribute, // (directly or through inheritance, for example, by adding or deleting an auxiliary class) is not allowed. ERROR_DS_SCHEMA_UPDATE_DISALLOWED = 8509, // (0x213D) Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner. ERROR_DS_CANT_CREATE_UNDER_SCHEMA = 8510, // (0x213E) An object of this class cannot be created under the schema container. You can only create attribute-schema and class-schema objects under the schema container. ERROR_DS_INSTALL_NO_SRC_SCH_VERSION = 8511, // (0x213F) The replica/child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it. ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE = 8512, // (0x2140) The replica/child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the system32 directory. ERROR_DS_INVALID_GROUP_TYPE = 8513, // (0x2141) The specified group type is invalid. ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN = 8514, // (0x2142) You cannot nest global groups in a mixed domain if the group is security-enabled. ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN = 8515, // (0x2143) You cannot nest local groups in a mixed domain if the group is security-enabled. ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER = 8516, // (0x2144) A global group cannot have a local group as a member. ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER = 8517, // (0x2145) A global group cannot have a universal group as a member. ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER = 8518, // (0x2146) A universal group cannot have a local group as a member. ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER = 8519, // (0x2147) A global group cannot have a cross-domain member. ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER = 8520, // (0x2148) A local group cannot have another cross domain local group as a member. ERROR_DS_HAVE_PRIMARY_MEMBERS = 8521, // (0x2149) A group with primary members cannot change to a security-disabled group. ERROR_DS_STRING_SD_CONVERSION_FAILED = 8522, // (0x214A) The schema cache load failed to convert the string default SD on a class-schema object. ERROR_DS_NAMING_MASTER_GC = 8523, // (0x214B) Only DSAs configured to be Global Catalog servers should be allowed to hold the Domain Naming Master FSMO role., // (Applies only to Windows 2000 servers.) ERROR_DS_DNS_LOOKUP_FAILURE = 8524, // (0x214C) The DSA operation is unable to proceed because of a DNS lookup failure. ERROR_DS_COULDNT_UPDATE_SPNS = 8525, // (0x214D) While processing a change to the DNS Host Name for an object, the Service Principal Name values could not be kept in sync. ERROR_DS_CANT_RETRIEVE_SD = 8526, // (0x214E) The Security Descriptor attribute could not be read. ERROR_DS_KEY_NOT_UNIQUE = 8527, // (0x214F) The object requested was not found, but an object with that key was found. ERROR_DS_WRONG_LINKED_ATT_SYNTAX = 8528, // (0x2150) The syntax of the linked attribute being added is incorrect. Forward links can only have syntax 2.5.5.1, 2.5.5.7, and 2.5.5.14, and backlinks can only have syntax 2.5.5.1. ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD = 8529, // (0x2151) Security Account Manager needs to get the boot password. ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY = 8530, // (0x2152) Security Account Manager needs to get the boot key from floppy disk. ERROR_DS_CANT_START = 8531, // (0x2153) Directory Service cannot start. ERROR_DS_INIT_FAILURE = 8532, // (0x2154) Directory Services could not start. ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION = 8533, // (0x2155) The connection between client and server requires packet privacy or better. ERROR_DS_SOURCE_DOMAIN_IN_FOREST = 8534, // (0x2156) The source domain may not be in the same forest as destination. ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST = 8535, // (0x2157) The destination domain must be in the forest. ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED = 8536, // (0x2158) The operation requires that destination domain auditing be enabled. ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN = 8537, // (0x2159) The operation couldn’t locate a DC for the source domain. ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER = 8538, // (0x215A) The source object must be a group or user. ERROR_DS_SRC_SID_EXISTS_IN_FOREST = 8539, // (0x215B) The source object’s SID already exists in destination forest. ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH = 8540, // (0x215C) The source and destination object must be of the same type. ERROR_SAM_INIT_FAILURE = 8541, // (0x215D) Security Accounts Manager initialization failed because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system and reboot into Safe Mode. Check the event log for detailed information. ERROR_DS_DRA_SCHEMA_INFO_SHIP = 8542, // (0x215E) Schema information could not be included in the replication request. ERROR_DS_DRA_SCHEMA_CONFLICT = 8543, // (0x215F) The replication operation could not be completed due to a schema incompatibility. ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT = 8544, // (0x2160) The replication operation could not be completed due to a previous schema incompatibility. ERROR_DS_DRA_OBJ_NC_MISMATCH = 8545, // (0x2161) The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation. ERROR_DS_NC_STILL_HAS_DSAS = 8546, // (0x2162) The requested domain could not be deleted because there exist domain controllers that still host this domain. ERROR_DS_GC_REQUIRED = 8547, // (0x2163) The requested operation can be performed only on a global catalog server. ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY = 8548, // (0x2164) A local group can only be a member of other local groups in the same domain. ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS = 8549, // (0x2165) Foreign security principals cannot be members of universal groups. ERROR_DS_CANT_ADD_TO_GC = 8550, // (0x2166) The attribute is not allowed to be replicated to the GC because of security reasons. ERROR_DS_NO_CHECKPOINT_WITH_PDC = 8551, // (0x2167) The checkpoint with the PDC could not be taken because there too many modifications being processed currently. ERROR_DS_SOURCE_AUDITING_NOT_ENABLED = 8552, // (0x2168) The operation requires that source domain auditing be enabled. ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC = 8553, // (0x2169) Security principal objects can only be created inside domain naming contexts. ERROR_DS_INVALID_NAME_FOR_SPN = 8554, // (0x216A) A Service Principal Name, // (SPN) could not be constructed because the provided hostname is not in the necessary format. ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS = 8555, // (0x216B) A Filter was passed that uses constructed attributes. ERROR_DS_UNICODEPWD_NOT_IN_QUOTES = 8556, // (0x216C) The unicodePwd attribute value must be enclosed in double quotes. ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED = 8557, // (0x216D) 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. ERROR_DS_MUST_BE_RUN_ON_DST_DC = 8558, // (0x216E) For security reasons, the operation must be run on the destination DC. ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER = 8559, // (0x216F) For security reasons, the source DC must be NT4SP4 or greater. ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ = 8560, // (0x2170) Critical Directory Service System objects cannot be deleted during tree delete operations. The tree delete may have been partially performed. ERROR_DS_INIT_FAILURE_CONSOLE = 8561, // (0x2171) Directory Services could not start because of the following error: %1. Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further. ERROR_DS_SAM_INIT_FAILURE_CONSOLE = 8562, // (0x2172) Security Accounts Manager initialization failed because of the following error: %1. Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further. ERROR_DS_FOREST_VERSION_TOO_HIGH = 8563, // (0x2173) The version of the operating system is incompatible with the current AD DS forest functional level or AD LDS Configuration Set functional level. You must upgrade to a new version of the operating system before this server can become an AD DS Domain Controller or add an AD LDS Instance in this AD DS Forest or AD LDS Configuration Set. ERROR_DS_DOMAIN_VERSION_TOO_HIGH = 8564, // (0x2174) The version of the operating system installed is incompatible with the current domain functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this domain. ERROR_DS_FOREST_VERSION_TOO_LOW = 8565, // (0x2175) The version of the operating system installed on this server no longer supports the current AD DS Forest functional level or AD LDS Configuration Set functional level. You must raise the AD DS Forest functional level or AD LDS Configuration Set functional level before this server can become an AD DS Domain Controller or an AD LDS Instance in this Forest or Configuration Set. ERROR_DS_DOMAIN_VERSION_TOO_LOW = 8566, // (0x2176) The version of the operating system installed on this server no longer supports the current domain functional level. You must raise the domain functional level before this server can become a domain controller in this domain. ERROR_DS_INCOMPATIBLE_VERSION = 8567, // (0x2177) The version of the operating system installed on this server is incompatible with the functional level of the domain or forest. ERROR_DS_LOW_DSA_VERSION = 8568, // (0x2178) The functional level of the domain, // (or forest) cannot be raised to the requested value, because there exist one or more domain controllers in the domain, // (or forest) that are at a lower incompatible functional level. ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN = 8569, // (0x2179) The forest functional level cannot be raised to the requested value since one or more domains are still in mixed domain mode. All domains in the forest must be in native mode, for you to raise the forest functional level. ERROR_DS_NOT_SUPPORTED_SORT_ORDER = 8570, // (0x217A) The sort order requested is not supported. ERROR_DS_NAME_NOT_UNIQUE = 8571, // (0x217B) The requested name already exists as a unique identifier. ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4 = 8572, // (0x217C) The machine account was created pre-NT4. The account needs to be recreated. ERROR_DS_OUT_OF_VERSION_STORE = 8573, // (0x217D) The database is out of version store. ERROR_DS_INCOMPATIBLE_CONTROLS_USED = 8574, // (0x217E) Unable to continue operation because multiple conflicting controls were used. ERROR_DS_NO_REF_DOMAIN = 8575, // (0x217F) Unable to find a valid security descriptor reference domain for this partition. ERROR_DS_RESERVED_LINK_ID = 8576, // (0x2180) Schema update failed: The link identifier is reserved. ERROR_DS_LINK_ID_NOT_AVAILABLE = 8577, // (0x2181) Schema update failed: There are no link identifiers available. ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER = 8578, // (0x2182) An account group cannot have a universal group as a member. ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE = 8579, // (0x2183) Rename or move operations on naming context heads or read-only objects are not allowed. ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC = 8580, // (0x2184) Move operations on objects in the schema naming context are not allowed. ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG = 8581, // (0x2185) A system flag has been set on the object and does not allow the object to be moved or renamed. ERROR_DS_MODIFYDN_WRONG_GRANDPARENT = 8582, // (0x2186) This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers. ERROR_DS_NAME_ERROR_TRUST_REFERRAL = 8583, // (0x2187) Unable to resolve completely, a referral to another forest is generated. ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER = 8584, // (0x2188) The requested action is not supported on standard server. ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD = 8585, // (0x2189) Could not access a partition of the directory service located on a remote server. Make sure at least one server is running for the partition in question. ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2 = 8586, // (0x218A) The directory cannot validate the proposed naming context, // (or partition) name because it does not hold a replica nor can it contact a replica of the naming context above the proposed naming context. Please ensure that the parent naming context is properly registered in DNS, and at least one replica of this naming context is reachable by the Domain Naming master. ERROR_DS_THREAD_LIMIT_EXCEEDED = 8587, // (0x218B) The thread limit for this request was exceeded. ERROR_DS_NOT_CLOSEST = 8588, // (0x218C) The Global catalog server is not in the closest site. ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF = 8589, // (0x218D) The DS cannot derive a service principal name, // (SPN) with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute. ERROR_DS_SINGLE_USER_MODE_FAILED = 8590, // (0x218E) The Directory Service failed to enter single user mode. ERROR_DS_NTDSCRIPT_SYNTAX_ERROR = 8591, // (0x218F) The Directory Service cannot parse the script because of a syntax error. ERROR_DS_NTDSCRIPT_PROCESS_ERROR = 8592, // (0x2190) The Directory Service cannot process the script because of an error. ERROR_DS_DIFFERENT_REPL_EPOCHS = 8593, // (0x2191) The directory service cannot perform the requested operation because the servers involved are of different replication epochs, // (which is usually related to a domain rename that is in progress). ERROR_DS_DRS_EXTENSIONS_CHANGED = 8594, // (0x2192) The directory service binding must be renegotiated due to a change in the server extensions information. ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR = 8595, // (0x2193) Operation not allowed on a disabled cross ref. ERROR_DS_NO_MSDS_INTID = 8596, // (0x2194) Schema update failed: No values for msDS-IntId are available. ERROR_DS_DUP_MSDS_INTID = 8597, // (0x2195) Schema update failed: Duplicate msDS-INtId. Retry the operation. ERROR_DS_EXISTS_IN_RDNATTID = 8598, // (0x2196) Schema deletion failed: attribute is used in rDNAttID. ERROR_DS_AUTHORIZATION_FAILED = 8599, // (0x2197) The directory service failed to authorize the request. ERROR_DS_INVALID_SCRIPT = 8600, // (0x2198) The Directory Service cannot process the script because it is invalid. ERROR_DS_REMOTE_CROSSREF_OP_FAILED = 8601, // (0x2199) The remote create cross reference operation failed on the Domain Naming Master FSMO. The operation’s error is in the extended data. ERROR_DS_CROSS_REF_BUSY = 8602, // (0x219A) A cross reference is in use locally with the same name. ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN = 8603, // (0x219B) The DS cannot derive a service principal name, // (SPN) with which to mutually authenticate the target server because the server’s domain has been deleted from the forest. ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC = 8604, // (0x219C) Writeable NCs prevent this DC from demoting. ERROR_DS_DUPLICATE_ID_FOUND = 8605, // (0x219D) The requested object has a non-unique identifier and cannot be retrieved. ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT = 8606, // (0x219E) Insufficient attributes were given to create an object. This object may not exist because it may have been deleted and already garbage collected. ERROR_DS_GROUP_CONVERSION_ERROR = 8607, // (0x219F) The group cannot be converted due to attribute restrictions on the requested group type. ERROR_DS_CANT_MOVE_APP_BASIC_GROUP = 8608, // (0x21A0) Cross-domain move of non-empty basic application groups is not allowed. ERROR_DS_CANT_MOVE_APP_QUERY_GROUP = 8609, // (0x21A1) Cross-domain move of non-empty query based application groups is not allowed. ERROR_DS_ROLE_NOT_VERIFIED = 8610, // (0x21A2) The FSMO role ownership could not be verified because its directory partition has not replicated successfully with at least one replication partner. ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL = 8611, // (0x21A3) The target container for a redirection of a well known object container cannot already be a special container. ERROR_DS_DOMAIN_RENAME_IN_PROGRESS = 8612, // (0x21A4) The Directory Service cannot perform the requested operation because a domain rename operation is in progress. ERROR_DS_EXISTING_AD_CHILD_NC = 8613, // (0x21A5) The directory service detected a child partition below the requested partition name. The partition hierarchy must be created in a top down method. ERROR_DS_REPL_LIFETIME_EXCEEDED = 8614, // (0x21A6) The directory service cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime. ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER = 8615, // (0x21A7) The requested operation is not allowed on an object under the system container. ERROR_DS_LDAP_SEND_QUEUE_FULL = 8616, // (0x21A8) The LDAP servers network send queue has filled up because the client is not processing the results of its requests fast enough. No more requests will be processed until the client catches up. If the client does not catch up then it will be disconnected. ERROR_DS_DRA_OUT_SCHEDULE_WINDOW = 8617, // (0x21A9) The scheduled replication did not take place because the system was too busy to execute the request within the schedule window. The replication queue is overloaded. Consider reducing the number of partners or decreasing the scheduled replication frequency. ERROR_DS_POLICY_NOT_KNOWN = 8618, // (0x21AA) At this time, it cannot be determined if the branch replication policy is available on the hub domain controller. Please retry at a later time to account for replication latencies. ERROR_NO_SITE_SETTINGS_OBJECT = 8619, // (0x21AB) The site settings object for the specified site does not exist. ERROR_NO_SECRETS = 8620, // (0x21AC) The local account store does not contain secret material for the specified account. ERROR_NO_WRITABLE_DC_FOUND = 8621, // (0x21AD) Could not find a writable domain controller in the domain. ERROR_DS_NO_SERVER_OBJECT = 8622, // (0x21AE) The server object for the domain controller does not exist. ERROR_DS_NO_NTDSA_OBJECT = 8623, // (0x21AF) The NTDS Settings object for the domain controller does not exist. ERROR_DS_NON_ASQ_SEARCH = 8624, // (0x21B0) The requested search operation is not supported for ASQ searches. ERROR_DS_AUDIT_FAILURE = 8625, // (0x21B1) A required audit event could not be generated for the operation. ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE = 8626, // (0x21B2) The search flags for the attribute are invalid. The subtree index bit is valid only on single valued attributes. ERROR_DS_INVALID_SEARCH_FLAG_TUPLE = 8627, // (0x21B3) The search flags for the attribute are invalid. The tuple index bit is valid only on attributes of Unicode strings. ERROR_DS_HIERARCHY_TABLE_TOO_DEEP = 8628, // (0x21B4) The address books are nested too deeply. Failed to build the hierarchy table. ERROR_DS_DRA_CORRUPT_UTD_VECTOR = 8629, // (0x21B5) The specified up-to-date-ness vector is corrupt. ERROR_DS_DRA_SECRETS_DENIED = 8630, // (0x21B6) The request to replicate secrets is denied. ERROR_DS_RESERVED_MAPI_ID = 8631, // (0x21B7) Schema update failed: The MAPI identifier is reserved. ERROR_DS_MAPI_ID_NOT_AVAILABLE = 8632, // (0x21B8) Schema update failed: There are no MAPI identifiers available. ERROR_DS_DRA_MISSING_KRBTGT_SECRET = 8633, // (0x21B9) The replication operation failed because the required attributes of the local krbtgt object are missing. ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST = 8634, // (0x21BA) The domain name of the trusted domain already exists in the forest. ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST = 8635, // (0x21BB) The flat name of the trusted domain already exists in the forest. ERROR_INVALID_USER_PRINCIPAL_NAME = 8636, // (0x21BC) The User Principal Name, // (UPN) is invalid. ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS = 8637, // (0x21BD) OID mapped groups cannot have members. ERROR_DS_OID_NOT_FOUND = 8638, // (0x21BE) The specified OID cannot be found. ERROR_DS_DRA_RECYCLED_TARGET = 8639, // (0x21BF) The replication operation failed because the target object referred by a link value is recycled. ERROR_DS_DISALLOWED_NC_REDIRECT = 8640, // (0x21C0) The redirect operation failed because the target object is in a NC different from the domain NC of the current domain controller. ERROR_DS_HIGH_ADLDS_FFL = 8641, // (0x21C1) The functional level of the AD LDS configuration set cannot be lowered to the requested value. ERROR_DS_HIGH_DSA_VERSION = 8642, // (0x21C2) The functional level of the domain, // (or forest) cannot be lowered to the requested value. ERROR_DS_LOW_ADLDS_FFL = 8643, // (0x21C3) The functional level of the AD LDS configuration set cannot be raised to the requested value, because there exist one or more ADLDS instances that are at a lower incompatible functional level. ERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION = 8644, // (0x21C4) The domain join cannot be completed because the SID of the domain you attempted to join was identical to the SID of this machine. This is a symptom of an improperly cloned operating system install. You should run sysprep on this machine in order to generate a new machine SID. Please see http://go.microsoft.com/fwlink/p/?linkid=168895 for more information. ERROR_DS_UNDELETE_SAM_VALIDATION_FAILED = 8645, // (0x21C5) The undelete operation failed because the Sam Account Name or Additional Sam Account Name of the object being undeleted conflicts with an existing live object. ERROR_INCORRECT_ACCOUNT_TYPE = 8646, // (0x21C6) The system is not authoritative for the specified account and therefore cannot complete the operation. Please retry the operation using the provider associated with this account. If this is an online provider please use the provider’s online site. DNS_ERROR_RCODE_FORMAT_ERROR = 9001, // (0x2329) DNS server unable to interpret format. DNS_ERROR_RCODE_SERVER_FAILURE = 9002, // (0x232A) DNS server failure. DNS_ERROR_RCODE_NAME_ERROR = 9003, // (0x232B) DNS name does not exist. DNS_ERROR_RCODE_NOT_IMPLEMENTED = 9004, // (0x232C) DNS request not supported by name server. DNS_ERROR_RCODE_REFUSED = 9005, // (0x232D) DNS operation refused. DNS_ERROR_RCODE_YXDOMAIN = 9006, // (0x232E) DNS name that ought not exist, does exist. DNS_ERROR_RCODE_YXRRSET = 9007, // (0x232F) DNS RR set that ought not exist, does exist. DNS_ERROR_RCODE_NXRRSET = 9008, // (0x2330) DNS RR set that ought to exist, does not exist. DNS_ERROR_RCODE_NOTAUTH = 9009, // (0x2331) DNS server not authoritative for zone. DNS_ERROR_RCODE_NOTZONE = 9010, // (0x2332) DNS name in update or prereq is not in zone. DNS_ERROR_RCODE_BADSIG = 9016, // (0x2338) DNS signature failed to verify. DNS_ERROR_RCODE_BADKEY = 9017, // (0x2339) DNS bad key. DNS_ERROR_RCODE_BADTIME = 9018, // (0x233A) DNS signature validity expired. DNS_ERROR_KEYMASTER_REQUIRED = 9101, // (0x238D) Only the DNS server acting as the key master for the zone may perform this operation. DNS_ERROR_NOT_ALLOWED_ON_SIGNED_ZONE = 9102, // (0x238E) This operation is not allowed on a zone that is signed or has signing keys. DNS_ERROR_NSEC3_INCOMPATIBLE_WITH_RSA_SHA1 = 9103, // (0x238F) NSEC3 is not compatible with the RSA-SHA-1 algorithm. Choose a different algorithm or use NSEC. //This value was also named DNS_ERROR_INVALID_NSEC3_PARAMETERS DNS_ERROR_NOT_ENOUGH_SIGNING_KEY_DESCRIPTORS = 9104, // (0x2390) The zone does not have enough signing keys. There must be at least one key signing key, // (KSK) and at least one zone signing key, // (ZSK). DNS_ERROR_UNSUPPORTED_ALGORITHM = 9105, // (0x2391) The specified algorithm is not supported. DNS_ERROR_INVALID_KEY_SIZE = 9106, // (0x2392) The specified key size is not supported. DNS_ERROR_SIGNING_KEY_NOT_ACCESSIBLE = 9107, // (0x2393) One or more of the signing keys for a zone are not accessible to the DNS server. Zone signing will not be operational until this error is resolved. DNS_ERROR_KSP_DOES_NOT_SUPPORT_PROTECTION = 9108, // (0x2394) The specified key storage provider does not support DPAPI++ data protection. Zone signing will not be operational until this error is resolved. DNS_ERROR_UNEXPECTED_DATA_PROTECTION_ERROR = 9109, // (0x2395) An unexpected DPAPI++ error was encountered. Zone signing will not be operational until this error is resolved. DNS_ERROR_UNEXPECTED_CNG_ERROR = 9110, // (0x2396) An unexpected crypto error was encountered. Zone signing may not be operational until this error is resolved. DNS_ERROR_UNKNOWN_SIGNING_PARAMETER_VERSION = 9111, // (0x2397) The DNS server encountered a signing key with an unknown version. Zone signing will not be operational until this error is resolved. DNS_ERROR_KSP_NOT_ACCESSIBLE = 9112, // (0x2398) The specified key service provider cannot be opened by the DNS server. DNS_ERROR_TOO_MANY_SKDS = 9113, // (0x2399) The DNS server cannot accept any more signing keys with the specified algorithm and KSK flag value for this zone. DNS_ERROR_INVALID_ROLLOVER_PERIOD = 9114, // (0x239A) The specified rollover period is invalid. DNS_ERROR_INVALID_INITIAL_ROLLOVER_OFFSET = 9115, // (0x239B) The specified initial rollover offset is invalid. DNS_ERROR_ROLLOVER_IN_PROGRESS = 9116, // (0x239C) The specified signing key is already in process of rolling over keys. DNS_ERROR_STANDBY_KEY_NOT_PRESENT = 9117, // (0x239D) The specified signing key does not have a standby key to revoke. DNS_ERROR_NOT_ALLOWED_ON_ZSK = 9118, // (0x239E) This operation is not allowed on a zone signing key, // (ZSK). DNS_ERROR_NOT_ALLOWED_ON_ACTIVE_SKD = 9119, // (0x239F) This operation is not allowed on an active signing key. DNS_ERROR_ROLLOVER_ALREADY_QUEUED = 9120, // (0x23A0) The specified signing key is already queued for rollover. DNS_ERROR_NOT_ALLOWED_ON_UNSIGNED_ZONE = 9121, // (0x23A1) This operation is not allowed on an unsigned zone. DNS_ERROR_BAD_KEYMASTER = 9122, // (0x23A2) This operation could not be completed because the DNS server listed as the current key master for this zone is down or misconfigured. Resolve the problem on the current key master for this zone or use another DNS server to seize the key master role. DNS_ERROR_INVALID_SIGNATURE_VALIDITY_PERIOD = 9123, // (0x23A3) The specified signature validity period is invalid. DNS_ERROR_INVALID_NSEC3_ITERATION_COUNT = 9124, // (0x23A4) The specified NSEC3 iteration count is higher than allowed by the minimum key length used in the zone. DNS_ERROR_DNSSEC_IS_DISABLED = 9125, // (0x23A5) This operation could not be completed because the DNS server has been configured with DNSSEC features disabled. Enable DNSSEC on the DNS server. DNS_ERROR_INVALID_XML = 9126, // (0x23A6) This operation could not be completed because the XML stream received is empty or syntactically invalid. DNS_ERROR_NO_VALID_TRUST_ANCHORS = 9127, // (0x23A7) This operation completed, but no trust anchors were added because all of the trust anchors received were either invalid, unsupported, expired, or would not become valid in less than 30 days. DNS_ERROR_ROLLOVER_NOT_POKEABLE = 9128, // (0x23A8) The specified signing key is not waiting for parental DS update. DNS_ERROR_NSEC3_NAME_COLLISION = 9129, // (0x23A9) Hash collision detected during NSEC3 signing. Specify a different user-provided salt, or use a randomly generated salt, and attempt to sign the zone again. DNS_ERROR_NSEC_INCOMPATIBLE_WITH_NSEC3_RSA_SHA1 = 9130, // (0x23AA) NSEC is not compatible with the NSEC3-RSA-SHA-1 algorithm. Choose a different algorithm or use NSEC3. DNS_INFO_NO_RECORDS = 9501, // (0x251D) No records found for given DNS query. DNS_ERROR_BAD_PACKET = 9502, // (0x251E) Bad DNS packet. DNS_ERROR_NO_PACKET = 9503, // (0x251F) No DNS packet. DNS_ERROR_RCODE = 9504, // (0x2520) DNS error, check rcode. DNS_ERROR_UNSECURE_PACKET = 9505, // (0x2521) Unsecured DNS packet. DNS_REQUEST_PENDING = 9506, // (0x2522) DNS query request is pending. DNS_ERROR_INVALID_TYPE = 9551, // (0x254F) Invalid DNS type. DNS_ERROR_INVALID_IP_ADDRESS = 9552, // (0x2550) Invalid IP address. DNS_ERROR_INVALID_PROPERTY = 9553, // (0x2551) Invalid property. DNS_ERROR_TRY_AGAIN_LATER = 9554, // (0x2552) Try DNS operation again later. DNS_ERROR_NOT_UNIQUE = 9555, // (0x2553) Record for given name and type is not unique. DNS_ERROR_NON_RFC_NAME = 9556, // (0x2554) DNS name does not comply with RFC specifications. DNS_STATUS_FQDN = 9557, // (0x2555) DNS name is a fully-qualified DNS name. DNS_STATUS_DOTTED_NAME = 9558, // (0x2556) DNS name is dotted, // (multi-label). DNS_STATUS_SINGLE_PART_NAME = 9559, // (0x2557) DNS name is a single-part name. DNS_ERROR_INVALID_NAME_CHAR = 9560, // (0x2558) DNS name contains an invalid character. DNS_ERROR_NUMERIC_NAME = 9561, // (0x2559) DNS name is entirely numeric. DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER = 9562, // (0x255A) The operation requested is not permitted on a DNS root server. DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION = 9563, // (0x255B) The record could not be created because this part of the DNS namespace has been delegated to another server. DNS_ERROR_CANNOT_FIND_ROOT_HINTS = 9564, // (0x255C) The DNS server could not find a set of root hints. DNS_ERROR_INCONSISTENT_ROOT_HINTS = 9565, // (0x255D) The DNS server found root hints but they were not consistent across all adapters. DNS_ERROR_DWORD_VALUE_TOO_SMALL = 9566, // (0x255E) The specified value is too small for this parameter. DNS_ERROR_DWORD_VALUE_TOO_LARGE = 9567, // (0x255F) The specified value is too large for this parameter. DNS_ERROR_BACKGROUND_LOADING = 9568, // (0x2560) This operation is not allowed while the DNS server is loading zones in the background. Please try again later. DNS_ERROR_NOT_ALLOWED_ON_RODC = 9569, // (0x2561) The operation requested is not permitted on against a DNS server running on a read-only DC. DNS_ERROR_NOT_ALLOWED_UNDER_DNAME = 9570, // (0x2562) No data is allowed to exist underneath a DNAME record. DNS_ERROR_DELEGATION_REQUIRED = 9571, // (0x2563) This operation requires credentials delegation. DNS_ERROR_INVALID_POLICY_TABLE = 9572, // (0x2564) Name resolution policy table has been corrupted. DNS resolution will fail until it is fixed. Contact your network administrator. DNS_ERROR_ZONE_DOES_NOT_EXIST = 9601, // (0x2581) DNS zone does not exist. DNS_ERROR_NO_ZONE_INFO = 9602, // (0x2582) DNS zone information not available. DNS_ERROR_INVALID_ZONE_OPERATION = 9603, // (0x2583) Invalid operation for DNS zone. DNS_ERROR_ZONE_CONFIGURATION_ERROR = 9604, // (0x2584) Invalid DNS zone configuration. DNS_ERROR_ZONE_HAS_NO_SOA_RECORD = 9605, // (0x2585) DNS zone has no start of authority, // (SOA) record. DNS_ERROR_ZONE_HAS_NO_NS_RECORDS = 9606, // (0x2586) DNS zone has no Name Server, // (NS) record. DNS_ERROR_ZONE_LOCKED = 9607, // (0x2587) DNS zone is locked. DNS_ERROR_ZONE_CREATION_FAILED = 9608, // (0x2588) DNS zone creation failed. DNS_ERROR_ZONE_ALREADY_EXISTS = 9609, // (0x2589) DNS zone already exists. DNS_ERROR_AUTOZONE_ALREADY_EXISTS = 9610, // (0x258A) DNS automatic zone already exists. DNS_ERROR_INVALID_ZONE_TYPE = 9611, // (0x258B) Invalid DNS zone type. DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP = 9612, // (0x258C) Secondary DNS zone requires master IP address. DNS_ERROR_ZONE_NOT_SECONDARY = 9613, // (0x258D) DNS zone not secondary. DNS_ERROR_NEED_SECONDARY_ADDRESSES = 9614, // (0x258E) Need secondary IP address. DNS_ERROR_WINS_INIT_FAILED = 9615, // (0x258F) WINS initialization failed. DNS_ERROR_NEED_WINS_SERVERS = 9616, // (0x2590) Need WINS servers. DNS_ERROR_NBSTAT_INIT_FAILED = 9617, // (0x2591) NBTSTAT initialization call failed. DNS_ERROR_SOA_DELETE_INVALID = 9618, // (0x2592) Invalid delete of start of authority, // (SOA). DNS_ERROR_FORWARDER_ALREADY_EXISTS = 9619, // (0x2593) A conditional forwarding zone already exists for that name. DNS_ERROR_ZONE_REQUIRES_MASTER_IP = 9620, // (0x2594) This zone must be configured with one or more master DNS server IP addresses. DNS_ERROR_ZONE_IS_SHUTDOWN = 9621, // (0x2595) The operation cannot be performed because this zone is shut down. DNS_ERROR_ZONE_LOCKED_FOR_SIGNING = 9622, // (0x2596) This operation cannot be performed because the zone is currently being signed. Please try again later. DNS_ERROR_PRIMARY_REQUIRES_DATAFILE = 9651, // (0x25B3) Primary DNS zone requires datafile. DNS_ERROR_INVALID_DATAFILE_NAME = 9652, // (0x25B4) Invalid datafile name for DNS zone. DNS_ERROR_DATAFILE_OPEN_FAILURE = 9653, // (0x25B5) Failed to open datafile for DNS zone. DNS_ERROR_FILE_WRITEBACK_FAILED = 9654, // (0x25B6) Failed to write datafile for DNS zone. DNS_ERROR_DATAFILE_PARSING = 9655, // (0x25B7) Failure while reading datafile for DNS zone. DNS_ERROR_RECORD_DOES_NOT_EXIST = 9701, // (0x25E5) DNS record does not exist. DNS_ERROR_RECORD_FORMAT = 9702, // (0x25E6) DNS record format error. DNS_ERROR_NODE_CREATION_FAILED = 9703, // (0x25E7) Node creation failure in DNS. DNS_ERROR_UNKNOWN_RECORD_TYPE = 9704, // (0x25E8) Unknown DNS record type. DNS_ERROR_RECORD_TIMED_OUT = 9705, // (0x25E9) DNS record timed out. DNS_ERROR_NAME_NOT_IN_ZONE = 9706, // (0x25EA) Name not in DNS zone. DNS_ERROR_CNAME_LOOP = 9707, // (0x25EB) CNAME loop detected. DNS_ERROR_NODE_IS_CNAME = 9708, // (0x25EC) Node is a CNAME DNS record. DNS_ERROR_CNAME_COLLISION = 9709, // (0x25ED) A CNAME record already exists for given name. DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT = 9710, // (0x25EE) Record only at DNS zone root. DNS_ERROR_RECORD_ALREADY_EXISTS = 9711, // (0x25EF) DNS record already exists. DNS_ERROR_SECONDARY_DATA = 9712, // (0x25F0) Secondary DNS zone data error. DNS_ERROR_NO_CREATE_CACHE_DATA = 9713, // (0x25F1) Could not create DNS cache data. DNS_ERROR_NAME_DOES_NOT_EXIST = 9714, // (0x25F2) DNS name does not exist. DNS_WARNING_PTR_CREATE_FAILED = 9715, // (0x25F3) Could not create pointer, // (PTR) record. DNS_WARNING_DOMAIN_UNDELETED = 9716, // (0x25F4) DNS domain was undeleted. DNS_ERROR_DS_UNAVAILABLE = 9717, // (0x25F5) The directory service is unavailable. DNS_ERROR_DS_ZONE_ALREADY_EXISTS = 9718, // (0x25F6) DNS zone already exists in the directory service. DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE = 9719, // (0x25F7) DNS server not creating or reading the boot file for the directory service integrated DNS zone. DNS_ERROR_NODE_IS_DNAME = 9720, // (0x25F8) Node is a DNAME DNS record. DNS_ERROR_DNAME_COLLISION = 9721, // (0x25F9) A DNAME record already exists for given name. DNS_ERROR_ALIAS_LOOP = 9722, // (0x25FA) An alias loop has been detected with either CNAME or DNAME records. DNS_INFO_AXFR_COMPLETE = 9751, // (0x2617) DNS AXFR, // (zone transfer) complete. DNS_ERROR_AXFR = 9752, // (0x2618) DNS zone transfer failed. DNS_INFO_ADDED_LOCAL_WINS = 9753, // (0x2619) Added local WINS server. DNS_STATUS_CONTINUE_NEEDED = 9801, // (0x2649) Secure update call needs to continue update request. DNS_ERROR_NO_TCPIP = 9851, // (0x267B) TCP/IP network protocol not installed. DNS_ERROR_NO_DNS_SERVERS = 9852, // (0x267C) No DNS servers configured for local system. DNS_ERROR_DP_DOES_NOT_EXIST = 9901, // (0x26AD) The specified directory partition does not exist. DNS_ERROR_DP_ALREADY_EXISTS = 9902, // (0x26AE) The specified directory partition already exists. DNS_ERROR_DP_NOT_ENLISTED = 9903, // (0x26AF) This DNS server is not enlisted in the specified directory partition. DNS_ERROR_DP_ALREADY_ENLISTED = 9904, // (0x26B0) This DNS server is already enlisted in the specified directory partition. DNS_ERROR_DP_NOT_AVAILABLE = 9905, // (0x26B1) The directory partition is not available at this time. Please wait a few minutes and try again. DNS_ERROR_DP_FSMO_ERROR = 9906, // (0x26B2) The operation failed because the domain naming master FSMO role could not be reached. The domain controller holding the domain naming master FSMO role is down or unable to service the request or is not running Windows Server 2003 or later. WSAEINTR = 10004, // (0x2714) A blocking operation was interrupted by a call to WSACancelBlockingCall. WSAEBADF = 10009, // (0x2719) The file handle supplied is not valid. WSAEACCES = 10013, // (0x271D) An attempt was made to access a socket in a way forbidden by its access permissions. WSAEFAULT = 10014, // (0x271E) The system detected an invalid pointer address in attempting to use a pointer argument in a call. WSAEINVAL = 10022, // (0x2726) An invalid argument was supplied. WSAEMFILE = 10024, // (0x2728) Too many open sockets. WSAEWOULDBLOCK = 10035, // (0x2733) A non-blocking socket operation could not be completed immediately. WSAEINPROGRESS = 10036, // (0x2734) A blocking operation is currently executing. WSAEALREADY = 10037, // (0x2735) An operation was attempted on a non-blocking socket that already had an operation in progress. WSAENOTSOCK = 10038, // (0x2736) An operation was attempted on something that is not a socket. WSAEDESTADDRREQ = 10039, // (0x2737) A required address was omitted from an operation on a socket. WSAEMSGSIZE = 10040, // (0x2738) A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself. WSAEPROTOTYPE = 10041, // (0x2739) A protocol was specified in the socket function call that does not support the semantics of the socket type requested. WSAENOPROTOOPT = 10042, // (0x273A) An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call. WSAEPROTONOSUPPORT = 10043, // (0x273B) The requested protocol has not been configured into the system, or no implementation for it exists. WSAESOCKTNOSUPPORT = 10044, // (0x273C) The support for the specified socket type does not exist in this address family. WSAEOPNOTSUPP = 10045, // (0x273D) The attempted operation is not supported for the type of object referenced. WSAEPFNOSUPPORT = 10046, // (0x273E) The protocol family has not been configured into the system or no implementation for it exists. WSAEAFNOSUPPORT = 10047, // (0x273F) An address incompatible with the requested protocol was used. WSAEADDRINUSE = 10048, // (0x2740) Only one usage of each socket address, // (protocol/network address/port) is normally permitted. WSAEADDRNOTAVAIL = 10049, // (0x2741) The requested address is not valid in its context. WSAENETDOWN = 10050, // (0x2742) A socket operation encountered a dead network. WSAENETUNREACH = 10051, // (0x2743) A socket operation was attempted to an unreachable network. WSAENETRESET = 10052, // (0x2744) The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. WSAECONNABORTED = 10053, // (0x2745) An established connection was aborted by the software in your host machine. WSAECONNRESET = 10054, // (0x2746) An existing connection was forcibly closed by the remote host. WSAENOBUFS = 10055, // (0x2747) An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. WSAEISCONN = 10056, // (0x2748) A connect request was made on an already connected socket. WSAENOTCONN = 10057, // (0x2749) A request to send or receive data was disallowed because the socket is not connected and, // (when sending on a datagram socket using a sendto call) no address was supplied. WSAESHUTDOWN = 10058, // (0x274A) A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call. WSAETOOMANYREFS = 10059, // (0x274B) Too many references to some kernel object. WSAETIMEDOUT = 10060, // (0x274C) A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. WSAECONNREFUSED = 10061, // (0x274D) No connection could be made because the target machine actively refused it. WSAELOOP = 10062, // (0x274E) Cannot translate name. WSAENAMETOOLONG = 10063, // (0x274F) Name component or name was too long. WSAEHOSTDOWN = 10064, // (0x2750) A socket operation failed because the destination host was down. WSAEHOSTUNREACH = 10065, // (0x2751) A socket operation was attempted to an unreachable host. WSAENOTEMPTY = 10066, // (0x2752) Cannot remove a directory that is not empty. WSAEPROCLIM = 10067, // (0x2753) A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously. WSAEUSERS = 10068, // (0x2754) Ran out of quota. WSAEDQUOT = 10069, // (0x2755) Ran out of disk quota. WSAESTALE = 10070, // (0x2756) File handle reference is no longer available. WSAEREMOTE = 10071, // (0x2757) Item is not available locally. WSASYSNOTREADY = 10091, // (0x276B) WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable. WSAVERNOTSUPPORTED = 10092, // (0x276C) The Windows Sockets version requested is not supported. WSANOTINITIALISED = 10093, // (0x276D) Either the application has not called WSAStartup, or WSAStartup failed. WSAEDISCON = 10101, // (0x2775) Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence. WSAENOMORE = 10102, // (0x2776) No more results can be returned by WSALookupServiceNext. WSAECANCELLED = 10103, // (0x2777) A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled. WSAEINVALIDPROCTABLE = 10104, // (0x2778) The procedure call table is invalid. WSAEINVALIDPROVIDER = 10105, // (0x2779) The requested service provider is invalid. WSAEPROVIDERFAILEDINIT = 10106, // (0x277A) The requested service provider could not be loaded or initialized. WSASYSCALLFAILURE = 10107, // (0x277B) A system call has failed. WSASERVICE_NOT_FOUND = 10108, // (0x277C) No such service is known. The service cannot be found in the specified name space. WSATYPE_NOT_FOUND = 10109, // (0x277D) The specified class was not found. WSA_E_NO_MORE = 10110, // (0x277E) No more results can be returned by WSALookupServiceNext. WSA_E_CANCELLED = 10111, // (0x277F) A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled. WSAEREFUSED = 10112, // (0x2780) A database query failed because it was actively refused. WSAHOST_NOT_FOUND = 11001, // (0x2AF9) No such host is known. WSATRY_AGAIN = 11002, // (0x2AFA) This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. WSANO_RECOVERY = 11003, // (0x2AFB) A non-recoverable error occurred during a database lookup. WSANO_DATA = 11004, // (0x2AFC) The requested name is valid, but no data of the requested type was found. WSA_QOS_RECEIVERS = 11005, // (0x2AFD) At least one reserve has arrived. WSA_QOS_SENDERS = 11006, // (0x2AFE) At least one path has arrived. WSA_QOS_NO_SENDERS = 11007, // (0x2AFF) There are no senders. WSA_QOS_NO_RECEIVERS = 11008, // (0x2B00) There are no receivers. WSA_QOS_REQUEST_CONFIRMED = 11009, // (0x2B01) Reserve has been confirmed. WSA_QOS_ADMISSION_FAILURE = 11010, // (0x2B02) Error due to lack of resources. WSA_QOS_POLICY_FAILURE = 11011, // (0x2B03) Rejected for administrative reasons — bad credentials. WSA_QOS_BAD_STYLE = 11012, // (0x2B04) Unknown or conflicting style. WSA_QOS_BAD_OBJECT = 11013, // (0x2B05) Problem with some part of the filterspec or providerspecific buffer in general. WSA_QOS_TRAFFIC_CTRL_ERROR = 11014, // (0x2B06) Problem with some part of the flowspec. WSA_QOS_GENERIC_ERROR = 11015, // (0x2B07) General QOS error. WSA_QOS_ESERVICETYPE = 11016, // (0x2B08) An invalid or unrecognized service type was found in the flowspec. WSA_QOS_EFLOWSPEC = 11017, // (0x2B09) An invalid or inconsistent flowspec was found in the QOS structure. WSA_QOS_EPROVSPECBUF = 11018, // (0x2B0A) Invalid QOS provider-specific buffer. WSA_QOS_EFILTERSTYLE = 11019, // (0x2B0B) An invalid QOS filter style was used. WSA_QOS_EFILTERTYPE = 11020, // (0x2B0C) An invalid QOS filter type was used. WSA_QOS_EFILTERCOUNT = 11021, // (0x2B0D) An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR. WSA_QOS_EOBJLENGTH = 11022, // (0x2B0E) An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer. WSA_QOS_EFLOWCOUNT = 11023, // (0x2B0F) An incorrect number of flow descriptors was specified in the QOS structure. WSA_QOS_EUNKOWNPSOBJ = 11024, // (0x2B10) An unrecognized object was found in the QOS provider-specific buffer. WSA_QOS_EPOLICYOBJ = 11025, // (0x2B11) An invalid policy object was found in the QOS provider-specific buffer. WSA_QOS_EFLOWDESC = 11026, // (0x2B12) An invalid QOS flow descriptor was found in the flow descriptor list. WSA_QOS_EPSFLOWSPEC = 11027, // (0x2B13) An invalid or inconsistent flowspec was found in the QOS provider specific buffer. WSA_QOS_EPSFILTERSPEC = 11028, // (0x2B14) An invalid FILTERSPEC was found in the QOS provider-specific buffer. WSA_QOS_ESDMODEOBJ = 11029, // (0x2B15) An invalid shape discard mode object was found in the QOS provider specific buffer. WSA_QOS_ESHAPERATEOBJ = 11030, // (0x2B16) An invalid shaping rate object was found in the QOS provider-specific buffer. WSA_QOS_RESERVED_PETYPE = 11031, // (0x2B17) A reserved policy element was found in the QOS provider-specific buffer. WSA_SECURE_HOST_NOT_FOUND = 11032, // (0x2B18) No such host is known securely. WSA_IPSEC_NAME_POLICY_ERROR = 11033, // (0x2B19) Name based IPSEC policy could not be added. //ERROR_INTERNET_* = 12000 — 12175, // (0x2EE0) See Internet Error Codes and WinInet.h https://msdn.microsoft.com/en-us/library/windows/desktop/aa385465.aspx ERROR_FTP_DROPPED = 12111, // The FTP operation was not completed because the session was aborted. ERROR_FTP_NO_PASSIVE_MODE = 12112, // Passive mode is not available on the server. ERROR_FTP_TRANSFER_IN_PROGRESS = 12110, // The requested operation cannot be made on the FTP session handle because an operation is already in progress. ERROR_GOPHER_ATTRIBUTE_NOT_FOUND = 12137, // The requested attribute could not be located. // Note Windows XP and Windows Server 2003 R2 and earlier only. ERROR_GOPHER_DATA_ERROR = 12132, // An error was detected while receiving data from the Gopher server. // Note Windows XP and Windows Server 2003 R2 and earlier only. ERROR_GOPHER_END_OF_DATA = 12133, // The end of the data has been reached. // Note Windows XP and Windows Server 2003 R2 and earlier only. ERROR_GOPHER_INCORRECT_LOCATOR_TYPE = 12135, // The type of the locator is not correct for this operation. // Note Windows XP and Windows Server 2003 R2 and earlier only. ERROR_GOPHER_INVALID_LOCATOR = 12134, // The supplied locator is not valid. // Note Windows XP and Windows Server 2003 R2 and earlier only. ERROR_GOPHER_NOT_FILE = 12131, // The request must be made for a file locator. // Note Windows XP and Windows Server 2003 R2 and earlier only. ERROR_GOPHER_NOT_GOPHER_PLUS = 12136, // The requested operation can be made only against a Gopher+ server, or with a locator that specifies a Gopher+ operation. // Note Windows XP and Windows Server 2003 R2 and earlier only. ERROR_GOPHER_PROTOCOL_ERROR = 12130, // An error was detected while parsing data returned from the Gopher server. // Note Windows XP and Windows Server 2003 R2 and earlier only. ERROR_GOPHER_UNKNOWN_LOCATOR = 12138, // The locator type is unknown. // Note Windows XP and Windows Server 2003 R2 and earlier only. ERROR_HTTP_COOKIE_DECLINED = 12162, // The HTTP cookie was declined by the server. ERROR_HTTP_COOKIE_NEEDS_CONFIRMATION = 12161, // The HTTP cookie requires confirmation. // Note Windows Vista and Windows Server 2008 and earlier only. ERROR_HTTP_DOWNLEVEL_SERVER = 12151, // The server did not return any headers. ERROR_HTTP_HEADER_ALREADY_EXISTS = 12155, // The header could not be added because it already exists. ERROR_HTTP_HEADER_NOT_FOUND = 12150, // The requested header could not be located. ERROR_HTTP_INVALID_HEADER = 12153, // The supplied header is invalid. ERROR_HTTP_INVALID_QUERY_REQUEST = 12154, // The request made to HttpQueryInfo is invalid. ERROR_HTTP_INVALID_SERVER_RESPONSE = 12152, // The server response could not be parsed. ERROR_HTTP_NOT_REDIRECTED = 12160, // The HTTP request was not redirected. ERROR_HTTP_REDIRECT_FAILED = 12156, // The redirection failed because either the scheme changed (for example, HTTP to FTP) or all attempts made to redirect failed (default is five attempts). ERROR_HTTP_REDIRECT_NEEDS_CONFIRMATION = 12168, // The redirection requires user confirmation. ERROR_INTERNET_ASYNC_THREAD_FAILED = 12047, // The application could not start an asynchronous thread. ERROR_INTERNET_BAD_AUTO_PROXY_SCRIPT = 12166, // There was an error in the automatic proxy configuration script. ERROR_INTERNET_BAD_OPTION_LENGTH = 12010, // The length of an option supplied to InternetQueryOption or InternetSetOption is incorrect for the type of option specified. ERROR_INTERNET_BAD_REGISTRY_PARAMETER = 12022, // A required registry value was located but is an incorrect type or has an invalid value. ERROR_INTERNET_CANNOT_CONNECT = 12029, // The attempt to connect to the server failed. ERROR_INTERNET_CHG_POST_IS_NON_SECURE = 12042, // The application is posting and attempting to change multiple lines of text on a server that is not secure. ERROR_INTERNET_CLIENT_AUTH_CERT_NEEDED = 12044, // The server is requesting client authentication. ERROR_INTERNET_CLIENT_AUTH_NOT_SETUP = 12046, // Client authorization is not set up on this computer. ERROR_INTERNET_CONNECTION_ABORTED = 12030, // The connection with the server has been terminated. ERROR_INTERNET_CONNECTION_RESET = 12031, // The connection with the server has been reset. ERROR_INTERNET_DECODING_FAILED = 12175, // WinINet failed to perform content decoding on the response. For more information, see the Content Encoding topic. ERROR_INTERNET_DIALOG_PENDING = 12049, // Another thread has a password dialog box in progress. ERROR_INTERNET_DISCONNECTED = 12163, // The Internet connection has been lost. ERROR_INTERNET_EXTENDED_ERROR = 12003, // An extended error was returned from the server. This is typically a string or buffer containing a verbose error message. Call InternetGetLastResponseInfo to retrieve the error text. ERROR_INTERNET_FAILED_DUETOSECURITYCHECK = 12171, // The function failed due to a security check. ERROR_INTERNET_FORCE_RETRY = 12032, // The function needs to redo the request. ERROR_INTERNET_FORTEZZA_LOGIN_NEEDED = 12054, // The requested resource requires Fortezza authentication. ERROR_INTERNET_HANDLE_EXISTS = 12036, // The request failed because the handle already exists. ERROR_INTERNET_HTTP_TO_HTTPS_ON_REDIR = 12039, // The application is moving from a non-SSL to an SSL connection because of a redirect. ERROR_INTERNET_HTTPS_HTTP_SUBMIT_REDIR = 12052, // The data being submitted to an SSL connection is being redirected to a non-SSL connection. ERROR_INTERNET_HTTPS_TO_HTTP_ON_REDIR = 12040, // The application is moving from an SSL to an non-SSL connection because of a redirect. ERROR_INTERNET_INCORRECT_FORMAT = 12027, // The format of the request is invalid. ERROR_INTERNET_INCORRECT_HANDLE_STATE = 12019, // The requested operation cannot be carried out because the handle supplied is not in the correct state. ERROR_INTERNET_INCORRECT_HANDLE_TYPE = 12018, // The type of handle supplied is incorrect for this operation. ERROR_INTERNET_INCORRECT_PASSWORD = 12014, // The request to connect and log on to an FTP server could not be completed because the supplied password is incorrect. ERROR_INTERNET_INCORRECT_USER_NAME = 12013, // The request to connect and log on to an FTP server could not be completed because the supplied user name is incorrect. ERROR_INTERNET_INSERT_CDROM = 12053, // The request requires a CD-ROM to be inserted in the CD-ROM drive to locate the resource requested. // Note Windows Vista and Windows Server 2008 and earlier only. ERROR_INTERNET_INTERNAL_ERROR = 12004, // An internal error has occurred. ERROR_INTERNET_INVALID_CA = 12045, // The function is unfamiliar with the Certificate Authority that generated the server’s certificate. ERROR_INTERNET_INVALID_OPERATION = 12016, // The requested operation is invalid. ERROR_INTERNET_INVALID_OPTION = 12009, // A request to InternetQueryOption or InternetSetOption specified an invalid option value. ERROR_INTERNET_INVALID_PROXY_REQUEST = 12033, // The request to the proxy was invalid. ERROR_INTERNET_INVALID_URL = 12005, // The URL is invalid. ERROR_INTERNET_ITEM_NOT_FOUND = 12028, // The requested item could not be located. ERROR_INTERNET_LOGIN_FAILURE = 12015, // The request to connect and log on to an FTP server failed. ERROR_INTERNET_LOGIN_FAILURE_DISPLAY_ENTITY_BODY = 12174, // The MS-Logoff digest header has been returned from the website. This header specifically instructs the digest package to purge credentials for the associated realm. This error will only be returned if INTERNET_ERROR_MASK_LOGIN_FAILURE_DISPLAY_ENTITY_BODY option has been set, otherwise, ERROR_INTERNET_LOGIN_FAILURE is returned. ERROR_INTERNET_MIXED_SECURITY = 12041, // The content is not entirely secure. Some of the content being viewed may have come from unsecured servers. ERROR_INTERNET_NAME_NOT_RESOLVED = 12007, // The server name could not be resolved. ERROR_INTERNET_NEED_MSN_SSPI_PKG = 12173, // Not currently implemented. ERROR_INTERNET_NEED_UI = 12034, // A user interface or other blocking operation has been requested. // Note Windows Vista and Windows Server 2008 and earlier only. ERROR_INTERNET_NO_CALLBACK = 12025, // An asynchronous request could not be made because a callback function has not been set. ERROR_INTERNET_NO_CONTEXT = 12024, // An asynchronous request could not be made because a zero context value was supplied. ERROR_INTERNET_NO_DIRECT_ACCESS = 12023, // Direct network access cannot be made at this time. ERROR_INTERNET_NOT_INITIALIZED = 12172, // Initialization of the WinINet API has not occurred. Indicates that a higher-level function, such as InternetOpen, has not been called yet. ERROR_INTERNET_NOT_PROXY_REQUEST = 12020, // The request cannot be made via a proxy. ERROR_INTERNET_OPERATION_CANCELLED = 12017, // The operation was canceled, usually because the handle on which the request was operating was closed before the operation completed. ERROR_INTERNET_OPTION_NOT_SETTABLE = 12011, // The requested option cannot be set, only queried. ERROR_INTERNET_OUT_OF_HANDLES = 12001, // No more handles could be generated at this time. ERROR_INTERNET_POST_IS_NON_SECURE = 12043, // The application is posting data to a server that is not secure. ERROR_INTERNET_PROTOCOL_NOT_FOUND = 12008, // The requested protocol could not be located. ERROR_INTERNET_PROXY_SERVER_UNREACHABLE = 12165, // The designated proxy server cannot be reached. ERROR_INTERNET_REDIRECT_SCHEME_CHANGE = 12048, // The function could not handle the redirection, because the scheme changed (for example, HTTP to FTP). ERROR_INTERNET_REGISTRY_VALUE_NOT_FOUND = 12021, // A required registry value could not be located. ERROR_INTERNET_REQUEST_PENDING = 12026, // The required operation could not be completed because one or more requests are pending. ERROR_INTERNET_RETRY_DIALOG = 12050, // The dialog box should be retried. ERROR_INTERNET_SEC_CERT_CN_INVALID = 12038, // SSL certificate common name (host name field) is incorrect—for example, if you entered www.server.com and the common name on the certificate says www.different.com. ERROR_INTERNET_SEC_CERT_DATE_INVALID = 12037, // SSL certificate date that was received from the server is bad. The certificate is expired. ERROR_INTERNET_SEC_CERT_ERRORS = 12055, // The SSL certificate contains errors. ERROR_INTERNET_SEC_CERT_NO_REV = 12056, // The SSL certificate was not revoked. ERROR_INTERNET_SEC_CERT_REV_FAILED = 12057, // Revocation of the SSL certificate failed. ERROR_INTERNET_SEC_CERT_REVOKED = 12170, // The SSL certificate was revoked. ERROR_INTERNET_SEC_INVALID_CERT = 12169, // The SSL certificate is invalid. ERROR_INTERNET_SECURITY_CHANNEL_ERROR = 12157, // The application experienced an internal error loading the SSL libraries. ERROR_INTERNET_SERVER_UNREACHABLE = 12164, // The website or server indicated is unreachable. ERROR_INTERNET_SHUTDOWN = 12012, // WinINet support is being shut down or unloaded. ERROR_INTERNET_TCPIP_NOT_INSTALLED = 12159, // The required protocol stack is not loaded and the application cannot start WinSock. ERROR_INTERNET_TIMEOUT = 12002, // The request has timed out. ERROR_INTERNET_UNABLE_TO_CACHE_FILE = 12158, // The function was unable to cache the file. ERROR_INTERNET_UNABLE_TO_DOWNLOAD_SCRIPT = 12167, // The automatic proxy configuration script could not be downloaded. The INTERNET_FLAG_MUST_CACHE_REQUEST flag was set. ERROR_IPSEC_QM_POLICY_EXISTS = 13000, // (0x32C8) The specified quick mode policy already exists. ERROR_IPSEC_QM_POLICY_NOT_FOUND = 13001, // (0x32C9) The specified quick mode policy was not found. ERROR_IPSEC_QM_POLICY_IN_USE = 13002, // (0x32CA) The specified quick mode policy is being used. ERROR_IPSEC_MM_POLICY_EXISTS = 13003, // (0x32CB) The specified main mode policy already exists. ERROR_IPSEC_MM_POLICY_NOT_FOUND = 13004, // (0x32CC) The specified main mode policy was not found. ERROR_IPSEC_MM_POLICY_IN_USE = 13005, // (0x32CD) The specified main mode policy is being used. ERROR_IPSEC_MM_FILTER_EXISTS = 13006, // (0x32CE) The specified main mode filter already exists. ERROR_IPSEC_MM_FILTER_NOT_FOUND = 13007, // (0x32CF) The specified main mode filter was not found. ERROR_IPSEC_TRANSPORT_FILTER_EXISTS = 13008, // (0x32D0) The specified transport mode filter already exists. ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND = 13009, // (0x32D1) The specified transport mode filter does not exist. ERROR_IPSEC_MM_AUTH_EXISTS = 13010, // (0x32D2) The specified main mode authentication list exists. ERROR_IPSEC_MM_AUTH_NOT_FOUND = 13011, // (0x32D3) The specified main mode authentication list was not found. ERROR_IPSEC_MM_AUTH_IN_USE = 13012, // (0x32D4) The specified main mode authentication list is being used. ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND = 13013, // (0x32D5) The specified default main mode policy was not found. ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND = 13014, // (0x32D6) The specified default main mode authentication list was not found. ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND = 13015, // (0x32D7) The specified default quick mode policy was not found. ERROR_IPSEC_TUNNEL_FILTER_EXISTS = 13016, // (0x32D8) The specified tunnel mode filter exists. ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND = 13017, // (0x32D9) The specified tunnel mode filter was not found. ERROR_IPSEC_MM_FILTER_PENDING_DELETION = 13018, // (0x32DA) The Main Mode filter is pending deletion. ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION = 13019, // (0x32DB) The transport filter is pending deletion. ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION = 13020, // (0x32DC) The tunnel filter is pending deletion. ERROR_IPSEC_MM_POLICY_PENDING_DELETION = 13021, // (0x32DD) The Main Mode policy is pending deletion. ERROR_IPSEC_MM_AUTH_PENDING_DELETION = 13022, // (0x32DE) The Main Mode authentication bundle is pending deletion. ERROR_IPSEC_QM_POLICY_PENDING_DELETION = 13023, // (0x32DF) The Quick Mode policy is pending deletion. WARNING_IPSEC_MM_POLICY_PRUNED = 13024, // (0x32E0) The Main Mode policy was successfully added, but some of the requested offers are not supported. WARNING_IPSEC_QM_POLICY_PRUNED = 13025, // (0x32E1) The Quick Mode policy was successfully added, but some of the requested offers are not supported. ERROR_IPSEC_IKE_NEG_STATUS_BEGIN = 13800, // (0x35E8) ERROR_IPSEC_IKE_NEG_STATUS_BEGIN ERROR_IPSEC_IKE_AUTH_FAIL = 13801, // (0x35E9) IKE authentication credentials are unacceptable. ERROR_IPSEC_IKE_ATTRIB_FAIL = 13802, // (0x35EA) IKE security attributes are unacceptable. ERROR_IPSEC_IKE_NEGOTIATION_PENDING = 13803, // (0x35EB) IKE Negotiation in progress. ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR = 13804, // (0x35EC) General processing error. ERROR_IPSEC_IKE_TIMED_OUT = 13805, // (0x35ED) Negotiation timed out. ERROR_IPSEC_IKE_NO_CERT = 13806, // (0x35EE) IKE failed to find valid machine certificate. Contact your Network Security Administrator about installing a valid certificate in the appropriate Certificate Store. ERROR_IPSEC_IKE_SA_DELETED = 13807, // (0x35EF) IKE SA deleted by peer before establishment completed. ERROR_IPSEC_IKE_SA_REAPED = 13808, // (0x35F0) IKE SA deleted before establishment completed. ERROR_IPSEC_IKE_MM_ACQUIRE_DROP = 13809, // (0x35F1) Negotiation request sat in Queue too long. ERROR_IPSEC_IKE_QM_ACQUIRE_DROP = 13810, // (0x35F2) Negotiation request sat in Queue too long. ERROR_IPSEC_IKE_QUEUE_DROP_MM = 13811, // (0x35F3) Negotiation request sat in Queue too long. ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM = 13812, // (0x35F4) Negotiation request sat in Queue too long. ERROR_IPSEC_IKE_DROP_NO_RESPONSE = 13813, // (0x35F5) No response from peer. ERROR_IPSEC_IKE_MM_DELAY_DROP = 13814, // (0x35F6) Negotiation took too long. ERROR_IPSEC_IKE_QM_DELAY_DROP = 13815, // (0x35F7) Negotiation took too long. ERROR_IPSEC_IKE_ERROR = 13816, // (0x35F8) Unknown error occurred. ERROR_IPSEC_IKE_CRL_FAILED = 13817, // (0x35F9) Certificate Revocation Check failed. ERROR_IPSEC_IKE_INVALID_KEY_USAGE = 13818, // (0x35FA) Invalid certificate key usage. ERROR_IPSEC_IKE_INVALID_CERT_TYPE = 13819, // (0x35FB) Invalid certificate type. ERROR_IPSEC_IKE_NO_PRIVATE_KEY = 13820, // (0x35FC) IKE negotiation failed because the machine certificate used does not have a private key. IPsec certificates require a private key. Contact your Network Security administrator about replacing with a certificate that has a private key. ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY = 13821, // (0x35FD) Simultaneous rekeys were detected. ERROR_IPSEC_IKE_DH_FAIL = 13822, // (0x35FE) Failure in Diffie-Hellman computation. ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED = 13823, // (0x35FF) Don’t know how to process critical payload. ERROR_IPSEC_IKE_INVALID_HEADER = 13824, // (0x3600) Invalid header. ERROR_IPSEC_IKE_NO_POLICY = 13825, // (0x3601) No policy configured. ERROR_IPSEC_IKE_INVALID_SIGNATURE = 13826, // (0x3602) Failed to verify signature. ERROR_IPSEC_IKE_KERBEROS_ERROR = 13827, // (0x3603) Failed to authenticate using Kerberos. ERROR_IPSEC_IKE_NO_PUBLIC_KEY = 13828, // (0x3604) Peer’s certificate did not have a public key. ERROR_IPSEC_IKE_PROCESS_ERR = 13829, // (0x3605) Error processing error payload. ERROR_IPSEC_IKE_PROCESS_ERR_SA = 13830, // (0x3606) Error processing SA payload. ERROR_IPSEC_IKE_PROCESS_ERR_PROP = 13831, // (0x3607) Error processing Proposal payload. ERROR_IPSEC_IKE_PROCESS_ERR_TRANS = 13832, // (0x3608) Error processing Transform payload. ERROR_IPSEC_IKE_PROCESS_ERR_KE = 13833, // (0x3609) Error processing KE payload. ERROR_IPSEC_IKE_PROCESS_ERR_ID = 13834, // (0x360A) Error processing ID payload. ERROR_IPSEC_IKE_PROCESS_ERR_CERT = 13835, // (0x360B) Error processing Cert payload. ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ = 13836, // (0x360C) Error processing Certificate Request payload. ERROR_IPSEC_IKE_PROCESS_ERR_HASH = 13837, // (0x360D) Error processing Hash payload. ERROR_IPSEC_IKE_PROCESS_ERR_SIG = 13838, // (0x360E) Error processing Signature payload. ERROR_IPSEC_IKE_PROCESS_ERR_NONCE = 13839, // (0x360F) Error processing Nonce payload. ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY = 13840, // (0x3610) Error processing Notify payload. ERROR_IPSEC_IKE_PROCESS_ERR_DELETE = 13841, // (0x3611) Error processing Delete Payload. ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR = 13842, // (0x3612) Error processing VendorId payload. ERROR_IPSEC_IKE_INVALID_PAYLOAD = 13843, // (0x3613) Invalid payload received. ERROR_IPSEC_IKE_LOAD_SOFT_SA = 13844, // (0x3614) Soft SA loaded. ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN = 13845, // (0x3615) Soft SA torn down. ERROR_IPSEC_IKE_INVALID_COOKIE = 13846, // (0x3616) Invalid cookie received. ERROR_IPSEC_IKE_NO_PEER_CERT = 13847, // (0x3617) Peer failed to send valid machine certificate. ERROR_IPSEC_IKE_PEER_CRL_FAILED = 13848, // (0x3618) Certification Revocation check of peer’s certificate failed. ERROR_IPSEC_IKE_POLICY_CHANGE = 13849, // (0x3619) New policy invalidated SAs formed with old policy. ERROR_IPSEC_IKE_NO_MM_POLICY = 13850, // (0x361A) There is no available Main Mode IKE policy. ERROR_IPSEC_IKE_NOTCBPRIV = 13851, // (0x361B) Failed to enabled TCB privilege. ERROR_IPSEC_IKE_SECLOADFAIL = 13852, // (0x361C) Failed to load SECURITY.DLL. ERROR_IPSEC_IKE_FAILSSPINIT = 13853, // (0x361D) Failed to obtain security function table dispatch address from SSPI. ERROR_IPSEC_IKE_FAILQUERYSSP = 13854, // (0x361E) Failed to query Kerberos package to obtain max token size. ERROR_IPSEC_IKE_SRVACQFAIL = 13855, // (0x361F) Failed to obtain Kerberos server credentials for ISAKMP/ERROR_IPSEC_IKE service. Kerberos authentication will not function. The most likely reason for this is lack of domain membership. This is normal if your computer is a member of a workgroup. ERROR_IPSEC_IKE_SRVQUERYCRED = 13856, // (0x3620) Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service, // (QueryCredentialsAttributes). ERROR_IPSEC_IKE_GETSPIFAIL = 13857, // (0x3621) Failed to obtain new SPI for the inbound SA from IPsec driver. The most common cause for this is that the driver does not have the correct filter. Check your policy to verify the filters. ERROR_IPSEC_IKE_INVALID_FILTER = 13858, // (0x3622) Given filter is invalid. ERROR_IPSEC_IKE_OUT_OF_MEMORY = 13859, // (0x3623) Memory allocation failed. ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED = 13860, // (0x3624) Failed to add Security Association to IPsec Driver. The most common cause for this is if the IKE negotiation took too long to complete. If the problem persists, reduce the load on the faulting machine. ERROR_IPSEC_IKE_INVALID_POLICY = 13861, // (0x3625) Invalid policy. ERROR_IPSEC_IKE_UNKNOWN_DOI = 13862, // (0x3626) Invalid DOI. ERROR_IPSEC_IKE_INVALID_SITUATION = 13863, // (0x3627) Invalid situation. ERROR_IPSEC_IKE_DH_FAILURE = 13864, // (0x3628) Diffie-Hellman failure. ERROR_IPSEC_IKE_INVALID_GROUP = 13865, // (0x3629) Invalid Diffie-Hellman group. ERROR_IPSEC_IKE_ENCRYPT = 13866, // (0x362A) Error encrypting payload. ERROR_IPSEC_IKE_DECRYPT = 13867, // (0x362B) Error decrypting payload. ERROR_IPSEC_IKE_POLICY_MATCH = 13868, // (0x362C) Policy match error. ERROR_IPSEC_IKE_UNSUPPORTED_ID = 13869, // (0x362D) Unsupported ID. ERROR_IPSEC_IKE_INVALID_HASH = 13870, // (0x362E) Hash verification failed. ERROR_IPSEC_IKE_INVALID_HASH_ALG = 13871, // (0x362F) Invalid hash algorithm. ERROR_IPSEC_IKE_INVALID_HASH_SIZE = 13872, // (0x3630) Invalid hash size. ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG = 13873, // (0x3631) Invalid encryption algorithm. ERROR_IPSEC_IKE_INVALID_AUTH_ALG = 13874, // (0x3632) Invalid authentication algorithm. ERROR_IPSEC_IKE_INVALID_SIG = 13875, // (0x3633) Invalid certificate signature. ERROR_IPSEC_IKE_LOAD_FAILED = 13876, // (0x3634) Load failed. ERROR_IPSEC_IKE_RPC_DELETE = 13877, // (0x3635) Deleted via RPC call. ERROR_IPSEC_IKE_BENIGN_REINIT = 13878, // (0x3636) Temporary state created to perform reinitialization. This is not a real failure. ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY = 13879, // (0x3637) The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value. Please fix the policy on the peer machine. ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION = 13880, // (0x3638) The recipient cannot handle version of IKE specified in the header. ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN = 13881, // (0x3639) Key length in certificate is too small for configured security requirements. ERROR_IPSEC_IKE_MM_LIMIT = 13882, // (0x363A) Max number of established MM SAs to peer exceeded. ERROR_IPSEC_IKE_NEGOTIATION_DISABLED = 13883, // (0x363B) IKE received a policy that disables negotiation. ERROR_IPSEC_IKE_QM_LIMIT = 13884, // (0x363C) Reached maximum quick mode limit for the main mode. New main mode will be started. ERROR_IPSEC_IKE_MM_EXPIRED = 13885, // (0x363D) Main mode SA lifetime expired or peer sent a main mode delete. ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID = 13886, // (0x363E) Main mode SA assumed to be invalid because peer stopped responding. ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH = 13887, // (0x363F) Certificate doesn’t chain to a trusted root in IPsec policy. ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID = 13888, // (0x3640) Received unexpected message ID. ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD = 13889, // (0x3641) Received invalid authentication offers. ERROR_IPSEC_IKE_DOS_COOKIE_SENT = 13890, // (0x3642) Sent DoS cookie notify to initiator. ERROR_IPSEC_IKE_SHUTTING_DOWN = 13891, // (0x3643) IKE service is shutting down. ERROR_IPSEC_IKE_CGA_AUTH_FAILED = 13892, // (0x3644) Could not verify binding between CGA address and certificate. ERROR_IPSEC_IKE_PROCESS_ERR_NATOA = 13893, // (0x3645) Error processing NatOA payload. ERROR_IPSEC_IKE_INVALID_MM_FOR_QM = 13894, // (0x3646) Parameters of the main mode are invalid for this quick mode. ERROR_IPSEC_IKE_QM_EXPIRED = 13895, // (0x3647) Quick mode SA was expired by IPsec driver. ERROR_IPSEC_IKE_TOO_MANY_FILTERS = 13896, // (0x3648) Too many dynamically added IKEEXT filters were detected. ERROR_IPSEC_IKE_NEG_STATUS_END = 13897, // (0x3649) ERROR_IPSEC_IKE_NEG_STATUS_END ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL = 13898, // (0x364A) NAP reauth succeeded and must delete the dummy NAP IKEv2 tunnel. ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE = 13899, // (0x364B) Error in assigning inner IP address to initiator in tunnel mode. ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING = 13900, // (0x364C) Require configuration payload missing. ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING = 13901, // (0x364D) A negotiation running as the security principle who issued the connection is in progress. ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS = 13902, // (0x364E) SA was deleted due to IKEv1/AuthIP co-existence suppress check. ERROR_IPSEC_IKE_RATELIMIT_DROP = 13903, // (0x364F) Incoming SA request was dropped due to peer IP address rate limiting. ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE = 13904, // (0x3650) Peer does not support MOBIKE. ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE = 13905, // (0x3651) SA establishment is not authorized. ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE = 13906, // (0x3652) SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential. ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY = 13907, // (0x3653) SA establishment is not authorized. You may need to enter updated or different credentials such as a smartcard. ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE = 13908, // (0x3654) SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential. This might be related to certificate-to-account mapping failure for the SA. ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END = 13909, // (0x3655) ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END ERROR_IPSEC_BAD_SPI = 13910, // (0x3656) The SPI in the packet does not match a valid IPsec SA. ERROR_IPSEC_SA_LIFETIME_EXPIRED = 13911, // (0x3657) Packet was received on an IPsec SA whose lifetime has expired. ERROR_IPSEC_WRONG_SA = 13912, // (0x3658) Packet was received on an IPsec SA that does not match the packet characteristics. ERROR_IPSEC_REPLAY_CHECK_FAILED = 13913, // (0x3659) Packet sequence number replay check failed. ERROR_IPSEC_INVALID_PACKET = 13914, // (0x365A) IPsec header and/or trailer in the packet is invalid. ERROR_IPSEC_INTEGRITY_CHECK_FAILED = 13915, // (0x365B) IPsec integrity check failed. ERROR_IPSEC_CLEAR_TEXT_DROP = 13916, // (0x365C) IPsec dropped a clear text packet. ERROR_IPSEC_AUTH_FIREWALL_DROP = 13917, // (0x365D) IPsec dropped an incoming ESP packet in authenticated firewall mode. This drop is benign. ERROR_IPSEC_THROTTLE_DROP = 13918, // (0x365E) IPsec dropped a packet due to DoS throttling. ERROR_IPSEC_DOSP_BLOCK = 13925, // (0x3665) IPsec DoS Protection matched an explicit block rule. ERROR_IPSEC_DOSP_RECEIVED_MULTICAST = 13926, // (0x3666) IPsec DoS Protection received an IPsec specific multicast packet which is not allowed. ERROR_IPSEC_DOSP_INVALID_PACKET = 13927, // (0x3667) IPsec DoS Protection received an incorrectly formatted packet. ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED = 13928, // (0x3668) IPsec DoS Protection failed to look up state. ERROR_IPSEC_DOSP_MAX_ENTRIES = 13929, // (0x3669) IPsec DoS Protection failed to create state because the maximum number of entries allowed by policy has been reached. ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED = 13930, // (0x366A) IPsec DoS Protection received an IPsec negotiation packet for a keying module which is not allowed by policy. ERROR_IPSEC_DOSP_NOT_INSTALLED = 13931, // (0x366B) IPsec DoS Protection has not been enabled. ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES = 13932, // (0x366C) IPsec DoS Protection failed to create a per internal IP rate limit queue because the maximum number of queues allowed by policy has been reached. ERROR_SXS_SECTION_NOT_FOUND = 14000, // (0x36B0) The requested section was not present in the activation context. ERROR_SXS_CANT_GEN_ACTCTX = 14001, // (0x36B1) The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe tool for more detail. ERROR_SXS_INVALID_ACTCTXDATA_FORMAT = 14002, // (0x36B2) The application binding data format is invalid. ERROR_SXS_ASSEMBLY_NOT_FOUND = 14003, // (0x36B3) The referenced assembly is not installed on your system. ERROR_SXS_MANIFEST_FORMAT_ERROR = 14004, // (0x36B4) The manifest file does not begin with the required tag and format information. ERROR_SXS_MANIFEST_PARSE_ERROR = 14005, // (0x36B5) The manifest file contains one or more syntax errors. ERROR_SXS_ACTIVATION_CONTEXT_DISABLED = 14006, // (0x36B6) The application attempted to activate a disabled activation context. ERROR_SXS_KEY_NOT_FOUND = 14007, // (0x36B7) The requested lookup key was not found in any active activation context. ERROR_SXS_VERSION_CONFLICT = 14008, // (0x36B8) A component version required by the application conflicts with another component version already active. ERROR_SXS_WRONG_SECTION_TYPE = 14009, // (0x36B9) The type requested activation context section does not match the query API used. ERROR_SXS_THREAD_QUERIES_DISABLED = 14010, // (0x36BA) Lack of system resources has required isolated activation to be disabled for the current thread of execution. ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET = 14011, // (0x36BB) An attempt to set the process default activation context failed because the process default activation context was already set. ERROR_SXS_UNKNOWN_ENCODING_GROUP = 14012, // (0x36BC) The encoding group identifier specified is not recognized. ERROR_SXS_UNKNOWN_ENCODING = 14013, // (0x36BD) The encoding requested is not recognized. ERROR_SXS_INVALID_XML_NAMESPACE_URI = 14014, // (0x36BE) The manifest contains a reference to an invalid URI. ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED = 14015, // (0x36BF) The application manifest contains a reference to a dependent assembly which is not installed. ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED = 14016, // (0x36C0) The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed. ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE = 14017, // (0x36C1) The manifest contains an attribute for the assembly identity which is not valid. ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE = 14018, // (0x36C2) The manifest is missing the required default namespace specification on the assembly element. ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE = 14019, // (0x36C3) The manifest has a default namespace specified on the assembly element but its value is not «urn:schemas-microsoft-com:asm.v1». ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT = 14020, // (0x36C4) The private manifest probed has crossed a path with an unsupported reparse point. ERROR_SXS_DUPLICATE_DLL_NAME = 14021, // (0x36C5) Two or more components referenced directly or indirectly by the application manifest have files by the same name. ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME = 14022, // (0x36C6) Two or more components referenced directly or indirectly by the application manifest have window classes with the same name. ERROR_SXS_DUPLICATE_CLSID = 14023, // (0x36C7) Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs. ERROR_SXS_DUPLICATE_IID = 14024, // (0x36C8) Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs. ERROR_SXS_DUPLICATE_TLBID = 14025, // (0x36C9) Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs. ERROR_SXS_DUPLICATE_PROGID = 14026, // (0x36CA) Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs. ERROR_SXS_DUPLICATE_ASSEMBLY_NAME = 14027, // (0x36CB) Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted. ERROR_SXS_FILE_HASH_MISMATCH = 14028, // (0x36CC) A component’s file does not match the verification information present in the component manifest. ERROR_SXS_POLICY_PARSE_ERROR = 14029, // (0x36CD) The policy manifest contains one or more syntax errors. ERROR_SXS_XML_E_MISSINGQUOTE = 14030, // (0x36CE) Manifest Parse Error : A string literal was expected, but no opening quote character was found. ERROR_SXS_XML_E_COMMENTSYNTAX = 14031, // (0x36CF) Manifest Parse Error : Incorrect syntax was used in a comment. ERROR_SXS_XML_E_BADSTARTNAMECHAR = 14032, // (0x36D0) Manifest Parse Error : A name was started with an invalid character. ERROR_SXS_XML_E_BADNAMECHAR = 14033, // (0x36D1) Manifest Parse Error : A name contained an invalid character. ERROR_SXS_XML_E_BADCHARINSTRING = 14034, // (0x36D2) Manifest Parse Error : A string literal contained an invalid character. ERROR_SXS_XML_E_XMLDECLSYNTAX = 14035, // (0x36D3) Manifest Parse Error : Invalid syntax for an xml declaration. ERROR_SXS_XML_E_BADCHARDATA = 14036, // (0x36D4) Manifest Parse Error : An Invalid character was found in text content. ERROR_SXS_XML_E_MISSINGWHITESPACE = 14037, // (0x36D5) Manifest Parse Error : Required white space was missing. ERROR_SXS_XML_E_EXPECTINGTAGEND = 14038, // (0x36D6) Manifest Parse Error : The character ‘>’ was expected. ERROR_SXS_XML_E_MISSINGSEMICOLON = 14039, // (0x36D7) Manifest Parse Error : A semi colon character was expected. ERROR_SXS_XML_E_UNBALANCEDPAREN = 14040, // (0x36D8) Manifest Parse Error : Unbalanced parentheses. ERROR_SXS_XML_E_INTERNALERROR = 14041, // (0x36D9) Manifest Parse Error : Internal error. ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE = 14042, // (0x36DA) Manifest Parse Error : Whitespace is not allowed at this location. ERROR_SXS_XML_E_INCOMPLETE_ENCODING = 14043, // (0x36DB) Manifest Parse Error : End of file reached in invalid state for current encoding. ERROR_SXS_XML_E_MISSING_PAREN = 14044, // (0x36DC) Manifest Parse Error : Missing parenthesis. ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE = 14045, // (0x36DD) Manifest Parse Error : A single or double closing quote character, // (‘ or «) is missing. ERROR_SXS_XML_E_MULTIPLE_COLONS = 14046, // (0x36DE) Manifest Parse Error : Multiple colons are not allowed in a name. ERROR_SXS_XML_E_INVALID_DECIMAL = 14047, // (0x36DF) Manifest Parse Error : Invalid character for decimal digit. ERROR_SXS_XML_E_INVALID_HEXIDECIMAL = 14048, // (0x36E0) Manifest Parse Error : Invalid character for hexadecimal digit. ERROR_SXS_XML_E_INVALID_UNICODE = 14049, // (0x36E1) Manifest Parse Error : Invalid unicode character value for this platform. ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK = 14050, // (0x36E2) Manifest Parse Error : Expecting whitespace or ‘?’. ERROR_SXS_XML_E_UNEXPECTEDENDTAG = 14051, // (0x36E3) Manifest Parse Error : End tag was not expected at this location. ERROR_SXS_XML_E_UNCLOSEDTAG = 14052, // (0x36E4) Manifest Parse Error : The following tags were not closed: %1. ERROR_SXS_XML_E_DUPLICATEATTRIBUTE = 14053, // (0x36E5) Manifest Parse Error : Duplicate attribute. ERROR_SXS_XML_E_MULTIPLEROOTS = 14054, // (0x36E6) Manifest Parse Error : Only one top level element is allowed in an XML document. ERROR_SXS_XML_E_INVALIDATROOTLEVEL = 14055, // (0x36E7) Manifest Parse Error : Invalid at the top level of the document. ERROR_SXS_XML_E_BADXMLDECL = 14056, // (0x36E8) Manifest Parse Error : Invalid xml declaration. ERROR_SXS_XML_E_MISSINGROOT = 14057, // (0x36E9) Manifest Parse Error : XML document must have a top level element. ERROR_SXS_XML_E_UNEXPECTEDEOF = 14058, // (0x36EA) Manifest Parse Error : Unexpected end of file. ERROR_SXS_XML_E_BADPEREFINSUBSET = 14059, // (0x36EB) Manifest Parse Error : Parameter entities cannot be used inside markup declarations in an internal subset. ERROR_SXS_XML_E_UNCLOSEDSTARTTAG = 14060, // (0x36EC) Manifest Parse Error : Element was not closed. ERROR_SXS_XML_E_UNCLOSEDENDTAG = 14061, // (0x36ED) Manifest Parse Error : End element was missing the character ‘>’. ERROR_SXS_XML_E_UNCLOSEDSTRING = 14062, // (0x36EE) Manifest Parse Error : A string literal was not closed. ERROR_SXS_XML_E_UNCLOSEDCOMMENT = 14063, // (0x36EF) Manifest Parse Error : A comment was not closed. ERROR_SXS_XML_E_UNCLOSEDDECL = 14064, // (0x36F0) Manifest Parse Error : A declaration was not closed. ERROR_SXS_XML_E_UNCLOSEDCDATA = 14065, // (0x36F1) Manifest Parse Error : A CDATA section was not closed. ERROR_SXS_XML_E_RESERVEDNAMESPACE = 14066, // (0x36F2) Manifest Parse Error : The namespace prefix is not allowed to start with the reserved string «xml». ERROR_SXS_XML_E_INVALIDENCODING = 14067, // (0x36F3) Manifest Parse Error : System does not support the specified encoding. ERROR_SXS_XML_E_INVALIDSWITCH = 14068, // (0x36F4) Manifest Parse Error : Switch from current encoding to specified encoding not supported. ERROR_SXS_XML_E_BADXMLCASE = 14069, // (0x36F5) Manifest Parse Error : The name ‘xml’ is reserved and must be lower case. ERROR_SXS_XML_E_INVALID_STANDALONE = 14070, // (0x36F6) Manifest Parse Error : The standalone attribute must have the value ‘yes’ or ‘no’. ERROR_SXS_XML_E_UNEXPECTED_STANDALONE = 14071, // (0x36F7) Manifest Parse Error : The standalone attribute cannot be used in external entities. ERROR_SXS_XML_E_INVALID_VERSION = 14072, // (0x36F8) Manifest Parse Error : Invalid version number. ERROR_SXS_XML_E_MISSINGEQUALS = 14073, // (0x36F9) Manifest Parse Error : Missing equals sign between attribute and attribute value. ERROR_SXS_PROTECTION_RECOVERY_FAILED = 14074, // (0x36FA) Assembly Protection Error : Unable to recover the specified assembly. ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT = 14075, // (0x36FB) Assembly Protection Error : The public key for an assembly was too short to be allowed. ERROR_SXS_PROTECTION_CATALOG_NOT_VALID = 14076, // (0x36FC) Assembly Protection Error : The catalog for an assembly is not valid, or does not match the assembly’s manifest. ERROR_SXS_UNTRANSLATABLE_HRESULT = 14077, // (0x36FD) An HRESULT could not be translated to a corresponding Win32 error code. ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING = 14078, // (0x36FE) Assembly Protection Error : The catalog for an assembly is missing. ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE = 14079, // (0x36FF) The supplied assembly identity is missing one or more attributes which must be present in this context. ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME = 14080, // (0x3700) The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names. ERROR_SXS_ASSEMBLY_MISSING = 14081, // (0x3701) The referenced assembly could not be found. ERROR_SXS_CORRUPT_ACTIVATION_STACK = 14082, // (0x3702) The activation context activation stack for the running thread of execution is corrupt. ERROR_SXS_CORRUPTION = 14083, // (0x3703) The application isolation metadata for this process or thread has become corrupt. ERROR_SXS_EARLY_DEACTIVATION = 14084, // (0x3704) The activation context being deactivated is not the most recently activated one. ERROR_SXS_INVALID_DEACTIVATION = 14085, // (0x3705) The activation context being deactivated is not active for the current thread of execution. ERROR_SXS_MULTIPLE_DEACTIVATION = 14086, // (0x3706) The activation context being deactivated has already been deactivated. ERROR_SXS_PROCESS_TERMINATION_REQUESTED = 14087, // (0x3707) A component used by the isolation facility has requested to terminate the process. ERROR_SXS_RELEASE_ACTIVATION_CONTEXT = 14088, // (0x3708) A kernel mode component is releasing a reference on an activation context. ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY = 14089, // (0x3709) The activation context of system default assembly could not be generated. ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE = 14090, // (0x370A) The value of an attribute in an identity is not within the legal range. ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME = 14091, // (0x370B) The name of an attribute in an identity is not within the legal range. ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE = 14092, // (0x370C) An identity contains two definitions for the same attribute. ERROR_SXS_IDENTITY_PARSE_ERROR = 14093, // (0x370D) The identity string is malformed. This may be due to a trailing comma, more than two unnamed attributes, missing attribute name or missing attribute value. ERROR_MALFORMED_SUBSTITUTION_STRING = 14094, // (0x370E) A string containing localized substitutable content was malformed. Either a dollar sign, // ($) was followed by something other than a left parenthesis or another dollar sign or an substitution’s right parenthesis was not found. ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN = 14095, // (0x370F) The public key token does not correspond to the public key specified. ERROR_UNMAPPED_SUBSTITUTION_STRING = 14096, // (0x3710) A substitution string had no mapping. ERROR_SXS_ASSEMBLY_NOT_LOCKED = 14097, // (0x3711) The component must be locked before making the request. ERROR_SXS_COMPONENT_STORE_CORRUPT = 14098, // (0x3712) The component store has been corrupted. ERROR_ADVANCED_INSTALLER_FAILED = 14099, // (0x3713) An advanced installer failed during setup or servicing. ERROR_XML_ENCODING_MISMATCH = 14100, // (0x3714) The character encoding in the XML declaration did not match the encoding used in the document. ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT = 14101, // (0x3715) The identities of the manifests are identical but their contents are different. ERROR_SXS_IDENTITIES_DIFFERENT = 14102, // (0x3716) The component identities are different. ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT = 14103, // (0x3717) The assembly is not a deployment. ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY = 14104, // (0x3718) The file is not a part of the assembly. ERROR_SXS_MANIFEST_TOO_BIG = 14105, // (0x3719) The size of the manifest exceeds the maximum allowed. ERROR_SXS_SETTING_NOT_REGISTERED = 14106, // (0x371A) The setting is not registered. ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE = 14107, // (0x371B) One or more required members of the transaction are not present. ERROR_SMI_PRIMITIVE_INSTALLER_FAILED = 14108, // (0x371C) The SMI primitive installer failed during setup or servicing. ERROR_GENERIC_COMMAND_FAILED = 14109, // (0x371D) A generic command executable returned a result that indicates failure. ERROR_SXS_FILE_HASH_MISSING = 14110, // (0x371E) A component is missing file verification information in its manifest. ERROR_EVT_INVALID_CHANNEL_PATH = 15000, // (0x3A98) The specified channel path is invalid. ERROR_EVT_INVALID_QUERY = 15001, // (0x3A99) The specified query is invalid. ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND = 15002, // (0x3A9A) The publisher metadata cannot be found in the resource. ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND = 15003, // (0x3A9B) The template for an event definition cannot be found in the resource, // (error = %1). ERROR_EVT_INVALID_PUBLISHER_NAME = 15004, // (0x3A9C) The specified publisher name is invalid. ERROR_EVT_INVALID_EVENT_DATA = 15005, // (0x3A9D) The event data raised by the publisher is not compatible with the event template definition in the publisher’s manifest. ERROR_EVT_CHANNEL_NOT_FOUND = 15007, // (0x3A9F) The specified channel could not be found. Check channel configuration. ERROR_EVT_MALFORMED_XML_TEXT = 15008, // (0x3AA0) The specified xml text was not well-formed. See Extended Error for more details. ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL = 15009, // (0x3AA1) The caller is trying to subscribe to a direct channel which is not allowed. The events for a direct channel go directly to a logfile and cannot be subscribed to. ERROR_EVT_CONFIGURATION_ERROR = 15010, // (0x3AA2) Configuration error. ERROR_EVT_QUERY_RESULT_STALE = 15011, // (0x3AA3) The query result is stale / invalid. This may be due to the log being cleared or rolling over after the query result was created. Users should handle this code by releasing the query result object and reissuing the query. ERROR_EVT_QUERY_RESULT_INVALID_POSITION = 15012, // (0x3AA4) Query result is currently at an invalid position. ERROR_EVT_NON_VALIDATING_MSXML = 15013, // (0x3AA5) Registered MSXML doesn’t support validation. ERROR_EVT_FILTER_ALREADYSCOPED = 15014, // (0x3AA6) An expression can only be followed by a change of scope operation if it itself evaluates to a node set and is not already part of some other change of scope operation. ERROR_EVT_FILTER_NOTELTSET = 15015, // (0x3AA7) Can’t perform a step operation from a term that does not represent an element set. ERROR_EVT_FILTER_INVARG = 15016, // (0x3AA8) Left hand side arguments to binary operators must be either attributes, nodes or variables and right hand side arguments must be constants. ERROR_EVT_FILTER_INVTEST = 15017, // (0x3AA9) A step operation must involve either a node test or, in the case of a predicate, an algebraic expression against which to test each node in the node set identified by the preceeding node set can be evaluated. ERROR_EVT_FILTER_INVTYPE = 15018, // (0x3AAA) This data type is currently unsupported. ERROR_EVT_FILTER_PARSEERR = 15019, // (0x3AAB) A syntax error occurred at position %1!d!. ERROR_EVT_FILTER_UNSUPPORTEDOP = 15020, // (0x3AAC) This operator is unsupported by this implementation of the filter. ERROR_EVT_FILTER_UNEXPECTEDTOKEN = 15021, // (0x3AAD) The token encountered was unexpected. ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL = 15022, // (0x3AAE) The requested operation cannot be performed over an enabled direct channel. The channel must first be disabled before performing the requested operation. ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE = 15023, // (0x3AAF) Channel property %1!s! contains invalid value. The value has invalid type, is outside of valid range, can’t be updated or is not supported by this type of channel. ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE = 15024, // (0x3AB0) Publisher property %1!s! contains invalid value. The value has invalid type, is outside of valid range, can’t be updated or is not supported by this type of publisher. ERROR_EVT_CHANNEL_CANNOT_ACTIVATE = 15025, // (0x3AB1) The channel fails to activate. ERROR_EVT_FILTER_TOO_COMPLEX = 15026, // (0x3AB2) The xpath expression exceeded supported complexity. Please symplify it or split it into two or more simple expressions. ERROR_EVT_MESSAGE_NOT_FOUND = 15027, // (0x3AB3) the message resource is present but the message is not found in the string/message table. ERROR_EVT_MESSAGE_ID_NOT_FOUND = 15028, // (0x3AB4) The message id for the desired message could not be found. ERROR_EVT_UNRESOLVED_VALUE_INSERT = 15029, // (0x3AB5) The substitution string for insert index, // (%1) could not be found. ERROR_EVT_UNRESOLVED_PARAMETER_INSERT = 15030, // (0x3AB6) The description string for parameter reference, // (%1) could not be found. ERROR_EVT_MAX_INSERTS_REACHED = 15031, // (0x3AB7) The maximum number of replacements has been reached. ERROR_EVT_EVENT_DEFINITION_NOT_FOUND = 15032, // (0x3AB8) The event definition could not be found for event id, // (%1). ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND = 15033, // (0x3AB9) The locale specific resource for the desired message is not present. ERROR_EVT_VERSION_TOO_OLD = 15034, // (0x3ABA) The resource is too old to be compatible. ERROR_EVT_VERSION_TOO_NEW = 15035, // (0x3ABB) The resource is too new to be compatible. ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY = 15036, // (0x3ABC) The channel at index %1!d! of the query can’t be opened. ERROR_EVT_PUBLISHER_DISABLED = 15037, // (0x3ABD) The publisher has been disabled and its resource is not available. This usually occurs when the publisher is in the process of being uninstalled or upgraded. ERROR_EVT_FILTER_OUT_OF_RANGE = 15038, // (0x3ABE) Attempted to create a numeric type that is outside of its valid range. ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE = 15080, // (0x3AE8) The subscription fails to activate. ERROR_EC_LOG_DISABLED = 15081, // (0x3AE9) The log of the subscription is in disabled state, and can not be used to forward events to. The log must first be enabled before the subscription can be activated. ERROR_EC_CIRCULAR_FORWARDING = 15082, // (0x3AEA) When forwarding events from local machine to itself, the query of the subscription can’t contain target log of the subscription. ERROR_EC_CREDSTORE_FULL = 15083, // (0x3AEB) The credential store that is used to save credentials is full. ERROR_EC_CRED_NOT_FOUND = 15084, // (0x3AEC) The credential used by this subscription can’t be found in credential store. ERROR_EC_NO_ACTIVE_CHANNEL = 15085, // (0x3AED) No active channel is found for the query. ERROR_MUI_FILE_NOT_FOUND = 15100, // (0x3AFC) The resource loader failed to find MUI file. ERROR_MUI_INVALID_FILE = 15101, // (0x3AFD) The resource loader failed to load MUI file because the file fail to pass validation. ERROR_MUI_INVALID_RC_CONFIG = 15102, // (0x3AFE) The RC Manifest is corrupted with garbage data or unsupported version or missing required item. ERROR_MUI_INVALID_LOCALE_NAME = 15103, // (0x3AFF) The RC Manifest has invalid culture name. ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME = 15104, // (0x3B00) The RC Manifest has invalid ultimatefallback name. ERROR_MUI_FILE_NOT_LOADED = 15105, // (0x3B01) The resource loader cache doesn’t have loaded MUI entry. ERROR_RESOURCE_ENUM_USER_STOP = 15106, // (0x3B02) User stopped resource enumeration. ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED = 15107, // (0x3B03) UI language installation failed. ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME = 15108, // (0x3B04) Locale installation failed. ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE = 15110, // (0x3B06) A resource does not have default or neutral value. ERROR_MRM_INVALID_PRICONFIG = 15111, // (0x3B07) Invalid PRI config file. ERROR_MRM_INVALID_FILE_TYPE = 15112, // (0x3B08) Invalid file type. ERROR_MRM_UNKNOWN_QUALIFIER = 15113, // (0x3B09) Unknown qualifier. ERROR_MRM_INVALID_QUALIFIER_VALUE = 15114, // (0x3B0A) Invalid qualifier value. ERROR_MRM_NO_CANDIDATE = 15115, // (0x3B0B) No Candidate found. ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE = 15116, // (0x3B0C) The ResourceMap or NamedResource has an item that does not have default or neutral resource.. ERROR_MRM_RESOURCE_TYPE_MISMATCH = 15117, // (0x3B0D) Invalid ResourceCandidate type. ERROR_MRM_DUPLICATE_MAP_NAME = 15118, // (0x3B0E) Duplicate Resource Map. ERROR_MRM_DUPLICATE_ENTRY = 15119, // (0x3B0F) Duplicate Entry. ERROR_MRM_INVALID_RESOURCE_IDENTIFIER = 15120, // (0x3B10) Invalid Resource Identifier. ERROR_MRM_FILEPATH_TOO_LONG = 15121, // (0x3B11) Filepath too long. ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE = 15122, // (0x3B12) Unsupported directory type. ERROR_MRM_INVALID_PRI_FILE = 15126, // (0x3B16) Invalid PRI File. ERROR_MRM_NAMED_RESOURCE_NOT_FOUND = 15127, // (0x3B17) NamedResource Not Found. ERROR_MRM_MAP_NOT_FOUND = 15135, // (0x3B1F) ResourceMap Not Found. ERROR_MRM_UNSUPPORTED_PROFILE_TYPE = 15136, // (0x3B20) Unsupported MRT profile type. ERROR_MRM_INVALID_QUALIFIER_OPERATOR = 15137, // (0x3B21) Invalid qualifier operator. ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE = 15138, // (0x3B22) Unable to determine qualifier value or qualifier value has not been set. ERROR_MRM_AUTOMERGE_ENABLED = 15139, // (0x3B23) Automerge is enabled in the PRI file. ERROR_MRM_TOO_MANY_RESOURCES = 15140, // (0x3B24) Too many resources defined for package. ERROR_MCA_INVALID_CAPABILITIES_STRING = 15200, // (0x3B60) The monitor returned a DDC/CI capabilities string that did not comply with the ACCESS.bus 3.0, DDC/CI 1.1 or MCCS 2 Revision 1 specification. ERROR_MCA_INVALID_VCP_VERSION = 15201, // (0x3B61) The monitor’s VCP Version, // (0xDF) VCP code returned an invalid version value. ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION = 15202, // (0x3B62) The monitor does not comply with the MCCS specification it claims to support. ERROR_MCA_MCCS_VERSION_MISMATCH = 15203, // (0x3B63) The MCCS version in a monitor’s mccs_ver capability does not match the MCCS version the monitor reports when the VCP Version, // (0xDF) VCP code is used. ERROR_MCA_UNSUPPORTED_MCCS_VERSION = 15204, // (0x3B64) The Monitor Configuration API only works with monitors that support the MCCS 1.0 specification, MCCS 2.0 specification or the MCCS 2.0 Revision 1 specification. ERROR_MCA_INTERNAL_ERROR = 15205, // (0x3B65) An internal Monitor Configuration API error occurred. ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED = 15206, // (0x3B66) The monitor returned an invalid monitor technology type. CRT, Plasma and LCD, // (TFT) are examples of monitor technology types. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification. ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE = 15207, // (0x3B67) The caller of SetMonitorColorTemperature specified a color temperature that the current monitor did not support. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification. ERROR_AMBIGUOUS_SYSTEM_DEVICE = 15250, // (0x3B92) The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria. ERROR_SYSTEM_DEVICE_NOT_FOUND = 15299, // (0x3BC3) The requested system device cannot be found. ERROR_HASH_NOT_SUPPORTED = 15300, // (0x3BC4) Hash generation for the specified hash version and hash type is not enabled on the server. ERROR_HASH_NOT_PRESENT = 15301, // (0x3BC5) The hash requested from the server is not available or no longer valid. ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED = 15321, // (0x3BD9) The secondary interrupt controller instance that manages the specified interrupt is not registered. ERROR_GPIO_CLIENT_INFORMATION_INVALID = 15322, // (0x3BDA) The information supplied by the GPIO client driver is invalid. ERROR_GPIO_VERSION_NOT_SUPPORTED = 15323, // (0x3BDB) The version specified by the GPIO client driver is not supported. ERROR_GPIO_INVALID_REGISTRATION_PACKET = 15324, // (0x3BDC) The registration packet supplied by the GPIO client driver is not valid. ERROR_GPIO_OPERATION_DENIED = 15325, // (0x3BDD) The requested operation is not suppported for the specified handle. ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE = 15326, // (0x3BDE) The requested connect mode conflicts with an existing mode on one or more of the specified pins. ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED = 15327, // (0x3BDF) The interrupt requested to be unmasked is not masked. ERROR_CANNOT_SWITCH_RUNLEVEL = 15400, // (0x3C28) The requested run level switch cannot be completed successfully. ERROR_INVALID_RUNLEVEL_SETTING = 15401, // (0x3C29) The service has an invalid run level setting. The run level for a service must not be higher than the run level of its dependent services. ERROR_RUNLEVEL_SWITCH_TIMEOUT = 15402, // (0x3C2A) The requested run level switch cannot be completed successfully since one or more services will not stop or restart within the specified timeout. ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT = 15403, // (0x3C2B) A run level switch agent did not respond within the specified timeout. ERROR_RUNLEVEL_SWITCH_IN_PROGRESS = 15404, // (0x3C2C) A run level switch is currently in progress. ERROR_SERVICES_FAILED_AUTOSTART = 15405, // (0x3C2D) One or more services failed to start during the service startup phase of a run level switch. ERROR_COM_TASK_STOP_PENDING = 15501, // (0x3C8D) The task stop request cannot be completed immediately since task needs more time to shutdown. ERROR_INSTALL_OPEN_PACKAGE_FAILED = 15600, // (0x3CF0) Package could not be opened. ERROR_INSTALL_PACKAGE_NOT_FOUND = 15601, // (0x3CF1) Package was not found. ERROR_INSTALL_INVALID_PACKAGE = 15602, // (0x3CF2) Package data is invalid. ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED = 15603, // (0x3CF3) Package failed updates, dependency or conflict validation. ERROR_INSTALL_OUT_OF_DISK_SPACE = 15604, // (0x3CF4) There is not enough disk space on your computer. Please free up some space and try again. ERROR_INSTALL_NETWORK_FAILURE = 15605, // (0x3CF5) There was a problem downloading your product. ERROR_INSTALL_REGISTRATION_FAILURE = 15606, // (0x3CF6) Package could not be registered. ERROR_INSTALL_DEREGISTRATION_FAILURE = 15607, // (0x3CF7) Package could not be unregistered. ERROR_INSTALL_CANCEL = 15608, // (0x3CF8) User cancelled the install request. ERROR_INSTALL_FAILED = 15609, // (0x3CF9) Install failed. Please contact your software vendor. ERROR_REMOVE_FAILED = 15610, // (0x3CFA) Removal failed. Please contact your software vendor. ERROR_PACKAGE_ALREADY_EXISTS = 15611, // (0x3CFB) The provided package is already installed, and reinstallation of the package was blocked. Check the AppXDeployment-Server event log for details. ERROR_NEEDS_REMEDIATION = 15612, // (0x3CFC) The application cannot be started. Try reinstalling the application to fix the problem. ERROR_INSTALL_PREREQUISITE_FAILED = 15613, // (0x3CFD) A Prerequisite for an install could not be satisfied. ERROR_PACKAGE_REPOSITORY_CORRUPTED = 15614, // (0x3CFE) The package repository is corrupted. ERROR_INSTALL_POLICY_FAILURE = 15615, // (0x3CFF) To install this application you need either a Windows developer license or a sideloading-enabled system. ERROR_PACKAGE_UPDATING = 15616, // (0x3D00) The application cannot be started because it is currently updating. ERROR_DEPLOYMENT_BLOCKED_BY_POLICY = 15617, // (0x3D01) The package deployment operation is blocked by policy. Please contact your system administrator. ERROR_PACKAGES_IN_USE = 15618, // (0x3D02) The package could not be installed because resources it modifies are currently in use. ERROR_RECOVERY_FILE_CORRUPT = 15619, // (0x3D03) The package could not be recovered because necessary data for recovery have been corrupted. ERROR_INVALID_STAGED_SIGNATURE = 15620, // (0x3D04) The signature is invalid. To register in developer mode, AppxSignature.p7x and AppxBlockMap.xml must be valid or should not be present. ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED = 15621, // (0x3D05) An error occurred while deleting the package’s previously existing application data. ERROR_INSTALL_PACKAGE_DOWNGRADE = 15622, // (0x3D06) The package could not be installed because a higher version of this package is already installed. ERROR_SYSTEM_NEEDS_REMEDIATION = 15623, // (0x3D07) An error in a system binary was detected. Try refreshing the PC to fix the problem. ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN = 15624, // (0x3D08) A corrupted CLR NGEN binary was detected on the system. ERROR_RESILIENCY_FILE_CORRUPT = 15625, // (0x3D09) The operation could not be resumed because necessary data for recovery have been corrupted. ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING = 15626, // (0x3D0A) The package could not be installed because the Windows Firewall service is not running. Enable the Windows Firewall service and try again. APPMODEL_ERROR_NO_PACKAGE = 15700, // (0x3D54) The process has no package identity. APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT = 15701, // (0x3D55) The package runtime information is corrupted. APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT = 15702, // (0x3D56) The package identity is corrupted. APPMODEL_ERROR_NO_APPLICATION = 15703, // (0x3D57) The process has no application identity. ERROR_STATE_LOAD_STORE_FAILED = 15800, // (0x3DB8) Loading the state store failed. ERROR_STATE_GET_VERSION_FAILED = 15801, // (0x3DB9) Retrieving the state version for the application failed. ERROR_STATE_SET_VERSION_FAILED = 15802, // (0x3DBA) Setting the state version for the application failed. ERROR_STATE_STRUCTURED_RESET_FAILED = 15803, // (0x3DBB) Resetting the structured state of the application failed. ERROR_STATE_OPEN_CONTAINER_FAILED = 15804, // (0x3DBC) State Manager failed to open the container. ERROR_STATE_CREATE_CONTAINER_FAILED = 15805, // (0x3DBD) State Manager failed to create the container. ERROR_STATE_DELETE_CONTAINER_FAILED = 15806, // (0x3DBE) State Manager failed to delete the container. ERROR_STATE_READ_SETTING_FAILED = 15807, // (0x3DBF) State Manager failed to read the setting. ERROR_STATE_WRITE_SETTING_FAILED = 15808, // (0x3DC0) State Manager failed to write the setting. ERROR_STATE_DELETE_SETTING_FAILED = 15809, // (0x3DC1) State Manager failed to delete the setting. ERROR_STATE_QUERY_SETTING_FAILED = 15810, // (0x3DC2) State Manager failed to query the setting. ERROR_STATE_READ_COMPOSITE_SETTING_FAILED = 15811, // (0x3DC3) State Manager failed to read the composite setting. ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED = 15812, // (0x3DC4) State Manager failed to write the composite setting. ERROR_STATE_ENUMERATE_CONTAINER_FAILED = 15813, // (0x3DC5) State Manager failed to enumerate the containers. ERROR_STATE_ENUMERATE_SETTINGS_FAILED = 15814, // (0x3DC6) State Manager failed to enumerate the settings. ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED = 15815, // (0x3DC7) The size of the state manager composite setting value has exceeded the limit. ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED = 15816, // (0x3DC8) The size of the state manager setting value has exceeded the limit. ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED = 15817, // (0x3DC9) The length of the state manager setting name has exceeded the limit. ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED = 15818, // (0x3DCA) The length of the state manager container name has exceeded the limit. ERROR_API_UNAVAILABLE = 15841 // (0x3DE1) This API cannot be used in the context of the caller’s application type. } } }

This is a merged/compiled list of Windows Update Agent result/return/error codes.

WUA has various result codes of its own, but it also inherits from Win32, and when WUA is called by another process (e.g. System Centre Configuration Manager — Software Updates), or, itself calls another component (e.g. MSI or CBS) it can be not-so-obvious
as to the symptom vs. cause.

Troubleshooting WUA results/errors can be tricky enough, without having to hunt in multiple places for an error lookup!

Sources:

http://inetexplorer.mvps.org/archive/windows_update_codes.htm

http://technet.microsoft.com/en-us/library/bb632794.aspx#BKMK_Software_Updates

http://msdn.microsoft.com/en-us/library/ms695782(v=VS.85).aspx

http://msdn.microsoft.com/en-us/library/windows/desktop/dd542646(v=vs.85).aspx

http://support.microsoft.com/kb/938205

http://msdn.microsoft.com/en-us/library/aa385465(v=vs.85).aspx

http://msdn.microsoft.com/en-us/library/aa383770(v=vs.85).aspx

http://msdn.microsoft.com/en-us/library/windows/desktop/ms681382(v=vs.85).aspx

http://joshpoley.blogspot.com.au/2011/09/hresults-facilitywindowsupdate.html

HexError DecError Error String Description

0x00000000 -4294967296 Success

0x00000001 -4294967295 ERROR_INVALID_FUNCTION

0x0000007B -4294967173 Error_Invalid_Name The filename, directory name,or volume label syntax is incorrect

0x00000275 -4294966667 Error_cant_enable_Deny_only A group marked use for deny only can not be enabled

0x0000041D -4294966243 ERROR_SERVICE_REQUEST_TIMEOUT The service did not respond to the start or control request in a timely fashion.

0x000004C3 -4294966077 Error_Session_Credential_Conflict Multiple connections to a server or shared resource by the same user,using more than one user name, are not allowed.

0x000004C5 -4294966075 Error_Dup_Domainename The workgroup or domain name is already in use by another computer on the network.

0x000005D5 -4294965803 NULL

0x00000619 -4294965735 error_Invalid_HW_Profile The specified hardware profile configuration is invalid

0x00000641 -4294965695 Error_Install_Service_failure The Windows Installer Service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed.

0x00000643 -4294965693 ERROR_INSTALL_FAILURE Fatal error during installation

0x00000652 -4294965678 ERROR_INSTALL_ALREADY_RUNNING Another installation is already in progress. Complete that installation before proceeding with this install.

0x000006D9 -4294965543 EPT_S_Not_Registered There are no more endpoints available from the endpoint mapper.

0x000006F6 -4294965514 RPC_X_BYTE_Count_TOO_Small The byte count is too small

0x00000963 -4294964893 NERR_BADPasswordCore This share name or password is invalid

0x00000BC2 -4294964286 Error_Success_Reboot_Required

0x00000C0B -4294964213 NULL

0x00000CC4 -4294964028 NULL

0x00000D47 -4294963897 NULL

0x00000E5C -4294963620 NULL

0x00000E74 -4294963596 NULL

0x0000109F -4294963041 NULL

0x00001112 -4294962926 Error_No_Media_In_Drive No media in drive

0x0000117A -4294962822 NULL

0x00001190 -4294962800 Error_Shutdown_IS_Scheduled A system shutdown has already been scheduled

0x00001234 -4294962636 Error_Port_Unreachable No Service is operating at the destination network endpoint on the remote system

0x00001396 -4294962282 Error_Wrong_Target_Name Logon failure: The target account name is incorrect.

0x000013D7 -4294962217 Error_Cluster_restype_Note_Supported The specified node does not support a resource of this type. This amy be due to version inconsistancies or due to the absence of the resource DLL on this node.

0x00001449 -4294962103 Error_Invalid_Showwin_Command Cannot show or remove the window in the way specified

0x00001633 -4294961613 NULL

0x000017C7 -4294961209 NULL

0x000017D2 -4294961198 NULL

0x000018BE -4294960962 NULL

0x00001AD4 -4294960428 NULL

0x00001ADA -4294960422 NULL

0x00001C70 -4294960016 NULL

0x00001CE8 -4294959896 NULL

0x00001D7A -4294959750 NULL

0x00001F1D -4294959331 NULL

0x00001F59 -4294959271 NULL

0x00002075 -4294958987 NULL

0x0000229A -4294958438 NULL

0x000022CA -4294958390 NULL

0x0000230B -4294958325 NULL

0x00002685 -4294957435 NULL

0x000028A5 -4294956891 NULL

0x00002ABF -4294956353 NULL

0x00002BBE -4294956098 NULL

0x00002D49 -4294955703 NULL

0x00002DA4 -4294955612 NULL

0x00002DDC -4294955556 NULL

0x00002EBD -4294955331 NULL

0x00002ED7 -4294955305 NULL

0x000032D8 -4294954280 NULL

0x000035DD -4294953507 NULL

0x000036F8 -4294953224 NULL

0x000037A1 -4294953055 NULL

0x000037FA -4294952966 NULL

0x0000384E -4294952882 NULL

0x000038F5 -4294952715 NULL

0x0000399D -4294952547 NULL

0x00003A5C -4294952356 NULL

0x00003D16 -4294951658 NULL

0x00003E44 -4294951356 NULL

0x00004016 -4294950890 NULL

0x000040CF -4294950705 NULL

0x00004146 -4294950586 NULL

0x000041F4 -4294950412 NULL

0x0000433D -4294950083 NULL

0x000043F9 -4294949895 NULL

0x000044CC -4294949684 NULL

0x0000471E -4294949090 NULL

0x00004808 -4294948856 NULL

0x00004910 -4294948592 NULL

0x00004966 -4294948506 NULL

0x00004A65 -4294948251 NULL

0x00004BF9 -4294947847 NULL

0x00004CC2 -4294947646 NULL

0x00004D2D -4294947539 NULL

0x00004DB8 -4294947400 NULL

0x00004E90 -4294947184 NULL

0x00004FA2 -4294946910 NULL

0x00005112 -4294946542 NULL

0x000051CF -4294946353 NULL

0x00005249 -4294946231 NULL

0x00005299 -4294946151 NULL

0x0000530C -4294946036 NULL

0x000053C4 -4294945852 NULL

0x00005492 -4294945646 NULL

0x00005542 -4294945470 NULL

0x0000556E -4294945426 NULL

0x000055BC -4294945348 NULL

0x00005636 -4294945226 NULL

0x00005812 -4294944750 NULL

0x00005844 -4294944700 NULL

0x000058F7 -4294944521 NULL

0x00005A6A -4294944150 NULL

0x00005AA5 -4294944091 NULL

0x00005C0E -4294943730 NULL

0x00005FE9 -4294942743 NULL

0x00006056 -4294942634 NULL

0x0000626E -4294942098 NULL

0x000062B6 -4294942026 NULL

0x0000651F -4294941409 NULL

0x000065AA -4294941270 NULL

0x000065BA -4294941254 NULL

0x00006F50 -4294938800 NULL

0x00007052 -4294938542 NULL

0x00007190 -4294938224 NULL

0x00007617 -4294937065 NULL

0x00007747 -4294936761 NULL

0x00007865 -4294936475 NULL

0x00007B86 -4294935674 NULL

0x00007C12 -4294935534 NULL

0x00007C78 -4294935432 NULL

0x00007CE1 -4294935327 NULL

0x00007D12 -4294935278 NULL

0x00007DFF -4294935041 NULL

0x00007EC9 -4294934839 NULL

0x00007F83 -4294934653 NULL

0x00007FCC -4294934580 NULL

0x0000F06A -4294905750 NULL

0x0000F06B -4294905749 NULL

0x0000F0DA -4294905638 NULL

0x00240001 -4292607999 WU_S_SERVICE_STOP WindowsUpdate Windows Update Agent was stopped successfully

0x00240002 -4292607998 WU_S_SELFUPDATE Windows Update Agent updated itself

0x00240003 -4292607997 WU_S_UPDATE_ERROR Overall operation completed but error occurred while processing one or more specified updates.

0x00240004 -4292607996 WU_S_MARKED_FOR_DISCONNECT The caller attempted to disconnect an operation but the operation is busy calling back so the callback is marked for disconnect later

0x00240005 -4292607995 WU_S_REBOOT_REQUIRED The system needs to be rebooted to complete installation.

0x00240006 -4292607994 SUS_S_ALREADY_INSTALLED The update to be installed is already installed

0x00240007 -4292607993 WU_S_ALREADY_UNINSTALLED The update to be removed is not installed on the system

0x00240008 -4292607992 WU_S_ALREADY_DOWNLOADED The update to be downloaded is already downloaded

0x80000007 -2147483641 E_ABORT

0x80004001 -2147467263 E_NOTIMPL

0x80004002 -2147467262 E_NOINTERFACE No such interface supported

0x80004003 -2147467261 E_Pointer Invalid pointer

0x80004004 -2147467260 E_ABORT Operation Aborted

0x80004005 -2147467259 E_Fail

0x80004015 -2147467243 CO_E_WRONG_SERVER_IDENTITY The security descriptor on the BITS service was changed by a security template such that NetworkService account doesn’t have READ access to BITS service.

0x80008201 2147516929 E_NO_SPACE_IN_CACHE Out of cache space

0x80008202 2147516930 E_CACHE_TOO_SMALL Cache size is smaller than requested content’s size.

0x8000FFFF -2147418113 E_UNEXPECTED

0x80010100 -2147417856 RPC_E_SYS_CALL_FAILED

0x80010105 -2147417851 RPC_E_Serverfault

0x80010108 -2147417848 RPC_E_Disconnected

0x80040154 -2147221164 REGDB_E_CLASSNOTREG / [SA fail if SWD not working] createInstance failed for UpdateServiceManager Class not registered / BITS in Windows 2000 is dependent on SENS and EventSystem services. If COM+ catalog is corrupted, one of these errors
was seen.

0x800401F3 -2147221005 CO_E_Classstring

0x800401FD -2147220995 CO_E_Objnotconnected Object is not connected to server

0x80040206 -2147220986 EVENT_E_INTERNALERROR There will be event messages in Application/System log regarding the errors.

0x80040600 2147747328 E_FAIL_POLICY_NOT_FOUND Scan Tool Policy not found

0x80040602 2147747330 E_LOCATION_TIMEOUT Out of cache space

0x80040603 2147747331 E_SCANTOOL_POLICY_REMOVED The ScanTool Policy has been removed so cannot complete Scan Operation.

0x80040604 2147747332 E_SCANTOOL_NOTFOUND_INJOBQUEUE The ScanTool was not found in the job queue.

0x80040605 2147747333 E_FAIL_SCAN_TOOL_REMOVED Scan Tool has been Removed

0x80040606 2147747334 E_FAIL_OFFLINE_SCAN_HISTORY_NOT_FOUND Scan Tool Policy not found

0x80040607 2147747335 E_CONTENT_NOT_FOUND Out of cache space

0x80040608 2147747336 E_INVALID_INSTANCE_TYPE Out of cache space

0x80040668 -2147219864 E_INVALIDSTATE_AFTER_APPLY Software update still detected as actionable after apply.

0x80040692 -2147219822 Group Policy conflict Group Policy conflict

0x80040693 -2147219821 Low WUA version Low WUA version

0x80040700 2147747584 E_UPDDEPLOY_APPLY_NOT_ALLOWED Install not allowed

0x80040701 2147747585 E_UPDDEPLOY_DOWNLOAD_NOT_ALLOWED Download not allowed

0x80040702 2147747586 E_ASSIGNMENT_POLICY_NOT_FOUND Assignment policy not available

0x80040703 2147747587 E_ANOTHER_JOB_IN_PROGRESS Only one job is allowed at a time

0x80040704 2147747588 E_HARDREBOOT_PENDING Only one job is allowed at a time.

0x80040705 2147747589 E_PAUSE_STATE_REQUIRED Pause state required

0x80040706 2147747590 E_NO_ACTIVE_JOB No active job exists (while reconnect called).

0x80040707 2147747591 E_JOB_ID_MISMATCH Job Id mismatch (while reconnect called).

0x80040708 2147747592 E_UPDDEPLOY_APPLY_NOT_REQUIRED Software Updates Install not required.

0x80040709 2147747593 E_MONITOR_RESUME_FAILURE Failed to resume the monitoring of the process.

0x8004070A 2147747594 E_INVALID_CMDLINE Invalid command line

0x8004070B 2147747595 E_CREATEPROCESS_FAILURE Failed to create process

0x8004070C 2147747596 E_EXECUTION_TIMEOUT Software update execution timeout

0x8004070C -2147219700 E_EXECUTION_TIMEOUT Software update execution timeout

0x8004070D 2147747597 E_UPDATE_FAILED_RESULT Software update failed when attempted

0x8004070D -2147219699 ERROR_INAVILD_ENVIROMENT Software update failed when attempted.

0x8004070E 2147747598 E_EMPTY_COMMANDLINE Empty command line specified

0x8004070F 2147747599 E_INVALID_INSTALLER_PATH Invalid updates installer path

0x80040710 2147747600 E_COMPARE_CREATION_TIMES Failed to compare process creation time.

0x80040711 2147747601 E_DEPLOYMENT_NOT_ACTIVE Software updates deployment not active yet for example, start time is in future

0x80040712 2147747602 E_UPDDEPLOY_REBOOT_REQUIRED A system restart is required to complete the installation.

0x80040713 2147747603 E_NO_DETECT_RESULT Software updates detection results not received yet.

0x80040714 2147747604 E_UPDATES_USERINSTALL_RESTART_PENDING User based install not allowed as system restart is pending.

0x80040715 2147747605 E_USERINSTALL_NO_UPDATES No applicable updates specified in user install request.

0x80070001 -2147024895 ERROR_INVALID_FUNCTION

0x80070002 -2147024894 ERROR_FILE_NOT_FOUND The System cannot find the file specified

0x80070003 -2147024893 COR_E_DIRECTORYNOTFOUND The specified path couldn’t be found — ALLUSERSPROFILE Microsoft network dir doesn’t exist

0x80070003 -2147024893 ERROR_PATH_NOT_FOUND The system cannot find the path specified.

0x80070005 -2147024891 ERROR_ACCESS_DENIED or E_ACCESS_DENIED The authentication method is not supported. — CoCreateInstance(IBackgroundCopyManager) fails with E_ACCESSDENIED (0x80070005) in this condition

0x80070006 -2147024890 E_Handle Handle not valid error

0x80070008 -2147024888 ERROR_NOT_ENOUGH_MEMORY The system is out of memory.

0x8007000B -2147024885 COR_E_BADIMAGEFORMAT The format of the DLL or executable being loaded is invalid

0x8007000D -2147024883 The data is invalid.* The data is invalid.*

0x8007000E -2147024882 E_OUTOFMEMORY

0x8007000E -2147024882 [DCOM belly up] CAgent::CreateJob failed Not enough storage is available to complete this operation.

0x80070017 -2147024873 ERROR_CRC Data error (cyclic redundancy check).

0x8007001F -2147024865 ERROR_GEN_FAILURE A device attached to the system is not functioning

0x80070020 -2147024864 STIERR_SHARING_VIOLATION The process cannot access the file because it is being used by another process

0x80070032 -2147024846 ERROR_NOT_SUPPORTED

0x80070050 -2147024816 ERROR_FILE_EXISTS The file exists

0x80070052 -2147024814 ERROR_CANNOT_MAKE The directory or file cannot be created

0x80070057 -2147024809 ERROR_INVALID_PARAMENTER — E_INVALIDARG One or more arguments are not valid error — Invalid proxy server name was specified in the user’s IE settings and hence WinhttpSetProxySettings call fails with E_INVALIDARG error. BITS puts the
job in TRANSIENT_ERROR with the same error code. For ex, if the proxy server is set to http://foo/bar/proxy.pac, this error will be seen. This error is also seen when credentials are supplied such that scheme is not NTLM/Negotiate, but username/password is
NULL, since that is not valid (WinhttpSetCredentials fails with E_INVALIDARG. BITS 1.5 puts the job into ERROR state with BG_E_INVALID_RESPONSE in the above 2 cases, because of error code mapping E_INVALIDARG is always mapped to (BG_E_INVALID_SERVER_RESPONSE)

0x80070070 -2147024784 ERROR_DISK_FULL There is not enough space on the disk

0x8007007A -2147024774 ERROR_INSUFFICIENT_BUFFER

0x8007007B -2147024773 STIERR_INVALID_DEVICE_NAME

0x8007007E -2147024770 ERROR_MOD_NOT_FOUND The specified module could not be found.

0x8007007F -2147024769 ERROR_PROC_NOT_FOUND The specified procedure could not be found.

0x80070080 -2147024768 ERROR_WAIT_NO_CHILDREN There are no child processes to wait for

0x800700A1 -2147024735 ERROR_BAD_PATHNAME

0x800700B6 -2147024714 ERROR_INVALID_ORDINAL

0x800700C1 -2147024703 ERROR_BAD_EXE_FORMAT is not a valid Win32 application

0x800700E7 -2147024665 Error_Pipe_Busy All pipe instances are busy

0x80070103 -2147024637 ERROR_NO_MORE_ITEMS:

0x8007010B -2147024629 ERROR_DIRECTORY The directory name is invalid

0x8007012E -2147024594 Error_Disk_Too_Fragmented

0x800701E7 -2147024409 Error_Invalid_Address

0x800703e3 -2147023901 Error_Operation_Aborted The I/O operation has been aborted because of either a thread exit or an application request

0x800703e5 -2147023899 ERROR_IO_PENDING

0x800703E6 -2147023898 Error_Noaccess to memory location Invalid access to memory location

0x800703E7 -2147023897 Error_Swaperror Error performing inpage operation

0x800703EB -2147023893 Error_Can_Not_Complete Cannot complete this function

0x800703Ed -2147023891 ERROR_UNRECOGNIZED_VOLUME The volume does not contain a recognized file system

0x800703F0 -2147023888 ERROR_NO_TOKEN An attempt was made to reference a token that does not exist

0x8007041D -2147023843 ERROR_SERVICE_REQUEST_TIMEOUT The service did not respond to the start or control request in a timely fashion

0x8007041E -2147023842 Error_Service_No_Thread A thread could not be created for this service

0x8007041F -2147023841 ERROR_SERVICE_DATABASE_LOCKED The service database is locked

0x80070422 -2147023838 ERROR_SERVICE_DISABLED The service cannot be started. If BITS service is disabled by the Administrator, then this error will be seen.

0x80070424 -2147023836 ERROR_SERVICE_DOES_NOT_EXIST Due to a bug in BITS 1.5 OOB setup, after BITS 1.5 install, the BITS service is deleted, but the 1.5 install returns success code. BITS 1.5 binaries are copied to the machine, but the service doesn’t exist.
This can also happen if the BITS service is explicitly deleted by running the command sc delete bits

0x80070426 -2147023834 ERROR_SERVICE_NOT_ACTIVE The service has not been started

0x8007042B -2147023829 ERROR_PROCESS_ABORTED

0x8007042C -2147023828 Error_Service_Dependency_Fail

0x80070433 -2147023821 ERROR_SERVICE_DEPENDENCY_DELETED BITS service has a dependency on lanmanworkstation service in BITS 1.0 and 1.2. If “Client for Microsoft networks” network component is uninstalled, then lanmanworkstation service is deleted, but BITS
dependency will still be present. After that, BITS service fails to start

0x80070437 -2147023817 Error_Different_Service_Account

0x8007043B -2147023813 ERROR_SERVICE_NOT_IN_EXE The executable program that this service is configured to run does not implement the service. netsvcs registry value in HKLMSoftwareMicrosoftWindowsNTCurrentVersionSvchost registry key should contain the
service names that can be run in that service host. On XP and Windows 2003, BITS should be in this value. If “BITS” is missing from that value, then ERROR_SERVICE_NOT_IN_EXE error is seen when attempting to start the service

0x8007045A -2147023782 ERROR_DLL_INIT_FAILED

0x8007045B -2147023781 ERROR_SHUTDOWN_IN_PROGRESS

0x80070490 -2147023728 E_PROP_ID_UNSUPPORTED Permission denied / [Problem initializing or using session variables] or Element not found

0x800704C7 -2147023673 ERROR_CANCELLED Cancelled by user

0x800704DD -2147023651 Error_Not_Logged_On to network

0x80070502 -2147023614 Error_Stack_Buffer_Overrun The system detected an overrun of a stack-based buffer in this application

0x80070570 -2147023504 ERROR_FILE_CORRUPT

0x8007057F -2147023489 Error_Cannot_Find_WND_Class Cannot find windows class

0x8007058D -2147023475 Error_Control_ID_Not_Found

0x800705AA -2147023446 ERROR_NO_SYSTEM_RESOURCE Insufficient system resources exist to complete the requested service

0x800705AD -2147023443 Error_Working_Set_Quota Insufficient quota to complete the requested service

0x800705AF -2147023441 ERROR_COMMITMENT_LIMIT The paging file is too small for this operation to complete

0x800705B4 -2147023436 ERROR_TIMEOUT This operation returned because the timeout period expired.

0x8007064 -2147023293 ERROR_INSTALL_FAILURE Generic failure code from Windows Installer installs.

0x80070643 -2147023293 ERROR_INSTALL_FAILURE

0x80070652 -2147023278 ERROR_INSTALL_ALREADY_RUNNING ErrorClientUpdateInProgress

0x8007066A -2147023254 Error_Patch_Target_Not_Found The program to be upgraded may be missing or the patch may upgrade a different version of the program

0x8007066F -2147023249 ERROR_PATCH_NOT_APPLIED Can sometimes happen when Windows Installer configuration for an installed application is out of sequence for example, Windows Installer thinks it has more patches applied than is really the case (this sometimes
used to happen with roaming profiles).

0x800706A6 -2147023194 RPC_S_Invalid_Binding Terminal Services optional component is installed on the machine, but the “Terminal Services” service has been disabled.

0x800706B5 -2147023179 RPC_S_Unknown_IF Eventlog service is not running. BITS tries to initialize the event logger object during initialization and fails to start, if the initialization fails. If event log service is not running, then the initialization fails
with RPC_S_UNKNOWN_IF error

0x800706BA -2147023174 RPC_S_SERVER_UNAVAILABLE

0x800706BB -2147023173 RPC_S_SERVER_TOO_BUSY The RPC server is too busy to complete this operation

0x800706BE -2147023170 RPC_S_CALL_FAILED

0x800706BF -2147023169 PRC_S_Call_Failed_DNE

0x800706C6 -2147023162 RPC_S_Invalid_Bound The array bounds are invalid

0x800706F7 -2147023113 RPC_X_Bad_Stub_Data This can occur after a control selfupdate that has not fully completed and requires a reboot. The controls may need to be reregistered.

0x80070704 -2147023100 Error_Unknown_Port

0x80070BC2 -2147021886 ErrorControlRebootRequired

0x8007276b -2147014805 WSASYSNOTREADY The description of WSASYSNOTREADY says WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable. It seems that something is wrong with networking
components on the system.

0x8007277B -2147014789 WSASYSCALLFAILURE A system call that should never fail has failed

0x80072AF9 -2147013895 WSAHOST_NOT_FOUND

0x80072AFC -2147013892 WSANO_DATA

0x80072EE2 -2147012894 ERROR_INTERNET_TIMEOUT The request has timed out.

0x80072EE4 -2147012892 ERROR_INTERNET_INTERNAL_ERROR An internal error has occurred.

0x80072EE5 -2147012891 Error_Internet_Invalid_URL

0x80072EE6 -2147012890 ERROR_INTERNET_UNRECOGNIZED_SCHEME The URL scheme could not be recognized or is not supported.

0x80072EE7 -2147012889 ERROR_INTERNET_NAME_NOT_RESOLVED The server name could not be resolved.

0x80072EEF -2147012881 ERROR_INTERNET_LOGIN_FAILURE

0x80072EF1 -2147012879 ERROR_INTERNET_OPERATION_CANCELLED

0x80072EF2 -2147012878 Error_Internet_Incorrect_handle_type

0x80072EF3 -2147012877 Error_Internet_Incorrect_Handle_State

0x80072EFD -2147012867 ERROR_WINHTTP_CANNOT_CONNECT or ERROR_INTERNET_CANNOT_CONNECT The attempt to connect to the server failed. / Internet cannot connect

0x80072EFE -2147012866 ERROR_INTERNET_CONNECTION_ABORTED The connection with the server has been terminated.

0x80072F0C -2147012852 Error_Internet_Client_Auth_Cert_Needed

0x80072F0D -2147012851 ERROR_INTERNET_INVALID_CA

0x80072F76 -2147012746 ERROR_HTTP_HEADER_NOT_FOUND The requested header could not be located

0x80072F78 -2147012744 ERROR_HTTP_INVALID_SERVER_RESPONSE The server response could not be parsed.

0x80072F7c -2147012740 ERROR_HTTP_REDIRECT_FAILED

0x80072F83 -2147012733 ERROR_INTERNET_DISCONNECTED

0x80072F8c -2147012724 ERROR_INTERNET_NOT_INITIALIZED

0x80072F8F -2147012721 ERROR_INTERNET_SECURE_FAILURE ErrorClockWrong One or more errors were found in the Secure Sockets Layer (SSL) certificate sent by the server.

0x800736B1 -2147010895 Error_SXS_Cant_gen_Actctx This application has failed to start because the application configuration is incorrect.

0x8007F001 -2146963455 STATUS_FAILED_LANGUAGE_TYPE Setup cannot update your files because the languageinstalled on your system is different from the update language.

0x8007F002 -2146963454 STATUS_CHECKED_FREE_MISMATCH Setup cannot update a checked (debug) system with a free (retail) version of , or vice versa.

0x8007F003 -2146963453 STATUS_NOT_ENOUGH_SPACE There is not enough disk space on to install . Setup requires a minimum of d additional megabytes of free space or if you also want to archive the files for uninstall, Setup requires d additional megabytes of free
space. Free additional sp

0x8007F004 -2146963452 STATUS_INSUFFICIENT_PRIVS You do not have permission to update . Please contact your system administrator.

0x8007F007 -2146963449 STATUS_CANT_FIND_INF Setup could not find the update.inf file needed to update your system.

0x8007F008 -2146963448 STATUS_UPDATE_SUCCESSFUL has been updated. Remove any disks from the floppy disk drives and choose OK to restart your computer. If you change or add any components to your system, you will need to reapply the Hotfix.

0x8007F009 -2146963447 STATUS_UPDATE_UNSUCCESSFUL installation did not complete.

0x8007F00a -2146963446 STATUS_SHUTDOWN_UNSUCCESSFUL Setup was unable to shutdown system. Please shutdown your system manually.

0x8007F00B -2146963445 STATUS_FILE_NOT_FOUND_IN_SETUP_LOG Could not locate entry for HAL.DLL in SETUP.LOG to determine type of HAL to update.

0x8007F00C -2146963444 STATUS_INVALID_INF_FILE The file is not correct.

0x8007F00d -2146963443 STATUS_USER_CANCELLED Setup canceled.

0x8007F00E -2146963442 STATUS_PLATFORM_MISMATCH This is for a different hardware platform.

0x8007F00f -2146963441 STR_CAPTION Setup

0x8007F010 -2146963440 STR_WARNCAPTION Setup Warning

0x8007F011 -2146963439 STR_ERRCAPTION Setup Error

0x8007F012 -2146963438 STR_FAILED_TO_DELETE_OR_RENAME The file is open or in use by another application. Close all other applications and then click Retry.

0x8007F013 -2146963437 STR_FAILED_TO_SAVE_REGISTRY Setup could not backup registry key to file

0x8007F014 -2146963436 STR_FAILED_TO_READ_REGISTRY Setup could not backup registry value

0x8007F015 -2146963435 STR_ASK_DIRTY_UNINSTALL Select »OK» to undo the changes that have been made, or select »Cancel» to quit. If you select »Cancel», your system will be left in a partially updated state and may not work correctly.

0x8007F016 -2146963434 STR_LEAVING_DIRTY has been partially updated and may not work properly.

0x8007F017 -2146963433 STR_ARE_YOU_SURE_CANCEL Are you sure you want to cancel?

0x8007F018 -2146963432 STR_SOURCE_MEDIA_NAME_UNINSTALL Uninstall Directory

0x8007F019 -2146963431 STR_SOURCE_MEDIA_NAME Uninstall Directory

0x8007F01a -2146963430 STR_SOURCE_MEDIA_NAME_SYSTEM System Files

0x8007F01b -2146963429 STR_INST_HOTFIX Setup found hotfixes on your system. Would you like to install these hotfixes now?

0x8007F01c -2146963428 STR_UNINST_ALREADY_CREATED You have already created an Uninstall directory. Doing this again will overwrite your current uninstall directory. Are you sure you want to do this?

0x8007F01d -2146963427 STR_OEM_FILE Your computer vendor installed this file on your computer. Do you want Setup to replace this file?

0x8007F01e -2146963426 STR_CATALOG_INSTALL_FAILED Failed to install catalog files.

0x8007F01f -2146963425 STR_ADD_REGISTRY_FAILED Failed to add registry entry.

0x8007f020 -2146963424 STATUS_BUILD_VERSION_MISMATCH Setup has detected that the build version of the system installed does not match the update you are applying to it. You can only install this update only on Build %d .

0x8007f021 -2146963423 STATUS_SP_VERSION_GREATER The version of Windows you have installed does not match the update you are trying to install.

0x8007f022 -2146963422 STATUS_CANT_SPAWN_HOTFIX Setup could not start the hotfix installation program.

0x8007f023 -2146963421 STATUS_CANT_FIND_TAG Setup could not locate the files.

0x8007f024 -2146963420 STATUS_OVERWRITE_UNINSTALL WARNING: You have chosen to overwrite your existing uninstall: If you continue, you will only be able to uninstall to the following Service Pack version: Are you sure you want to continue? Click Yes to continue
creating the

0x8007f026 -2146963418 STATUS_WININET_LOAD_FAILED This Web-based update requires Internet Explorer 3.0 or later. For instructions on how to download a version of this update that does not require a Web connection during installation, download and install from
http://www.Microsoft.com/Downloads

0x8007f027 -2146963417 STATUS_CANT_INSTALL_SP_ON_DTC This has not been qualified by your hardware vendor for installation on this copy of Datacenter Server. Please contact your hardware vendor for additional information on obtaining a that has been qualified
for your system configuration.

0x8007f028 -2146963416 STATUS_NECESSARY_FILES_NOT_PRESENT Not all files necessary to perform an integrated installation are present.

0x8007f029 -2146963415 STATUS_SPOOLER_NOT_STARTED Cannot install . The Print Spooler service is not started.

0x8007f02a -2146963414 STATUS_MUST_RESTART_FIRST The system must be restarted before installing the , to allow some prior file update operations to complete. (These operations were previously scheduled by some other install or uninstall operation.)

0x8007f02b -2146963413 STATUS_NOT_ENOUGH_WITH_UNINST You do not have enough free disk space on % to archive the uninstall files. To install with backup files for uninstall, an additional dMB is required.

0x8007f02c -2146963412 STATUS_CANT_FIND_RSAENHS Unable to locate RSAENHS.DLL in the update directory, high encryption for uninstall aborted.

0x8007f02d -2146963411 STATUS_CANT_FIND_ENCININF Unable to locate UPDENCIN.INF in the update directory, high encryption for uninstall aborted.

0x8007f02e -2146963410 STATUS_CANT_FIND_ENCTSINF Unable to locate UPDENCTS.INF in the update directory, unable to export TS files.

0x8007f02f -2146963409 STATUS_ENCINST_PROCESS_FAILED High encryption ENCINST process failed.

0x8007f030 -2146963408 STATUS_ENCINST_UPGRADE_FAILED High encryption upgrade failed.

0x8007f031 -2146963407 STR_USAGE_UPDATE AVAILABLE SWITCHES: [/help] [/quiet] [/passive] [/uninstall] [/norestart] [/forcerestart] [/l] [/n] [/o] [/f] [/integrate:<path>] [/d:<path>] /help Displays this message SETUP MODES /quiet Quiet mode (no user interaction
or displ

0x8007f032 -2146963406 STR_BUILDING_CAB Creating file

0x8007f033 -2146963405 STR_DOWNLOADING Downloading files and patches

0x8007f034 -2146963404 STR_ARCHIVING_FILES Backing up files

0x8007f035 -2146963403 STR_ARCHIVING_FILE Backing up files

0x8007f036 -2146963402 STR_INSTALLING_FILES Installing files

0x8007f037 -2146963401 STR_INSTALLING_FILE Installing files

0x8007f038 -2146963400 STR_FINISHING_INSTALL Finishing installation

0x8007f039 -2146963399 STR_WELCOME_LINE Welcome to the Setup Wizard

0x8007f03a -2146963398 STR_RESTART &Restart

0x8007f03b -2146963397 STR_COMPLETE installation is complete. You must restart your computer for the update to take effect.

0x8007f03d -2146963395 STR_CANT_CANCEL_NOW Please wait while Setup updates your system files.

0x8007f03e -2146963394 STR_MUST_ACCEPT_TIP Must accept license agreement before installing

0x8007f03f -2146963393 STR_NEED_TO_CONNECT Setup needs to connect to the internet now to download files and patches for installation.

0x8007f040 -2146963392 STR_READY_TO_REPLACE Setup is ready to begin replacing system files.

0x8007f041 -2146963391 STR_CONNECTING Connecting to

0x8007f042 -2146963390 STR_CONNECTED Connected to

0x8007f043 -2146963389 STR_ESTIMATE estimate

0x8007f044 -2146963388 STR_MINUTES minutes

0x8007f045 -2146963387 STR_SECONDS seconds

0x8007f046 -2146963386 STR_DOWNLOAD_REMAINING KB remaining

0x8007f047 -2146963385 STR_DOWNLOAD_COMPLETE Download complete

0x8007f048 -2146963384 STR_DOWNLOAD_UNPACKING Download complete, now unpacking files

0x8007f049 -2146963383 STR_DOWNLOAD_FAILURE The following error occurred while Setup attempted to download the files from the Internet:

0x8007f04a -2146963382 STR_UNKNOWN_ERROR The server did not respond (error code %d).

0x8007f04b -2146963381 STR_INTERNET_TIMEOUT The server did not respond.

0x8007f04c -2146963380 STR_DOWNLOAD_RETRY_TEXT If this error persists after you have clicked Retry several times, download and install from http://www.Microsoft.com/Downloads. This will give you instructions on how to download a version of this update that
does not require a Web connection during

0x8007f04d -2146963379 STR_HASH_FAILURE_1 Setup determined that the following downloaded file is corrupt:

0x8007f04e -2146963378 STR_HASH_FAILURE_2 Setup determined that the following downloaded files are corrupt:

0x8007f04f -2146963377 STR_DOWNLOAD_GIVE_UP Setup was unable to download all the files necessary for installation.

0x8007f050 -2146963376 STR_COPYING_FILE_DELAYED Copied file (delayed)

0x8007f051 -2146963375 STR_ERROR_COPY_SLIP An error has occurred copying files from the Service Pack share to the distribution share.

0x8007f052 -2146963374 STR_SLIPSTREAM_SUCCESSFUL Integrated install has completed successfully.

0x8007f053 -2146963373 STR_SLIPSTREAM_FAILED Failed to copy some or all of the files necessary for integrated install. Please check that: a) No network or copy errors occurred during the integration process b) The format of the destination directory is correct.
The files to be integrated

0x8007f054 -2146963372 STR_SVCPACK_CMD Service Pack started with following command line

0x8007f055 -2146963371 STR_DOWNLOAD_SIZE bytes downloaded.

0x8007f056 -2146963370 STR_NO_SVCPACK No Service Pack

0x8007f057 -2146963369 STR_MISSING_FILE The file is missing from the installation. The file must be present for Setup to continue. Press OK to cancel Setup.

0x8007f058 -2146963368 STR_READY_TO_ENCINST Setup is ready to begin upgrade of uninstall to high encryption.

0x8007f059 -2146963367 STR_SLIPSTREAM_LANGUAGE_MISMATCH Integrated install failed. The language type or platform for the destination directory and must be the same.

0x8007f05a -2146963366 STATUS_CANT_OPEN_LOG Error opening file

0x8007f05b -2146963365 STR_SKIPPING_FILE Skipped copying file:

0x8007f05c -2146963364 STR_COPY_FILE Copying file

0x8007f05d -2146963363 STR_SVC_INFO In order to successfully complete this installation, the following services will automatically be stopped and re-started.

0x8007f05e -2146963362 STR_SVC_STOP_ERR Setup was unable to stop the following service

0x8007f05f -2146963361 STR_SVC_ASKREBOOT A reboot will probably be required in order to successfully complete this installation. Do you wish to continue?

0x8007f060 -2146963360 STR_SVC_START_ERR Setup was unable to re-start the following service: .

0x8007f061 -2146963359 ERR_STD_PREFIX Setup encountered an error:

0x8007f062 -2146963358 STR_COPYING_FILE Copied file:

0x8007f063 -2146963357 STR_SPAWNING_PROCESS Starting process:

0x8007f064 -2146963356 STATUS_INVALID_VER_FILE The update.ver file is not correct.

0x8007f065 -2146963355 STR_DOMESTIC_TAG1 US/Canada Only, Not for Export

0x8007f066 -2146963354 STR_DOMESTIC_TAG2 Domestic Use Only

0x8007f067 -2146963353 STR_DOMESTIC_TAG3 US and Canada Use Only

0x8007f06a -2146963350 STATUS_SP_VERSION_GREATER_1 Setup has detected that the Service Pack version of the system installed is newer than the update you are applying to it. You can only install this update on Service Pack.

0x8007f06b -2146963349 STATUS_SP_VERSION_GREATER_2 Setup has detected that the Service Pack version of this system is newer than the update you are applying. There is no need to install this update.

0x8007f06c -2146963348 STATUS_FPNW_FIXUP_FAILED Setup failed to access or correctly modify your SETUP.LOG file.

0x8007f06d -2146963347 STATUS_WRONG_PLATFORM The version of software you are running does not match the system you are running it on.

0x8007f06e -2146963346 STATUS_FAILURE_COPYING_FILES Failed to completely copy all of the updated files.

0x8007f06f -2146963345 STATUS_FAILED_TO_SET_DIR Failed to set the directory.

0x8007f070 -2146963344 STATUS_SETUP_ERROR An error in updating your system has occurred.

0x8007f075 -2146963339 STATUS_SUCCESS_NOREBOOT has been updated. You must reboot for these changes to take effect. If you change or add any components to your system, you will need to reapply the Hotfix.

0x8007f076 -2146963338 STATUS_SP_VERSION_LESSER Setup has detected that the version of the Service Pack installed on your system is lower than what is necessary to apply this hotfix. At minimum, you must have Service Pack installed.

0x8007f078 -2146963336 STATUS_NO_UNINSTALL_AVAILABLE You cannot uninstall, since an uninstall for has not been created.

0x8007f07a -2146963334 STATUS_SUCCESS_NOREBOOTNEC has been updated. If you change or add any components to your system, you will need to reapply the Hotfix.

0x8007f07b -2146963333 STATUS_UNINST_NOREBOOTNEC Hotfix successfully uninstalled.

0x8007f07c -2146963332 STR_SECURITY_PROVIDER_WARNING The existing file contains High Encryption security, but the updated Hotfix file contains only Standard Encryption security. You can choose to replace the High Encryption security file with the updated Standard
Encryption security file now.

0x8007f07f -2146963329 STR_UNINST_HOTFIX Hotfixes have been found on your system. Would you like to Uninstall these hotfixes now?

0x8007f080 -2146963328 STR_OLD_UNINST_EXISTS An old Uninstall directory has been found. Would you like to overwrite this directory with new Uninstall information?

0x8007f081 -2146963327 STR_LICENSE_DECLINED You have chosen to decline the License Agreement. Setup cannot continue.

0x8007f082 -2146963326 STR_NO_LICENSE_TXT No LICENSE.TXT file was found in your Hotfix directory. Setup cannot continue.

0x8007f083 -2146963325 STR_INSUFF_RESOURCES Insufficient resources are available. Setup cannot continue.

0x8007f084 -2146963324 STR_FILE_READ_ERROR Error reading LICENSE.TXT file. Setup cannot continue.

0x8007f085 -2146963323 STR_DELETE_OLD_UNINST This old uninstall directory cannot be used to uninstall this Hotfix, and should be deleted. Would you like to delete it now?

0x8007f086 -2146963322 STR_HOTFIXES_FOUND The following hotfixes are installed:

0x8007f087 -2146963321 STR_HOTFIXES_NOT_FOUND No Hotfixes are installed.

0x8007f088 -2146963320 STR_CAT_VERSIONS_EQUAL Catalog file versions are equal, although catalog files differ. Install package must be rebuilt. Failed to install catalog file.

0x8007f089 -2146963319 STR_WINDOWS_TYPE1 Windows NT 4.0

0x8007f08a -2146963318 STR_WINDOWS_TYPE2 Windows 2000

0x8007f08b -2146963317 STR_LICENSE_AGREEMENT License Agreement

0x8007f08c -2146963316 STR_SELECT_OPTIONS Select Options

0x8007f08d -2146963315 STR_UPDATING_YOUR_SYSTEM Updating Your System

0x8007f08e -2146963314 STR_WIZ1_STATIC3 Before you install this update, we recommend that you: — Update your system repair disk — Back up your system — Close all open programs To complete this installation, Windows might require restarting after you finish
this wizard.

0x8007f08f -2146963313 STR_WIZ2_STATIC1 Please read the following license agreement. To continue with setup, you must accept the agreement.

0x8007f090 -2146963312 STR_WIZ2_RADIO1 I &Do Not Agree

0x8007f091 -2146963311 STR_WIZ2_RADIO2 I &Agree

0x8007f092 -2146963310 STR_ASK_BACKUP If you want to remove later, Setup must archive the necessary files. However, this requires significant disk space. Do you want Setup to archive these files?

0x8007f093 -2146963309 STR_ARCHIVE1 &Archive Files

0x8007f094 -2146963308 STR_ARCHIVE2 &Do Not Archive Files

0x8007f095 -2146963307 STR_WIZ4_STATIC2 Please wait while setup inspects your current configuration, archives your current files and updates your files.

0x8007f096 -2146963306 STR_WIZ4_STATIC_OPERATION Inspecting your current configuration

0x8007f097 -2146963305 STR_WIZ4_STATIC_DETAILS inspecting current configuration, archives your current files and updates your files

0x8007f098 -2146963304 STR_WIZ4_STATIC Inspecting current configuration, archives your current files and updates your files

0x8007f099 -2146963303 STR_WIZ5_STATIC1 Completing the Setup Wizard

0x8007f09a -2146963302 STR_WIZ5_STATIC2_REBOOT You have successfully completed the Setup Wizard. To apply the changes, the wizard has to restart Windows. To restart Windows automatically, click Finish. If you want to restart later, select the Do not restart
now check box, and then click Fin

0x8007f09b -2146963301 STR_WIZ5_STATIC2_NOREBOOT You have successfully completed the Setup Wizard. To close this wizard, click Finish.

0x8007f09c -2146963300 STR_WIZ5_CHECK1 &Do not restart now

0x8007f09d -2146963299 STR_WIZCAPTION Setup Wizard

0x8007f09e -2146963298 STR_ANALYZE_DISK Checking for necessary space

0x8007f09f -2146963297 STR_BUILDING_CAB_CAPTION Creating Cabinets

0x8007f0a0 -2146963296 STR_CLEAN_REG Updating the registry keys

0x8007f0a1 -2146963295 STR_CANCEL Cancel

0x8007f0a2 -2146963294 STR_DOWNLOAD_UNPACKING_DETAILS Unpacking: %d remaining

0x8007f0a3 -2146963293 STR_NO No LICENSE.TXT file was found in your Hotfix directory. Setup cannot continue. ::No Uninstall directory: Setup is executing. Please wait for Setup to complete :No Service Pack

0x8007f0a4 -2146963292 STR_README Read Me:readmesp.htm

0x8007f0a5 -2146963291 STR_README_FILE readmesp.htm

0x8007f0a6 -2146963290 STR_SLIPSTREAM_EVAL_DESTINATION Integrated install failed. The destination directory contains an evaluation copy of Windows.

0x8007f0a7 -2146963289 STR_WINDOWS_TYPE3 Windows XP

0x8007f0a8 -2146963288 STR_NOUNINSTALL No Uninstall directory

0x8007f0a9 -2146963287 STR_SRVPACK Service Pack

0x8007f0aa -2146963286 STR_WINDOWS_TYPE0 Windows

0x8007f0ab -2146963285 STR_SPOOLER_ENABLE For Setup to continue, the print spooler service must be enabled on this computer. To enable this service, click OK. After Setup is complete, the print spooler will be disabled.

0x8007f0ac -2146963284 STR_USAGE_UPDATE_NOSLPSTRM AVAILABLE SWITCHES: [/help] [/quiet] [/passive] [/uninstall] [/norestart] [/forcerestart] [/l] [/n] [/o] [/f] [/integrate:<fullpath>] /help Displays this message SETUP MODES /quiet Quiet mode (no user interaction
or display)

0x8007f0ad -2146963283 STR_FONT Verdana Bold

0x8007f0ae -2146963282 STR_CHOOSE_UNINST_DIR Select an existing folder or make a new folder in which to store uninstall information.

0x8007f0af -2146963281 STR_ARCHIVE_DRIVE_INVALID You have selected a folder that is not on your local computer. The current state of the computer can be archived only on your local computer.

0x8007f0b0 -2146963280 STR_STARTING_SERVICES Starting services

0x8007f0b1 -2146963279 STR_STARTING_SERVICE Starting service

0x8007f0b2 -2146963278 STR_STOPPING_SERVICES Stopping services

0x8007f0b3 -2146963277 STR_STOPPING_SERVICE Stopping services

0x8007f0b4 -2146963276 STR_WINDOWS_TYPE4 Windows Server 2003

0x8007f0c0 -2146963264 STR_BLOCKLIST_HF_MSG Setup cannot install this hotfix because one or more of its files are out of date. Please download and install the latest version of fix .

0x8007f0c1 -2146963263 STR_BLOCKLIST_SP_MSGA This service pack contains files that are missing some of the fixes which were previously installed on this computer. To prevent possible problems, these files will not be installed by the service pack.

0x8007f0c2 -2146963262 STR_BLOCKLIST_SP_MSGB In order to have the fixes contained in both the service pack and the previously installed hotfixes, you must obtain and install the updated versions of the following hotfixes prior to or following the service pack
installation. These hotfixes are also

0x8007f0c3 -2146963261 STR_BLOCKLIST_SP_MSGC Do you want to continue installing this service pack?

0x8007f0c4 -2146963260 STR_BLOCKLIST_SP_MSGD The service pack install cannot continue until these hotfixes are applied to your system.

0x8007f0c5 -2146963259 STR_GENERALCAPTION 2%

0x8007f0c6 -2146963258 STATUS_BUILD_VERSION_MISMATCH2 Setup has detected that the build version of the system installed does not match the update you are applying to it. You can only install this update only on Build %d .

0x8007f0c7 -2146963257 STR_SLPSTRM_COPY Integrating files

0x8007f0c8 -2146963256 STR_SLPSTRM_WIZ4_STATIC2 Please wait while setup integrates files from Windows Service Pack into your Windows installation folder.

0x8007f0c9 -2146963255 STR_SLPSTRMUPDATING_YOUR_SYSTEM Updating Your Windows Share

0x8007f0ca -2146963254 STR_RESTORE_POINT_DESC Installed .

0x8007f0cb -2146963253 STATUS_VLK_BLOCKED The Product Key used to install Windows is invalid. Please contact your system administrator or retailer immediately to obtain a valid Product Key. You may also contact Microsoft Corporation’s Anti-Piracy Team by emailing
piracy@microsoft.com

0x8007f0cc -2146963252 STATUS_KERNEL_NONSTD The core system file (kernel) used to start this computer is not a Microsoft Windows file. The Service Pack will not be installed. For more information, see Knowledge Base article at http://support.microsoft.com.

0x8007f0cd -2146963251 STR_VLK_CHECK Checking product key

0x8007f0ce -2146963250 STR_SET_RESTOREPOINT Creating restore point

0x8007f0cf -2146963249 STR_PERFORM_INVENTORY Performing inventory

0x8007f0d0 -2146963248 STR_BUILD_THIRDPARTYDRIVERS Creating Third Party Driver List

0x8007f0d1 -2146963247 STR_DISK_USAGEFORINSTALL Estimating space for installation

0x8007f0d2 -2146963246 STR_DISK_USAGEFORUNINSTALL Estimating space for uninstallation

0x8007f0d3 -2146963245 STR_PROCESSES_BEFOREARCHIVE Running processes before install

0x8007f0d4 -2146963244 STR_REGISTRY_BACKUP Backing up registry

0x8007f0d5 -2146963243 STR_PROCESSES_AFTERINSTALL Running processes after install

0x8007f0d6 -2146963242 STR_PERFORM_CLEANUP Performing cleanup

0x8007f0d7 -2146963241 STR_OPTIONAL_EXCLUSIONWARNING Windows has detected that one or more protected files on your computer have been modified. The Service Pack contains updated versions of those files, which work to provide a stable environment for your programs.
If you click Yes, the updated version

0x8007f0d8 -2146963240 STR_WIZ1_STATIC3_XP Before you install this update, we recommend that you: — Back up your system — Close all open programs To complete this installation, Windows might require restarting after you finish this wizard.

0x8007f0d9 -2146963239 STR_ARCHIVE_FOLDER_INVALID The folder name is longer than the limit of 226 bytes. Enter a shorter name.

0x8007f0da -2146963238 STR_FAILED_INF_INTEGRITY Setup could not verify the integrity of the file Update.inf. Make sure the Cryptographic service is running on this computer.

0x8007f0db -2146963237 STR_BLOCKLIST_FIXNUMBER Fix Number

0x8007f0dc -2146963236 STR_BLOCKLIST_FILENAME File Name

0x8007f0dd -2146963235 STR_BLOCKLIST_VERSION Version

0x8007f0de -2146963234 STR_WIZ4_NOARCHIVE Please wait while setup inspects your current configuration and updates your files.

0x8007f0df -2146963233 STATUS_SP_BUILD_TO_BUILD This Service Pack cannot be installed on top of the build currently installed on your computer. Cancel this installation process, uninstall your current build, then re-install this Service Pack.

0x8007f0e0 -2146963232 STR_UNABLE_TO_VERIFY Setup could not verify the integrity of one or more installed files.

0x8007f0e2 -2146963230 STR_ERR_PRINT_EULA Unable to print the END USER LICENSE AGREEMENT

0x8007f0e3 -2146963229 STR_WINDOWS_TYPE Windows, Windows NT 4.0, Windows 2000, Windows XP, Windows Server 2000, Windows XP Version 2003

0x8007f0e4 -2146963228 STATUS_WINDOWS_VERSION_NEWER The version of Windows you have installed is newer than the update you are trying to install. There is no need to install this update.

0x8007f0e5 -2146963227 STATUS_PACKAGE_NOT_APPLICABLE This package does not apply to the operating system you are running, and therefore cannot be installed.

0x8007f0e6 -2146963226 STR_SAFEMODE_INSTALL You are trying to install while the system is in safe mode. This is not recommended unless the system does not function in normal mode.

0x8007f0e7 -2146963225 STR_APPLYING_HOTPATCHES Applying Hotpatches

0x8007f0e8 -2146963224 STATUS_INVALID_BRANCHES_INF The branches.inf file is invalid.

0x8007f0e9 -2146963223 STATUS_INVALID_UPDATEBR_INF The updatebr.inf file is invalid.

0x8007f0ea -2146963222 STR_PACKAGE_MIGRATE_FAILED Failed to migrate dependent packages.

0x8007f0ec -2146963220 STR_PERFORM_MIGRATION Performing migration

0x8007f0ed -2146963219 STATUS_NO_BRANCH_AVAILABLE Required installation branch was not found in INF file.

0x8007f0ee -2146963218 STR_BLOCKLIST_PACKAGE Package

0x8007f0ef -2146963217 STR_MIGRATE_BLOCKLIST_MSG The installation cannot continue because the following packages might not be valid:

0x8007f0f0 -2146963216 STR_BRANCH_CAPTION Branch info

0x8007f0f1 -2146963215 STATUS_INCOMPARABLE_BRANCHES Files from the package are incompatible with files on your system.

0x8007f0f2 -2146963214 STR_MIGRATE_BLOCKLIST_REC Reinstall the packages listed above, and then install .

0x8007f0f3 -2146963213 STR_UNKNOWN_PACKAGE Unknown

0x8007f0f4 -2146963212 STATUS_PREREQUISITE_FAILED Setup cannot continue because one or more pre-requisites required to install failed. For More details check the Log File. Update.exe can throw this error when it starts to download if the computer is running
under battery power (there may be a fix for this in the future).

0x8007f0f5 -2146963211 STR_WINDOWS_TYPE5 Windows XP Version 2003

0x8007F0F5 -2146963211 WU_E_DM_INCORRECTFILEHASH The WU Agent’s metadata store and the policy received by ccmexec could be out of sync.

0x8007F0F6 -2146963212 ERROR INVALID PARAMETER Failed to start the installation of updates because update is not found

0x8007f0f7 -2146963209 STR_HFSLP_ERROR An error occurred while attempting to integrate this software update package. Verify that the architecture, language, and service pack level of this software update are valid for the target distribution folder.

0x8007f0f8 -2146963208 STR_HFSLP_EXPRESS Express software update packages cannot be integrated. To download a version of the fix that can be integrated, visit http://www.microsoft.com/downloads.

0x8007f0f9 -2146963207 STR_HFSLP_EXTRACTED Extracted packages cannot be integrated. The /integrate switch must be used with the original software update package.

0x8007f0fa -2146963206 STR_HFSLP_NOTFOUND Setup was unable to locate the distribution folder that you wish to integrate with this software update package. The /integrate switch requires the full path to the distribution folder.

0x8007f200 -2146962944 STATUS_MORE_FILES_FOR_DOWNLOAD More byte ranges required.

0x8007f201 -2146962943 STATUS_READY_TO_INSTALL Required payload available, ready to install.

0x8007f202 -2146962942 STATUS_PATCH_NOT_FOUND The delta was not found in the PSF. Update cannot find information about how to upgrade this binary. SUS can terminate installation.

0x8007f203 -2146962941 STATUS_PATCH_FILE_CORRUPT Update cannot find information about how to upgrade this binary

0x8007f204 -2146962940 STATUS_INDEXFILE_CORRUPT Index file does not have a valid signature. Index file has an invalid signature. The package is corrupt. SUS can terminate installation.

0x8007f205 -2146962939 STR_UPDATE_ALREADY_RUNNING Setup has detected that another update is in progress. Please complete that installation or removal and try again.

0x8007f206 -2146962938 STATUS_RETRY_REFRESH_INVENTORY The state of machine changed since last inventory analysis. Update.exe has to restart the process with /si.

0x8007f207 -2146962937 STATUS_RETRY_SELF_CONTAINED Two consecutive attempts to download delta failed without any progress and there is no use in continuing as express package. Revert to self-contained package.

0x8007f220 -2146962912 STATUS_CONTINUE_INVENTORY error codes should not be returned out of update.exe

0x8007f221 -2146962911 ERROR_INDEXFILE_NOT_FOUND error codes should not be returned out of update.exe

0x80080005 -2146959355 CO_E_Server_Exec_Failure

0x80080008 -2146959352 CO_E_SERVER_STOPPING

0x80090006 -2146893818 NTE_Bad_Signature

0x8009000B -2146893813 NTE_Bad_Key_State

0x80090017 -2146893801 NTE_PROV_TYPE_NOT_DEF

0x8009001D -2146893795 Error_Write_Fault

0x80090305 -2146893051 SEC_E_SECPKG_NOT_FOUND The requested security package does not exist

0x80090331 -2146893007 Sec_E_Algorithm_Mismatch The client and the server cannot communicate, because they do not possess a common algorithm

0x8009033F -2146892993 SEC_E_Shutdown_IN_Progress

0x80092003 -2146885629 CRYPT_E_File_Error An error occurred while reading or writing to a file

0x8009200D -2146885619 Crypt_E_Bad_Msg Not a cryptographic message or the cryptographic message is not formatted correctly

0x80092026 -2146885594 Crypt_E_Security_Settings The cryptographic operation failed due to a local security option setting

0x80096001 -2146869247 TRUST_E_SYSTEM_ERROR A system-level error occurred while verifying trust.

0x80096002 TRUST_E_NO_SIGNER_CERT The certificate for the signer of the message is invalid or not found.

0x80096003 TRUST_E_COUNTER_SIGNER One of the counter signatures was invalid.

0x80096004 TRUST_E_CERT_SIGNATURE The signature of the certificate cannot be verified.

0x80096005 -2146869243 TRUST_E_TIME_STAMP The timestamp signature and/or certificate could not be verified or is malformed.

0x80096010 -2146869232 TRUST_E_BAD_DIGEST The digital signature of the object did not verify.

0x80096019 -2146869223 TRUST_E_BASIC_CONSTRAINTS A certificate’s basic constraint extension has not been observed.

0x8009601E TRUST_E_FINANCIAL_CRITERIA The certificate does not meet or contain the Authenticode(tm) financial extensions.

0x800A0046 -2146828218 CTL_PermissionDenied olectl.h

0x800A01AD -2146827859 ActiveX component can»t create object

0x800a01ae -2146827858 IXP_NNTP_NO_SUCH_ARTICLE_FOUND This can occur after a control selfupdate that has not fully completed and requires a reboot.

0x800a138f -2146823281 ERROR_RESOURCE_NOT_FOUND Javascript runtime error

0x800B0001 -2146762751 TRUST_E_PROVIDER_UNKNOWN Unknown trust provider.

0x800B0002 -2146762750 TRUST_E_ACTION_UNKNOWN The trust verification action specified is not supported by the specified trust provider.

0x800B0003 -2146762749 TRUST_E_SUBJECT_FORM_UNKNOWN The form specified by the subject is not one supported or known by the specified trust provider

0x800B0004 -2146762748 TRUST_E_SUBJECT_NOT_TRUSTED The subject is not trusted for the specified action.

0x800B0005 DIGSIG_E_ENCODE Error due to problem in ASN.1 encoding process.

0x800B0006 DIGSIG_E_DECODE Error due to problem in ASN.1 decoding process.

0x800B0007 DIGSIG_E_EXTENSIBILITY Reading / writing Extensions where Attributes are appropriate, and visa versa.

0x800B0008 DIGSIG_E_CRYPTO Unspecified cryptographic failure.

0x800B0009 PERSIST_E_SIZEDEFINITE The size of the data could not be determined.

0x800B000A PERSIST_E_SIZEINDEFINITE The size of the indefinite-sized data could not be determined.

0x800B000B PERSIST_E_NOTSELFSIZING This object does not read and write self-sizing data.

0x800B0100 -2146762496 TRUST_E_NOSIGNATURE No signature was present in the subject

0x800B0101 -2146762495 CERT_E_EXPIRED A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file.

0x800B0102 CERT_E_VALIDITYPERIODNESTING The validity periods of the certification chain do not nest correctly.

0x800B0103 CERT_E_ROLE A certificate that can only be used as an end-entity is being used as a CA or visa versa.

0x800B0104 CERT_E_PATHLENCONST A path length constraint in the certification chain has been violated.

0x800B0105 CERT_E_CRITICAL A certificate contains an unknown extension that is marked ‘critical’.

0x800B0106 CERT_E_PURPOSE A certificate being used for a purpose other than the ones specified by its CA.

0x800B0107 CERT_E_ISSUERCHAINING A parent of a given certificate in fact did not issue that child certificate.

0x800B0108 CERT_E_MALFORMED A certificate is missing or has an empty value for an important field, such as a subject or issuer name.

0x800B0109 -2146762487 CERT_E_UNTRUSTEDROOT A certificate chain processed, but terminated in a root certificate which is not trusted by the trust provider

0x800B010A CERT_E_CHAINING A certificate chain could not be built to a trusted root authority.

0x800B010B TRUST_E_FAIL Generic trust failure.

0x800B010C CERT_E_REVOKED A certificate was explicitly revoked by its issuer.

0x800b010d -2146762483 CERT_E_UNTRUSTEDTESTROOT The certification path terminates with the test root which is not trusted with the current policy settings.

0x800B010E CERT_E_REVOCATION_FAILURE The revocation process could not continue — the certificate(s) could not be checked.

0x800B010F CERT_E_CN_NO_MATCH The certificate’s CN name does not match the passed value.

0x800B0110 -2146762480 CERT_E_WRONG_USAGE The certificate is not valid for the requested usage.

0x800B0111 TRUST_E_EXPLICIT_DISTRUST The certificate was explicitly marked as untrusted by the user.

0x800B0112 CERT_E_UNTRUSTEDCA A certification chain processed correctly, but one of the CA certificates is not trusted by the policy provider.

0x800B0113 CERT_E_INVALID_POLICY The certificate has invalid policy.

0x800B0114 CERT_E_INVALID_NAME The certificate has an invalid name. The name is not included in the permitted list or is explicitly excluded.

0x800C0002 -2146697214 Inet_E_Invalid_URL Invalid URL.* Please verify that the specified URL exists and is correct.

0x800C0004 -2146697212 Server access failure.* The attempt to connect with the server failed. Please verify that the server is running and available. Server access failure.* The attempt to connect with the server failed. Please verify that the server is running
and available.

0x800C0006 -2146697210 File not found.* The file could not be found at the specified URL. Please make sure the URL is correct. File not found.* The file could not be found at the specified URL. Please make sure the URL is correct.

0x800C000B -2146697205 Server connection time-out.* The connection to the server timed out. Please verify that the server is running and available. Server connection time-out.* The connection to the server timed out. Please verify that the server is running
and available.

0x800C000E -2146697202 Server security access failure.* There was a security problem when accessing the server. Server security access failure.* There was a security problem when accessing the server.

0x800F0101 -2146500351 SPAPI_E_Section_Not_Found The required section was not found in the INF

0x800F020B -2146500085 SPAPI_E_No_Such_Devinst device instance does not exist

0x800F0217 -2146500073 SPAPI_E_Bad_Service_Installsect A service installation section in this INF is invalid

0x800F022B -2146500053 SPAPI_E_DI_Dont_Install The class installer has denied the request to install or upgrade this device

0x800F022F -2146500049 SPAPI_E_No_Catalog_for_OEM_INF The third-party INF does not contain digital signature information

0x800F0244 -2146500028 SPAPI_E_Signature_Osattribure_Mismatch The software was tested for compliance on a different version of Windows and may not be compatible with this version

0x800FF8F0 -2146436880 NULL

0x800FFBBE -2146436162 NULL

0x800FFC02 -2146436094 NULL

0x800FFC0D -2146436083 NULL

0x80190064 -2145845148 BG_E_HTTP_ERROR_100 The request can be continued.

0x80190065 -2145845147 BG_E_HTTP_ERROR_101 The server switched protocols in an upgrade header.

0x801900C8 -2145845048 BG_E_HTTP_ERROR_200 The server’s response was not valid. The server was not following the defined protocol. Resume the job, and then Background Intelligent Transfer Service (BITS) will try again.

0x801900C9 -2145845047 BG_E_HTTP_ERROR_201 The request was fulfilled and resulted in the creation of a new resource.

0x801900CA -2145845046 BG_E_HTTP_ERROR_202 The request was accepted for processing, but the processing has not been completed yet.

0x801900CB -2145845045 BG_E_HTTP_ERROR_203 The returned metadata in the entity-header is not the definitive set available from the server of origin.

0x801900CC -2145845044 BG_E_HTTP_ERROR_204 The server has fulfilled the request, but there is no new information to send back.

0x801900CD -2145845043 BG_E_HTTP_ERROR_205 The server’s response was not valid. The server was not following the defined protocol. Resume the job, and then Background Intelligent Transfer Service (BITS) will try again.

0x801900CE -2145845042 BG_E_HTTP_ERROR_206 The server fulfilled the partial GET request for the resource.

0x8019012C -2145844948 BG_E_HTTP_ERROR_300 The server could not return the requested data.

0x8019012D -2145844947 BG_E_HTTP_ERROR_301 The requested resource was assigned to a new permanent Uniform Resource Identifier (URI), and any future references to this resource should use one of the returned URIs.

0x8019012E -2145844946 BG_E_HTTP_ERROR_302 The requested resource was assigned a different Uniform Resource Identifier (URI). This change is temporary.

0x8019012F -2145844945 BG_E_HTTP_ERROR_303 The response to the request is under a different Uniform Resource Identifier (URI) and must be retrieved using a GET method on that resource.

0x80190130 -2145844944 BG_E_HTTP_ERROR_304 The server’s response was not valid. The server was not following the defined protocol. Resume the job, and then Background Intelligent Transfer Service (BITS) will try again.

0x80190131 -2145844943 BG_E_HTTP_ERROR_305 The requested resource must be accessed through the proxy given by the location field.

0x80190133 -2145844941 BG_E_HTTP_ERROR_307 The URL has been temporarily relocated. Try again later.

0x80190190 -2145844848 BG_E_HTTP_ERROR_400 The server cannot process the request because the syntax is not valid.

0x80190191 -2145844847 BG_E_HTTP_ERROR_401 The requested resource requires user authentication.

0x80190192 -2145844846 BG_E_HTTP_ERROR_402 The server’s response was not valid. The server was not following the defined protocol. Resume the job, and then Background Intelligent Transfer Service (BITS) will try again.

0x80190193 -2145844845 BG_E_HTTP_ERROR_403 The client does not have sufficient access rights to the requested server object. Cannot execute requested URL in the current application pool IIS returns this error in some transient error cases too such as 403.9
— Forbidden: Too many clients are trying to connect to the Web server.403.15 — Forbidden: Client access licenses have exceeded limits on the Web server.

0x80190194 -2145844844 BG_E_HTTP_ERROR_404 The requested URL does not exist on the server.

0x80190195 -2145844843 BG_E_HTTP_ERROR_405 The method used is not allowed.

0x80190196 -2145844842 BG_E_HTTP_ERROR_406 No responses acceptable to the client were found.

0x80190197 -2145844841 BG_E_HTTP_ERROR_407 Proxy authentication is required.

0x80190198 -2145844840 BG_E_HTTP_ERROR_408 The server timed out waiting for the request.

0x80190199 -2145844839 BG_E_HTTP_ERROR_409 The request could not be completed because of a conflict with the current state of the resource. The user should resubmit the request with more information.

0x8019019A -2145844838 BG_E_HTTP_ERROR_410 The requested resource is not currently available at the server, and no forwarding address is known.

0x8019019B -2145844837 BG_E_HTTP_ERROR_411 The server cannot accept the request without a defined content length.

0x8019019C -2145844836 BG_E_HTTP_ERROR_412 The precondition given in one or more of the request header fields evaluated to false when it was tested on the server.

0x8019019D -2145844835 BG_E_HTTP_ERROR_413 The server cannot process the request because the request entity is too large.

0x8019019E -2145844834 BG_E_HTTP_ERROR_414 The server cannot process the request because the request Uniform Resource Identifier (URI) is longer than the server can interpret.

0x8019019F -2145844833 BG_E_HTTP_ERROR_415 The server’s response was not valid. The server was not following the defined protocol. Resume the job, and then Background Intelligent Transfer Service (BITS) will try again.

0x801901A1 -2145844831 BG_E_HTTP_ERROR_417 The server could not meet the expectation given in an Expect request-header field.

0x801901C1 -2145844799 BG_E_HTTP_ERROR_449 The server’s response was not valid. The server was not following the defined protocol. Resume the job, and then Background Intelligent Transfer Service (BITS) will try again.

0x801901F4 -2145844748 BG_E_HTTP_ERROR_500 The server encountered an unexpected condition that prevented it from fulfilling the request.

0x801901F5 -2145844747 BG_E_HTTP_ERROR_501 The server does not support the functionality required to fulfill the request.

0x801901F6 -2145844746 BG_E_HTTP_ERROR_502 The server, while acting as a gateway or proxy to fulfill the request, received an invalid response from the upstream server it accessed.

0x801901F7 -2145844745 BG_E_HTTP_ERROR_503 The service is temporarily overloaded.

0x801901F8 -2145844744 BG_E_HTTP_ERROR_504 The request was timed out waiting for a gateway. Can typically be a DNS issue

0x801901F9 -2145844743 BG_E_HTTP_ERROR_505 The server does not support the HTTP protocol version that was used in the request message.

0x801901FA -2145844742 NULL

0x80194000 -2145828864 BITS_MC_JOB_CANCELLED The administrator canceled job on behalf of %3. The job ID was %1.

0x80194001 -2145828863 BITS_MC_FILE_DELETION_FAILED While canceling job, BITS was not able to remove the temporary files.

0x80194002 -2145828862 BITS_MC_FILE_DELETION_FAILED_MORE Due to space limitations, not all files are listed here. Check for additional files of the form BITxxx.TMP in the same directory.

0x80194003 -2145828861 BITS_MC_JOB_PROPERTY_CHANGE The administrator modified the property of job. The job ID was %1.

0x80194004 -2145828860 BITS_MC_JOB_TAKE_OWNERSHIP The administrator took ownership of job. The job ID was %1.

0x80194005 -2145828859 BITS_MC_JOB_SCAVENGED Job was canceled after being inactive for more than xx days. The job ID was %1.

0x80194006 -2145828858 BITS_MC_JOB_NOTIFICATION_FAILURE Job failed to notify its associated application. BITS will retry in xx minutes. The job ID was %1.

0x80194007 -2145828857 BITS_MC_STATE_FILE_CORRUPT The BITS job list is not in a recognized format. It may have been created by a different version of BITS. The job list has been cleared.

0x80194008 -2145828856 BITS_MC_FAILED_TO_START The BITS server failed to start. Try restarting the service at a later time.

0x80200001 -2145386495 BG_E_Not_Found The requested job was not found.

0x80200002 -2145386494 BG_E_INVALID_STATE The requested action is not allowed in the current job state. The job might have been canceled or completed transferring. It is in a read-only state now.

0x80200003 -2145386493 BG_E_EMPTY There are no files attached to this job. Attach files to the job, and then try again.

0x80200004 -2145386492 BG_E_FILE_NOT_AVAILABLE No file is available because no URL generated an error.

0x80200005 -2145386491 BG_E_PROTOCOL_NOT_AVAILABLE No protocol is available because no URL generated an error.

0x80200006 -2145386490 BG_S_ERROR_CONTEXT_NONE No errors have occurred.

0x80200007 -2145386489 BG_E_ERROR_CONTEXT_UNKNOWN The error occurred in an unknown location.

0x80200008 -2145386488 BG_E_ERROR_CONTEXT_GENERAL_QUEUE_MANAGER The error occurred in the Background Intelligent Transfer Service (BITS) queue manager.

0x80200009 -2145386487 BG_E_ERROR_CONTEXT_LOCAL_FILE The error occurred while the local file was being processed. Verify that the file is not in use, and then try again.

0x8020000A -2145386486 BG_E_ERROR_CONTEXT_REMOTE_FILE The error occurred while the local file was being processed. Verify that the file is not in use, and then try again.

0x8020000B -2145386485 BG_E_ERROR_CONTEXT_GENERAL_TRANSPORT The error occurred in the transport layer. The client could not connect to the server.

0x8020000C -2145386484 BG_E_ERROR_CONTEXT_QUEUE_MANAGER_NOTIFICATION The error occurred while the notification callback was being processed. Background Intelligent Transfer Service (BITS) will try again later.

0x8020000D -2145386483 BG_E_Destination_Locked The destination file system volume is not available. Verify that another program, such as CheckDisk, is not running, which would lock the volume. When the volume is available, Background Intelligent Transfer Service
(BITS) will try again.

0x8020000E -2145386482 BG_E_VOLUME_CHANGED The destination volume has changed. If the disk is removable, it might have been replaced with a different disk. Reinsert the original disk and resume the job.

0x8020000F -2145386481 BG_E_ERROR_INFORMATION_UNAVAILABLE No errors have occurred.

0x80200010 -2145386480 BG_E_NETWORK_DISCONNECTED There are currently no active network connections. Background Intelligent Transfer Service (BITS) will try again when an adapter is connected.

0x80200011 -2145386479 BG_E_MISSING_FILE_SIZE When BITS sends a HEAD request and server/proxy doesn’t return Content-Length header in the response, BITS puts the job in ERROR state with BG_E_MISSING_FILE_SIZE. BITS 1.5 puts the job in ERROR state with BG_E_INVALID_SERVER_RESPONSE
error. Apache 2.0 proxy server is known to exhibit this behavior.

0x80200012 -2145386478 BG_E_INSUFFICIENT_HTTP_SUPPORT The server does not support HTTP 1.1.

0x80200013 -2145386477 BG_E_INSUFFICIENT_RANGE_SUPPORT BITS uses range header in HTTP requests to request parts of a file. If the server or proxy doesn’t understand Range requests and returns full file instead of the requested range, BITS puts the job in ERROR
state. Apache 1.3 proxy is known to show this behavior if the requested file is already in the cache.

0x80200014 -2145386476 BG_E_REMOTE_NOT_SUPPORTED Background Intelligent Transfer Service (BITS) cannot be used remotely.

0x80200015 -2145386475 BG_E_NEW_OWNER_DIFF_MAPPING The drive mapping for the job is different for the current owner than for the previous owner. Use a UNC path instead.

0x80200016 -2145386474 BG_E_NEW_OWNER_NO_FILE_ACCESS The new owner has insufficient access to the local files for the job. The new owner might not have permissions to access the job files. Verify that the new owner has sufficient permissions, and then try again.

0x80200017 -2145386473 BG_S_PARTIAL_COMPLETE Some of the transferred files were deleted because they were incomplete

0x80200018 -2145386472 BG_E_PROXY_LIST_TOO_LARGE The HTTP proxy list cannot be longer than 32,000 characters. Try again with a shorter proxy list.

0x80200019 -2145386471 BG_E_PROXY_BYPASS_LIST_TOO_LARGE The HTTP proxy bypass list cannot be longer than 32,000 characters. Try again with a shorter bypass proxy list.

0x8020001A -2145386470 BG_S_UNABLE_TO_DELETE_FILES Some of the temporary files could not be deleted. Check the system event log for the complete list of files that could not be deleted.

0x8020001B -2145386469 BG_E_INVALID_SERVER_RESPONSE The server’s response was not valid. The server was not following the defined protocol. Resume the job, and then Background Intelligent Transfer Service (BITS) will try again.

0x8020001C -2145386468 BG_E_TOO_MANY_FILES No more files can be added to this job.

0x8020001D -2145386467 BG_E_LOCAL_FILE_CHANGED The local file was changed during the transfer. Recreate the job, and then try to transfer it again.

0x8020001E -2145386466 BG_E_ERROR_CONTEXT_REMOTE_APPLICATION The program on the remote server reported the error.

0x8020001F -2145386465 BG_E_SESSION_NOT_FOUND The specified session could not be found on the server. Background Intelligent Transfer Service (BITS) will try again.

0x80200020 -2145386464 BG_E_TOO_LARGE The job is too large for the server to accept. This job might exceed a job size limit set by the server administrator. Reduce the size of the job, and then try again.

0x80200021 -2145386463 BG_E_STRING_TOO_LONG The specified string is too long.

0x80200022 -2145386462 BG_E_CLIENT_SERVER_PROTOCOL_MISMATCH The client and server versions of Background Intelligent Transfer Service (BITS) are incompatible.

0x80200023 -2145386461 BG_E_SERVER_EXECUTE_ENABLE Scripting OR execute permissions are enabled on the IIS virtual directory associated with the job. To upload files to the virtual directory, disable the scripting and execute permissions on the virtual directory.

0x80200024 -2145386460 BG_E_No_Progress BITS The job is not making headway. The server may be misconfigured. Background Intelligent Transfer Service (BITS) will try again later.

0x80200025 -2145386459 BG_E_USERNAME_TOO_LARGE The user name cannot be longer than 300 characters. Try again with a shorter name.

0x80200026 -2145386458 BG_E_PASSWORD_TOO_LARGE The password cannot be longer than 300 characters. Try again with a shorter password.

0x80200027 -2145386457 BG_E_INVALID_AUTH_TARGET The authentication target specified in the credentials is not defined.

0x80200028 -2145386456 BG_E_INVALID_AUTH_SCHEME The authentication scheme specified in the credentials is not defined.

0x80200029 -2145386455 BG_E_FILE_NOT_FOUND The specified file name does not match any of the files in the job.

0x8020002A -2145386454 BG_S_PROXY_CHANGED The proxy server was changed.

0x8020002B -2145386453 BG_E_INVALID_RANGE The requested byte range extends beyond the end of the web page. Use byte ranges that are wholly within the page.

0x8020002C -2145386452 BG_E_OVERLAPPING_RANGES The list of byte ranges contains some overlapping ranges, which are not supported.

0x8020002D -2145386451 BG_E_CONNECT_FAILURE A connection could not be established.

0x8020002E -2145386450 BG_E_CONNECTION_CLOSED The connection was prematurely closed.

0x8020002F -2145386449 BG_E_KEEP_ALIVE_FAILURE The connection for a request that specifies the Keep-alive header was closed unexpectedly.

0x80200030 -2145386448 BG_E_MESSAGE_LENGTH_LIMIT_EXCEEDED A message was received that exceeded the specified limit when sending a request or receiving a response from the server.

0x80200031 -2145386447 BG_E_NAME_RESOLUTION_FAILURE The host name could not be found.

0x80200032 -2145386446 BG_E_PENDING An internal asynchronous request is pending.

0x80200033 -2145386445 BG_E_PIPELINE_FAILURE

0x80200034 -2145386444 BG_E_PROTOCOL_ERROR The response received from the server was complete but indicated a protocol-level error.

0x80200035 -2145386443 BG_E_PROXY_NAME_RESOLUTION_FAILURE The proxy name could not be found.

0x80200036 -2145386442 BG_E_RECEIVE_FAILURE A complete response was not received from the server.

0x80200037 -2145386441 BG_E_REQUEST_CANCELED The request was canceled.

0x80200038 -2145386440 BG_E_SECURE_CHANNEL_FAILURE An error occurred while establishing a connection using SSL.

0x80200039 -2145386439 BG_E_SEND_FAILURE complete request could not be sent to the remote server.

0x8020003A -2145386438 BG_E_SERVER_PROTOCOL_VIOLATION The server response was not valid.

0x8020003B -2145386437 BG_E_TIMEOUT The operation exceeded the time limit.

0x8020003C -2145386436 BG_E_TRUST_FAILURE A server certificate could not be validated.

0x8020003D -2145386435 BG_E_UNKNOWN_ERROR A unknown error occured.

0x8020003E -2145386434 BG_E_BLOCKED_BY_POLICY Group Policy settings prevent background jobs from running at this time.

0x8020003F -2145386433 BG_E_INVALID_PROXY_INFO The supplied proxy server or bypass list is invalid.

0x80200040 -2145386432 BG_E_INVALID_CREDENTIALS The format of the supplied security credentials is invalid.

0x80240001 -2145124351 WU_E_NO_SERVICE Windows Update Agent was unable to provide the service.

0x80240002 -2145124350 WU_E_MAX_CAPACITY_REACHED The maximum capacity of the service was exceeded.

0x80240003 -2145124349 WU_E_UNKNOWN_ID An ID cannot be found.

0x80240004 -2145124348 WU_E_NOT_INITIALIZED The object could not be initialized.

0x80240005 -2145124347 WU_E_RANGEOVERLAP The update handler requested a byte range overlapping a previously requested range.

0x80240006 -2145124346 WU_E_TOOMANYRANGES The requested number of byte ranges exceeds the maximum number (2^31 — 1).

0x80240007 -2145124345 WU_E_INVALIDINDEX The index to a collection was invalid.

0x80240008 -2145124344 WU_E_ITEMNOTFOUND The key for the item queried could not be found.

0x80240009 -2145124343 WU_E_OPERATIONINPROGRESS Another conflicting operation was in progress. Some operations such as installation cannot be performed twice simultaneously.

0x8024000A -2145124342 WU_E_COULDNOTCANCEL Cancellation of the operation was not allowed.

0x8024000B -2145124341 WU_E_CALL_CANCELLED Operation was cancelled.

0x8024000C -2145124340 WU_E_NOOP No operation was required.

0x8024000D -2145124339 WU_E_XML_MISSINGDATA Windows Update Agent could not find required information in the update’s XML data.

0x8024000E -2145124338 WU_E_XML_INVALID Windows Update Agent found invalid information in the update’s XML data.

0x8024000F -2145124337 WU_E_CYCLE_DETECTED Circular update relationships were detected in the metadata.

0x80240010 -2145124336 WU_E_TOO_DEEP_RELATION Update relationships too deep to evaluate were evaluated.

0x80240011 -2145124335 WU_E_INVALID_RELATIONSHIP An invalid update relationship was detected.

0x80240012 -2145124334 WU_E_REG_VALUE_INVALID An invalid registry value was read.

0x80240013 -2145124333 WU_E_DUPLICATE_ITEM Operation tried to add a duplicate item to a list.

0x80240014 -2145124332 SUS_E_EE_INVALID_EXPRESSION an expression handler was passed an expression that is bad.

0x80240015 -2145124331 SUS_E_EE_MISSING_METADATA an expression handler was passed an expression that requires an applicability metadata blob, but did not receive one or received too many.

0x80240016 -2145124330 WU_E_INSTALL_NOT_ALLOWED Operation tried to install while another installation was in progress or the system was pending a mandatory restart.

0x80240017 -2145124329 WU_E_NOT_APPLICABLE Operation was not performed because there are no applicable updates.

0x80240018 -2145124328 WU_E_NO_USERTOKEN Operation failed because a required user token is missing.

0x80240019 -2145124327 WU_E_EXCLUSIVE_INSTALL_CONFLICT An exclusive update cannot be installed with other updates at the same time.

0x8024001A -2145124326 WU_E_POLICY_NOT_SET A policy value was not set.

0x8024001B -2145124325 WU_E_SELFUPDATE_IN_PROGRESS The operation could not be performed because the Windows Update Agent is self-updating.

0x8024001C -2145124324 SUS_E_WRONGMSIVERSION

0x8024001D -2145124323 WU_E_INVALID_UPDATE An update contains invalid metadata.

0x8024001E -2145124322 WU_E_SERVICE_STOP Operation did not complete because the service or system was being shut down.

0x8024001F -2145124321 WU_E_NO_CONNECTION Operation did not complete because the network connection was unavailable.

0x80240020 -2145124320 WU_E_NO_INTERACTIVE_USER Operation did not complete because there is no logged-on interactive user.

0x80240021 -2145124319 WU_E_TIME_OUT Operation did not complete because it timed out.

0x80240022 -2145124318 WU_E_ALL_UPDATES_FAILED Operation failed for all the updates.

0x80240023 -2145124317 WU_E_EULAS_DECLINED The license terms for all updates were declined.

0x80240024 -2145124316 WU_E_NO_UPDATE There are no updates.

0x80240025 -2145124315 WU_E_USER_ACCESS_DISABLED Group Policy settings prevented access to Windows Update.

0x80240026 -2145124314 WU_E_INVALID_UPDATE_TYPE The type of update is invalid.

0x80240027 -2145124313 WU_E_URL_TOO_LONG The URL exceeded the maximum length.

0x80240028 -2145124312 WU_E_UNINSTALL_NOT_ALLOWED The update could not be uninstalled because the request did not originate from a WSUS server.

0x80240029 -2145124311 WU_E_INVALID_PRODUCT_LICENSE Search may have missed some updates before there is an unlicensed application on the system.

0x8024002a -2145124310 WU_E_MISSING_HANDLER A component required for detecting applicable updates was missing.

0x8024002B -2145124309 WU_E_LEGACYSERVER An operation did not complete because it requires a newer version of server.

0x8024002C -2145124308 WU_E_BIN_SOURCE_ABSENT A delta-compressed update could not be installed because it required the source.

0x8024002D WU_E_SOURCE_ABSENT A full-file update could not be installed because it required the source.

0x8024002E -2145124306 WU_E_WU_DISABLED Access to an unmanaged server is not allowed.

0x8024002F -2145124305 WU_E_CALL_CANCELLED_BY_POLICY Operation did not complete because the DisableWindowsUpdateAccess policy was set.

0x80240030 -2145124304 WU_E_INVALID_PROXY_SERVER The format of the proxy list was invalid.

0x80240031 -2145124303 WU_E_INVALID_FILE The file is in the wrong format.

0x80240032 -2145124302 WU_E_INVALID_CRITERIA The search criteria string was invalid.

0x80240032 -2145124302 [Scan fails on x64vista] OnSearchComplete Failed to end search job [SMS] WU client failed Searching for update with error.

0x80240033 -2145124301 WU_E_EULA_UNAVAILABLE License terms could not be downloaded.

0x80240034 -2145124300 WU_E_DOWNLOAD_FAILED Update failed to download.

0x80240035 -2145124299 WU_E_UPDATE_NOT_PROCESSED INTERNAL ONLY: The update was not processed.

0x80240036 -2145124298 WU_E_INVALID_OPERATION The object’s current state did not allow the operation.

0x80240037 -2145124297 WU_E_NOT_SUPPORTED The functionality for the operation is not supported.

0x80240038 WU_E_WINHTTP_INVALID_FILE The downloaded file has an unexpected content type.

0x80240039 WU_E_TOO_MANY_RESYNC Agent is asked by server to resync too many times.

0x80240040 WU_E_NO_SERVER_CORE_SUPPORT WUA API method does not run on Server Core installation.

0x80240041 WU_E_SYSPREP_IN_PROGRESS Service is not available while sysprep is running.

0x80240042 WU_E_UNKNOWN_SERVICE The update service is no longer registered with AU.

0x80240FFF -2145120257 WU_E_UNEXPECTED An operation failed due to reasons not covered by another error code.

0x80241001 -2145120255 WU_E_MSI_WRONG_VERSION Search may have missed some updates because the Windows Installer is less than version 3.1.

0x80241002 -2145120254 WU_E_MSI_NOT_CONFIGURED Search may have missed some updates because the Windows Installer is not configured.

0x80241003 -2145120253 WU_E_MSP_DISABLED Search may have missed some updates because policy has disabled Windows Installer patching.

0x80241004 WU_E_MSI_WRONG_APP_CONTEXT An update could not be applied because the application is installed per-user.

0x80241FFF -2145116161 WU_E_MSP_UNEXPECTED Search may have missed some updates because there was a failure of the Windows Installer.

0x80242000 -2145116160 WU_E_UH_REMOTEUNAVAILABLE A request for a remote update handler could not be completed because no remote process is available.

0x80242001 -2145116159 WU_E_UH_LOCALONLY A request for a remote update handler could not be completed because the handler is local only.

0x80242002 -2145116158 WU_E_UH_UNKNOWNHANDLER A request for an update handler could not be completed because the handler could not be recognized.

0x80242003 -2145116157 WU_E_UH_REMOTEALREADYACTIVE A remote update handler could not be created because one already exists.

0x80242004 -2145116156 WU_E_UH_DOESNOTSUPPORTACTION support install (uninstall).A request for the handler to install (uninstall) an update could not be completed because the update does not

0x80242005 -2145116155 WU_E_UH_WRONGHANDLER An operation did not complete because the wrong handler was specified.

0x80242006 -2145116154 WU_E_UH_INVALIDMETADATA A handler operation could not be completed because the update contains invalid metadata.

0x80242007 -2145116153 WU_E_UH_INSTALLERHUNG An operation could not be completed because the installer exceeded the time limit.

0x80242008 -2145116152 WU_E_UH_OPERATIONCANCELLED An operation being done by the update handler was cancelled.

0x80242009 -2145116151 WU_E_UH_BADHANDLERXML An operation could not be completed because the handler-specific metadata is invalid.

0x8024200A -2145116150 WU_E_UH_CANREQUIREINPUT A request to the handler to install an update could not be completed because the update requires user input.

0x8024200B -2145116149 WU_E_UH_INSTALLERFAILURE The installer failed to install (uninstall) one or more updates.

0x8024200C -2145116148 WU_E_UH_FALLBACKTOSELFCONTAINED The update handler should download self-contained content rather than delta-compressed content for the update.

0x8024200D -2145116147 WU_E_UH_NEEDANOTHERDOWNLOAD The update handler did not install the update because it needs to be downloaded again.

0x8024200E -2145116146 WU_E_UH_NOTIFYFAILURE The update handler failed to send notification of the status of the install (uninstall) operation.

0x8024200F WU_E_UH_INCONSISTENT_FILE_NAMES The file names contained in the update metadata and in the update package are inconsistent.

0x80242010 WU_E_UH_FALLBACKERROR The update handler failed to fall back to the self-contained content.

0x80242011 WU_E_UH_TOOMANYDOWNLOADREQUESTS The update handler has exceeded the maximum number of download requests.

0x80242012 WU_E_UH_UNEXPECTEDCBSRESPONSE The update handler has received an unexpected response from CBS.

0x80242013 WU_E_UH_BADCBSPACKAGEID The update metadata contains an invalid CBS package identifier.

0x80242014 WU_E_UH_POSTREBOOTSTILLPENDING The post-reboot operation for the update is still in progress.

0x80242015 WU_E_UH_POSTREBOOTRESULTUNKNOWN The result of the post-reboot operation for the update could not be determined.

0x80242016 WU_E_UH_POSTREBOOTUNEXPECTEDSTATE The state of the update after its post-reboot operation has completed is unexpected.

0x80242017 WU_E_UH_NEW_SERVICING_STACK_REQUIRED The OS servicing stack must be updated before this update is downloaded or installed.

0x80242FFF -2145112065 WU_E_UH_UNEXPECTED An update handler error not covered by another WU_E_UH_* code.

0x80243001 WU_E_INSTALLATION_RESULTS_UNKNOWN_VERSION The results of download and installation could not be read from the registry due to an unrecognized data format version.

0x80243002 WU_E_INSTALLATION_RESULTS_INVALID_DATA The results of download and installation could not be read from the registry due to an invalid data format.

0x80243003 WU_E_INSTALLATION_RESULTS_NOT_FOUND The results of download and installation are not available; the operation may have failed to start.

0x80243004 WU_E_TRAYICON_FAILURE A failure occurred when trying to create an icon in the taskbar notification area.

0x80243FFD WU_E_NON_UI_MODE Unable to show UI when in non-UI mode; WU client UI modules may not be installed.

0x80243FFE WU_E_WUCLTUI_UNSUPPORTED_VERSION Unsupported version of WU client UI exported functions.

0x80243FFF -2145107969 WU_E_AUCLIENT_UNEXPECTED There was a user interface error not covered by another WU_E_AUCLIENT_* error code.

0x80244000 -2145107968 WU_E_PT_SOAPCLIENT_BASE WU_E_PT_SOAPCLIENT_* error codes map to the SOAPCLIENT_ERROR enum of the ATL Server Library.

0x80244001 -2145107967 WU_E_PT_SOAPCLIENT_INITIALIZE installation failure.Same as SOAPCLIENT_INITIALIZE_ERROR — initialization of the SOAP client failed, possibly because of an MSXML

0x80244002 -2145107966 WU_E_PT_SOAPCLIENT_OUTOFMEMORY Same as SOAPCLIENT_OUTOFMEMORY — SOAP client failed because it ran out of memory.

0x80244003 -2145107965 WU_E_PT_SOAPCLIENT_GENERATE Same as SOAPCLIENT_GENERATE_ERROR — SOAP client failed to generate the request.

0x80244004 -2145107964 WU_E_PT_SOAPCLIENT_CONNECT Same as SOAPCLIENT_CONNECT_ERROR — SOAP client failed to connect to the server.

0x80244005 -2145107963 WU_E_PT_SOAPCLIENT_SEND Same as SOAPCLIENT_SEND_ERROR — SOAP client failed to send a message for reasons of WU_E_WINHTTP_* error codes.

0x80244006 -2145107962 WU_E_PT_SOAPCLIENT_SERVER Same as SOAPCLIENT_SERVER_ERROR — SOAP client failed because there was a server error.

0x80244007 -2145107961 WU_E_PT_SOAPCLIENT_SOAPFAULT error codes.Same as SOAPCLIENT_SOAPFAULT — SOAP client failed because there was a SOAP fault for reasons of WU_E_PT_SOAP_*

0x80244008 -2145107960 WU_E_PT_SOAPCLIENT_PARSEFAULT Same as SOAPCLIENT_PARSEFAULT_ERROR — SOAP client failed to parse a SOAP fault.

0x80244009 -2145107959 WU_E_PT_SOAPCLIENT_READ Same as SOAPCLIENT_READ_ERROR — SOAP client failed while reading the response from the server.

0x8024400A -2145107958 WU_E_PT_SOAPCLIENT_PARSE Same as SOAPCLIENT_PARSE_ERROR — SOAP client failed to parse the response from the server.

0x8024400B -2145107957 WU_E_PT_SOAP_VERSION Same as SOAP_E_VERSION_MISMATCH — SOAP client found an unrecognizable namespace for the SOAP envelope.

0x8024400C -2145107956 WU_E_PT_SOAP_MUST_UNDERSTAND Same as SOAP_E_MUST_UNDERSTAND — SOAP client was unable to understand a header.

0x8024400D -2145107955 WU_E_PT_SOAP_CLIENT Same as SOAP_E_CLIENT — SOAP client found the message was malformed; fix before resending.

0x8024400E -2145107954 WU_E_PT_SOAP_SERVER Same as SOAP_E_SERVER — The SOAP message could not be processed due to a server error; resend later.

0x8024400F -2145107953 WU_E_PT_WMI_ERROR There was an unspecified Windows Management Instrumentation (WMI) error.

0x80244010 -2145107952 WU_E_PT_EXCEEDED_MAX_SERVER_TRIPS The number of round trips to the server exceeded the maximum limit.

0x80244011 -2145107951 WU_E_PT_SUS_SERVER_NOT_SET WUServer policy value is missing in the registry.

0x80244012 -2145107950 WU_E_PT_DOUBLE_INITIALIZATION Initialization failed because the object was already initialized.

0x80244013 -2145107949 WU_E_PT_INVALID_COMPUTER_NAME The computer name could not be determined.

0x80244014 -2145107948 WU_E_PT_INVALID_COMPUTER_LSID Cannot determine computer LSID.

0x80244015 -2145107947 WU_E_PT_REFRESH_CACHE_REQUIRED Server replied with InvalidCookie or ServerChanged Caller should refresh its internal state then repeat the call to Protocol Talker

0x80244016 -2145107946 WU_E_PT_HTTP_STATUS_BAD_REQUEST Same as HTTP status 400 — the server could not process the request due to invalid syntax.

0x80244017 -2145107945 WU_E_PT_HTTP_STATUS_DENIED Same as HTTP status 401 — the requested resource requires user authentication.

0x80244018 -2145107944 WU_E_PT_HTTP_STATUS_FORBIDDEN Same as HTTP status 403 — server understood the request, but declined to fulfill it.

0x80244019 -2145107943 WU_E_PT_HTTP_STATUS_NOT_FOUND Same as HTTP status 404 — the server cannot find the requested URI (Uniform Resource Identifier)

0x8024401A -2145107942 WU_E_PT_HTTP_STATUS_BAD_METHOD Same as HTTP status 405 — the HTTP method is not allowed.

0x8024401B -2145107941 WU_E_PT_HTTP_STATUS_PROXY_AUTH_REQ Same as HTTP status 407 — proxy authentication is required.

0x8024401C -2145107940 WU_E_PT_HTTP_STATUS_REQUEST_TIMEOUT Same as HTTP status 408 — the server timed out waiting for the request.

0x8024401D -2145107939 WU_E_PT_HTTP_STATUS_CONFLICT ce.Same as HTTP status 409 — the request was not completed due to a conflict with the current state of the resour

0x8024401E -2145107938 WU_E_PT_HTTP_STATUS_GONE Same as HTTP status 410 — requested resource is no longer available at the server.

0x8024401F -2145107937 WU_E_PT_HTTP_STATUS_SERVER_ERROR Same as HTTP status 500 — an error internal to the server prevented fulfilling the request.

0x80244020 -2145107936 WU_E_PT_HTTP_STATUS_NOT_SUPPORTED Same as HTTP status 500 — server does not support the functionality required to fulfill the request.

0x80244021 -2145107935 WU_E_PT_HTTP_STATUS_BAD_GATEWAY Same as HTTP status 502. The server, while acting as a gateway or proxy, received an invalid response from the upstream server it accessed in attempting to fulfill the request.

0x80244022 -2145107934 WU_E_PT_HTTP_STATUS_SERVICE_UNAVAIL Same as HTTP status 503 — the service is temporarily overloaded.

0x80244023 -2145107933 WU_E_PT_HTTP_STATUS_GATEWAY_TIMEOUT Same as HTTP status 504 — the request was timed out waiting for a gateway.

0x80244024 -2145107932 WU_E_PT_HTTP_STATUS_VERSION_NOT_SUP Same as HTTP status 505 — the server does not support the HTTP protocol version used for the request.

0x80244025 -2145107931 WU_E_PT_FILE_LOCATIONS_CHANGED Operation failed due to a changed file location; refresh internal state and resend.

0x80244026 -2145107930 WU_E_PT_REGISTRATION_NOT_SUPPORTED Operation failed because Windows Update Agent does not support registration with a non-WSUS server.

0x80244027 -2145107929 WU_E_PT_NO_AUTH_PLUGINS_REQUESTED The server returned an empty authentication information list.

0x80244028 -2145107928 WU_E_PT_NO_AUTH_COOKIES_CREATED Windows Update Agent was unable to create any valid authentication cookies.

0x80244029 -2145107927 WU_E_PT_INVALID_CONFIG_PROP A configuration property value was wrong.

0x8024402A -2145107926 WU_E_PT_CONFIG_PROP_MISSING A configuration property value was missing.

0x8024402B -2145107925 WU_E_PT_HTTP_STATUS_NOT_MAPPED The HTTP request could not be completed and the reason did not correspond to any of the WU_E_PT_HTTP_* errorcodes.

0x8024402C -2145107924 WU_E_PT_WINHTTP_NAME_NOT_RESOLVED Winhttp SendRequest/ReceiveResponse failed with 0x2ee7 error. Either the proxy server or target server name can not be resolved. Corresponding to ERROR_WINHTTP_NAME_NOT_RESOLVED. Stop/Restart service
or reboot the machine if you see this error frequently.

0x8024402F WU_E_PT_ECP_SUCCEEDED_WITH_ERRORS External cab file processing completed with some errors.

0x80244030 WU_E_PT_ECP_INIT_FAILED The external cab processor initialization did not complete.

0x80244031 WU_E_PT_ECP_INVALID_FILE_FORMAT The format of a metadata file was invalid.

0x80244032 WU_E_PT_ECP_INVALID_METADATA External cab processor found invalid metadata.

0x80244033 WU_E_PT_ECP_FAILURE_TO_EXTRACT_DIGEST The file digest could not be extracted from an external cab file.

0x80244034 WU_E_PT_ECP_FAILURE_TO_DECOMPRESS_CAB_FILE An external cab file could not be decompressed.

0x80244035 WU_E_PT_ECP_FILE_LOCATION_ERROR External cab processor was unable to get file locations.

0x80244FFF -2145103873 WU_E_PT_UNEXPECTED A communication error not covered by another WU_E_PT_* error code.

0x80245001 -2145103871 WU_E_REDIRECTOR_LOAD_XML The redirector XML document could not be loaded into the DOM class.

0x80245002 -2145103870 WU_E_REDIRECTOR_S_FALSE The redirector XML document is missing some required information.

0x80245003 -2145103869 WU_E_REDIRECTOR_ID_SMALLER The redirectorId in the downloaded redirector cab is less than in the cached cab.

0x8024502D -2145103827 WU_E_PT_SAME_REDIR_ID Windows Update Agent failed to download a redirector cabinet file with a new redirectorId value from the server during the recovery.

0x8024502E -2145103826 WU_E_PT_NO_MANAGED_RECOVER A redirector recovery action did not complete because the server is managed.

0x80245FFF -2145099777 WU_E_REDIRECTOR_UNEXPECTED The redirector failed for reasons not covered by another WU_E_REDIRECTOR_* error code.

0x80246001 -2145099775 WU_E_DM_URLNOTAVAILABLE A download manager operation could not be completed because the requested file does not have a URL.

0x80246002 -2145099774 WU_E_DM_INCORRECTFILEHASH A download manager operation could not be completed because the file digest was not recognized.

0x80246003 -2145099773 WU_E_DM_UNKNOWNALGORITHM A download manager operation could not be completed because the file metadata requested an unrecognized hash algorithm.

0x80246004 -2145099772 WU_E_DM_NEEDDOWNLOADREQUEST An operation could not be completed because a download request is required from the download handler.

0x80246005 -2145099771 WU_E_DM_NONETWORK A download manager operation could not be completed because the network connection was unavailable.

0x80246006 -2145099770 WU_E_DM_WRONGBITSVERSION A download manager operation could not be completed because the version of Background Intelligent Transfer Service (BITS) is incompatible.

0x80246007 -2145099769 WU_E_DM_NOTDOWNLOADED The update has not been downloaded.

0x80246008 -2145099768 WU_E_DM_FAILTOCONNECTTOBITS A download manager operation failed because the download manager was unable to connect the Background Intelligent Transfer Service (BITS).

0x80246009 -2145099767 WU_E_DM_BITSTRANSFERERROR A download manager operation failed because there was an unspecified Background Intelligent Transfer Service (BITS) transfer error.

0x8024600A WU_E_DM_DOWNLOADLOCATIONCHANGED A download must be restarted because the location of the source of the download has changed.

0x80246fff WU_E_DM_UNEXPECTED generic unexpected download manager failure

0x80247001 WU_E_OL_INVALID_SCANFILE An operation could not be completed because the scan package was invalid.

0x80247FFF WU_E_OL_UNEXPECTED Search using the scan package failed.

0x80248000 -2145091584 WU_E_DS_SHUTDOWN An operation failed because Windows Update Agent is shutting down.

0x80248001 -2145091583 WU_E_DS_INUSE An operation failed because the data store was in use.

0x80248002 -2145091582 WU_E_DS_INVALID The current and expected states of the data store do not match.

0x80248003 -2145091581 WU_E_DS_TABLEMISSING The data store is missing a table.

0x80248004 -2145091580 WU_E_DS_TABLEINCORRECT The data store contains a table with unexpected columns.

0x80248005 -2145091579 WU_E_DS_INVALIDTABLENAME A table could not be opened because the table is not in the data store.

0x80248006 -2145091578 WU_E_DS_BADVERSION The current and expected versions of the data store do not match.

0x80248007 -2145091577 WU_E_DS_NODATA The information requested is not in the data store.

0x80248008 -2145091576 WU_E_DS_MISSINGDATA The data store is missing required information or has a NULL in a table column that requires a non-null value.

0x80248009 -2145091575 WU_E_DS_MISSINGREF linked row.The data store is missing required information or has a reference to missing license terms, file, localized property or

0x8024800A -2145091574 WU_E_DS_UNKNOWNHANDLER The update was not processed because its update handler could not be recognized.

0x8024800B -2145091573 WU_E_DS_CANTDELETE The update was not deleted because it is still referenced by one or more services.

0x8024800C -2145091572 WU_E_DS_LOCKTIMEOUTEXPIRED The data store section could not be locked within the allotted time.

0x8024800D -2145091571 WU_E_DS_NOCATEGORIES The category was not added because it contains no parent categories and is not a top-level category itself.

0x8024800E -2145091570 WU_E_DS_ROWEXISTS The row was not added because an existing row has the same primary key.

0x8024800F -2145091569 WU_E_DS_STOREFILELOCKED The data store could not be initialized because it was locked by another process.

0x80248010 -2145091568 WU_E_DS_CANNOTREGISTER The data store is not allowed to be registered with COM in the current process.

0x80248011 -2145091567 WU_E_DS_UNABLETOSTART Could not create a data store object in another process.

0x80248012 -2145091566 SUS_E_DS_MISSINGFILEFORURL a file URL was passed in for a file that does not exist in the datastore

0x80248013 -2145091565 WU_E_DS_DUPLICATEUPDATEID The server sent the same update to the client with two different revision IDs.

0x80248014 -2145091564 WU_E_DS_UNKNOWNSERVICE An operation did not complete because the service is not in the data store.

0x80248015 -2145091563 WU_E_DS_SERVICEEXPIRED An operation did not complete because the registration of the service has expired.

0x80248016 -2145091562 WU_E_DS_DECLINENOTALLOWED ine.A request to hide an update was declined because it is a mandatory update or because it was deployed with a deadl

0x80248017 -2145091561 WU_E_DS_TABLESESSIONMISMATCH A table was not closed because it is not associated with the session.

0x80248018 -2145091560 WU_E_DS_SESSIONLOCKMISMATCH A table was not closed because it is not associated with the session.

0x80248019 -2145091559 WU_E_DS_NEEDWINDOWSSERVICE A request to remove the Windows Update service or to unregister it with Automatic Updates was declined because it is a built-in service and/or Automatic Updates cannot fall back to another service.

0x8024801A -2145091558 WU_E_DS_INVALIDOPERATION A request was declined because the operation is not allowed.

0x8024801B -2145091557 WU_E_DS_SCHEMAMISMATCH The schema of the current data store and the schema of a table in a backup XML document do not match.

0x8024801C -2145091556 WU_E_DS_RESETREQUIRED The data store requires a session reset; release the session and retry with a new session.

0x8024801D -2145091555 WU_E_DS_IMPERSONATED A data store operation did not complete because it was requested with an impersonated identity.

0x80248FFF -2145087489 WU_E_DS_UNEXPECTED A data store error not covered by another WU_E_DS_* code.

0x80249001 WU_E_INVENTORY_PARSEFAILED Parsing of the rule file failed.

0x80249002 WU_E_INVENTORY_GET_INVENTORY_TYPE_FAILED Failed to get the requested inventory type from the server.

0x80249003 WU_E_INVENTORY_RESULT_UPLOAD_FAILED Failed to upload inventory result to the server.

0x80249004 WU_E_INVENTORY_UNEXPECTED There was an inventory error not covered by another error code.

0x80249005 WU_E_INVENTORY_WMI_ERROR A WMI error occurred when enumerating the instances for a particular class.

0x8024A000 -2145083392 WU_E_AU_NOSERVICE Automatic Updates was unable to service incoming requests.

0x8024A001 -2145083391 SUS_E_AU_LEGACYSERVER

0x8024A002 -2145083390 WU_E_AU_NONLEGACYSERVER The old version of the Automatic Updates client has stopped because the WSUS server has been upgraded.

0x8024A003 -2145083389 WU_E_AU_LEGACYCLIENTDISABLED The old version of the Automatic Updates client was disabled.

0x8024A004 -2145083388 WU_E_AU_PAUSED Automatic Updates was unable to process incoming requests because it was paused.

0x8024A005 WU_E_AU_NO_REGISTERED_SERVICE No unmanaged service is registered with AU.

0x8024A008 WU_E_AU_OOBE_IN_PROGRESS

0x8024AFFF -2145079297 WU_E_AU_UNEXPECTED An Automatic Updates error not covered by another WU_E_AU * code.

0x8024C001 -2145075199 WU_E_DRV_PRUNED A driver was skipped.

0x8024C002 -2145075198 WU_E_DRV_NOPROP_OR_LEGACY A property for the driver could not be found. It may not conform with required specifications.

0x8024C003 -2145075197 WU_E_DRV_REG_MISMATCH The registry type read for the driver does not match the expected type.

0x8024C004 -2145075196 WU_E_DRV_NO_METADATA The driver update is missing metadata.

0x8024C005 -2145075195 WU_E_DRV_MISSING_ATTRIBUTE The driver update is missing a required attribute.

0x8024C006 -2145075194 WU_E_DRV_SYNC_FAILED Driver synchronization failed.

0x8024C007 -2145075193 WU_E_DRV_NO_PRINTER_CONTENT Information required for the synchronization of applicable printers is missing.

0x8024CFFF -2145071105 WU_E_DRV_UNEXPECTED A driver error not covered by another WU_E_DRV_* code.

0x8024D001 -2145071103 WU_E_SETUP_INVALID_INFDATA Windows Update Agent could not be updated because an INF file contains invalid information.

0x8024D002 -2145071102 WU_E_SETUP_INVALID_IDENTDATA Windows Update Agent could not be updated because the wuident.cab file contains invalid information.

0x8024D003 -2145071101 WU_E_SETUP_ALREADY_INITIALIZED Windows Update Agent could not be updated because of an internal error that caused setup initialization to be performed twice.

0x8024D004 -2145071100 WU_E_SETUP_NOT_INITIALIZED Windows Update Agent could not be updated because setup initialization never completed successfully.

0x8024D005 -2145071099 WU_E_SETUP_SOURCE_VERSION_MISMATCH Windows Update Agent could not be updated because the versions specified in the INF do not match the actual source file versions.

0x8024D006 -2145071098 WU_E_SETUP_TARGET_VERSION_GREATER Windows Update Agent could not be updated because a WUA file on the target system is newer than the corresponding source file.

0x8024D007 WU_E_SETUP_REGISTRATION_FAILED Windows Update Agent could not be updated because regsvr32.exe returned an error.

0x8024D008 WU_E_SELFUPDATE_SKIP_ON_FAILURE An update to the Windows Update Agent was skipped because previous attempts to update have failed.

0x8024D009 WU_E_SETUP_SKIP_UPDATE An update to the Windows Update Agent was skipped due to a directive in the wuident.cab file.

0x8024D00A WU_E_SETUP_UNSUPPORTED_CONFIGURATION Windows Update Agent could not be updated because the current system configuration is not supported.

0x8024D00B WU_E_SETUP_BLOCKED_CONFIGURATION Windows Update Agent could not be updated because the system is configured to block the update.

0x8024D00C WU_E_SETUP_REBOOT_TO_FIX Windows Update Agent could not be updated because a restart of the system is required.

0x8024D00D WU_E_SETUP_ALREADYRUNNING Windows Update Agent setup is already running.

0x8024D00E WU_E_SETUP_REBOOTREQUIRED Windows Update Agent setup package requires a reboot to complete installation.

0x8024D00F WU_E_SETUP_HANDLER_EXEC_FAILURE Windows Update Agent could not be updated because the setup handler failed during execution.

0x8024D010 WU_E_SETUP_INVALID_REGISTRY_DATA Windows Update Agent could not be updated because the registry contains invalid information.

0x8024D011 WU_E_SELFUPDATE_REQUIRED Windows Update Agent must be updated before search can continue.

0x8024D012 WU_E_SELFUPDATE_REQUIRED_ADMIN Windows Update Agent must be updated before search can continue. An administrator is required to perform the operation.

0x8024D013 WU_E_SETUP_WRONG_SERVER_VERSION Windows Update Agent could not be updated because the server does not contain update information for this version.

0x8024DFFF -2145067009 WU_E_SETUP_UNEXPECTED Windows Update Agent could not be updated because of an error not covered by another WU_E_SETUP_* error code.

0x8024E001 -2145067007 WU_E_EE_UNKNOWN_EXPRESSION An expression evaluator operation could not be completed because an expression was unrecognized.

0x8024E002 -2145067006 WU_E_EE_INVALID_EXPRESSION An expression evaluator operation could not be completed because an expression was invalid.

0x8024E003 -2145067005 WU_E_EE_MISSING_METADATA An expression evaluator operation could not be completed because an expression contains an incorrect number of metadata nodes.

0x8024E004 -2145067004 WU_E_EE_INVALID_VERSION An expression evaluator operation could not be completed because the version of the serialized expression data is invalid.

0x8024E005 -2145067003 WU_E_EE_NOT_INITIALIZED The expression evaluator could not be initialized.

0x8024E006 -2145067002 WU_E_EE_INVALID_ATTRIBUTEDATA An expression evaluator operation could not be completed because there was an invalid attribute.

0x8024E007 WU_E_EE_CLUSTER_ERROR An expression evaluator operation could not be completed because the cluster state of the computer could not be determined.

0x8024EFFF -2145062913 WU_E_EE_UNEXPECTED There was an expression evaluator error not covered by another WU_E_EE_* error code.

0x8024F001 -2145062911 WU_E_REPORTER_EVENTCACHECORRUPT The event cache file was defective.

0x8024F002 -2145062910 WU_E_REPORTER_EVENTNAMESPACEPARSEFAILED The XML in the event namespace descriptor could not be parsed.

0x8024F003 -2145062909 WU_E_INVALID_EVENT The XML in the event namespace descriptor could not be parsed.

0x8024F004 -2145062908 WU_E_SERVER_BUSY The server rejected an event because the server was too busy.

0x8024FFFF -2145058817 WU_E_REPORTER_UNEXPECTED There was a reporter error not covered by another error code.

0x87FF0001 -2013331455 Error_Label_Unreadable

0x87FF0004 -2013331452 Error_Too_Many_Open_Files The system can not open the file

0x8DDD0001 -1914896383 ErrorNoScripting

0x8DDD0002 -1914896382 ErrorNotAdmin

0x8DDD0003 -1914896381 ErrorDisabled Site timeout waiting for the control.

0x8DDD0004 -1914896380 ErrorControlFailed

0x8DDD0006 -1914896378 ErrorWin2KLessThanSP3

0x8DDD0007 -1914896377 ErrorRebootRequired

0x8DDD000F -1914896369 ErrorIis404

0x8DDD0010 -1914896368 ErrorIis500

0x8DDD0012 -1914896366 ErrorNoFrames

0x8DDD0018 -1914896360 ErrorAUDisabled AU could be disabled, not started etc. BITS could be disabled or not started etc.

0xC0000005 -1073741819 STATUS_ACCESS_VIOLATION

0xC0000006 -1073741818 STATUS_IN_PAGE_ERROR

0xc000001d -1073741795 STATUS_ILLEGAL_INSTRUCTION

0xc000001e -1073741794 STATUS_INVALID_LOCK_SEQUENCE

0xc0000090 -1073741680 STATUS_FLOAT_INVALID OPERATION

0xc0000096 -1073741674 STATUS_PRIVILEGED_INSTRUCTION

0xc00000fd -1073741571 STATUS_STACK_OVERFLOW

0xc000013a -1073741510 STATUS_CONTROL_C_EXIT

0xC0000142 -1073741502 STATUS_DLL_INIT_FAILED

0xC0000194 -1073741420 Status_Not_Found object not found

0xC0000354 -1073740972 Status_Debugger_Inactive An attempt to do an operation on a debug port failed because the port is in the process of being deleted.

0xC8000147 -939523769 NULL

0xC8000152 -939523758 MCIERR_Seq_Port_Nonexistent

0xC8000158 -939523752 NULL

0xC80001FE -939523586 hrLogWriteFail unable to write to the log file

0xC8000211 -939523567 hrLogDiskFull

0xC8000240 -939523520 SE_Auditid_Assign_Special_Priv

0xC80003F3 -939523085 hrOutOfMemory The computer is out of memory

0xC80003F6 -939523082 hrOutOfBuffers out of database page buffers

0xC80003FA -939523078 hrReadVerifyFailure

0xC80003FB -939523077 Error_No_Log_Space System could not allocate the required space in a registry log

0xC80003FE -939523074 hrDiskIO

0xC8000402 -939523070 ERROR_OBJECT_ALREADY_EXISTS Object already exists

0xC8000402 -939523070 RECORD TOO BIG This seems to be a recoverable error, and possibly due to many Scan Service Packages left around when the 2003 ITMU was used. This is NOT the case.

0xC800042D -939523027 RefreshServerUpdateInfo WSUS unable to update software distribution folder. Scans fail.

0xC8000442 -939523006 CS_Event_reg_Operations_Failed

0xC800044E -939522994 hrWriteConflict The write lock failed due to an outstanding write lock

0xC8000710 -939522288 hrDiskFull

0xD0000005 -805306363 ERROR_ACCESS_DENIED

0xD0000006 -805306362 Error_Invalid_Handle

0xD0000008 -805306360 ERROR_NOT_ENOUGH_MEMORY not enough storage is available to process this command

0xD0000017 -805306345 Error_CRC

0xD0000018 -805306344 Error_Bad_Length the program issued a command but the command length is incorrect

0xD000001D -805306339 Error_Write_Fault the system cannot write the specified device

0xD0000022 -805306334 Error_Wrong_Disk

0xD000012D -805306067 HTTP_Status_Moved Object Permanently moved

0xD0000135 -805306059 MCIErr_Set_Drive

0xD000013A -805306054 NULL

0xD0000142 -805306046 MCIERR_Wave_Inputsinuse

0xD0000194 -805305964 HTTP_Status_Not_Found

0xD0000354 -805305516 NULL

0xe0000101 -536870655 ERROR_SECTION_NOT_FOUND

0xe0000201 -536870399 ERROR_CLASS_MISMATCH

0xe0000203 -536870397 ERROR_NO_DRIVER_SELECTED

0xe000020b -536870389 ERROR_NO_SUCH_DEVINST

0xe000020d -536870387 ERROR_INVALID_CLASS_INSTALLER

0xe0000217 -536870377 ERROR_BAD_SERVICE_INSTALLSECT

0xe0000219 -536870375 ERROR_NO_ASSOCIATED_SERVICE

0xe000022b -536870357 ERROR_DI_DONT_INSTALL

0xe000022d -536870355 ERROR_NON_WINDOWS_NT_DRIVER

0xe000022f -536870353 ERROR_NO_CATALOG_FOR_OEM_INF

0xe0000230 -536870352 ERROR_DEVINSTALL_QUEUE_NONNATIVE

0xe0000234 -536870348 ERROR_DRIVER_NONNATIVE

0xe000023a -536870342 ERROR_PNP REGISTRY_ERROR

0x800f0800 CBS_E_INTERNAL_ERROR Reserved error (|); there is no message for this error

0x800f0801 CBS_S_BUSY operation is still in progress

0x800f0801 CBS_E_NOT_INITIALIZED session not initialized

0x800f0802 CBS_S_ALREADY_EXISTS source already exists, now copy not added

0x800f0802 CBS_E_ALREADY_INITIALIZED session already initialized

0x800f0803 CBS_S_STACK_SHUTDOWN_REQUIRED servicing stack updated, aborting

0x800f0803 CBS_E_INVALID_PARAMETER invalid method argument

0x800f0804 CBS_E_OPEN_FAILED the update could not be found or could not be opened

0x800f0805 CBS_E_INVALID_PACKAGE the update package was not a valid CSI update

0x800f0806 CBS_E_PENDING the operation could not be complete due to locked resources

0x800f0807 CBS_E_NOT_INSTALLABLE the component referenced is not separately installable

0x800f0808 CBS_E_IMAGE_NOT_ACCESSIBLE the image location specified could not be accessed

0x800f0809 CBS_E_ARRAY_ELEMENT_MISSING attempt to get non-existent array element

0x800f080A CBS_E_REESTABLISH_SESSION session object updated, must recreate session

0x800f080B CBS_E_PROPERTY_NOT_AVAILABLE requested property is not supported

0x800f080C CBS_E_UNKNOWN_UPDATE named update not present in package

0x800f080D CBS_E_MANIFEST_INVALID_ITEM invalid attribute or element name encountered

0x800f080E CBS_E_MANIFEST_VALIDATION_DUPLICATE_ATTRIBUTES multiple attributes have the same name

0x800f080F CBS_E_MANIFEST_VALIDATION_DUPLICATE_ELEMENT multiple elements have the same name

0x800f0810 CBS_E_MANIFEST_VALIDATION_MISSING_REQUIRED_ATTRIBUTES required attributes are missing

0x800f0811 CBS_E_MANIFEST_VALIDATION_MISSING_REQUIRED_ELEMENTS required attributes are missing

0x800f0812 CBS_E_MANIFEST_VALIDATION_UPDATES_PARENT_MISSING required attributes are missing

0x800f0813 CBS_E_INVALID_INSTALL_STATE install state value not acceptable

0x800f0814 CBS_E_INVALID_CONFIG_VALUE invalid setting configuration value

0x800f0815 CBS_E_INVALID_CARDINALITY invalid cardinality

0x800f0816 CBS_E_DPX_JOB_STATE_SAVED job state for DPX has been saved

0x800f0817 CBS_E_PACKAGE_DELETED package was uninstalled and is no longer accessible

0x800f0818 CBS_E_IDENTITY_MISMATCH container package points to a package manifest whose identity doesn’t match the identity specified

0x800f0819 CBS_E_DUPLICATE_UPDATENAME update name is duplicated in package.

0x800f081A CBS_E_INVALID_DRIVER_OPERATION_KEY the driver operations key is corrupt or invalid

0x800f081B CBS_E_UNEXPECTED_PROCESSOR_ARCHITECTURE the processor architecture specified is not supported

0x800f081C CBS_E_EXCESSIVE_EVALUATION Watchlist: not able to reach steady state after too many attempts.

0x800f081D CBS_E_CYCLE_EVALUATION Watchlist: cycle appears when planning component intended state.

0x800f081E CBS_E_NOT_APPLICABLE the package is not applicable

0x800f081F CBS_E_SOURCE_MISSING source for package or file not found, ResolveSource() unsuccessful

0x800f0820 CBS_E_CANCEL user cancel, IDCANCEL returned by ICbsUIHandler method except Error()

0x800f0821 CBS_E_ABORT client abort, IDABORT returned by ICbsUIHandler method except Error()

0x800f0822 CBS_E_ILLEGAL_COMPONENT_UPDATE Component update without specifying <updateComponent> in package manifest.

0x800f0823 CBS_E_NEW_SERVICING_STACK_REQUIRED Package needs a newer version of the servicing stack.

0x800f0824 CBS_E_SOURCE_NOT_IN_LIST Package source not in list.

0x800f0825 CBS_E_CANNOT_UNINSTALL Package cannot be uninstalled.

0x800f0826 CBS_E_PENDING_VICTIM Package failed to install because another pended package failed.

0x800f0827 CBS_E_STACK_SHUTDOWN_REQUIRED servicing stack updated, aborting

0x800f0900 CBS_E_XML_PARSER_FAILURE unexpected internal XML parser error.

0x800f0901 CBS_E_MANIFEST_VALIDATION_MULTIPLE_UPDATE_COMPONENT_ON_SAME_FAMILY_NOT_ALLOWED In a given package, only one <updateComponent> Is allowed for a component family.

0xFFFFF8F0 -1808 JET_errDiskFull

0xFFFFFb40 -1216 JET_errAttachedDatabaseMismatch

0xFFFFFb4a -1206 JET_errDatabaseCorrupted

0xFFFFFBBE -1090 JET_errInstanceUnavailable

0xFFFFFBF8 -1032 JET_errFileAccessDenied

0xFFFFFC01 -1023 NULL

0xFFFFFC02 -1022 JET_errDiskIO

0xFFFFFC06 -1018 JET_errReadVerifyFailure

0xFFFFFC0D -1011 JET_errOutOfMemory

0xFFFFFdc9 -567 JET_errDbTimeTooNew

0xFFFFFdda -550 JET_errDatabaseInconsistent

0xFFFFFDEC -532 NULL

0xFFFFFDfd -515 JET_errInvalidLogSequence

0xfffffe02 -510 JET_errLogWriteFail

0xfffffe0b -501 JET_errLogFileCorrupt

0xffffff99 -103 JET_errOutOfThreads

0xFFFFFFFF -1 Cancel

12005 wininet — ERROR_INTERNET_INVALID_URL — The URL is invalid. The URL is invalid.

12005 winhttp — ERROR_WINHTTP_INVALID_URL — The URL is not valid. The URL is not valid.

MSDN: The Windows Error Codes document is a companion reference to the MCPP protocol specifications. It documents the common usage details for those HRESULT values, Win32 error codes, and NTSTATUS values that are referenced by specifications in the protocol documentation set.

Windows Error Codes(MSDN,
http://msdn.microsoft.com/en-us/library/cc231196(v=prot.10).aspx)

1

Contents

2.1
HRESULT……………………………………………………………………………………………………..3
2.1.1 HRESULT
Values………………………………………………………………………………………..6
2.2 Win32 Error
Codes…………………………………………………………………………………………167
2.3
NTSTATUS…………………………………………………………………………………………………….357
2.3.1 NTSTATUS
values……………………………………………………………………………………….358

Note: You may have to translate signed decimal code value into
hex. Example: -1073741515 is 0xC0000135. Use Windows Calculator for
that.

2

2.1
HRESULThttp://msdn.microsoft.com/en-us/library/cc231198(v=prot.10).aspx
The HRESULT numbering space is vendor-extensible. Vendors can
supply their own values for this field, as long as the C bit
(0x20000000) is set, indicating it is a customer code. The HRESULT
numbering space has the following internal structure. Any protocol
that uses NTSTATUS values on the wire is responsible for stating
the order in which the bytes are placed on the wire. 0 1 2 3 1 2 3
4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 Code

S R C N X Facility

S (1 bit): Severity. If set, indicates a failure result. If
clear, indicates a success result. R (1 bit): Reserved. If the N
bit is clear, this bit MUST be set to 0. If the N bit is set, this
bit is defined by the NTSTATUS numbering space (as specified in
section 2.3). C (1 bit): Customer. This bit specifies if the value
is customer-defined or Microsoft-defined. The bit is set for
customer-defined values and clear for Microsoft-defined values. N
(1 bit): If set, indicates that the error code is an NTSTATUS value
(as specified in section 2.3), except that this bit is set. X (1
bit): Reserved. SHOULD be set to 0. Facility (11 bits): An
indicator of the source of the error. New facilities are
occasionally added by Microsoft. The following table lists the
currently defined facility codes: Value FACILITY_NULL 0
FACILITY_RPC 1 FACILITY_DISPATCH 2 FACILITY_STORAGE 3 FACILITY_ITF
4 FACILITY_WIN32 7 FACILITY_WINDOWS 8 FACILITY_SECURITY 9
FACILITY_SSPI 9 FACILITY_CONTROL 10 FACILITY_CERT 11
FACILITY_INTERNET Meaning The default facility code.

The source of the error code is an RPC subsystem. The source of
the error code is a COM Dispatch. The source of the error code is
OLE Storage.

The source of the error code is COM/OLE Interface management.
This region is reserved to map undecorated error codes into
HRESULTs. The source of the error code is the Windows subsystem.
The source of the error code is the Security API layer. The source
of the error code is the Security API layer. The source of the
error code is the control mechanism. The source of the error code
is a certificate client or server? The source of the error code is
Wininet

3

12 FACILITY_MEDIASERVER 13 FACILITY_MSMQ 14 FACILITY_SETUPAPI 15
FACILITY_SCARD 16 FACILITY_COMPLUS 17 FACILITY_AAF 18 FACILITY_URT
19 FACILITY_ACS 20 FACILITY_DPLAY 21 FACILITY_UMI 22 FACILITY_SXS
23 FACILITY_WINDOWS_CE 24 FACILITY_HTTP 25
FACILITY_USERMODE_COMMONLOG 26

related. The source of the error code is the Windows Media
Server. The source of the error code is the Microsoft Message
Queue. The source of the error code is the Setup API.

The source of the error code is the Smart-card subsystem. The
source of the error code is COM+.

The source of the error code is the Microsoft agent. The source
of the error code is .NET CLR.

The source of the error code is the audit collection service.
The source of the error code is Direct Play.

The source of the error code is the ubiquitous
memoryintrospection service. The source of the error code is
Side-by-side servicing. The error code is specific to Windows
CE.

The source of the error code is HTTP support.

The source of the error code is common Logging support.

FACILITY_USERMODE_FILTER_MANAGER The source of the error code is
the user mode 31 filter manager. FACILITY_BACKGROUNDCOPY 32
FACILITY_CONFIGURATION 33 FACILITY_STATE_MANAGEMENT 34
FACILITY_METADIRECTORY 35 FACILITY_WINDOWSUPDATE 36 The source of
the error code is background copy control The source of the error
code is configuration services. The source of the error code is
state management services. The source of the error code is the
Microsoft Identity Server. The source of the error code is a
Windows update.

4

FACILITY_DIRECTORYSERVICE 37 FACILITY_GRAPHICS 38 FACILITY_SHELL
39 FACILITY_TPM_SERVICES 40 FACILITY_TPM_SOFTWARE 41 FACILITY_PLA
48 FACILITY_FVE 49 FACILITY_FWP 50 FACILITY_WINRM 51 FACILITY_NDIS
52 FACILITY_USERMODE_HYPERVISOR 53 FACILITY_CMI 54

The source of the error code is Active Directory. The source of
the error code is the graphics drivers. The source of the error
code is the user Shell.

The source of the error code is the Trusted Platform Module
services. The source of the error code is the Trusted Platform
Module applications. The source of the error code is Performance
Logs and Alerts The source of the error code is Full volume
encryption. he source of the error code is the Firewall Platform.
The source of the error code is the Windows Resource Manager. The
source of the error code is the Network Driver Interface. The
source of the error code is the Usermode Hypervisor components. The
source of the error code is the Configuration Management
Infrastructure.

FACILITY_USERMODE_VIRTUALIZATION The source of the error code is
the user mode 55 virtualization subsystem. FACILITY_USERMODE_VOLMGR
56 FACILITY_BCD 57 FACILITY_USERMODE_VHD 58 FACILITY_SDIAG 60
FACILITY_WEBSERVICES 61 FACILITY_WINDOWS_DEFENDER 80 FACILITY_OPC
81 The source of the error code is the user mode volume manager The
source of the error code is the Boot Configuration Database. The
source of the error code is user mode virtual hard disk support.
The source of the error code is System Diagnostics. The source of
the error code is the Web Services. The source of the error code is
a Windows Defender component. The source of the error code is the
open connectivity service.

Code (2 bytes): The remainder of the error code.

5

2.1.1 HRESULT
Valueshttp://msdn.microsoft.com/en-us/library/cc704587(v=prot.10).aspxCombining
the fields of an HRESULT into a single, 32-bit numbering space, the
following HRESULT values are defined, in addition to those derived
from NTSTATUS values (section 2.3.1) and Win32 error codes (section
2.2). This document provides the common usage details of the
HRESULTs; individual protocol specifications may provide expanded
or modified definitions. Most values also have a default message
defined, which can be used to map the value to a human-readable
text message; when this is done, the HRESULT value is also known as
a message identifier. Note: In the following descriptions, a
percentage sign (%) 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. Return value/code
0x00030200 STG_S_CONVERTED 0x00030201 STG_S_BLOCK 0x00030202
STG_S_RETRYNOW 0x00030203 STG_S_MONITORING 0x00030204
STG_S_MULTIPLEOPENS 0x00030205 STG_S_CONSOLIDATIONFAILED 0x00030206
STG_S_CANNOTCONSOLIDATE 0x00040000 OLE_S_USEREG 0x00040001
OLE_S_STATIC 0x00040002 OLE_S_MAC_CLIPFORMAT 0x00040100
DRAGDROP_S_DROP 0x00040101 DRAGDROP_S_CANCEL 0x00040102
DRAGDROP_S_USEDEFAULTCURSORS 0x00040130 DATA_S_SAMEFORMATETC
0x00040140 VIEW_S_ALREADY_FROZEN Description The underlying file
was converted to compound file format. The storage operation should
block until more data is available. The storage operation should
retry immediately.

The notified event sink will not influence the storage
operation. Multiple opens prevent consolidated (commit succeeded).
Consolidation of the storage file failed (commit succeeded).
Consolidation of the storage file is inappropriate (commit
succeeded). Use the registry database to provide the requested
information. Success, but static.

Macintosh clipboard format.

Successful drop took place.

Drag-drop operation canceled.

Use the default cursor.

Data has same FORMATETC.

View is already frozen.

6

0x00040170 CACHE_S_FORMATETC_NOTSUPPORTED 0x00040171
CACHE_S_SAMECACHE 0x00040172 CACHE_S_SOMECACHES_NOTUPDATED
0x00040180 OLEOBJ_S_INVALIDVERB 0x00040181
OLEOBJ_S_CANNOT_DOVERB_NOW 0x00040182 OLEOBJ_S_INVALIDHWND
0x000401A0 INPLACE_S_TRUNCATED 0x000401C0
CONVERT10_S_NO_PRESENTATION 0x000401E2 MK_S_REDUCED_TO_SELF
0x000401E4 MK_S_ME 0x000401E5 MK_S_HIM 0x000401E6 MK_S_US
0x000401E7 MK_S_MONIKERALREADYREGISTERED 0x00040200
EVENT_S_SOME_SUBSCRIBERS_FAILED 0x00040202 EVENT_S_NOSUBSCRIBERS
0x00041300 SCHED_S_TASK_READY 0x00041301 SCHED_S_TASK_RUNNING
0x00041302 SCHED_S_TASK_DISABLED 0x00041303
SCHED_S_TASK_HAS_NOT_RUN 0x00041304 SCHED_S_TASK_NO_MORE_RUNS
0x00041305

FORMATETC not supported.

Same cache.

Some caches are not updated.

Invalid verb for OLE object.

Verb number is valid but verb cannot be done now.

Invalid window handle passed.

Message is too long; some of it had to be truncated before
displaying. Unable to convert OLESTREAM to IStorage.

Moniker reduced to itself.

Common prefix is this moniker.

Common prefix is input moniker.

Common prefix is both monikers.

Moniker is already registered in running object table. An event
was able to invoke some, but not all, of the subscribers. An event
was delivered, but there were no subscribers. The task is ready to
run at its next scheduled time.

The task is currently running.

The task will not run at the scheduled times because it has been
disabled. The task has not yet run.

There are no more runs scheduled for this task.

One or more of the properties that are needed to

7

SCHED_S_TASK_NOT_SCHEDULED 0x00041306 SCHED_S_TASK_TERMINATED
0x00041307 SCHED_S_TASK_NO_VALID_TRIGGERS 0x00041308
SCHED_S_EVENT_TRIGGER 0x0004131B SCHED_S_SOME_TRIGGERS_FAILED
0x0004131C SCHED_S_BATCH_LOGON_PROBLEM

run this task on a schedule have not been set. The last run of
the task was terminated by the user.

Either the task has no triggers, or the existing triggers are
disabled or not set. Event triggers do not have set run times.

The task is registered, but not all specified triggers will
start the task. The task is registered, but it may fail to start.
Batch logon privilege needs to be enabled for the task principal.
An asynchronous operation was specified. The operation has begun,
but its outcome is not known yet. The method call succeeded because
the transaction was read-only. The transaction was successfully
aborted. However, this is a coordinated transaction, and a number
of enlisted resources were aborted outright because they could not
support abort-retaining semantics. No changes were made during this
call, but the sink wants another chance to look if any other sinks
make further changes. The sink is content and wants the transaction
to proceed. Changes were made to one or more resources during this
call. The sink is for the moment and wants the transaction to
proceed, but if other changes are made following this return by
other event sinks, this sink wants another chance to look. The
transaction was successfully aborted. However, the abort was
nonretaining. An abort operation was already in progress.

0x0004D000 XACT_S_ASYNC

0x0004D002 XACT_S_READONLY 0x0004D003 XACT_S_SOMENORETAIN

0x0004D004 XACT_S_OKINFORM

0x0004D005 XACT_S_MADECHANGESCONTENT

0x0004D006 XACT_S_MADECHANGESINFORM

0x0004D007 XACT_S_ALLNORETAIN 0x0004D008 XACT_S_ABORTING
0x0004D009 XACT_S_SINGLEPHASE 0x0004D00A XACT_S_LOCALLY_OK
0x0004D010 XACT_S_LASTRESOURCEMANAGER

The resource manager has performed a singlephase commit of the
transaction. The local transaction has not aborted.

The resource manager has requested to be the coordinator (last
resource manager) for the transaction. Not all the requested
interfaces were available.

0x00080012

8

CO_S_NOTALLINTERFACES 0x00080013 CO_S_MACHINENAMENOTFOUND
0x00090312 SEC_I_CONTINUE_NEEDED 0x00090313 SEC_I_COMPLETE_NEEDED
0x00090314 SEC_I_COMPLETE_AND_CONTINUE The specified machine name
was not found in the cache. The function completed successfully,
but it must be called again to complete the context. The function
completed successfully, but CompleteToken must be called. The
function completed successfully, but both CompleteToken and this
function must be called to complete the context. The logon was
completed, but no network authority was available. The logon was
made using locally known information. The context has expired and
can no longer be used. The credentials supplied were not complete
and could not be verified. Additional information can be returned
from the context. The context data must be renegotiated with the
peer. There is no LSA mode context associated with this context. A
signature operation must be performed before the user can
authenticate. The protected data needs to be reprotected.

0x00090315 SEC_I_LOCAL_LOGON

0x00090317 SEC_I_CONTEXT_EXPIRED 0x00090320
SEC_I_INCOMPLETE_CREDENTIALS

0x00090321 SEC_I_RENEGOTIATE 0x00090323 SEC_I_NO_LSA_CONTEXT
0x0009035C SEC_I_SIGNATURE_NEEDED 0x00091012
CRYPT_I_NEW_PROTECTION_REQUIRED 0x000D0000 NS_S_CALLPENDING
0x000D0001 NS_S_CALLABORTED 0x000D0002 NS_S_STREAM_TRUNCATED
0x000D0BC8 NS_S_REBUFFERING 0x000D0BC9 NS_S_DEGRADING_QUALITY
0x000D0BDB NS_S_TRANSCRYPTOR_EOF 0x000D0FE8
NS_S_WMP_UI_VERSIONMISMATCH

The requested operation is pending completion.

The requested operation was aborted by the client.

The stream was purposefully stopped before completion. The
requested operation has caused the source to rebuffer. The
requested operation has caused the source to degrade codec quality.
The transcryptor object has reached end of file.

An upgrade may be needed for the theme manager to correctly show
this skin. Skin reports version: %.1f. An error occurred in one of
the UI components.

0x000D0FE9

9

NS_S_WMP_EXCEPTION 0x000D1040 NS_S_WMP_LOADED_GIF_IMAGE
0x000D1041 NS_S_WMP_LOADED_PNG_IMAGE 0x000D1042
NS_S_WMP_LOADED_BMP_IMAGE 0x000D1043 NS_S_WMP_LOADED_JPG_IMAGE
0x000D104F NS_S_WMG_FORCE_DROP_FRAME 0x000D105F
NS_S_WMR_ALREADYRENDERED 0x000D1060 NS_S_WMR_PINTYPEPARTIALMATCH
0x000D1061 NS_S_WMR_PINTYPEFULLMATCH 0x000D1066
NS_S_WMG_ADVISE_DROP_FRAME 0x000D1067
NS_S_WMG_ADVISE_DROP_TO_KEYFRAME Successfully loaded a GIF
file.

Successfully loaded a PNG file.

Successfully loaded a BMP file.

Successfully loaded a JPG file.

Drop this frame.

The specified stream has already been rendered.

The specified type partially matches this pin type.

The specified type fully matches this pin type.

The timestamp is late compared to the current render position.
Advise dropping this frame. The timestamp is severely late compared
to the current render position. Advise dropping everything up to
the next key frame. No burn rights. You will be prompted to buy
burn rights when you try to burn this file to an audio CD. Failed
to clear playlist because it was aborted by user. Failed to remove
item in the playlist since it was aborted by user. Playlist is
being generated asynchronously.

0x000D10DB NS_S_NEED_TO_BUY_BURN_RIGHTS 0x000D10FE
NS_S_WMPCORE_PLAYLISTCLEARABORT 0x000D10FF
NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT 0x000D1102
NS_S_WMPCORE_PLAYLIST_CREATION_PENDING 0x000D1103
NS_S_WMPCORE_MEDIA_VALIDATION_PENDING

Validation of the media is pending.

0x000D1104 Encountered more than one Repeat block during
NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGME ASX processing.
NTS_IGNORED 0x000D1105 NS_S_WMPCORE_COMMAND_NOT_AVAILABLE
0x000D1106 NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED 0x000D1107
NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS Current state of WMP
disallows calling this method or property. Name for the playlist
has been auto generated.

The imported playlist does not contain all items from the
original.

10

0x000D1108 The M3U playlist has been ignored because it only
NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MED contains one item. IA
0x000D1109 The open for the child playlist associated with this
NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDIN media is pending. G
0x000D110A NS_S_WMPCORE_MORE_NODES_AVAIABLE 0x000D1135
NS_S_WMPBR_SUCCESS 0x000D1136 NS_S_WMPBR_PARTIALSUCCESS 0x000D1144
NS_S_WMPEFFECT_TRANSPARENT 0x000D1145 NS_S_WMPEFFECT_OPAQUE
0x000D114E NS_S_OPERATION_PENDING 0x000D1359
NS_S_TRACK_BUY_REQUIRES_ALBUM_PURCHASE 0x000D135E
NS_S_NAVIGATION_COMPLETE_WITH_ERRORS More nodes support the
interface requested, but the array for returning them is full.
Backup or Restore successful!.

Transfer complete with limitations.

Request to the effects control to change transparency status to
transparent. Request to the effects control to change transparency
status to opaque. The requested application pane is performing an
operation and will not be released. The file is only available for
purchase when you buy the entire album. There were problems
completing the requested navigation. There are identifiers missing
in the catalog. Track already downloaded.

0x000D1361 NS_S_TRACK_ALREADY_DOWNLOADED

0x000D1519 The publishing point successfully started, but one
NS_S_PUBLISHING_POINT_STARTED_WITH_FAILED_SINKS or more of the
requested data writer plug-ins failed. 0x000D2726
NS_S_DRM_LICENSE_ACQUIRED 0x000D2727 NS_S_DRM_INDIVIDUALIZED
0x000D2746 NS_S_DRM_MONITOR_CANCELLED 0x000D2747
NS_S_DRM_ACQUIRE_CANCELLED 0x000D276E NS_S_DRM_BURNABLE_TRACK
Status message: The license was acquired.

Status message: The security upgrade has been completed. Status
message: License monitoring has been canceled. Status message:
License acquisition has been canceled. The track is burnable and
had no playlist burn limit.

0x000D276F The track is burnable but has a playlist burn limit.
NS_S_DRM_BURNABLE_TRACK_WITH_PLAYLIST_RESTRICTI ON 0x000D27DE A
security upgrade is required to perform the

11

NS_S_DRM_NEEDS_INDIVIDUALIZATION 0x000D2AF8
NS_S_REBOOT_RECOMMENDED

operation on this media file. Installation was successful;
however, some file cleanup is not complete. For best results,
restart your computer. Installation was successful; however, some
file cleanup is not complete. To continue, you must restart your
computer. EOS hit during rewinding.

0x000D2AF9 NS_S_REBOOT_REQUIRED

0x000D2F09 NS_S_EOSRECEDING 0x000D2F0D NS_S_CHANGENOTICE
0x001F0001 ERROR_FLT_IO_COMPLETE 0x00262307
ERROR_GRAPHICS_MODE_NOT_PINNED 0x0026231E
ERROR_GRAPHICS_NO_PREFERRED_MODE 0x0026234B
ERROR_GRAPHICS_DATASET_IS_EMPTY

Internal.

The IO was completed by a filter.

No mode is pinned on the specified VidPN source or target.
Specified mode set does not specify preference for one of its
modes. Specified data set (for example, mode set, frequency range
set, descriptor set, and topology) is empty. Specified data set
(for example, mode set, frequency range set, descriptor set, and
topology) does not contain any more elements.

0x0026234C ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET

0x00262351 Specified content transformation is not pinned on
ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSF the specified VidPN
present path. ORMATION_NOT_PINNED 0x00300100 PLA_S_PROPERTY_IGNORED
0x00340001 ERROR_NDIS_INDICATION_REQUIRED Property value will be
ignored.

The request will be completed later by a Network Driver
Interface Specification (NDIS) status indication. The
VolumeSequenceNumber of a MOVE_NOTIFICATION request is incorrect.
The VolumeID in a request was not found in the server’s
ServerVolumeTable. A notification was sent to the LnkSvrMessage
method, but the RequestMachine for the request was not the
VolumeOwner for a VolumeID in the request. The server received a
MOVE_NOTIFICATION request, but the FileTable size limit has already
been reached. The Title Server %1 is running.

0x0DEAD100 TRK_S_OUT_OF_SYNC 0x0DEAD102 TRK_VOLUME_NOT_FOUND
0x0DEAD103 TRK_VOLUME_NOT_OWNED

0x0DEAD107 TRK_S_NOTIFICATION_QUOTA_EXCEEDED

0x400D004F

12

NS_I_TIGER_START 0x400D0051 NS_I_CUB_START 0x400D0052
NS_I_CUB_RUNNING 0x400D0054 NS_I_DISK_START 0x400D0056
NS_I_DISK_REBUILD_STARTED 0x400D0057 NS_I_DISK_REBUILD_FINISHED
0x400D0058 NS_I_DISK_REBUILD_ABORTED 0x400D0059 NS_I_LIMIT_FUNNELS
0x400D005A NS_I_START_DISK 0x400D005B NS_I_STOP_DISK 0x400D005C
NS_I_STOP_CUB 0x400D005D NS_I_KILL_USERSESSION 0x400D005E
NS_I_KILL_CONNECTION 0x400D005F NS_I_REBUILD_DISK 0x400D0069
MCMADM_I_NO_EVENTS 0x400D006E NS_I_LOGGING_FAILED 0x400D0070
NS_I_LIMIT_BANDWIDTH 0x400D0191 NS_I_CUB_UNFAIL_LINK 0x400D0193
NS_I_RESTRIPE_START 0x400D0194 NS_I_RESTRIPE_DONE 0x400D0196
NS_I_RESTRIPE_DISK_OUT Content Server %1 (%2) is starting.

Content Server %1 (%2) is running.

Disk %1 ( %2 ) on Content Server %3, is running.

Started rebuilding disk %1 ( %2 ) on Content Server %3. Finished
rebuilding disk %1 ( %2 ) on Content Server %3. Aborted rebuilding
disk %1 ( %2 ) on Content Server %3. A NetShow administrator at
network location %1 set the data stream limit to %2 streams. A
NetShow administrator at network location %1 started disk %2. A
NetShow administrator at network location %1 stopped disk %2. A
NetShow administrator at network location %1 stopped Content Server
%2. A NetShow administrator at network location %1 aborted user
session %2 from the system. A NetShow administrator at network
location %1 aborted obsolete connection %2 from the system. A
NetShow administrator at network location %1 started rebuilding
disk %2. Event initialization failed, there will be no MCM events.
The logging operation failed.

A NetShow administrator at network location %1 set the maximum
bandwidth limit to %2 bps. Content Server %1 (%2) has established
its link to Content Server %3. Restripe operation has started.

Restripe operation has completed.

Content disk %1 (%2) on Content Server %3 has been restriped
out.

13

0x400D0197 NS_I_RESTRIPE_CUB_OUT 0x400D0198 NS_I_DISK_STOP
0x400D14BE NS_I_PLAYLIST_CHANGE_RECEDING 0x400D2EFF
NS_I_RECONNECTED 0x400D2F01 NS_I_NOLOG_STOP 0x400D2F03
NS_I_EXISTING_PACKETIZER 0x400D2F04 NS_I_MANUAL_PROXY 0x40262009
ERROR_GRAPHICS_DRIVER_MISMATCH 0x4026242F
ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS 0x40262437
ERROR_GRAPHICS_LEADLINK_START_DEFERRED 0x40262439
ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY 0x4026243A
ERROR_GRAPHICS_START_DEFERRED 0x80000001 E_NOTIMPL 0x80000002
E_OUTOFMEMORY 0x80000003 E_INVALIDARG

Content server %1 (%2) has been restriped out.

Disk %1 ( %2 ) on Content Server %3, has been offlined. The
playlist change occurred while receding.

The client is reconnected.

Forcing a switch to a pending header on start.

There is already an existing packetizer plugin for the stream.
The proxy setting is manual.

The kernel driver detected a version mismatch between it and the
user mode driver. Child device presence was not reliably
detected.

Starting the lead-link adapter has been deferred temporarily.
The display adapter is being polled for children too frequently at
the same polling level. Starting the adapter has been deferred
temporarily.

Not implemented.

Ran out of memory.

One or more arguments are invalid. This value is typically only
returned by software when compiled for MacOS. No such interface
supported.

0x80000004 E_NOINTERFACE 0x80000005 E_POINTER 0x80000006
E_HANDLE 0x80000007 E_ABORT 0x80000008 E_FAIL

Invalid pointer.

Invalid handle.

Operation aborted.

Unspecified error.

14

0x8000000A E_PENDING 0x80004001 E_NOTIMPL 0x80004002
E_NOINTERFACE 0x80004003 E_POINTER 0x80004004 E_ABORT 0x80004005
E_FAIL 0x80004006 CO_E_INIT_TLS 0x80004007
CO_E_INIT_SHARED_ALLOCATOR 0x80004008 CO_E_INIT_MEMORY_ALLOCATOR
0x80004009 CO_E_INIT_CLASS_CACHE 0x8000400A CO_E_INIT_RPC_CHANNEL
0x8000400B CO_E_INIT_TLS_SET_CHANNEL_CONTROL 0x8000400C
CO_E_INIT_TLS_CHANNEL_CONTROL 0x8000400D
CO_E_INIT_UNACCEPTED_USER_ALLOCATOR 0x8000400E
CO_E_INIT_SCM_MUTEX_EXISTS 0x8000400F
CO_E_INIT_SCM_FILE_MAPPING_EXISTS 0x80004010
CO_E_INIT_SCM_MAP_VIEW_OF_FILE 0x80004011
CO_E_INIT_SCM_EXEC_FAILURE 0x80004012
CO_E_INIT_ONLY_SINGLE_THREADED 0x80004013 CO_E_CANT_REMOTE
0x80004014

The data necessary to complete this operation is not yet
available. Not implemented.

No such interface supported.

Invalid pointer.

Operation aborted.

Unspecified error.

Thread local storage failure.

Get shared memory allocator failure.

Get memory allocator failure.

Unable to initialize class cache.

Unable to initialize remote procedure call (RPC) services.
Cannot set thread local storage channel control.

Could not allocate thread local storage channel control. The
user-supplied memory allocator is unacceptable. The OLE service
mutex already exists.

The OLE service file mapping already exists.

Unable to map view of file for OLE service.

Failure attempting to launch OLE service.

There was an attempt to call CoInitialize a second time while
single-threaded. A Remote activation was necessary but was not
allowed. A Remote activation was necessary, but the server

15

CO_E_BAD_SERVER_NAME 0x80004015 CO_E_WRONG_SERVER_IDENTITY
0x80004016 CO_E_OLE1DDE_DISABLED 0x80004017 CO_E_RUNAS_SYNTAX
0x80004018 CO_E_CREATEPROCESS_FAILURE 0x80004019
CO_E_RUNAS_CREATEPROCESS_FAILURE

name provided was invalid. The class is configured to run as a
security ID different from the caller. Use of OLE1 services
requiring Dynamic Data Exchange (DDE) Windows is disabled. A RunAs
specification must be or simply . The server process could not be
started. The path name may be incorrect. The server process could
not be started as the configured identity. The path name may be
incorrect or unavailable. The server process could not be started
because the configured identity is incorrect. Check the user name
and password. The client is not allowed to launch this server.

0x8000401A CO_E_RUNAS_LOGON_FAILURE

0x8000401B CO_E_LAUNCH_PERMSSION_DENIED 0x8000401C
CO_E_START_SERVICE_FAILURE 0x8000401D
CO_E_REMOTE_COMMUNICATION_FAILURE 0x8000401E
CO_E_SERVER_START_TIMEOUT 0x8000401F CO_E_CLSREG_INCONSISTENT
0x80004020 CO_E_IIDREG_INCONSISTENT 0x80004021 CO_E_NOT_SUPPORTED
0x80004022 CO_E_RELOAD_DLL 0x80004023 CO_E_MSI_ERROR 0x80004024
CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT 0x80004025
CO_E_SERVER_PAUSED 0x80004026 CO_E_SERVER_NOT_PAUSED 0x80004027
CO_E_CLASS_DISABLED

The service providing this server could not be started. This
computer was unable to communicate with the computer providing the
server. The server did not respond after being launched.

The registration information for this server is inconsistent or
incomplete. The registration information for this interface is
inconsistent or incomplete. The operation attempted is not
supported.

A DLL must be loaded.

A Microsoft Software Installer error was encountered. The
specified activation could not occur in the client context as
specified. Activations on the server are paused.

Activations on the server are not paused.

The component or application containing the component has been
disabled.

16

0x80004028 CO_E_CLRNOTAVAILABLE 0x80004029
CO_E_ASYNC_WORK_REJECTED 0x8000402A CO_E_SERVER_INIT_TIMEOUT
0x8000402B CO_E_NO_SECCTX_IN_ACTIVATE

The common language runtime is not available.

The thread-pool rejected the submitted asynchronous work. The
server started, but it did not finish initializing in a timely
fashion. Unable to complete the call because there is no COM+
security context inside IObjectControl.Activate. The provided
tracker configuration is invalid.

0x80004030 CO_E_TRACKER_CONFIG 0x80004031 CO_E_THREADPOOL_CONFIG
0x80004032 CO_E_SXS_CONFIG 0x80004033 CO_E_MALFORMED_SPN 0x8000FFFF
E_UNEXPECTED 0x80010001 RPC_E_CALL_REJECTED 0x80010002
RPC_E_CALL_CANCELED 0x80010003 RPC_E_CANTPOST_INSENDCALL 0x80010004
RPC_E_CANTCALLOUT_INASYNCCALL 0x80010005
RPC_E_CANTCALLOUT_INEXTERNALCALL 0x80010006
RPC_E_CONNECTION_TERMINATED

The provided thread pool configuration is invalid.

The provided side-by-side configuration is invalid.

The server principal name (SPN) obtained during security
negotiation is malformed. Catastrophic failure.

Call was rejected by callee.

Call was canceled by the message filter.

The caller is dispatching an intertask SendMessage call and
cannot call out via PostMessage. The caller is dispatching an
asynchronous call and cannot make an outgoing call on behalf of
this call. It is illegal to call out while inside message
filter.

The connection terminated or is in a bogus state and can no
longer be used. Other connections are still valid. The callee (the
server, not the server application) is not available and
disappeared; all connections are invalid. The call may have
executed. The caller (client) disappeared while the callee (server)
was processing a call. The data packet with the marshaled parameter
data is incorrect. The call was not transmitted properly; the
message queue was full and was not emptied after yielding. The
client RPC caller cannot marshal the parameter

0x80010007 RPC_E_SERVER_DIED

0x80010008 RPC_E_CLIENT_DIED 0x80010009 RPC_E_INVALID_DATAPACKET
0x8001000A RPC_E_CANTTRANSMIT_CALL 0x8001000B

17

RPC_E_CLIENT_CANTMARSHAL_DATA 0x8001000C
RPC_E_CLIENT_CANTUNMARSHAL_DATA 0x8001000D
RPC_E_SERVER_CANTMARSHAL_DATA 0x8001000E
RPC_E_SERVER_CANTUNMARSHAL_DATA

data due to errors (such as low memory). The client RPC caller
cannot unmarshal the return data due to errors (such as low
memory). The server RPC callee cannot marshal the return data due
to errors (such as low memory). The server RPC callee cannot
unmarshal the parameter data due to errors (such as low memory).
Received data is invalid. The data may be server or client data. A
particular parameter is invalid and cannot be (un)marshaled. There
is no second outgoing call on same channel in DDE conversation. The
callee (the server, not the server application) is not available
and disappeared; all connections are invalid. The call did not
execute. System call failed.

0x8001000F RPC_E_INVALID_DATA 0x80010010 RPC_E_INVALID_PARAMETER
0x80010011 RPC_E_CANTCALLOUT_AGAIN 0x80010012
RPC_E_SERVER_DIED_DNE

0x80010100 RPC_E_SYS_CALL_FAILED 0x80010101
RPC_E_OUT_OF_RESOURCES 0x80010102 RPC_E_ATTEMPTED_MULTITHREAD
0x80010103 RPC_E_NOT_REGISTERED 0x80010104 RPC_E_FAULT 0x80010105
RPC_E_SERVERFAULT 0x80010106 RPC_E_CHANGED_MODE 0x80010107
RPC_E_INVALIDMETHOD 0x80010108 RPC_E_DISCONNECTED 0x80010109
RPC_E_RETRY 0x8001010A RPC_E_SERVERCALL_RETRYLATER 0x8001010B
RPC_E_SERVERCALL_REJECTED

Could not allocate some required resource (such as memory or
events) Attempted to make calls on more than one thread in
single-threaded mode. The requested interface is not registered on
the server object. RPC could not call the server or could not
return the results of calling the server. The server threw an
exception.

Cannot change thread mode after it is set.

The method called does not exist on the server.

The object invoked has disconnected from its clients. The object
invoked chose not to process the call now. Try again later. The
message filter indicated that the application is busy. The message
filter rejected the call.

18

0x8001010C RPC_E_INVALID_CALLDATA 0x8001010D
RPC_E_CANTCALLOUT_ININPUTSYNCCALL

A call control interface was called with invalid data.

An outgoing call cannot be made because the application is
dispatching an input-synchronous call. The application called an
interface that was marshaled for a different thread. CoInitialize
has not been called on the current thread. The version of OLE on
the client and server machines does not match. OLE received a
packet with an invalid header.

0x8001010E RPC_E_WRONG_THREAD 0x8001010F RPC_E_THREAD_NOT_INIT
0x80010110 RPC_E_VERSION_MISMATCH 0x80010111 RPC_E_INVALID_HEADER
0x80010112 RPC_E_INVALID_EXTENSION 0x80010113 RPC_E_INVALID_IPID
0x80010114 RPC_E_INVALID_OBJECT 0x80010115 RPC_S_CALLPENDING
0x80010116 RPC_S_WAITONTIMER 0x80010117 RPC_E_CALL_COMPLETE
0x80010118 RPC_E_UNSECURE_CALL 0x80010119 RPC_E_TOO_LATE

OLE received a packet with an invalid extension.

The requested object or interface does not exist.

The requested object does not exist.

OLE has sent a request and is waiting for a reply.

OLE is waiting before retrying a request.

Call context cannot be accessed after call completed.
Impersonate on unsecure calls is not supported.

Security must be initialized before any interfaces are marshaled
or unmarshaled. It cannot be changed after initialized. No security
packages are installed on this machine, the user is not logged on,
or there are no compatible security packages between the client and
server. Access is denied.

0x8001011A RPC_E_NO_GOOD_SECURITY_PACKAGES

0x8001011B RPC_E_ACCESS_DENIED 0x8001011C RPC_E_REMOTE_DISABLED
0x8001011D RPC_E_INVALID_OBJREF 0x8001011E RPC_E_NO_CONTEXT

Remote calls are not allowed for this process.

The marshaled interface data packet (OBJREF) has an invalid or
unknown format. No context is associated with this call. This
happens for some custom marshaled calls and on the client

19

side of the call. 0x8001011F RPC_E_TIMEOUT 0x80010120
RPC_E_NO_SYNC 0x80010121 RPC_E_FULLSIC_REQUIRED 0x80010122
RPC_E_INVALID_STD_NAME 0x80010123 CO_E_FAILEDTOIMPERSONATE
0x80010124 CO_E_FAILEDTOGETSECCTX 0x80010125
CO_E_FAILEDTOOPENTHREADTOKEN 0x80010126 CO_E_FAILEDTOGETTOKENINFO
0x80010127 CO_E_TRUSTEEDOESNTMATCHCLIENT This operation returned
because the time-out period expired. There are no synchronize
objects to wait on.

Full subject issuer chain Secure Sockets Layer (SSL) principal
name expected from the server. Principal name is not a valid
Microsoft standard (msstd) name. Unable to impersonate DCOM
client.

Unable to obtain server’s security context.

Unable to open the access token of the current thread. Unable to
obtain user information from an access token. The client who called
IAccessControl::IsAccessPermitted was not the trustee provided to
the method. Unable to obtain the client’s security blanket.

0x80010128 CO_E_FAILEDTOQUERYCLIENTBLANKET 0x80010129
CO_E_FAILEDTOSETDACL 0x8001012A CO_E_ACCESSCHECKFAILED 0x8001012B
CO_E_NETACCESSAPIFAILED 0x8001012C CO_E_WRONGTRUSTEENAMESYNTAX

Unable to set a discretionary access control list (ACL) into a
security descriptor. The system function AccessCheck returned
false.

Either NetAccessDel or NetAccessAdd returned an error code. One
of the trustee strings provided by the user did not conform to the
syntax and it was not the *» string». One of the security
identifiers provided by the user was invalid. Unable to convert a
wide character trustee string to a multiple-byte trustee string.
Unable to find a security identifier that corresponds to a trustee
string provided by the user. The system function LookupAccountSID
failed.

0x8001012D CO_E_INVALIDSID 0x8001012E CO_E_CONVERSIONFAILED
0x8001012F CO_E_NOMATCHINGSIDFOUND 0x80010130
CO_E_LOOKUPACCSIDFAILED 0x80010131 CO_E_NOMATCHINGNAMEFOUND

Unable to find a trustee name that corresponds to a security
identifier provided by the user.

20

0x80010132 CO_E_LOOKUPACCNAMEFAILED 0x80010133
CO_E_SETSERLHNDLFAILED 0x80010134 CO_E_FAILEDTOGETWINDIR 0x80010135
CO_E_PATHTOOLONG 0x80010136 CO_E_FAILEDTOGENUUID 0x80010137
CO_E_FAILEDTOCREATEFILE 0x80010138 CO_E_FAILEDTOCLOSEHANDLE
0x80010139 CO_E_EXCEEDSYSACLLIMIT 0x8001013A CO_E_ACESINWRONGORDER
0x8001013B CO_E_INCOMPATIBLESTREAMVERSION

The system function LookupAccountName failed.

Unable to set or reset a serialization handle.

Unable to obtain the Windows directory.

Path too long.

Unable to generate a UUID.

Unable to create file.

Unable to close a serialization handle or a file handle. The
number of access control entries (ACEs) in an ACL exceeds the
system limit. Not all the DENY_ACCESS ACEs are arranged in front of
the GRANT_ACCESS ACEs in the stream. The version of ACL format in
the stream is not supported by this implementation of
IAccessControl. Unable to open the access token of the server
process. Unable to decode the ACL in the stream provided by the
user. The COM IAccessControl object is not initialized.

0x8001013C CO_E_FAILEDTOOPENPROCESSTOKEN 0x8001013D
CO_E_DECODEFAILED 0x8001013F CO_E_ACNOTINITIALIZED 0x80010140
CO_E_CANCEL_DISABLED 0x8001FFFF RPC_E_UNEXPECTED 0x80020001
DISP_E_UNKNOWNINTERFACE 0x80020003 DISP_E_MEMBERNOTFOUND 0x80020004
DISP_E_PARAMNOTFOUND 0x80020005 DISP_E_TYPEMISMATCH 0x80020006
DISP_E_UNKNOWNNAME

Call Cancellation is disabled.

An internal error occurred.

Unknown interface.

Member not found.

Parameter not found.

Type mismatch.

Unknown name.

21

0x80020007 DISP_E_NONAMEDARGS 0x80020008 DISP_E_BADVARTYPE
0x80020009 DISP_E_EXCEPTION 0x8002000A DISP_E_OVERFLOW 0x8002000B
DISP_E_BADINDEX 0x8002000C DISP_E_UNKNOWNLCID 0x8002000D
DISP_E_ARRAYISLOCKED 0x8002000E DISP_E_BADPARAMCOUNT 0x8002000F
DISP_E_PARAMNOTOPTIONAL 0x80020010 DISP_E_BADCALLEE 0x80020011
DISP_E_NOTACOLLECTION 0x80020012 DISP_E_DIVBYZERO 0x80020013
DISP_E_BUFFERTOOSMALL 0x80028016 TYPE_E_BUFFERTOOSMALL 0x80028017
TYPE_E_FIELDNOTFOUND 0x80028018 TYPE_E_INVDATAREAD 0x80028019
TYPE_E_UNSUPFORMAT 0x8002801C TYPE_E_REGISTRYACCESS 0x8002801D
TYPE_E_LIBNOTREGISTERED 0x80028027 TYPE_E_UNDEFINEDTYPE
0x80028028

No named arguments.

Bad variable type.

Exception occurred.

Out of present range.

Invalid index.

Unknown language.

Memory is locked.

Invalid number of parameters.

Parameter not optional.

Invalid callee.

Does not support a collection.

Division by zero.

Buffer too small.

Buffer too small.

Field name not defined in the record.

Old format or invalid type library.

Old format or invalid type library.

Error accessing the OLE registry.

Library not registered.

Bound to unknown type.

Qualified name disallowed.

22

TYPE_E_QUALIFIEDNAMEDISALLOWED 0x80028029 TYPE_E_INVALIDSTATE
0x8002802A TYPE_E_WRONGTYPEKIND 0x8002802B TYPE_E_ELEMENTNOTFOUND
0x8002802C TYPE_E_AMBIGUOUSNAME 0x8002802D TYPE_E_NAMECONFLICT
0x8002802E TYPE_E_UNKNOWNLCID 0x8002802F TYPE_E_DLLFUNCTIONNOTFOUND
0x800288BD TYPE_E_BADMODULEKIND 0x800288C5 TYPE_E_SIZETOOBIG
0x800288C6 TYPE_E_DUPLICATEID 0x800288CF TYPE_E_INVALIDID
0x80028CA0 TYPE_E_TYPEMISMATCH 0x80028CA1 TYPE_E_OUTOFBOUNDS
0x80028CA2 TYPE_E_IOERROR 0x80028CA3 TYPE_E_CANTCREATETMPFILE
0x80029C4A TYPE_E_CANTLOADLIBRARY 0x80029C83
TYPE_E_INCONSISTENTPROPFUNCS 0x80029C84 TYPE_E_CIRCULARTYPE
0x80030001 STG_E_INVALIDFUNCTION 0x80030002 STG_E_FILENOTFOUND
Invalid forward reference, or reference to uncompiled type. Type
mismatch.

Element not found.

Ambiguous name.

Name already exists in the library.

Unknown language code identifier (LCID).

Function not defined in specified DLL.

Wrong module kind for the operation.

Size may not exceed 64 KB.

Duplicate ID in inheritance hierarchy.

Incorrect inheritance depth in standard OLE hmember. Type
mismatch.

Invalid number of arguments.

I/O error.

Error creating unique .tmp file.

Error loading type library or DLL.

Inconsistent property functions.

Circular dependency between types and modules.

Unable to perform requested operation.

%1 could not be found.

23

0x80030003 STG_E_PATHNOTFOUND 0x80030004 STG_E_TOOMANYOPENFILES
0x80030005 STG_E_ACCESSDENIED 0x80030006 STG_E_INVALIDHANDLE
0x80030008 STG_E_INSUFFICIENTMEMORY 0x80030009 STG_E_INVALIDPOINTER
0x80030012 STG_E_NOMOREFILES 0x80030013 STG_E_DISKISWRITEPROTECTED
0x80030019 STG_E_SEEKERROR 0x8003001D STG_E_WRITEFAULT 0x8003001E
STG_E_READFAULT 0x80030020 STG_E_SHAREVIOLATION 0x80030021
STG_E_LOCKVIOLATION 0x80030050 STG_E_FILEALREADYEXISTS 0x80030057
STG_E_INVALIDPARAMETER 0x80030070 STG_E_MEDIUMFULL 0x800300F0
STG_E_PROPSETMISMATCHED 0x800300FA STG_E_ABNORMALAPIEXIT 0x800300FB
STG_E_INVALIDHEADER 0x800300FC STG_E_INVALIDNAME 0x800300FD

The path %1 could not be found.

There are insufficient resources to open another file. Access
denied.

Attempted an operation on an invalid object.

There is insufficient memory available to complete operation.
Invalid pointer error.

There are no more entries to return.

Disk is write-protected.

An error occurred during a seek operation.

A disk error occurred during a write operation.

A disk error occurred during a read operation.

A share violation has occurred.

A lock violation has occurred.

%1 already exists.

Invalid parameter error.

There is insufficient disk space to complete operation. Illegal
write of non-simple property to simple property set. An application
programming interface (API) call exited abnormally. The file %1 is
not a valid compound file.

The name %1 is not valid.

An unexpected error occurred.

24

STG_E_UNKNOWN 0x800300FE STG_E_UNIMPLEMENTEDFUNCTION 0x800300FF
STG_E_INVALIDFLAG 0x80030100 STG_E_INUSE 0x80030101
STG_E_NOTCURRENT 0x80030102 STG_E_REVERTED 0x80030103
STG_E_CANTSAVE 0x80030104 STG_E_OLDFORMAT 0x80030105 STG_E_OLDDLL
0x80030106 STG_E_SHAREREQUIRED 0x80030107 STG_E_NOTFILEBASEDSTORAGE
0x80030108 STG_E_EXTANTMARSHALLINGS 0x80030109 STG_E_DOCFILECORRUPT
0x80030110 STG_E_BADBASEADDRESS 0x80030111 STG_E_DOCFILETOOLARGE
0x80030112 STG_E_NOTSIMPLEFORMAT 0x80030201 STG_E_INCOMPLETE
0x80030202 STG_E_TERMINATED 0x80030305
STG_E_STATUS_COPY_PROTECTION_FAILURE 0x80030306
STG_E_CSS_AUTHENTICATION_FAILURE 0x80030307
STG_E_CSS_KEY_NOT_PRESENT That function is not implemented.

Invalid flag error.

Attempted to use an object that is busy.

The storage has been changed since the last commit. Attempted to
use an object that has ceased to exist. Cannot save.

The compound file %1 was produced with an incompatible version
of storage. The compound file %1 was produced with a newer version
of storage. Share.exe or equivalent is required for operation.

Illegal operation called on non-file based storage.

Illegal operation called on object with extant marshalings. The
docfile has been corrupted.

OLE32.DLL has been loaded at the wrong address.

The compound file is too large for the current implementation.
The compound file was not created with the STGM_SIMPLE flag. The
file download was aborted abnormally. The file is incomplete. The
file download has been terminated.

Generic Copy Protection Error.

Copy Protection ErrorDVD CSS Authentication failed. Copy
Protection ErrorThe given sector does not have a valid CSS key.

25

0x80030308 STG_E_CSS_KEY_NOT_ESTABLISHED 0x80030309
STG_E_CSS_SCRAMBLED_SECTOR 0x8003030A STG_E_CSS_REGION_MISMATCH

Copy Protection ErrorDVD session key not established. Copy
Protection ErrorThe read failed because the sector is encrypted.
Copy Protection ErrorThe current DVD’s region does not correspond
to the region setting of the drive. Copy Protection ErrorThe
drive’s region setting may be permanent or the number of user
resets has been exhausted. Invalid OLEVERB structure.

0x8003030B STG_E_RESETS_EXHAUSTED

0x80040000 OLE_E_OLEVERB 0x80040001 OLE_E_ADVF 0x80040002
OLE_E_ENUM_NOMORE 0x80040003 OLE_E_ADVISENOTSUPPORTED 0x80040004
OLE_E_NOCONNECTION 0x80040005 OLE_E_NOTRUNNING 0x80040006
OLE_E_NOCACHE 0x80040007 OLE_E_BLANK 0x80040008 OLE_E_CLASSDIFF
0x80040009 OLE_E_CANT_GETMONIKER 0x8004000A OLE_E_CANT_BINDTOSOURCE
0x8004000B OLE_E_STATIC 0x8004000C OLE_E_PROMPTSAVECANCELLED
0x8004000D OLE_E_INVALIDRECT 0x8004000E OLE_E_WRONGCOMPOBJ
0x8004000F OLE_E_INVALIDHWND

Invalid advise flags.

Cannot enumerate any more because the associated data is
missing. This implementation does not take advises.

There is no connection for this connection ID.

Need to run the object to perform this operation.

There is no cache to operate on.

Uninitialized object.

Linked object’s source class has changed.

Not able to get the moniker of the object.

Not able to bind to the source.

Object is static; operation not allowed.

User canceled out of the Save dialog box.

Invalid rectangle.

compobj.dll is too old for the ole2.dll initialized.

Invalid window handle.

26

0x80040010 OLE_E_NOT_INPLACEACTIVE 0x80040011 OLE_E_CANTCONVERT
0x80040012 OLE_E_NOSTORAGE 0x80040064 DV_E_FORMATETC 0x80040065
DV_E_DVTARGETDEVICE 0x80040066 DV_E_STGMEDIUM 0x80040067
DV_E_STATDATA 0x80040068 DV_E_LINDEX 0x80040069 DV_E_TYMED
0x8004006A DV_E_CLIPFORMAT 0x8004006B DV_E_DVASPECT 0x8004006C
DV_E_DVTARGETDEVICE_SIZE 0x8004006D DV_E_NOIVIEWOBJECT 0x80040100
DRAGDROP_E_NOTREGISTERED 0x80040101 DRAGDROP_E_ALREADYREGISTERED
0x80040102 DRAGDROP_E_INVALIDHWND 0x80040110 CLASS_E_NOAGGREGATION
0x80040111 CLASS_E_CLASSNOTAVAILABLE 0x80040112 CLASS_E_NOTLICENSED
0x80040140 VIEW_E_DRAW 0x80040150

Object is not in any of the inplace active states.

Not able to convert object.

Not able to perform the operation because object is not given
storage yet. Invalid FORMATETC structure.

Invalid DVTARGETDEVICE structure.

Invalid STDGMEDIUM structure.

Invalid STATDATA structure.

Invalid lindex.

Invalid TYMED structure.

Invalid clipboard format.

Invalid aspects.

The tdSize parameter of the DVTARGETDEVICE structure is invalid.
Object does not support IViewObject interface.

Trying to revoke a drop target that has not been registered.
This window has already been registered as a drop target. Invalid
window handle.

Class does not support aggregation (or class object is remote).
ClassFactory cannot supply requested class.

Class is not licensed for use.

Error drawing view.

Could not read key from registry.

27

REGDB_E_READREGDB 0x80040151 REGDB_E_WRITEREGDB 0x80040152
REGDB_E_KEYMISSING 0x80040153 REGDB_E_INVALIDVALUE 0x80040154
REGDB_E_CLASSNOTREG 0x80040155 REGDB_E_IIDNOTREG 0x80040156
REGDB_E_BADTHREADINGMODEL 0x80040160 CAT_E_CATIDNOEXIST 0x80040161
CAT_E_NODESCRIPTION 0x80040164 CS_E_PACKAGE_NOTFOUND 0x80040165
CS_E_NOT_DELETABLE 0x80040166 CS_E_CLASS_NOTFOUND 0x80040167
CS_E_INVALID_VERSION 0x80040168 CS_E_NO_CLASSSTORE 0x80040169
CS_E_OBJECT_NOTFOUND 0x8004016A CS_E_OBJECT_ALREADY_EXISTS
0x8004016B CS_E_INVALID_PATH 0x8004016C CS_E_NETWORK_ERROR
0x8004016D CS_E_ADMIN_LIMIT_EXCEEDED 0x8004016E
CS_E_SCHEMA_MISMATCH Could not write key to registry.

Could not find the key in the registry.

Invalid value for registry.

Class not registered.

Interface not registered.

Threading model entry is not valid.

CATID does not exist.

Description not found.

No package in the software installation data in Active Directory
meets this criteria. Deleting this will break the referential
integrity of the software installation data in Active Directory.
The CLSID was not found in the software installation data in Active
Directory. The software installation data in Active Directory is
corrupt. There is no software installation data in Active
Directory. There is no software installation data object in Active
Directory. The software installation data object in Active
Directory already exists. The path to the software installation
data in Active Directory is not correct. A network error
interrupted the operation.

The size of this object exceeds the maximum size set by the
administrator. The schema for the software installation data in
Active Directory does not match the required schema. An error
occurred in the software installation data

0x8004016F

28

CS_E_INTERNAL_ERROR 0x80040170 CACHE_E_NOCACHE_UPDATED
0x80040180 OLEOBJ_E_NOVERBS 0x80040181 OLEOBJ_E_INVALIDVERB
0x800401A0 INPLACE_E_NOTUNDOABLE 0x800401A1 INPLACE_E_NOTOOLSPACE
0x800401C0 CONVERT10_E_OLESTREAM_GET 0x800401C1
CONVERT10_E_OLESTREAM_PUT 0x800401C2 CONVERT10_E_OLESTREAM_FMT
0x800401C3 CONVERT10_E_OLESTREAM_BITMAP_TO_DIB

in Active Directory. Cache not updated.

No verbs for OLE object.

Invalid verb for OLE object.

Undo is not available.

Space for tools is not available.

OLESTREAM Get method failed.

OLESTREAM Put method failed.

Contents of the OLESTREAM not in correct format.

There was an error in a Windows GDI call while converting the
bitmap to a device-independent bitmap (DIB). Contents of the
IStorage not in correct format.

0x800401C4 CONVERT10_E_STG_FMT 0x800401C5
CONVERT10_E_STG_NO_STD_STREAM 0x800401C6
CONVERT10_E_STG_DIB_TO_BITMAP

Contents of IStorage is missing one of the standard streams.
There was an error in a Windows Graphics Device Interface (GDI)
call while converting the DIB to a bitmap. OpenClipboard
failed.

0x800401D0 CLIPBRD_E_CANT_OPEN 0x800401D1 CLIPBRD_E_CANT_EMPTY
0x800401D2 CLIPBRD_E_CANT_SET 0x800401D3 CLIPBRD_E_BAD_DATA
0x800401D4 CLIPBRD_E_CANT_CLOSE 0x800401E0 MK_E_CONNECTMANUALLY
0x800401E1 MK_E_EXCEEDEDDEADLINE

EmptyClipboard failed.

SetClipboard failed.

Data on clipboard is invalid.

CloseClipboard failed.

Moniker needs to be connected manually.

Operation exceeded deadline.

29

0x800401E2 MK_E_NEEDGENERIC 0x800401E3 MK_E_UNAVAILABLE
0x800401E4 MK_E_SYNTAX 0x800401E5 MK_E_NOOBJECT 0x800401E6
MK_E_INVALIDEXTENSION 0x800401E7
MK_E_INTERMEDIATEINTERFACENOTSUPPORTED 0x800401E8 MK_E_NOTBINDABLE
0x800401E9 MK_E_NOTBOUND 0x800401EA MK_E_CANTOPENFILE 0x800401EB
MK_E_MUSTBOTHERUSER 0x800401EC MK_E_NOINVERSE 0x800401ED
MK_E_NOSTORAGE 0x800401EE MK_E_NOPREFIX 0x800401EF
MK_E_ENUMERATION_FAILED 0x800401F0 CO_E_NOTINITIALIZED 0x800401F1
CO_E_ALREADYINITIALIZED 0x800401F2 CO_E_CANTDETERMINECLASS
0x800401F3 CO_E_CLASSSTRING 0x800401F4 CO_E_IIDSTRING 0x800401F5
CO_E_APPNOTFOUND 0x800401F6

Moniker needs to be generic.

Operation unavailable.

Invalid syntax.

No object for moniker.

Bad extension for file.

Intermediate operation failed.

Moniker is not bindable.

Moniker is not bound.

Moniker cannot open file.

User input required for operation to succeed.

Moniker class has no inverse.

Moniker does not refer to storage.

No common prefix.

Moniker could not be enumerated.

CoInitialize has not been called.

CoInitialize has already been called.

Class of object cannot be determined.

Invalid class string.

Invalid interface string.

Application not found.

Application cannot be run more than once.

30

CO_E_APPSINGLEUSE 0x800401F7 CO_E_ERRORINAPP 0x800401F8
CO_E_DLLNOTFOUND 0x800401F9 CO_E_ERRORINDLL 0x800401FA
CO_E_WRONGOSFORAPP 0x800401FB CO_E_OBJNOTREG 0x800401FC
CO_E_OBJISREG 0x800401FD CO_E_OBJNOTCONNECTED 0x800401FE
CO_E_APPDIDNTREG 0x800401FF CO_E_RELEASED 0x80040201
EVENT_E_ALL_SUBSCRIBERS_FAILED 0x80040203 EVENT_E_QUERYSYNTAX
0x80040204 EVENT_E_QUERYFIELD 0x80040205 EVENT_E_INTERNALEXCEPTION
0x80040206 EVENT_E_INTERNALERROR 0x80040207
EVENT_E_INVALID_PER_USER_SID 0x80040208 EVENT_E_USER_EXCEPTION
0x80040209 EVENT_E_TOO_MANY_METHODS 0x8004020A
EVENT_E_MISSING_EVENTCLASS 0x8004020B EVENT_E_NOT_ALL_REMOVED
0x8004020C EVENT_E_COMPLUS_NOT_INSTALLED Some error in
application.

DLL for class not found.

Error in the DLL.

Wrong operating system or operating system version for
application. Object is not registered.

Object is already registered.

Object is not connected to server.

Application was launched, but it did not register a class
factory. Object has been released.

An event was unable to invoke any of the subscribers. A syntax
error occurred trying to evaluate a query string. An invalid field
name was used in a query string.

An unexpected exception was raised.

An unexpected internal error was detected.

The owner security identifier (SID) on a per-user subscription
does not exist. A user-supplied component or subscriber raised an
exception. An interface has too many methods to fire events from. A
subscription cannot be stored unless its event class already
exists. Not all the objects requested could be removed.

COM+ is required for this operation, but it is not
installed.

31

0x8004020D Cannot modify or delete an object that was not
EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_O added using the COM+
Administrative SDK. BJECT 0x8004020E Cannot modify or delete an
object that was added EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJE
using the COM+ Administrative SDK. CT 0x8004020F
EVENT_E_INVALID_EVENT_CLASS_PARTITION 0x80040210
EVENT_E_PER_USER_SID_NOT_LOGGED_ON 0x80041309
SCHED_E_TRIGGER_NOT_FOUND 0x8004130A SCHED_E_TASK_NOT_READY
0x8004130B SCHED_E_TASK_NOT_RUNNING 0x8004130C
SCHED_E_SERVICE_NOT_INSTALLED 0x8004130D SCHED_E_CANNOT_OPEN_TASK
0x8004130E SCHED_E_INVALID_TASK 0x8004130F
SCHED_E_ACCOUNT_INFORMATION_NOT_SET 0x80041310
SCHED_E_ACCOUNT_NAME_NOT_FOUND 0x80041311
SCHED_E_ACCOUNT_DBASE_CORRUPT 0x80041312
SCHED_E_NO_SECURITY_SERVICES 0x80041313
SCHED_E_UNKNOWN_OBJECT_VERSION 0x80041314
SCHED_E_UNSUPPORTED_ACCOUNT_OPTION The event class for this
subscription is in an invalid partition. The owner of the PerUser
subscription is not logged on to the system specified. Trigger not
found.

One or more of the properties that are needed to run this task
have not been set. There is no running instance of the task.

The Task Scheduler service is not installed on this computer.
The task object could not be opened.

The object is either an invalid task object or is not a task
object. No account information could be found in the Task Scheduler
security database for the task indicated. Unable to establish
existence of the account specified. Corruption was detected in the
Task Scheduler security database; the database has been reset. Task
Scheduler security services are available only on Windows NT. The
task object version is either unsupported or invalid. The task has
been configured with an unsupported combination of account settings
and run-time options. The Task Scheduler service is not
running.

0x80041315 SCHED_E_SERVICE_NOT_RUNNING 0x80041316
SCHED_E_UNEXPECTEDNODE 0x80041317 SCHED_E_NAMESPACE 0x80041318

The task XML contains an unexpected node.

The task XML contains an element or attribute from an unexpected
namespace. The task XML contains a value that is incorrectly

32

SCHED_E_INVALIDVALUE 0x80041319 SCHED_E_MISSINGNODE 0x8004131A
SCHED_E_MALFORMEDXML 0x8004131D SCHED_E_TOO_MANY_NODES 0x8004131E
SCHED_E_PAST_END_BOUNDARY 0x8004131F SCHED_E_ALREADY_RUNNING
0x80041320 SCHED_E_USER_NOT_LOGGED_ON 0x80041321
SCHED_E_INVALID_TASK_HASH 0x80041322 SCHED_E_SERVICE_NOT_AVAILABLE
0x80041323 SCHED_E_SERVICE_TOO_BUSY 0x80041324
SCHED_E_TASK_ATTEMPTED

formatted or out of range. The task XML is missing a required
element or attribute. The task XML is malformed.

The task XML contains too many nodes of the same type. The task
cannot be started after the trigger’s end boundary. An instance of
this task is already running.

The task will not run because the user is not logged on. The
task image is corrupt or has been tampered with. The Task Scheduler
service is not available.

The Task Scheduler service is too busy to handle your request.
Try again later. The Task Scheduler service attempted to run the
task, but the task did not run due to one of the constraints in the
task definition. Another single phase resource manager has already
been enlisted in this transaction. A retaining commit or abort is
not supported.

0x8004D000 XACT_E_ALREADYOTHERSINGLEPHASE 0x8004D001
XACT_E_CANTRETAIN 0x8004D002 XACT_E_COMMITFAILED 0x8004D003
XACT_E_COMMITPREVENTED

The transaction failed to commit for an unknown reason. The
transaction was aborted. Cannot call commit on this transaction
object because the calling application did not initiate the
transaction. Instead of committing, the resource heuristically
aborted. Instead of aborting, the resource heuristically committed.
Some of the states of the resource were committed while others were
aborted, likely because of heuristic decisions. Some of the states
of the resource may have been committed while others may have been
aborted, likely because of heuristic decisions. The requested
isolation level is not valid or

0x8004D004 XACT_E_HEURISTICABORT 0x8004D005
XACT_E_HEURISTICCOMMIT 0x8004D006 XACT_E_HEURISTICDAMAGE

0x8004D007 XACT_E_HEURISTICDANGER

0x8004D008

33

XACT_E_ISOLATIONLEVEL 0x8004D009 XACT_E_NOASYNC 0x8004D00A
XACT_E_NOENLIST 0x8004D00B XACT_E_NOISORETAIN

supported. The transaction manager does not support an
asynchronous operation for this method. Unable to enlist in the
transaction.

The requested semantics of retention of isolation across
retaining commit and abort boundaries cannot be supported by this
transaction implementation, orisoFlags was not equal to 0. There is
no resource presently associated with this enlistment. The
transaction failed to commit due to the failure of optimistic
concurrency control in at least one of the resource managers. The
transaction has already been implicitly or explicitly committed or
aborted. An invalid combination of flags was specified.

0x8004D00C XACT_E_NORESOURCE 0x8004D00D XACT_E_NOTCURRENT

0x8004D00E XACT_E_NOTRANSACTION 0x8004D00F XACT_E_NOTSUPPORTED
0x8004D010 XACT_E_UNKNOWNRMGRID 0x8004D011 XACT_E_WRONGSTATE
0x8004D012 XACT_E_WRONGUOW 0x8004D013 XACT_E_XTIONEXISTS 0x8004D014
XACT_E_NOIMPORTOBJECT 0x8004D015 XACT_E_INVALIDCOOKIE 0x8004D016
XACT_E_INDOUBT

The resource manager ID is not associated with this transaction
or the transaction manager. This method was called in the wrong
state.

The indicated unit of work does not match the unit of work
expected by the resource manager. An enlistment in a transaction
already exists.

An import object for the transaction could not be found. The
transaction cookie is invalid.

The transaction status is in doubt. A communication failure
occurred, or a transaction manager or resource manager has failed.
A time-out was specified, but time-outs are not supported. The
requested operation is already in progress for the transaction. The
transaction has already been aborted.

0x8004D017 XACT_E_NOTIMEOUT 0x8004D018 XACT_E_ALREADYINPROGRESS
0x8004D019 XACT_E_ABORTED 0x8004D01A XACT_E_LOGFULL 0x8004D01B

The Transaction Manager returned a log full error.

The transaction manager is not available.

34

XACT_E_TMNOTAVAILABLE 0x8004D01C XACT_E_CONNECTION_DOWN
0x8004D01D XACT_E_CONNECTION_DENIED 0x8004D01E
XACT_E_REENLISTTIMEOUT 0x8004D01F XACT_E_TIP_CONNECT_FAILED A
connection with the transaction manager was lost. A request to
establish a connection with the transaction manager was denied.
Resource manager reenlistment to determine transaction status timed
out. The transaction manager failed to establish a connection with
another Transaction Internet Protocol (TIP) transaction manager.
The transaction manager encountered a protocol error with another
TIP transaction manager. The transaction manager could not
propagate a transaction from another TIP transaction manager. The
transaction manager on the destination machine is not available.
The transaction manager has disabled its support for TIP. The
transaction manager has disabled its support for remote or network
transactions. The partner transaction manager has disabled its
support for remote or network transactions. The transaction manager
has disabled its support for XA transactions. Microsoft Distributed
Transaction Coordinator (MSDTC) was unable to read its
configuration information. MSDTC was unable to load the DTC proxy
DLL.

0x8004D020 XACT_E_TIP_PROTOCOL_ERROR 0x8004D021
XACT_E_TIP_PULL_FAILED 0x8004D022 XACT_E_DEST_TMNOTAVAILABLE
0x8004D023 XACT_E_TIP_DISABLED 0x8004D024
XACT_E_NETWORK_TX_DISABLED 0x8004D025
XACT_E_PARTNER_NETWORK_TX_DISABLED 0x8004D026 XACT_E_XA_TX_DISABLED
0x8004D027 XACT_E_UNABLE_TO_READ_DTC_CONFIG

0x8004D028 XACT_E_UNABLE_TO_LOAD_DTC_PROXY 0x8004D029
XACT_E_ABORTING 0x8004D080 XACT_E_CLERKNOTFOUND 0x8004D081
XACT_E_CLERKEXISTS 0x8004D082 XACT_E_RECOVERYINPROGRESS 0x8004D083
XACT_E_TRANSACTIONCLOSED

The local transaction has aborted.

The specified CRM clerk was not found. It may have completed
before it could be held. The specified CRM clerk does not
exist.

Recovery of the CRM log file is still in progress.

The transaction has completed, and the log records have been
discarded from the log file. They are no longer available.
lsnToRead is outside of the current limits of the log

0x8004D084 XACT_E_INVALIDLSN

35

0x8004D085 XACT_E_REPLAYREQUEST 0x8004D100
XACT_E_CONNECTION_REQUEST_DENIED 0x8004D101
XACT_E_TOOMANY_ENLISTMENTS 0x8004D102 XACT_E_DUPLICATE_GUID

The COM+ Compensating Resource Manager has records it wishes to
replay. The request to connect to the specified transaction
coordinator was denied. The maximum number of enlistments for the
specified transaction has been reached. A resource manager with the
same identifier is already registered with the specified
transaction coordinator. The prepare request given was not eligible
for single-phase optimizations. RecoveryComplete has already been
called for the given resource manager. The interface call made was
incorrect for the current state of the protocol. The xa_open call
failed for the XA resource.

0x8004D103 XACT_E_NOTSINGLEPHASE 0x8004D104
XACT_E_RECOVERYALREADYDONE 0x8004D105 XACT_E_PROTOCOL 0x8004D106
XACT_E_RM_FAILURE 0x8004D107 XACT_E_RECOVERY_FAILED 0x8004D108
XACT_E_LU_NOT_FOUND 0x8004D109 XACT_E_DUPLICATE_LU 0x8004D10A
XACT_E_LU_NOT_CONNECTED 0x8004D10B XACT_E_DUPLICATE_TRANSID
0x8004D10C XACT_E_LU_BUSY 0x8004D10D XACT_E_LU_NO_RECOVERY_PROCESS
0x8004D10E XACT_E_LU_DOWN 0x8004D10F XACT_E_LU_RECOVERING
0x8004D110 XACT_E_LU_RECOVERY_MISMATCH 0x8004D111
XACT_E_RM_UNAVAILABLE 0x8004E002 CONTEXT_E_ABORTED

The xa_recover call failed for the XA resource.

The logical unit of work specified cannot be found.

The specified logical unit of work already exists.

Subordinate creation failed. The specified logical unit of work
was not connected. A transaction with the given identifier already
exists. The resource is in use.

The LU Recovery process is down.

The remote session was lost.

The resource is currently recovering.

There was a mismatch in driving recovery.

An error occurred with the XA resource.

The root transaction wanted to commit, but the transaction
aborted.

36

0x8004E003 CONTEXT_E_ABORTING

The COM+ component on which the method call was made has a
transaction that has already aborted or is in the process of
aborting. There is no Microsoft Transaction Server (MTS) object
context. The component is configured to use synchronization, and
this method call would cause a deadlock to occur. The component is
configured to use synchronization, and a thread has timed out
waiting to enter the context. You made a method call on a COM+
component that has a transaction that has already committed or
aborted. The specified role was not configured for the application.
COM+ was unable to talk to the MSDTC.

0x8004E004 CONTEXT_E_NOCONTEXT 0x8004E005
CONTEXT_E_WOULD_DEADLOCK

0x8004E006 CONTEXT_E_SYNCH_TIMEOUT

0x8004E007 CONTEXT_E_OLDREF

0x8004E00C CONTEXT_E_ROLENOTFOUND 0x8004E00F
CONTEXT_E_TMNOTAVAILABLE 0x8004E021 CO_E_ACTIVATIONFAILED
0x8004E022 CO_E_ACTIVATIONFAILED_EVENTLOGGED 0x8004E023
CO_E_ACTIVATIONFAILED_CATALOGERROR 0x8004E024
CO_E_ACTIVATIONFAILED_TIMEOUT

An unexpected error occurred during COM+ activation. COM+
activation failed. Check the event log for more information. COM+
activation failed due to a catalog or configuration error. COM+
activation failed because the activation could not be completed in
the specified amount of time. COM+ activation failed because an
initialization function failed. Check the event log for more
information. The requested operation requires that just-in-time
(JIT) be in the current context, and it is not. The requested
operation requires that the current context have a transaction, and
it does not. The components threading model has changed after
install into a COM+ application. Re-install component. Internet
Information Services (IIS) intrinsics not available. Start your
work with IIS. An attempt to write a cookie failed.

0x8004E025 CO_E_INITIALIZATIONFAILED

0x8004E026 CONTEXT_E_NOJIT 0x8004E027 CONTEXT_E_NOTRANSACTION
0x8004E028 CO_E_THREADINGMODEL_CHANGED

0x8004E029 CO_E_NOIISINTRINSICS 0x8004E02A CO_E_NOCOOKIES
0x8004E02B CO_E_DBERROR

An attempt to use a database generated a database-specific
error.

37

0x8004E02C CO_E_NOTPOOLED 0x8004E02D CO_E_NOTCONSTRUCTED
0x8004E02E CO_E_NOSYNCHRONIZATION 0x8004E02F
CO_E_ISOLEVELMISMATCH

The COM+ component you created must use object pooling to work.
The COM+ component you created must use object construction to work
correctly. The COM+ component requires synchronization, and it is
not configured for it. The TxIsolation Level property for the COM+
component being created is stronger than the TxIsolationLevel for
the root. The component attempted to make a cross-context call
between invocations of EnterTransactionScope and
ExitTransactionScope. This is not allowed. Cross-context calls
cannot be made while inside a transaction scope. The component made
a call to EnterTransactionScope, but did not make a corresponding
call to ExitTransactionScope before returning. General access
denied error.

0x8004E030 CO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED

0x8004E031 CO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED

0x80070005 E_ACCESSDENIED 0x8007000E E_OUTOFMEMORY 0x80070057
E_INVALIDARG 0x80080001 CO_E_CLASS_CREATE_FAILED 0x80080002
CO_E_SCM_ERROR 0x80080003 CO_E_SCM_RPC_FAILURE 0x80080004
CO_E_BAD_PATH 0x80080005 CO_E_SERVER_EXEC_FAILURE 0x80080006
CO_E_OBJSRV_RPC_FAILURE 0x80080007 MK_E_NO_NORMALIZED 0x80080008
CO_E_SERVER_STOPPING 0x80080009 MEM_E_INVALID_ROOT

The server does not have enough memory for the new channel. One
or more arguments are invalid.

Attempt to create a class object failed.

OLE service could not bind object.

RPC communication failed with OLE service.

Bad path to object.

Server execution failed.

OLE service could not communicate with the object server.
Moniker path could not be normalized.

Object server is stopping when OLE service contacts it. An
invalid root block pointer was specified.

38

0x80080010 MEM_E_INVALID_LINK 0x80080011 MEM_E_INVALID_SIZE
0x80080015 CO_E_MISSING_DISPLAYNAME 0x80080016
CO_E_RUNAS_VALUE_MUST_BE_AAA 0x80080017 CO_E_ELEVATION_DISABLED
0x80090001 NTE_BAD_UID 0x80090002 NTE_BAD_HASH 0x80090003
NTE_BAD_KEY 0x80090004 NTE_BAD_LEN 0x80090005 NTE_BAD_DATA
0x80090006 NTE_BAD_SIGNATURE 0x80090007 NTE_BAD_VER 0x80090008
NTE_BAD_ALGID 0x80090009 NTE_BAD_FLAGS 0x8009000A NTE_BAD_TYPE
0x8009000B NTE_BAD_KEY_STATE 0x8009000C NTE_BAD_HASH_STATE
0x8009000D NTE_NO_KEY 0x8009000E NTE_NO_MEMORY 0x8009000F
NTE_EXISTS 0x80090010

An allocation chain contained an invalid link pointer. The
requested allocation size was too large.

The activation requires a display name to be present under the
class identifier (CLSID) key. The activation requires that the
RunAs value for the application is Activate As Activator. The class
is not configured to support elevated activation. Bad UID.

Bad hash.

Bad key.

Bad length.

Bad data.

Invalid signature.

Bad version of provider.

Invalid algorithm specified.

Invalid flags specified.

Invalid type specified.

Key not valid for use in specified state.

Hash not valid for use in specified state.

Key does not exist.

Insufficient memory available for the operation.

Object already exists.

Access denied.

39

NTE_PERM 0x80090011 NTE_NOT_FOUND 0x80090012 NTE_DOUBLE_ENCRYPT
0x80090013 NTE_BAD_PROVIDER 0x80090014 NTE_BAD_PROV_TYPE 0x80090015
NTE_BAD_PUBLIC_KEY 0x80090016 NTE_BAD_KEYSET 0x80090017
NTE_PROV_TYPE_NOT_DEF 0x80090018 NTE_PROV_TYPE_ENTRY_BAD 0x80090019
NTE_KEYSET_NOT_DEF 0x8009001A NTE_KEYSET_ENTRY_BAD 0x8009001B
NTE_PROV_TYPE_NO_MATCH 0x8009001C NTE_SIGNATURE_FILE_BAD 0x8009001D
NTE_PROVIDER_DLL_FAIL 0x8009001E NTE_PROV_DLL_NOT_FOUND 0x8009001F
NTE_BAD_KEYSET_PARAM 0x80090020 NTE_FAIL 0x80090021 NTE_SYS_ERR
0x80090022 NTE_SILENT_CONTEXT 0x80090023
NTE_TOKEN_KEYSET_STORAGE_FULL 0x80090024 NTE_TEMPORARY_PROFILE
Object was not found.

Data already encrypted.

Invalid provider specified.

Invalid provider type specified.

Provider’s public key is invalid.

Key set does not exist.

Provider type not defined.

The provider type, as registered, is invalid.

The key set is not defined.

The key set, as registered, is invalid.

Provider type does not match registered value.

The digital signature file is corrupt.

Provider DLL failed to initialize correctly.

Provider DLL could not be found.

The keyset parameter is invalid.

An internal error occurred.

A base error occurred.

Provider could not perform the action because the context was
acquired as silent. The security token does not have storage space
available for an additional container. The profile for the user is
a temporary profile.

40

0x80090025 NTE_FIXEDPARAMETER

The key parameters could not be set because the configuration
service provider (CSP) uses fixed parameters. The supplied handle
is invalid.

0x80090026 NTE_INVALID_HANDLE 0x80090027 NTE_INVALID_PARAMETER
0x80090028 NTE_BUFFER_TOO_SMALL 0x80090029 NTE_NOT_SUPPORTED
0x8009002A NTE_NO_MORE_ITEMS 0x8009002B NTE_BUFFERS_OVERLAP
0x8009002C NTE_DECRYPTION_FAILURE 0x8009002D NTE_INTERNAL_ERROR
0x8009002E NTE_UI_REQUIRED 0x8009002F NTE_HMAC_NOT_SUPPORTED
0x80090300 SEC_E_INSUFFICIENT_MEMORY 0x80090301
SEC_E_INVALID_HANDLE 0x80090302 SEC_E_UNSUPPORTED_FUNCTION
0x80090303 SEC_E_TARGET_UNKNOWN 0x80090304 SEC_E_INTERNAL_ERROR
0x80090305 SEC_E_SECPKG_NOT_FOUND 0x80090306 SEC_E_NOT_OWNER
0x80090307 SEC_E_CANNOT_INSTALL 0x80090308 SEC_E_INVALID_TOKEN

The parameter is incorrect.

The buffer supplied to a function was too small.

The requested operation is not supported.

No more data is available.

The supplied buffers overlap incorrectly.

The specified data could not be decrypted.

An internal consistency check failed.

This operation requires input from the user.

The cryptographic provider does not support Hash Message
Authentication Code (HMAC). Not enough memory is available to
complete this request. The handle specified is invalid.

The function requested is not supported.

The specified target is unknown or unreachable.

The Local Security Authority (LSA) cannot be contacted. The
requested security package does not exist.

The caller is not the owner of the desired credentials. The
security package failed to initialize and cannot be installed. The
token supplied to the function is invalid.

41

0x80090309 SEC_E_CANNOT_PACK 0x8009030A SEC_E_QOP_NOT_SUPPORTED
0x8009030B SEC_E_NO_IMPERSONATION 0x8009030C SEC_E_LOGON_DENIED
0x8009030D SEC_E_UNKNOWN_CREDENTIALS 0x8009030E
SEC_E_NO_CREDENTIALS 0x8009030F SEC_E_MESSAGE_ALTERED 0x80090310
SEC_E_OUT_OF_SEQUENCE 0x80090311 SEC_E_NO_AUTHENTICATING_AUTHORITY
0x80090316 SEC_E_BAD_PKGID 0x80090317 SEC_E_CONTEXT_EXPIRED
0x80090318 SEC_E_INCOMPLETE_MESSAGE 0x80090320
SEC_E_INCOMPLETE_CREDENTIALS

The security package is not able to marshal the logon buffer, so
the logon attempt has failed. The per-message quality of protection
is not supported by the security package. The security context does
not allow impersonation of the client. The logon attempt
failed.

The credentials supplied to the package were not recognized. No
credentials are available in the security package. The message or
signature supplied for verification has been altered. The message
supplied for verification is out of sequence. No authority could be
contacted for authentication.

The requested security package does not exist.

The context has expired and can no longer be used. The supplied
message is incomplete. The signature was not verified. The
credentials supplied were not complete and could not be verified.
The context could not be initialized. The buffers supplied to a
function was too small.

0x80090321 SEC_E_BUFFER_TOO_SMALL 0x80090322
SEC_E_WRONG_PRINCIPAL 0x80090324 SEC_E_TIME_SKEW 0x80090325
SEC_E_UNTRUSTED_ROOT 0x80090326 SEC_E_ILLEGAL_MESSAGE 0x80090327
SEC_E_CERT_UNKNOWN 0x80090328 SEC_E_CERT_EXPIRED

The target principal name is incorrect.

The clocks on the client and server machines are skewed. The
certificate chain was issued by an authority that is not trusted.
The message received was unexpected or badly formatted. An unknown
error occurred while processing the certificate. The received
certificate has expired.

42

0x80090329 SEC_E_ENCRYPT_FAILURE 0x80090330
SEC_E_DECRYPT_FAILURE 0x80090331 SEC_E_ALGORITHM_MISMATCH
0x80090332 SEC_E_SECURITY_QOS_FAILED

The specified data could not be encrypted.

The specified data could not be decrypted.

The client and server cannot communicate because they do not
possess a common algorithm. The security context could not be
established due to a failure in the requested quality of service
(for example, mutual authentication or delegation). A security
context was deleted before the context was completed. This is
considered a logon failure. The client is trying to negotiate a
context and the server requires user-to-user but did not send a
ticket granting ticket (TGT) reply. Unable to accomplish the
requested task because the local machine does not have an IP
addresses. The supplied credential handle does not match the
credential associated with the security context. The cryptographic
system or checksum function is invalid because a required function
is unavailable. The number of maximum ticket referrals has been
exceeded. The local machine must be a Kerberos domain controller
(KDC), and it is not. The other end of the security negotiation
requires strong cryptographics, but it is not supported on the
local machine. The KDC reply contained more than one principal
name. Expected to find PA data for a hint of what etype to use, but
it was not found. The client certificate does not contain a valid
user principal name (UPN), or does not match the client name in the
logon request. Contact your administrator. Smart card logon is
required and was not used.

0x80090333 SEC_E_UNFINISHED_CONTEXT_DELETED 0x80090334
SEC_E_NO_TGT_REPLY

0x80090335 SEC_E_NO_IP_ADDRESSES 0x80090336
SEC_E_WRONG_CREDENTIAL_HANDLE 0x80090337
SEC_E_CRYPTO_SYSTEM_INVALID 0x80090338 SEC_E_MAX_REFERRALS_EXCEEDED
0x80090339 SEC_E_MUST_BE_KDC 0x8009033A
SEC_E_STRONG_CRYPTO_NOT_SUPPORTED

0x8009033B SEC_E_TOO_MANY_PRINCIPALS 0x8009033C SEC_E_NO_PA_DATA
0x8009033D SEC_E_PKINIT_NAME_MISMATCH

0x8009033E SEC_E_SMARTCARD_LOGON_REQUIRED 0x8009033F
SEC_E_SHUTDOWN_IN_PROGRESS 0x80090340 SEC_E_KDC_INVALID_REQUEST
0x80090341

A system shutdown is in progress.

An invalid request was sent to the KDC.

The KDC was unable to generate a referral for the

43

SEC_E_KDC_UNABLE_TO_REFER 0x80090342 SEC_E_KDC_UNKNOWN_ETYPE
0x80090343 SEC_E_UNSUPPORTED_PREAUTH 0x80090345
SEC_E_DELEGATION_REQUIRED

service requested. The encryption type requested is not
supported by the KDC. An unsupported pre-authentication mechanism
was presented to the Kerberos package. The requested operation
cannot be completed. The computer must be trusted for delegation,
and the current user account must be configured to allow
delegation. Client’s supplied Security Support Provider Interface
(SSPI) channel bindings were incorrect. The received certificate
was mapped to multiple accounts. No Kerberos key was found.

0x80090346 SEC_E_BAD_BINDINGS 0x80090347 SEC_E_MULTIPLE_ACCOUNTS
0x80090348 SEC_E_NO_KERB_KEY 0x80090349 SEC_E_CERT_WRONG_USAGE
0x80090350 SEC_E_DOWNGRADE_DETECTED

The certificate is not valid for the requested usage.

The system detected a possible attempt to compromise security.
Ensure that you can contact the server that authenticated you. The
smart card certificate used for authentication has been revoked.
Contact your system administrator. The event log may contain
additional information. An untrusted certification authority (CA)
was detected while processing the smart card certificate used for
authentication. Contact your system administrator. The revocation
status of the smart card certificate used for authentication could
not be determined. Contact your system administrator. The smart
card certificate used for authentication was not trusted. Contact
your system administrator. The smart card certificate used for
authentication has expired. Contact your system administrator. The
Kerberos subsystem encountered an error. A service for user
protocol requests was made against a domain controller that does
not support services for users. An attempt was made by this server
to make a Kerberos-constrained delegation request for a target
outside the server’s realm. This is not supported and indicates a
misconfiguration on this server’s allowed-to-delegate-to list.
Contact your administrator.

0x80090351 SEC_E_SMARTCARD_CERT_REVOKED

0x80090352 SEC_E_ISSUING_CA_UNTRUSTED

0x80090353 SEC_E_REVOCATION_OFFLINE_C

0x80090354 SEC_E_PKINIT_CLIENT_FAILURE 0x80090355
SEC_E_SMARTCARD_CERT_EXPIRED 0x80090356
SEC_E_NO_S4U_PROT_SUPPORT

0x80090357 SEC_E_CROSSREALM_DELEGATION_FAILURE

44

0x80090358 SEC_E_REVOCATION_OFFLINE_KDC

The revocation status of the domain controller certificate used
for smart card authentication could not be determined. The system
event log contains additional information. Contact your system
administrator. An untrusted CA was detected while processing the
domain controller certificate used for authentication. The system
event log contains additional information. Contact your system
administrator. The domain controller certificate used for smart
card logon has expired. Contact your system administrator with the
contents of your system event log. The domain controller
certificate used for smart card logon has been revoked. Contact
your system administrator with the contents of your system event
log. One or more of the parameters passed to the function were
invalid. The client policy does not allow credential delegation to
the target server. The client policy does not allow credential
delegation to the target server with NLTM only authentication. An
error occurred while performing an operation on a cryptographic
message. Unknown cryptographic algorithm.

0x80090359 SEC_E_ISSUING_CA_UNTRUSTED_KDC

0x8009035A SEC_E_KDC_CERT_EXPIRED

0x8009035B SEC_E_KDC_CERT_REVOKED

0x8009035D SEC_E_INVALID_PARAMETER 0x8009035E
SEC_E_DELEGATION_POLICY 0x8009035F SEC_E_POLICY_NLTM_ONLY

0x80091001 CRYPT_E_MSG_ERROR 0x80091002 CRYPT_E_UNKNOWN_ALGO
0x80091003 CRYPT_E_OID_FORMAT 0x80091004 CRYPT_E_INVALID_MSG_TYPE
0x80091005 CRYPT_E_UNEXPECTED_ENCODING 0x80091006
CRYPT_E_AUTH_ATTR_MISSING 0x80091007 CRYPT_E_HASH_VALUE 0x80091008
CRYPT_E_INVALID_INDEX 0x80091009 CRYPT_E_ALREADY_DECRYPTED
0x8009100A

The object identifier is poorly formatted.

Invalid cryptographic message type.

Unexpected cryptographic message encoding.

The cryptographic message does not contain an expected
authenticated attribute. The hash value is not correct.

The index value is not valid.

The content of the cryptographic message has already been
decrypted. The content of the cryptographic message has not

45

CRYPT_E_NOT_DECRYPTED 0x8009100B CRYPT_E_RECIPIENT_NOT_FOUND
0x8009100C CRYPT_E_CONTROL_TYPE 0x8009100D
CRYPT_E_ISSUER_SERIALNUMBER 0x8009100E CRYPT_E_SIGNER_NOT_FOUND
0x8009100F CRYPT_E_ATTRIBUTES_MISSING 0x80091010
CRYPT_E_STREAM_MSG_NOT_READY 0x80091011
CRYPT_E_STREAM_INSUFFICIENT_DATA 0x80092001 CRYPT_E_BAD_LEN
0x80092002 CRYPT_E_BAD_ENCODE 0x80092003 CRYPT_E_FILE_ERROR
0x80092004 CRYPT_E_NOT_FOUND 0x80092005 CRYPT_E_EXISTS 0x80092006
CRYPT_E_NO_PROVIDER 0x80092007 CRYPT_E_SELF_SIGNED 0x80092008
CRYPT_E_DELETED_PREV 0x80092009 CRYPT_E_NO_MATCH 0x8009200A
CRYPT_E_UNEXPECTED_MSG_TYPE 0x8009200B CRYPT_E_NO_KEY_PROPERTY
0x8009200C CRYPT_E_NO_DECRYPT_CERT 0x8009200D CRYPT_E_BAD_MSG

been decrypted yet. The enveloped-data message does not contain
the specified recipient. Invalid control type.

Invalid issuer or serial number.

Cannot find the original signer.

The cryptographic message does not contain all of the requested
attributes. The streamed cryptographic message is not ready to
return data. The streamed cryptographic message requires more data
to complete the decode operation. The length specified for the
output data was insufficient. An error occurred during the encode
or decode operation. An error occurred while reading or writing to
a file.

Cannot find object or property.

The object or property already exists.

No provider was specified for the store or object.

The specified certificate is self-signed.

The previous certificate or certificate revocation list (CRL)
context was deleted. Cannot find the requested object.

The certificate does not have a property that references a
private key. Cannot find the certificate and private key for
decryption. Cannot find the certificate and private key to use for
decryption. Not a cryptographic message or the cryptographic
message is not formatted correctly.

46

0x8009200E CRYPT_E_NO_SIGNER 0x8009200F CRYPT_E_PENDING_CLOSE
0x80092010 CRYPT_E_REVOKED 0x80092011 CRYPT_E_NO_REVOCATION_DLL
0x80092012 CRYPT_E_NO_REVOCATION_CHECK 0x80092013
CRYPT_E_REVOCATION_OFFLINE

The signed cryptographic message does not have a signer for the
specified signer index. Final closure is pending until additional
frees or closes. The certificate is revoked.

No DLL or exported function was found to verify revocation. The
revocation function was unable to check revocation for the
certificate. The revocation function was unable to check revocation
because the revocation server was offline. The certificate is not
in the revocation server’s database. The string contains a
non-numeric character.

0x80092014 CRYPT_E_NOT_IN_REVOCATION_DATABASE 0x80092020
CRYPT_E_INVALID_NUMERIC_STRING 0x80092021
CRYPT_E_INVALID_PRINTABLE_STRING 0x80092022
CRYPT_E_INVALID_IA5_STRING 0x80092023 CRYPT_E_INVALID_X500_STRING
0x80092024 CRYPT_E_NOT_CHAR_STRING

The string contains a nonprintable character.

The string contains a character not in the 7-bit ASCII character
set. The string contains an invalid X500 name attribute key, object
identifier (OID), value, or delimiter. The dwValueType for the
CERT_NAME_VALUE is not one of the character strings. Most likely it
is either a CERT_RDN_ENCODED_BLOB or CERT_TDN_OCTED_STRING. The Put
operation cannot continue. The file needs to be resized. However,
there is already a signature present. A complete signing operation
must be done. The cryptographic operation failed due to a local
security option setting. No DLL or exported function was found to
verify subject usage. The called function was unable to perform a
usage check on the subject. The called function was unable to
complete the usage check because the server was offline. The
subject was not found in a certificate trust list (CTL). None of
the signers of the cryptographic message

0x80092025 CRYPT_E_FILERESIZED

0x80092026 CRYPT_E_SECURITY_SETTINGS 0x80092027
CRYPT_E_NO_VERIFY_USAGE_DLL 0x80092028
CRYPT_E_NO_VERIFY_USAGE_CHECK 0x80092029
CRYPT_E_VERIFY_USAGE_OFFLINE 0x8009202A CRYPT_E_NOT_IN_CTL
0x8009202B

47

CRYPT_E_NO_TRUSTED_SIGNER 0x8009202C CRYPT_E_MISSING_PUBKEY_PARA
0x80093000 CRYPT_E_OSS_ERROR 0x80093001 OSS_MORE_BUF 0x80093002
OSS_NEGATIVE_UINTEGER 0x80093003 OSS_PDU_RANGE 0x80093004
OSS_MORE_INPUT 0x80093005 OSS_DATA_ERROR 0x80093006 OSS_BAD_ARG
0x80093007 OSS_BAD_VERSION 0x80093008 OSS_OUT_MEMORY 0x80093009
OSS_PDU_MISMATCH 0x8009300A OSS_LIMITED 0x8009300B OSS_BAD_PTR
0x8009300C OSS_BAD_TIME 0x8009300D OSS_INDEFINITE_NOT_SUPPORTED
0x8009300E OSS_MEM_ERROR 0x8009300F OSS_BAD_TABLE 0x80093010
OSS_TOO_LONG 0x80093011 OSS_CONSTRAINT_VIOLATED 0x80093012
OSS_FATAL_ERROR

or certificate trust list is trusted. The public key’s algorithm
parameters are missing.

OSS Certificate encode/decode error code base.

OSS ASN.1 Error: Output Buffer is too small.

OSS ASN.1 Error: Signed integer is encoded as a unsigned
integer. OSS ASN.1 Error: Unknown ASN.1 data type.

OSS ASN.1 Error: Output buffer is too small; the decoded data
has been truncated. OSS ASN.1 Error: Invalid data.

OSS ASN.1 Error: Invalid argument.

OSS ASN.1 Error: Encode/Decode version mismatch. OSS ASN.1
Error: Out of memory.

OSS ASN.1 Error: Encode/Decode error.

OSS ASN.1 Error: Internal error.

OSS ASN.1 Error: Invalid data.

OSS ASN.1 Error: Invalid data.

OSS ASN.1 Error: Unsupported BER indefinitelength encoding. OSS
ASN.1 Error: Access violation.

OSS ASN.1 Error: Invalid data.

OSS ASN.1 Error: Invalid data.

OSS ASN.1 Error: Invalid data.

OSS ASN.1 Error: Internal error.

48

0x80093013 OSS_ACCESS_SERIALIZATION_ERROR 0x80093014
OSS_NULL_TBL 0x80093015 OSS_NULL_FCN 0x80093016 OSS_BAD_ENCRULES
0x80093017 OSS_UNAVAIL_ENCRULES 0x80093018
OSS_CANT_OPEN_TRACE_WINDOW 0x80093019 OSS_UNIMPLEMENTED 0x8009301A
OSS_OID_DLL_NOT_LINKED 0x8009301B OSS_CANT_OPEN_TRACE_FILE
0x8009301C OSS_TRACE_FILE_ALREADY_OPEN 0x8009301D
OSS_TABLE_MISMATCH 0x8009301E OSS_TYPE_NOT_SUPPORTED 0x8009301F
OSS_REAL_DLL_NOT_LINKED 0x80093020 OSS_REAL_CODE_NOT_LINKED
0x80093021 OSS_OUT_OF_RANGE 0x80093022 OSS_COPIER_DLL_NOT_LINKED
0x80093023 OSS_CONSTRAINT_DLL_NOT_LINKED 0x80093024
OSS_COMPARATOR_DLL_NOT_LINKED 0x80093025
OSS_COMPARATOR_CODE_NOT_LINKED 0x80093026
OSS_MEM_MGR_DLL_NOT_LINKED 0x80093027

OSS ASN.1 Error: Multithreading conflict.

OSS ASN.1 Error: Invalid data.

OSS ASN.1 Error: Invalid data.

OSS ASN.1 Error: Invalid data.

OSS ASN.1 Error: Encode/Decode function not implemented. OSS
ASN.1 Error: Trace file error.

OSS ASN.1 Error: Function not implemented.

OSS ASN.1 Error: Program link error.

OSS ASN.1 Error: Trace file error.

OSS ASN.1 Error: Trace file error.

OSS ASN.1 Error: Invalid data.

OSS ASN.1 Error: Invalid data.

OSS ASN.1 Error: Program link error.

OSS ASN.1 Error: Program link error.

OSS ASN.1 Error: Program link error.

OSS ASN.1 Error: Program link error.

OSS ASN.1 Error: Program link error.

OSS ASN.1 Error: Program link error.

OSS ASN.1 Error: Program link error.

OSS ASN.1 Error: Program link error.

OSS ASN.1 Error: Program link error.

49

OSS_PDV_DLL_NOT_LINKED 0x80093028 OSS_PDV_CODE_NOT_LINKED
0x80093029 OSS_API_DLL_NOT_LINKED 0x8009302A
OSS_BERDER_DLL_NOT_LINKED 0x8009302B OSS_PER_DLL_NOT_LINKED
0x8009302C OSS_OPEN_TYPE_ERROR 0x8009302D OSS_MUTEX_NOT_CREATED
0x8009302E OSS_CANT_CLOSE_TRACE_FILE 0x80093100 CRYPT_E_ASN1_ERROR
0x80093101 CRYPT_E_ASN1_INTERNAL 0x80093102 CRYPT_E_ASN1_EOD
0x80093103 CRYPT_E_ASN1_CORRUPT 0x80093104 CRYPT_E_ASN1_LARGE
0x80093105 CRYPT_E_ASN1_CONSTRAINT 0x80093106 CRYPT_E_ASN1_MEMORY
0x80093107 CRYPT_E_ASN1_OVERFLOW 0x80093108 CRYPT_E_ASN1_BADPDU
0x80093109 CRYPT_E_ASN1_BADARGS 0x8009310A CRYPT_E_ASN1_BADREAL
0x8009310B CRYPT_E_ASN1_BADTAG 0x8009310C CRYPT_E_ASN1_CHOICE OSS
ASN.1 Error: Program link error.

OSS ASN.1 Error: Program link error.

OSS ASN.1 Error: Program link error.

OSS ASN.1 Error: Program link error.

OSS ASN.1 Error: Program link error.

OSS ASN.1 Error: System resource error.

OSS ASN.1 Error: Trace file error.

ASN1 Certificate encode/decode error code base.

ASN1 internal encode or decode error.

ASN1 unexpected end of data.

ASN1 corrupted data.

ASN1 value too large.

ASN1 constraint violated.

ASN1 out of memory.

ASN1 buffer overflow.

ASN1 function not supported for this protocol data unit (PDU).
ASN1 bad arguments to function call.

ASN1 bad real value.

ASN1 bad tag value met.

ASN1 bad choice value.

50

0x8009310D CRYPT_E_ASN1_RULE 0x8009310E CRYPT_E_ASN1_UTF8
0x80093133 CRYPT_E_ASN1_PDU_TYPE 0x80093134 CRYPT_E_ASN1_NYI
0x80093201 CRYPT_E_ASN1_EXTENDED 0x80093202 CRYPT_E_ASN1_NOEOD
0x80094001 CERTSRV_E_BAD_REQUESTSUBJECT 0x80094002

Понравилась статья? Поделить с друзьями:
  • Mscvr110 dll как исправить
  • Mscvp140 dll ошибка как исправить
  • Mscvp120 dll как исправить
  • Mscvp100 dll как исправить
  • Msctfime ui сталкер золотой шар ошибка