From a13c43d10076dac7e28ea5386012659d37c69ae4 Mon Sep 17 00:00:00 2001 From: Thomas Ardal Date: Mon, 10 Jun 2024 10:58:00 +0200 Subject: [PATCH] Added a lot of missing FACILITY_WIN32 codes --- .../Facilities/FacilityWin32Resolver.cs | 2709 ++++++++++++++++- 1 file changed, 2704 insertions(+), 5 deletions(-) diff --git a/src/Elmah.Io.HResults/Facilities/FacilityWin32Resolver.cs b/src/Elmah.Io.HResults/Facilities/FacilityWin32Resolver.cs index 129a5d6..22c2bb3 100644 --- a/src/Elmah.Io.HResults/Facilities/FacilityWin32Resolver.cs +++ b/src/Elmah.Io.HResults/Facilities/FacilityWin32Resolver.cs @@ -1,5 +1,7 @@ namespace Elmah.Io.HResults.Facilities { + // Sources: + // - https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/18d8fbe8-a967-4f1c-ae50-99ca8e491d2d internal class FacilityWin32Resolver : FacilityResolverBase { public FacilityWin32Resolver() : base(7, "FACILITY_WIN32") @@ -10,12 +12,2709 @@ internal override Code Resolve(bool failure, int code) { return code switch { - 2 => new Code(code, "ERROR_FILE_NOT_FOUND"), - 5 => new Code(code, "E_ACCESSDENIED", "General access denied error."), - 14 => new Code(code, "E_OUTOFMEMORY", "The server does not have enough memory for the new channel."), - 50 => new Code(code, "ERROR_NOT_SUPPORTED", "The server cannot support a client request for a dynamic virtual channel."), - 87 => new Code(code, "E_INVALIDARG", "One or more arguments are invalid."), + 0 => new Code(code, "ERROR_SUCCESS", "The operation completed successfully."), + 1 => new Code(code, "ERROR_INVALID_FUNCTION", "Incorrect function."), + 2 => new Code(code, "ERROR_FILE_NOT_FOUND", "The system cannot find the file specified."), + 3 => new Code(code, "ERROR_PATH_NOT_FOUND", "The system cannot find the path specified."), + 4 => new Code(code, "ERROR_TOO_MANY_OPEN_FILES", "The system cannot open the file."), + 5 => new Code(code, "ERROR_ACCESS_DENIED", "Access is denied."), + 6 => new Code(code, "ERROR_INVALID_HANDLE", "The handle is invalid."), + 7 => new Code(code, "ERROR_ARENA_TRASHED", "The storage control blocks were destroyed."), + 8 => new Code(code, "ERROR_NOT_ENOUGH_MEMORY", "Not enough storage is available to process this command."), + 9 => new Code(code, "ERROR_INVALID_BLOCK", "The storage control block address is invalid."), + 10 => new Code(code, "ERROR_BAD_ENVIRONMENT", "The environment is incorrect."), + 11 => new Code(code, "ERROR_BAD_FORMAT", "An attempt was made to load a program with an incorrect format."), + 12 => new Code(code, "ERROR_INVALID_ACCESS", "The access code is invalid."), + 13 => new Code(code, "ERROR_INVALID_DATA", "The data is invalid."), + 14 => new Code(code, "ERROR_OUTOFMEMORY", "Not enough storage is available to complete this operation."), + 15 => new Code(code, "ERROR_INVALID_DRIVE", "The system cannot find the drive specified."), + 16 => new Code(code, "ERROR_CURRENT_DIRECTORY", "The directory cannot be removed."), + 17 => new Code(code, "ERROR_NOT_SAME_DEVICE", "The system cannot move the file to a different disk drive."), + 18 => new Code(code, "ERROR_NO_MORE_FILES", "There are no more files."), + 19 => new Code(code, "ERROR_WRITE_PROTECT", "The media is write-protected."), + 20 => new Code(code, "ERROR_BAD_UNIT", "The system cannot find the device specified."), + 21 => new Code(code, "ERROR_NOT_READY", "The device is not ready."), + 22 => new Code(code, "ERROR_BAD_COMMAND", "The device does not recognize the command."), + 23 => new Code(code, "ERROR_CRC", "Data error (cyclic redundancy check)."), + 24 => new Code(code, "ERROR_BAD_LENGTH", "The program issued a command but the command length is incorrect."), + 25 => new Code(code, "ERROR_SEEK", "The drive cannot locate a specific area or track on the disk."), + 26 => new Code(code, "ERROR_NOT_DOS_DISK", "The specified disk cannot be accessed."), + 27 => new Code(code, "ERROR_SECTOR_NOT_FOUND", "The drive cannot find the sector requested."), + 28 => new Code(code, "ERROR_OUT_OF_PAPER", "The printer is out of paper."), + 29 => new Code(code, "ERROR_WRITE_FAULT", "The system cannot write to the specified device."), + 30 => new Code(code, "ERROR_READ_FAULT", "The system cannot read from the specified device."), + 31 => new Code(code, "ERROR_GEN_FAILURE", "A device attached to the system is not functioning."), + 32 => new Code(code, "ERROR_SHARING_VIOLATION", "The process cannot access the file because it is being used by another process."), + 33 => new Code(code, "ERROR_LOCK_VIOLATION", "The process cannot access the file because another process has locked a portion of the file."), + 34 => new Code(code, "ERROR_WRONG_DISK", "The wrong disk is in the drive. Insert %2 (Volume Serial Number: %3) into drive %1."), + 36 => new Code(code, "ERROR_SHARING_BUFFER_EXCEEDED", "Too many files opened for sharing."), + 38 => new Code(code, "ERROR_HANDLE_EOF", "Reached the end of the file."), + 39 => new Code(code, "ERROR_HANDLE_DISK_FULL", "The disk is full."), + 50 => new Code(code, "ERROR_NOT_SUPPORTED", "The request is not supported."), + 51 => new Code(code, "ERROR_REM_NOT_LIST", "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."), + 52 => new Code(code, "ERROR_DUP_NAME", "You were not connected because a duplicate name exists on the network. Go to System in Control Panel to change the computer name, and then try again."), + 53 => new Code(code, "ERROR_BAD_NETPATH", "The network path was not found."), + 54 => new Code(code, "ERROR_NETWORK_BUSY", "The network is busy."), + 55 => new Code(code, "ERROR_DEV_NOT_EXIST", "The specified network resource or device is no longer available."), + 56 => new Code(code, "ERROR_TOO_MANY_CMDS", "The network BIOS command limit has been reached."), + 57 => new Code(code, "ERROR_ADAP_HDW_ERR", "A network adapter hardware error occurred."), + 58 => new Code(code, "ERROR_BAD_NET_RESP", "The specified server cannot perform the requested operation."), + 59 => new Code(code, "ERROR_UNEXP_NET_ERR", "An unexpected network error occurred."), + 60 => new Code(code, "ERROR_BAD_REM_ADAP", "The remote adapter is not compatible."), + 61 => new Code(code, "ERROR_PRINTQ_FULL", "The print queue is full."), + 62 => new Code(code, "ERROR_NO_SPOOL_SPACE", "Space to store the file waiting to be printed is not available on the server."), + 63 => new Code(code, "ERROR_PRINT_CANCELLED", "Your file waiting to be printed was deleted."), + 64 => new Code(code, "ERROR_NETNAME_DELETED", "The specified network name is no longer available."), + 65 => new Code(code, "ERROR_NETWORK_ACCESS_DENIED", "Network access is denied."), + 66 => new Code(code, "ERROR_BAD_DEV_TYPE", "The network resource type is not correct."), + 67 => new Code(code, "ERROR_BAD_NET_NAME", "The network name cannot be found."), + 68 => new Code(code, "ERROR_TOO_MANY_NAMES", "The name limit for the local computer network adapter card was exceeded."), + 69 => new Code(code, "ERROR_TOO_MANY_SESS", "The network BIOS session limit was exceeded."), + 70 => new Code(code, "ERROR_SHARING_PAUSED", "The remote server has been paused or is in the process of being started."), + 71 => new Code(code, "ERROR_REQ_NOT_ACCEP", "No more connections can be made to this remote computer at this time because the computer has accepted the maximum number of connections."), + 72 => new Code(code, "ERROR_REDIR_PAUSED", "The specified printer or disk device has been paused."), + 80 => new Code(code, "ERROR_FILE_EXISTS", "The file exists."), + 82 => new Code(code, "ERROR_CANNOT_MAKE", "The directory or file cannot be created."), + 83 => new Code(code, "ERROR_FAIL_I24", "Fail on INT 24."), + 84 => new Code(code, "ERROR_OUT_OF_STRUCTURES", "Storage to process this request is not available."), + 85 => new Code(code, "ERROR_ALREADY_ASSIGNED", "The local device name is already in use."), + 86 => new Code(code, "ERROR_INVALID_PASSWORD", "The specified network password is not correct."), + 87 => new Code(code, "ERROR_INVALID_PARAMETER", "The parameter is incorrect."), + 88 => new Code(code, "ERROR_NET_WRITE_FAULT", "A write fault occurred on the network."), + 89 => new Code(code, "ERROR_NO_PROC_SLOTS", "The system cannot start another process at this time."), + 100 => new Code(code, "ERROR_TOO_MANY_SEMAPHORES", "Cannot create another system semaphore."), + 101 => new Code(code, "ERROR_EXCL_SEM_ALREADY_OWNED", "The exclusive semaphore is owned by another process."), + 102 => new Code(code, "ERROR_SEM_IS_SET", "The semaphore is set and cannot be closed."), + 103 => new Code(code, "ERROR_TOO_MANY_SEM_REQUESTS", "The semaphore cannot be set again."), + 104 => new Code(code, "ERROR_INVALID_AT_INTERRUPT_TIME", "Cannot request exclusive semaphores at interrupt time."), + 105 => new Code(code, "ERROR_SEM_OWNER_DIED", "The previous ownership of this semaphore has ended."), + 106 => new Code(code, "ERROR_SEM_USER_LIMIT", "Insert the disk for drive %1."), + 107 => new Code(code, "ERROR_DISK_CHANGE", "The program stopped because an alternate disk was not inserted."), + 108 => new Code(code, "ERROR_DRIVE_LOCKED", "The disk is in use or locked by another process."), + 109 => new Code(code, "ERROR_BROKEN_PIPE", "The pipe has been ended."), + 110 => new Code(code, "ERROR_OPEN_FAILED", "The system cannot open the device or file specified."), + 111 => new Code(code, "ERROR_BUFFER_OVERFLOW", "The file name is too long."), 112 => new Code(code, "ERROR_DISK_FULL", "There is not enough space on the disk."), + 113 => new Code(code, "ERROR_NO_MORE_SEARCH_HANDLES", "No more internal file identifiers are available."), + 114 => new Code(code, "ERROR_INVALID_TARGET_HANDLE", "The target internal file identifier is incorrect."), + 117 => new Code(code, "ERROR_INVALID_CATEGORY", "The Input Output Control (IOCTL) call made by the application program is not correct."), + 118 => new Code(code, "ERROR_INVALID_VERIFY_SWITCH", "The verify-on-write switch parameter value is not correct."), + 119 => new Code(code, "ERROR_BAD_DRIVER_LEVEL", "The system does not support the command requested."), + 120 => new Code(code, "ERROR_CALL_NOT_IMPLEMENTED", "This function is not supported on this system."), + 121 => new Code(code, "ERROR_SEM_TIMEOUT", "The semaphore time-out period has expired."), + 122 => new Code(code, "ERROR_INSUFFICIENT_BUFFER", "The data area passed to a system call is too small."), + 123 => new Code(code, "ERROR_INVALID_NAME", "The file name, directory name, or volume label syntax is incorrect."), + 124 => new Code(code, "ERROR_INVALID_LEVEL", "The system call level is not correct."), + 125 => new Code(code, "ERROR_NO_VOLUME_LABEL", "The disk has no volume label."), + 126 => new Code(code, "ERROR_MOD_NOT_FOUND", "The specified module could not be found."), + 127 => new Code(code, "ERROR_PROC_NOT_FOUND", "The specified procedure could not be found."), + 128 => new Code(code, "ERROR_WAIT_NO_CHILDREN", "There are no child processes to wait for."), + 129 => new Code(code, "ERROR_CHILD_NOT_COMPLETE", "The %1 application cannot be run in Win32 mode."), + 130 => new Code(code, "ERROR_DIRECT_ACCESS_HANDLE", "Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O."), + 131 => new Code(code, "ERROR_NEGATIVE_SEEK", "An attempt was made to move the file pointer before the beginning of the file."), + 132 => new Code(code, "ERROR_SEEK_ON_DEVICE", "The file pointer cannot be set on the specified device or file."), + 133 => new Code(code, "ERROR_IS_JOIN_TARGET", "A JOIN or SUBST command cannot be used for a drive that contains previously joined drives."), + 134 => new Code(code, "ERROR_IS_JOINED", "An attempt was made to use a JOIN or SUBST command on a drive that has already been joined."), + 135 => new Code(code, "ERROR_IS_SUBSTED", "An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted."), + 136 => new Code(code, "ERROR_NOT_JOINED", "The system tried to delete the JOIN of a drive that is not joined."), + 137 => new Code(code, "ERROR_NOT_SUBSTED", "The system tried to delete the substitution of a drive that is not substituted."), + 138 => new Code(code, "ERROR_JOIN_TO_JOIN", "The system tried to join a drive to a directory on a joined drive."), + 139 => new Code(code, "ERROR_SUBST_TO_SUBST", "The system tried to substitute a drive to a directory on a substituted drive."), + 140 => new Code(code, "ERROR_JOIN_TO_SUBST", "The system tried to join a drive to a directory on a substituted drive."), + 141 => new Code(code, "ERROR_SUBST_TO_JOIN", "The system tried to SUBST a drive to a directory on a joined drive."), + 142 => new Code(code, "ERROR_BUSY_DRIVE", "The system cannot perform a JOIN or SUBST at this time."), + 143 => new Code(code, "ERROR_SAME_DRIVE", "The system cannot join or substitute a drive to or for a directory on the same drive."), + 144 => new Code(code, "ERROR_DIR_NOT_ROOT", "The directory is not a subdirectory of the root directory."), + 145 => new Code(code, "ERROR_DIR_NOT_EMPTY", "The directory is not empty."), + 146 => new Code(code, "ERROR_IS_SUBST_PATH", "The path specified is being used in a substitute."), + 147 => new Code(code, "ERROR_IS_JOIN_PATH", "Not enough resources are available to process this command."), + 148 => new Code(code, "ERROR_PATH_BUSY", "The path specified cannot be used at this time."), + 149 => new Code(code, "ERROR_IS_SUBST_TARGET", "An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute."), + 150 => new Code(code, "ERROR_SYSTEM_TRACE", "System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed."), + 151 => new Code(code, "ERROR_INVALID_EVENT_COUNT", "The number of specified semaphore events for DosMuxSemWait is not correct."), + 152 => new Code(code, "ERROR_TOO_MANY_MUXWAITERS", "DosMuxSemWait did not execute; too many semaphores are already set."), + 153 => new Code(code, "ERROR_INVALID_LIST_FORMAT", "The DosMuxSemWait list is not correct."), + 154 => new Code(code, "ERROR_LABEL_TOO_LONG", "The volume label you entered exceeds the label character limit of the destination file system."), + 155 => new Code(code, "ERROR_TOO_MANY_TCBS", "Cannot create another thread."), + 156 => new Code(code, "ERROR_SIGNAL_REFUSED", "The recipient process has refused the signal."), + 157 => new Code(code, "ERROR_DISCARDED", "The segment is already discarded and cannot be locked."), + 158 => new Code(code, "ERROR_NOT_LOCKED", "The segment is already unlocked."), + 159 => new Code(code, "ERROR_BAD_THREADID_ADDR", "The address for the thread ID is not correct."), + 160 => new Code(code, "ERROR_BAD_ARGUMENTS", "One or more arguments are not correct."), + 161 => new Code(code, "ERROR_BAD_PATHNAME", "The specified path is invalid."), + 162 => new Code(code, "ERROR_SIGNAL_PENDING", "A signal is already pending."), + 164 => new Code(code, "ERROR_MAX_THRDS_REACHED", "No more threads can be created in the system."), + 167 => new Code(code, "ERROR_LOCK_FAILED", "Unable to lock a region of a file."), + 170 => new Code(code, "ERROR_BUSY", "The requested resource is in use."), + 173 => new Code(code, "ERROR_CANCEL_VIOLATION", "A lock request was not outstanding for the supplied cancel region."), + 174 => new Code(code, "ERROR_ATOMIC_LOCKS_NOT_SUPPORTED", "The file system does not support atomic changes to the lock type."), + 180 => new Code(code, "ERROR_INVALID_SEGMENT_NUMBER", "The system detected a segment number that was not correct."), + 182 => new Code(code, "ERROR_INVALID_ORDINAL", "The operating system cannot run %1."), + 183 => new Code(code, "ERROR_ALREADY_EXISTS", "Cannot create a file when that file already exists."), + 186 => new Code(code, "ERROR_INVALID_FLAG_NUMBER", "The flag passed is not correct."), + 187 => new Code(code, "ERROR_SEM_NOT_FOUND", "The specified system semaphore name was not found."), + 188 => new Code(code, "ERROR_INVALID_STARTING_CODESEG", "The operating system cannot run %1."), + 189 => new Code(code, "ERROR_INVALID_STACKSEG", "The operating system cannot run %1."), + 190 => new Code(code, "ERROR_INVALID_MODULETYPE", "The operating system cannot run %1."), + 191 => new Code(code, "ERROR_INVALID_EXE_SIGNATURE", "Cannot run %1 in Win32 mode."), + 192 => new Code(code, "ERROR_EXE_MARKED_INVALID", "The operating system cannot run %1."), + 193 => new Code(code, "ERROR_BAD_EXE_FORMAT", "%1 is not a valid Win32 application."), + 194 => new Code(code, "ERROR_ITERATED_DATA_EXCEEDS_64k", "The operating system cannot run %1."), + 195 => new Code(code, "ERROR_INVALID_MINALLOCSIZE", "The operating system cannot run %1."), + 196 => new Code(code, "ERROR_DYNLINK_FROM_INVALID_RING", "The operating system cannot run this application program."), + 197 => new Code(code, "ERROR_IOPL_NOT_ENABLED", "The operating system is not presently configured to run this application."), + 198 => new Code(code, "ERROR_INVALID_SEGDPL", "The operating system cannot run %1."), + 199 => new Code(code, "ERROR_AUTODATASEG_EXCEEDS_64k", "The operating system cannot run this application program."), + 200 => new Code(code, "ERROR_RING2SEG_MUST_BE_MOVABLE", "The code segment cannot be greater than or equal to 64 KB."), + 201 => new Code(code, "ERROR_RELOC_CHAIN_XEEDS_SEGLIM", "The operating system cannot run %1."), + 202 => new Code(code, "ERROR_INFLOOP_IN_RELOC_CHAIN", "The operating system cannot run %1."), + 203 => new Code(code, "ERROR_ENVVAR_NOT_FOUND", "The system could not find the environment option that was entered."), + 205 => new Code(code, "ERROR_NO_SIGNAL_SENT", "No process in the command subtree has a signal handler."), + 206 => new Code(code, "ERROR_FILENAME_EXCED_RANGE", "The file name or extension is too long."), + 207 => new Code(code, "ERROR_RING2_STACK_IN_USE", "The ring 2 stack is in use."), + 208 => new Code(code, "ERROR_META_EXPANSION_TOO_LONG", "The asterisk (*) or question mark (?) global file name characters are entered incorrectly, or too many global file name characters are specified."), + 209 => new Code(code, "ERROR_INVALID_SIGNAL_NUMBER", "The signal being posted is not correct."), + 210 => new Code(code, "ERROR_THREAD_1_INACTIVE", "The signal handler cannot be set."), + 212 => new Code(code, "ERROR_LOCKED", "The segment is locked and cannot be reallocated."), + 214 => new Code(code, "ERROR_TOO_MANY_MODULES", "Too many dynamic-link modules are attached to this program or dynamic-link module."), + 215 => new Code(code, "ERROR_NESTING_NOT_ALLOWED", "Cannot nest calls to LoadModule."), + 216 => new Code(code, "ERROR_EXE_MACHINE_TYPE_MISMATCH", "This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information to see whether you need an x86 (32-bit) or x64 (64-bit) version of the program, and then contact the software publisher."), + 217 => new Code(code, "ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY", "The image file %1 is signed, unable to modify."), + 218 => new Code(code, "ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY", "The image file %1 is strong signed, unable to modify."), + 220 => new Code(code, "ERROR_FILE_CHECKED_OUT", "This file is checked out or locked for editing by another user."), + 221 => new Code(code, "ERROR_CHECKOUT_REQUIRED", "The file must be checked out before saving changes."), + 222 => new Code(code, "ERROR_BAD_FILE_TYPE", "The file type being saved or retrieved has been blocked."), + 223 => new Code(code, "ERROR_FILE_TOO_LARGE", "The file size exceeds the limit allowed and cannot be saved."), + 224 => new Code(code, "ERROR_FORMS_AUTH_REQUIRED", "Access denied. Before opening files in this location, you must first browse to the website and select the option to sign in automatically."), + 225 => new Code(code, "ERROR_VIRUS_INFECTED", "Operation did not complete successfully because the file contains a virus."), + 226 => new Code(code, "ERROR_VIRUS_DELETED", "This file contains a virus and cannot be opened. Due to the nature of this virus, the file has been removed from this location."), + 229 => new Code(code, "ERROR_PIPE_LOCAL", "The pipe is local."), + 230 => new Code(code, "ERROR_BAD_PIPE", "The pipe state is invalid."), + 231 => new Code(code, "ERROR_PIPE_BUSY", "All pipe instances are busy."), + 232 => new Code(code, "ERROR_NO_DATA", "The pipe is being closed."), + 233 => new Code(code, "ERROR_PIPE_NOT_CONNECTED", "No process is on the other end of the pipe."), + 234 => new Code(code, "ERROR_MORE_DATA", "More data is available."), + 240 => new Code(code, "ERROR_VC_DISCONNECTED", "The session was canceled."), + 254 => new Code(code, "ERROR_INVALID_EA_NAME", "The specified extended attribute name was invalid."), + 255 => new Code(code, "ERROR_EA_LIST_INCONSISTENT", "The extended attributes are inconsistent."), + 258 => new Code(code, "WAIT_TIMEOUT", "The wait operation timed out."), + 259 => new Code(code, "ERROR_NO_MORE_ITEMS", "No more data is available."), + 266 => new Code(code, "ERROR_CANNOT_COPY", "The copy functions cannot be used."), + 267 => new Code(code, "ERROR_DIRECTORY", "The directory name is invalid."), + 275 => new Code(code, "ERROR_EAS_DIDNT_FIT", "The extended attributes did not fit in the buffer."), + 276 => new Code(code, "ERROR_EA_FILE_CORRUPT", "The extended attribute file on the mounted file system is corrupt."), + 277 => new Code(code, "ERROR_EA_TABLE_FULL", "The extended attribute table file is full."), + 278 => new Code(code, "ERROR_INVALID_EA_HANDLE", "The specified extended attribute handle is invalid."), + 282 => new Code(code, "ERROR_EAS_NOT_SUPPORTED", "The mounted file system does not support extended attributes."), + 288 => new Code(code, "ERROR_NOT_OWNER", "Attempt to release mutex not owned by caller."), + 298 => new Code(code, "ERROR_TOO_MANY_POSTS", "Too many posts were made to a semaphore."), + 299 => new Code(code, "ERROR_PARTIAL_COPY", "Only part of a ReadProcessMemory or WriteProcessMemory request was completed."), + 300 => new Code(code, "ERROR_OPLOCK_NOT_GRANTED", "The oplock request is denied."), + 301 => new Code(code, "ERROR_INVALID_OPLOCK_PROTOCOL", "An invalid oplock acknowledgment was received by the system."), + 302 => new Code(code, "ERROR_DISK_TOO_FRAGMENTED", "The volume is too fragmented to complete this operation."), + 303 => new Code(code, "ERROR_DELETE_PENDING", "The file cannot be opened because it is in the process of being deleted."), + 317 => new Code(code, "ERROR_MR_MID_NOT_FOUND", "The system cannot find message text for message number 0x%1 in the message file for %2."), + 318 => new Code(code, "ERROR_SCOPE_NOT_FOUND", "The scope specified was not found."), + 350 => new Code(code, "ERROR_FAIL_NOACTION_REBOOT", "No action was taken because a system reboot is required."), + 351 => new Code(code, "ERROR_FAIL_SHUTDOWN", "The shutdown operation failed."), + 352 => new Code(code, "ERROR_FAIL_RESTART", "The restart operation failed."), + 353 => new Code(code, "ERROR_MAX_SESSIONS_REACHED", "The maximum number of sessions has been reached."), + 400 => new Code(code, "ERROR_THREAD_MODE_ALREADY_BACKGROUND", "The thread is already in background processing mode."), + 401 => new Code(code, "ERROR_THREAD_MODE_NOT_BACKGROUND", "The thread is not in background processing mode."), + 402 => new Code(code, "ERROR_PROCESS_MODE_ALREADY_BACKGROUND", "The process is already in background processing mode."), + 403 => new Code(code, "ERROR_PROCESS_MODE_NOT_BACKGROUND", "The process is not in background processing mode."), + 487 => new Code(code, "ERROR_INVALID_ADDRESS", "Attempt to access invalid address."), + 500 => new Code(code, "ERROR_USER_PROFILE_LOAD", "User profile cannot be loaded."), + 534 => new Code(code, "ERROR_ARITHMETIC_OVERFLOW", "Arithmetic result exceeded 32 bits."), + 535 => new Code(code, "ERROR_PIPE_CONNECTED", "There is a process on the other end of the pipe."), + 536 => new Code(code, "ERROR_PIPE_LISTENING", "Waiting for a process to open the other end of the pipe."), + 537 => new Code(code, "ERROR_VERIFIER_STOP", "Application verifier has found an error in the current process."), + 538 => new Code(code, "ERROR_ABIOS_ERROR", "An error occurred in the ABIOS subsystem."), + 539 => new Code(code, "ERROR_WX86_WARNING", "A warning occurred in the WX86 subsystem."), + 540 => new Code(code, "ERROR_WX86_ERROR", "An error occurred in the WX86 subsystem."), + 541 => new Code(code, "ERROR_TIMER_NOT_CANCELED", "An attempt was made to cancel or set a timer that has an associated asynchronous procedure call (APC) and the subject thread is not the thread that originally set the timer with an associated APC routine."), + 542 => new Code(code, "ERROR_UNWIND", "Unwind exception code."), + 543 => new Code(code, "ERROR_BAD_STACK", "An invalid or unaligned stack was encountered during an unwind operation."), + 544 => new Code(code, "ERROR_INVALID_UNWIND_TARGET", "An invalid unwind target was encountered during an unwind operation."), + 545 => new Code(code, "ERROR_INVALID_PORT_ATTRIBUTES", "Invalid object attributes specified to NtCreatePort or invalid port attributes specified to NtConnectPort."), + 546 => new Code(code, "ERROR_PORT_MESSAGE_TOO_LONG", "Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port."), + 547 => new Code(code, "ERROR_INVALID_QUOTA_LOWER", "An attempt was made to lower a quota limit below the current usage."), + 548 => new Code(code, "ERROR_DEVICE_ALREADY_ATTACHED", "An attempt was made to attach to a device that was already attached to another device."), + 549 => new Code(code, "ERROR_INSTRUCTION_MISALIGNMENT", "An attempt was made to execute an instruction at an unaligned address, and the host system does not support unaligned instruction references."), + 550 => new Code(code, "ERROR_PROFILING_NOT_STARTED", "Profiling not started."), + 551 => new Code(code, "ERROR_PROFILING_NOT_STOPPED", "Profiling not stopped."), + 552 => new Code(code, "ERROR_COULD_NOT_INTERPRET", "The passed ACL did not contain the minimum required information."), + 553 => new Code(code, "ERROR_PROFILING_AT_LIMIT", "The number of active profiling objects is at the maximum and no more can be started."), + 554 => new Code(code, "ERROR_CANT_WAIT", "Used to indicate that an operation cannot continue without blocking for I/O."), + 555 => new Code(code, "ERROR_CANT_TERMINATE_SELF", "Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process."), + 556 => new Code(code, "ERROR_UNEXPECTED_MM_CREATE_ERR", "If an MM error is returned that is not defined in the standard FsRtl filter, it is converted to one of the following errors that is guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception."), + 557 => new Code(code, "ERROR_UNEXPECTED_MM_MAP_ERROR", "If an MM error is returned that is not defined in the standard FsRtl filter, it is converted to one of the following errors that is guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception."), + 558 => new Code(code, "ERROR_UNEXPECTED_MM_EXTEND_ERR", "If an MM error is returned that is not defined in the standard FsRtl filter, it is converted to one of the following errors that is guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception."), + 559 => new Code(code, "ERROR_BAD_FUNCTION_TABLE", "A malformed function table was encountered during an unwind operation."), + 560 => new Code(code, "ERROR_NO_GUID_TRANSLATION", "Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. This causes the protection attempt to fail, which might cause a file creation attempt to fail."), + 561 => new Code(code, "ERROR_INVALID_LDT_SIZE", "Indicates that an attempt was made to grow a local domain table (LDT) by setting its size, or that the size was not an even number of selectors."), + 563 => new Code(code, "ERROR_INVALID_LDT_OFFSET", "Indicates that the starting value for the LDT information was not an integral multiple of the selector size."), + 564 => new Code(code, "ERROR_INVALID_LDT_DESCRIPTOR", "Indicates that the user supplied an invalid descriptor when trying to set up LDT descriptors."), + 565 => new Code(code, "ERROR_TOO_MANY_THREADS", "Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token can be performed only when a process has zero or one threads."), + 566 => new Code(code, "ERROR_THREAD_NOT_IN_PROCESS", "An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified."), + 567 => new Code(code, "ERROR_PAGEFILE_QUOTA_EXCEEDED", "Page file quota was exceeded."), + 568 => new Code(code, "ERROR_LOGON_SERVER_CONFLICT", "The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role."), + 569 => new Code(code, "ERROR_SYNCHRONIZATION_REQUIRED", "On applicable Windows Server releases, the Security Accounts Manager (SAM) database is significantly out of synchronization with the copy on the domain controller. A complete synchronization is required."), + 570 => new Code(code, "ERROR_NET_OPEN_FAILED", "The NtCreateFile API failed. This error should never be returned to an application, it is a place holder for the Windows LAN Manager Redirector to use in its internal error mapping routines."), + 571 => new Code(code, "ERROR_IO_PRIVILEGE_FAILED", "{Privilege Failed} The I/O permissions for the process could not be changed."), + 572 => new Code(code, "ERROR_CONTROL_C_EXIT", "{Application Exit by CTRL+C} The application terminated as a result of a CTRL+C."), + 573 => new Code(code, "ERROR_MISSING_SYSTEMFILE", "{Missing System File} The required system file %hs is bad or missing."), + 574 => new Code(code, "ERROR_UNHANDLED_EXCEPTION", "{Application Error} The exception %s (0x%08lx) occurred in the application at location 0x%08lx."), + 575 => new Code(code, "ERROR_APP_INIT_FAILURE", "{Application Error} The application failed to initialize properly (0x%lx). Click OK to terminate the application."), + 576 => new Code(code, "ERROR_PAGEFILE_CREATE_FAILED", "{Unable to Create Paging File} The creation of the paging file %hs failed (%lx). The requested size was %ld."), + 577 => new Code(code, "ERROR_INVALID_IMAGE_HASH", "The hash for the image cannot be found in the system catalogs. The image is likely corrupt or the victim of tampering."), + 578 => new Code(code, "ERROR_NO_PAGEFILE", "{No Paging File Specified} No paging file was specified in the system configuration."), + 579 => new Code(code, "ERROR_ILLEGAL_FLOAT_CONTEXT", "{EXCEPTION} A real-mode application issued a floating-point instruction, and floating-point hardware is not present."), + 580 => new Code(code, "ERROR_NO_EVENT_PAIR", "An event pair synchronization operation was performed using the thread-specific client/server event pair object, but no event pair object was associated with the thread."), + 581 => new Code(code, "ERROR_DOMAIN_CTRLR_CONFIG_ERROR", "A domain server has an incorrect configuration."), + 582 => new Code(code, "ERROR_ILLEGAL_CHARACTER", "An illegal character was encountered. For a multibyte character set, this includes a lead byte without a succeeding trail byte. For the Unicode character set, this includes the characters 0xFFFF and 0xFFFE."), + 583 => new Code(code, "ERROR_UNDEFINED_CHARACTER", "The Unicode character is not defined in the Unicode character set installed on the system."), + 584 => new Code(code, "ERROR_FLOPPY_VOLUME", "The paging file cannot be created on a floppy disk."), + 585 => new Code(code, "ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT", "The system bios failed to connect a system interrupt to the device or bus for which the device is connected."), + 586 => new Code(code, "ERROR_BACKUP_CONTROLLER", "This operation is only allowed for the primary domain controller (PDC) of the domain."), + 587 => new Code(code, "ERROR_MUTANT_LIMIT_EXCEEDED", "An attempt was made to acquire a mutant such that its maximum count would have been exceeded."), + 588 => new Code(code, "ERROR_FS_DRIVER_REQUIRED", "A volume has been accessed for which a file system driver is required that has not yet been loaded."), + 589 => new Code(code, "ERROR_CANNOT_LOAD_REGISTRY_FILE", "{Registry File Failure} The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable."), + 590 => new Code(code, "ERROR_DEBUG_ATTACH_FAILED", "{Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request. Choosing OK will terminate the process, and choosing Cancel will ignore the error."), + 591 => new Code(code, "ERROR_SYSTEM_PROCESS_TERMINATED", "{Fatal System Error} The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). The system has been shut down."), + 592 => new Code(code, "ERROR_DATA_NOT_ACCEPTED", "{Data Not Accepted} The transport driver interface (TDI) client could not handle the data received during an indication."), + 593 => new Code(code, "ERROR_VDM_HARD_ERROR", "The NT Virtual DOS Machine (NTVDM) encountered a hard error."), + 594 => new Code(code, "ERROR_DRIVER_CANCEL_TIMEOUT", "{Cancel Timeout} The driver %hs failed to complete a canceled I/O request in the allotted time."), + 595 => new Code(code, "ERROR_REPLY_MESSAGE_MISMATCH", "{Reply Message Mismatch} An attempt was made to reply to a local procedure call (LPC) message, but the thread specified by the client ID in the message was not waiting on that message."), + 596 => new Code(code, "ERROR_LOST_WRITEBEHIND_DATA", "{Delayed Write Failed} Windows was unable to save all the data for the file %hs. The data has been lost. This error might be caused by a failure of your computer hardware or network connection. Try to save this file elsewhere."), + 597 => new Code(code, "ERROR_CLIENT_SERVER_PARAMETERS_INVALID", "The parameters passed to the server in the client/server shared memory window were invalid. Too much data might have been put in the shared memory window."), + 598 => new Code(code, "ERROR_NOT_TINY_STREAM", "The stream is not a tiny stream."), + 599 => new Code(code, "ERROR_STACK_OVERFLOW_READ", "The request must be handled by the stack overflow code."), + 600 => new Code(code, "ERROR_CONVERT_TO_LARGE", "Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing onode is moved or the extent stream is converted to a large stream."), + 601 => new Code(code, "ERROR_FOUND_OUT_OF_SCOPE", "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."), + 602 => new Code(code, "ERROR_ALLOCATE_BUCKET", "The bucket array must be grown. Retry transaction after doing so."), + 603 => new Code(code, "ERROR_MARSHALL_OVERFLOW", "The user/kernel marshaling buffer has overflowed."), + 604 => new Code(code, "ERROR_INVALID_VARIANT", "The supplied variant structure contains invalid data."), + 605 => new Code(code, "ERROR_BAD_COMPRESSION_BUFFER", "The specified buffer contains ill-formed data."), + 606 => new Code(code, "ERROR_AUDIT_FAILED", "{Audit Failed} An attempt to generate a security audit failed."), + 607 => new Code(code, "ERROR_TIMER_RESOLUTION_NOT_SET", "The timer resolution was not previously set by the current process."), + 608 => new Code(code, "ERROR_INSUFFICIENT_LOGON_INFO", "There is insufficient account information to log you on."), + 609 => new Code(code, "ERROR_BAD_DLL_ENTRYPOINT", "{Invalid DLL Entrypoint} The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entry point should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO can cause the application to operate incorrectly."), + 610 => new Code(code, "ERROR_BAD_SERVICE_ENTRYPOINT", "{Invalid Service Callback Entrypoint} The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entry point should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process might operate incorrectly."), + 611 => new Code(code, "ERROR_IP_ADDRESS_CONFLICT1", "There is an IP address conflict with another system on the network."), + 612 => new Code(code, "ERROR_IP_ADDRESS_CONFLICT2", "There is an IP address conflict with another system on the network."), + 613 => new Code(code, "ERROR_REGISTRY_QUOTA_LIMIT", "{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."), + 614 => new Code(code, "ERROR_NO_CALLBACK_ACTIVE", "A callback return system service cannot be executed when no callback is active."), + 615 => new Code(code, "ERROR_PWD_TOO_SHORT", "The password provided is too short to meet the policy of your user account. Choose a longer password."), + 616 => new Code(code, "ERROR_PWD_TOO_RECENT", "The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar, but potentially discovered, password. If you feel your password has been compromised, contact your administrator immediately to have a new one assigned."), + 617 => new Code(code, "ERROR_PWD_HISTORY_CONFLICT", "You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Select a password that you have not previously used."), + 618 => new Code(code, "ERROR_UNSUPPORTED_COMPRESSION", "The specified compression format is unsupported."), + 619 => new Code(code, "ERROR_INVALID_HW_PROFILE", "The specified hardware profile configuration is invalid."), + 620 => new Code(code, "ERROR_INVALID_PLUGPLAY_DEVICE_PATH", "The specified Plug and Play registry device path is invalid."), + 621 => new Code(code, "ERROR_QUOTA_LIST_INCONSISTENT", "The specified quota list is internally inconsistent with its descriptor."), + 622 => new Code(code, "ERROR_EVALUATION_EXPIRATION", "{Windows Evaluation Notification} The evaluation period for this installation of Windows has expired. This system will shut down in 1 hour. To restore access to this installation of Windows, upgrade this installation using a licensed distribution of this product."), + 623 => new Code(code, "ERROR_ILLEGAL_DLL_RELOCATION", "{Illegal System DLL Relocation} The system DLL %hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL %hs occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL."), + 624 => new Code(code, "ERROR_DLL_INIT_FAILED_LOGOFF", "{DLL Initialization Failed} The application failed to initialize because the window station is shutting down."), + 625 => new Code(code, "ERROR_VALIDATE_CONTINUE", "The validation process needs to continue on to the next step."), + 626 => new Code(code, "ERROR_NO_MORE_MATCHES", "There are no more matches for the current index enumeration."), + 627 => new Code(code, "ERROR_RANGE_LIST_CONFLICT", "The range could not be added to the range list because of a conflict."), + 628 => new Code(code, "ERROR_SERVER_SID_MISMATCH", "The server process is running under a SID different than that required by the client."), + 629 => new Code(code, "ERROR_CANT_ENABLE_DENY_ONLY", "A group marked use for deny only cannot be enabled."), + 630 => new Code(code, "ERROR_FLOAT_MULTIPLE_FAULTS", "{EXCEPTION} Multiple floating point faults."), + 631 => new Code(code, "ERROR_FLOAT_MULTIPLE_TRAPS", "{EXCEPTION} Multiple floating point traps."), + 632 => new Code(code, "ERROR_NOINTERFACE", "The requested interface is not supported."), + 633 => new Code(code, "ERROR_DRIVER_FAILED_SLEEP", "{System Standby Failed} The driver %hs does not support standby mode. Updating this driver might allow the system to go to standby mode."), + 634 => new Code(code, "ERROR_CORRUPT_SYSTEM_FILE", "The system file %1 has become corrupt and has been replaced."), + 635 => new Code(code, "ERROR_COMMITMENT_MINIMUM", "{Virtual Memory Minimum Too Low} Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process, memory requests for some applications might be denied. For more information, see Help."), + 636 => new Code(code, "ERROR_PNP_RESTART_ENUMERATION", "A device was removed so enumeration must be restarted."), + 637 => new Code(code, "ERROR_SYSTEM_IMAGE_BAD_SIGNATURE", "{Fatal System Error} The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down."), + 638 => new Code(code, "ERROR_PNP_REBOOT_REQUIRED", "Device will not start without a reboot."), + 639 => new Code(code, "ERROR_INSUFFICIENT_POWER", "There is not enough power to complete the requested operation."), + 641 => new Code(code, "ERROR_SYSTEM_SHUTDOWN", "The system is in the process of shutting down."), + 642 => new Code(code, "ERROR_PORT_NOT_SET", "An attempt to remove a process DebugPort was made, but a port was not already associated with the process."), + 643 => new Code(code, "ERROR_DS_VERSION_CHECK_FAILURE", "This version of Windows is not compatible with the behavior version of directory forest, domain, or domain controller."), + 644 => new Code(code, "ERROR_RANGE_NOT_FOUND", "The specified range could not be found in the range list."), + 646 => new Code(code, "ERROR_NOT_SAFE_MODE_DRIVER", "The driver was not loaded because the system is booting into safe mode."), + 647 => new Code(code, "ERROR_FAILED_DRIVER_ENTRY", "The driver was not loaded because it failed its initialization call."), + 648 => new Code(code, "ERROR_DEVICE_ENUMERATION_ERROR", "The device encountered an error while applying power or reading the device configuration. This might be caused by a failure of your hardware or by a poor connection."), + 649 => new Code(code, "ERROR_MOUNT_POINT_NOT_RESOLVED", "The create operation failed because the name contained at least one mount point that resolves to a volume to which the specified device object is not attached."), + 650 => new Code(code, "ERROR_INVALID_DEVICE_OBJECT_PARAMETER", "The device object parameter is either not a valid device object or is not attached to the volume specified by the file name."), + 651 => new Code(code, "ERROR_MCA_OCCURED", "A machine check error has occurred. Check the system event log for additional information."), + 652 => new Code(code, "ERROR_DRIVER_DATABASE_ERROR", "There was an error [%2] processing the driver database."), + 653 => new Code(code, "ERROR_SYSTEM_HIVE_TOO_LARGE", "The system hive size has exceeded its limit."), + 654 => new Code(code, "ERROR_DRIVER_FAILED_PRIOR_UNLOAD", "The driver could not be loaded because a previous version of the driver is still in memory."), + 655 => new Code(code, "ERROR_VOLSNAP_PREPARE_HIBERNATE", "{Volume Shadow Copy Service} Wait while the Volume Shadow Copy Service prepares volume %hs for hibernation."), + 656 => new Code(code, "ERROR_HIBERNATION_FAILURE", "The system has failed to hibernate (the error code is %hs). Hibernation will be disabled until the system is restarted."), + 665 => new Code(code, "ERROR_FILE_SYSTEM_LIMITATION", "The requested operation could not be completed due to a file system limitation."), + 668 => new Code(code, "ERROR_ASSERTION_FAILURE", "An assertion failure has occurred."), + 669 => new Code(code, "ERROR_ACPI_ERROR", "An error occurred in the Advanced Configuration and Power Interface (ACPI) subsystem."), + 670 => new Code(code, "ERROR_WOW_ASSERTION", "WOW assertion error."), + 671 => new Code(code, "ERROR_PNP_BAD_MPS_TABLE", "A device is missing in the system BIOS MultiProcessor Specification (MPS) table. This device will not be used. Contact your system vendor for system BIOS update."), + 672 => new Code(code, "ERROR_PNP_TRANSLATION_FAILED", "A translator failed to translate resources."), + 673 => new Code(code, "ERROR_PNP_IRQ_TRANSLATION_FAILED", "An interrupt request (IRQ) translator failed to translate resources."), + 674 => new Code(code, "ERROR_PNP_INVALID_ID", "Driver %2 returned invalid ID for a child device (%3)."), + 675 => new Code(code, "ERROR_WAKE_SYSTEM_DEBUGGER", "{Kernel Debugger Awakened} the system debugger was awakened by an interrupt."), + 676 => new Code(code, "ERROR_HANDLES_CLOSED", "{Handles Closed} Handles to objects have been automatically closed because of the requested operation."), + 677 => new Code(code, "ERROR_EXTRANEOUS_INFORMATION", "{Too Much Information} The specified ACL contained more information than was expected."), + 678 => new Code(code, "ERROR_RXACT_COMMIT_NECESSARY", "This warning level status indicates that the transaction state already exists for the registry subtree, but that a transaction commit was previously aborted. The commit has NOT been completed, but it has not been rolled back either (so it can still be committed if desired)."), + 679 => new Code(code, "ERROR_MEDIA_CHECK", "{Media Changed} The media might have changed."), + 680 => new Code(code, "ERROR_GUID_SUBSTITUTION_MADE", "{GUID Substitution} During the translation of a GUID to a Windows SID, no administratively defined GUID prefix was found. A substitute prefix was used, which will not compromise system security. However, this might provide more restrictive access than intended."), + 681 => new Code(code, "ERROR_STOPPED_ON_SYMLINK", "The create operation stopped after reaching a symbolic link."), + 682 => new Code(code, "ERROR_LONGJUMP", "A long jump has been executed."), + 683 => new Code(code, "ERROR_PLUGPLAY_QUERY_VETOED", "The Plug and Play query operation was not successful."), + 684 => new Code(code, "ERROR_UNWIND_CONSOLIDATE", "A frame consolidation has been executed."), + 685 => new Code(code, "ERROR_REGISTRY_HIVE_RECOVERED", "{Registry Hive Recovered} Registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost."), + 686 => new Code(code, "ERROR_DLL_MIGHT_BE_INSECURE", "The application is attempting to run executable code from the module %hs. This might be insecure. An alternative, %hs, is available. Should the application use the secure module %hs?"), + 687 => new Code(code, "ERROR_DLL_MIGHT_BE_INCOMPATIBLE", "The application is loading executable code from the module %hs. This is secure, but might be incompatible with previous releases of the operating system. An alternative, %hs, is available. Should the application use the secure module %hs?"), + 688 => new Code(code, "ERROR_DBG_EXCEPTION_NOT_HANDLED", "Debugger did not handle the exception."), + 689 => new Code(code, "ERROR_DBG_REPLY_LATER", "Debugger will reply later."), + 690 => new Code(code, "ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE", "Debugger cannot provide handle."), + 691 => new Code(code, "ERROR_DBG_TERMINATE_THREAD", "Debugger terminated thread."), + 692 => new Code(code, "ERROR_DBG_TERMINATE_PROCESS", "Debugger terminated process."), + 693 => new Code(code, "ERROR_DBG_CONTROL_C", "Debugger got control C."), + 694 => new Code(code, "ERROR_DBG_PRINTEXCEPTION_C", "Debugger printed exception on control C."), + 695 => new Code(code, "ERROR_DBG_RIPEXCEPTION", "Debugger received Routing Information Protocol (RIP) exception."), + 696 => new Code(code, "ERROR_DBG_CONTROL_BREAK", "Debugger received control break."), + 697 => new Code(code, "ERROR_DBG_COMMAND_EXCEPTION", "Debugger command communication exception."), + 698 => new Code(code, "ERROR_OBJECT_NAME_EXISTS", "{Object Exists} An attempt was made to create an object and the object name already existed."), + 699 => new Code(code, "ERROR_THREAD_WAS_SUSPENDED", "{Thread Suspended} A thread termination occurred while the thread was suspended. The thread was resumed and termination proceeded."), + 700 => new Code(code, "ERROR_IMAGE_NOT_AT_BASE", "{Image Relocated} An image file could not be mapped at the address specified in the image file. Local fixes must be performed on this image."), + 701 => new Code(code, "ERROR_RXACT_STATE_CREATED", "This informational level status indicates that a specified registry subtree transaction state did not yet exist and had to be created."), + 702 => new Code(code, "ERROR_SEGMENT_NOTIFICATION", "{Segment Load} A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. An exception is raised so a debugger can load, unload, or track symbols and breakpoints within these 16-bit segments."), + 703 => new Code(code, "ERROR_BAD_CURRENT_DIRECTORY", "{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."), + 704 => new Code(code, "ERROR_FT_READ_RECOVERY_FROM_BACKUP", "{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 it was unable to reassign the failing area of the device."), + 705 => new Code(code, "ERROR_FT_WRITE_RECOVERY", "{Redundant Write} To satisfy a write request, the Windows NT operating system 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 it was not able to reassign the failing area of the device."), + 706 => new Code(code, "ERROR_IMAGE_MACHINE_TYPE_MISMATCH", "{Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load."), + 707 => new Code(code, "ERROR_RECEIVE_PARTIAL", "{Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later."), + 708 => new Code(code, "ERROR_RECEIVE_EXPEDITED", "{Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system."), + 709 => new Code(code, "ERROR_RECEIVE_PARTIAL_EXPEDITED", "{Partial Expedited Data Received} The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later."), + 710 => new Code(code, "ERROR_EVENT_DONE", "{TDI Event Done} The TDI indication has completed successfully."), + 711 => new Code(code, "ERROR_EVENT_PENDING", "{TDI Event Pending} The TDI indication has entered the pending state."), + 712 => new Code(code, "ERROR_CHECKING_FILE_SYSTEM", "Checking file system on %wZ."), + 713 => new Code(code, "ERROR_FATAL_APP_EXIT", "{Fatal Application Exit} %hs."), + 714 => new Code(code, "ERROR_PREDEFINED_HANDLE", "The specified registry key is referenced by a predefined handle."), + 715 => new Code(code, "ERROR_WAS_UNLOCKED", "{Page Unlocked} The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process."), + 717 => new Code(code, "ERROR_WAS_LOCKED", "{Page Locked} One of the pages to lock was already locked."), + 719 => new Code(code, "ERROR_ALREADY_WIN32", "The value already corresponds with a Win 32 error code."), + 720 => new Code(code, "ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE", "{Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine."), + 721 => new Code(code, "ERROR_NO_YIELD_PERFORMED", "A yield execution was performed and no thread was available to run."), + 722 => new Code(code, "ERROR_TIMER_RESUME_IGNORED", "The resume flag to a timer API was ignored."), + 723 => new Code(code, "ERROR_ARBITRATION_UNHANDLED", "The arbiter has deferred arbitration of these resources to its parent."), + 724 => new Code(code, "ERROR_CARDBUS_NOT_SUPPORTED", "The inserted CardBus device cannot be started because of a configuration error on %hs\".\""), + 725 => new Code(code, "ERROR_MP_PROCESSOR_MISMATCH", "The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. If problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported."), + 726 => new Code(code, "ERROR_HIBERNATED", "The system was put into hibernation."), + 727 => new Code(code, "ERROR_RESUME_HIBERNATION", "The system was resumed from hibernation."), + 728 => new Code(code, "ERROR_FIRMWARE_UPDATED", "Windows has detected that the system firmware (BIOS) was updated (previous firmware date = %2, current firmware date %3)."), + 729 => new Code(code, "ERROR_DRIVERS_LEAKING_LOCKED_PAGES", "A device driver is leaking locked I/O pages, causing system degradation. The system has automatically enabled a tracking code to try and catch the culprit."), + 730 => new Code(code, "ERROR_WAKE_SYSTEM", "The system has awoken."), + 735 => new Code(code, "ERROR_ABANDONED_WAIT_0", "The call failed because the handle associated with it was closed."), + 740 => new Code(code, "ERROR_ELEVATION_REQUIRED", "The requested operation requires elevation."), + 741 => new Code(code, "ERROR_REPARSE", "A reparse should be performed by the object manager because the name of the file resulted in a symbolic link."), + 742 => new Code(code, "ERROR_OPLOCK_BREAK_IN_PROGRESS", "An open/create operation completed while an oplock break is underway."), + 743 => new Code(code, "ERROR_VOLUME_MOUNTED", "A new volume has been mounted by a file system."), + 744 => new Code(code, "ERROR_RXACT_COMMITTED", "This success level status indicates that the transaction state already exists for the registry subtree, but that a transaction commit was previously aborted. The commit has now been completed."), + 745 => new Code(code, "ERROR_NOTIFY_CLEANUP", "This indicates that a notify change request has been completed due to closing the handle which made the notify change request."), + 746 => new Code(code, "ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED", "{Connect Failure on Primary Transport} An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed. The computer was able to connect on a secondary transport."), + 747 => new Code(code, "ERROR_PAGE_FAULT_TRANSITION", "Page fault was a transition fault."), + 748 => new Code(code, "ERROR_PAGE_FAULT_DEMAND_ZERO", "Page fault was a demand zero fault."), + 749 => new Code(code, "ERROR_PAGE_FAULT_COPY_ON_WRITE", "Page fault was a demand zero fault."), + 750 => new Code(code, "ERROR_PAGE_FAULT_GUARD_PAGE", "Page fault was a demand zero fault."), + 751 => new Code(code, "ERROR_PAGE_FAULT_PAGING_FILE", "Page fault was satisfied by reading from a secondary storage device."), + 752 => new Code(code, "ERROR_CACHE_PAGE_LOCKED", "Cached page was locked during operation."), + 753 => new Code(code, "ERROR_CRASH_DUMP", "Crash dump exists in paging file."), + 754 => new Code(code, "ERROR_BUFFER_ALL_ZEROS", "Specified buffer contains all zeros."), + 755 => new Code(code, "ERROR_REPARSE_OBJECT", "A reparse should be performed by the object manager because the name of the file resulted in a symbolic link."), + 756 => new Code(code, "ERROR_RESOURCE_REQUIREMENTS_CHANGED", "The device has succeeded a query-stop and its resource requirements have changed."), + 757 => new Code(code, "ERROR_TRANSLATION_COMPLETE", "The translator has translated these resources into the global space and no further translations should be performed."), + 758 => new Code(code, "ERROR_NOTHING_TO_TERMINATE", "A process being terminated has no threads to terminate."), + 759 => new Code(code, "ERROR_PROCESS_NOT_IN_JOB", "The specified process is not part of a job."), + 760 => new Code(code, "ERROR_PROCESS_IN_JOB", "The specified process is part of a job."), + 761 => new Code(code, "ERROR_VOLSNAP_HIBERNATE_READY", "{Volume Shadow Copy Service} The system is now ready for hibernation."), + 762 => new Code(code, "ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY", "A file system or file system filter driver has successfully completed an FsFilter operation."), + 763 => new Code(code, "ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED", "The specified interrupt vector was already connected."), + 764 => new Code(code, "ERROR_INTERRUPT_STILL_CONNECTED", "The specified interrupt vector is still connected."), + 765 => new Code(code, "ERROR_WAIT_FOR_OPLOCK", "An operation is blocked waiting for an oplock."), + 766 => new Code(code, "ERROR_DBG_EXCEPTION_HANDLED", "Debugger handled exception."), + 767 => new Code(code, "ERROR_DBG_CONTINUE", "Debugger continued."), + 768 => new Code(code, "ERROR_CALLBACK_POP_STACK", "An exception occurred in a user mode callback and the kernel callback frame should be removed."), + 769 => new Code(code, "ERROR_COMPRESSION_DISABLED", "Compression is disabled for this volume."), + 770 => new Code(code, "ERROR_CANTFETCHBACKWARDS", "The data provider cannot fetch backward through a result set."), + 771 => new Code(code, "ERROR_CANTSCROLLBACKWARDS", "The data provider cannot scroll backward through a result set."), + 772 => new Code(code, "ERROR_ROWSNOTRELEASED", "The data provider requires that previously fetched data is released before asking for more data."), + 773 => new Code(code, "ERROR_BAD_ACCESSOR_FLAGS", "The data provider was not able to interpret the flags set for a column binding in an accessor."), + 774 => new Code(code, "ERROR_ERRORS_ENCOUNTERED", "One or more errors occurred while processing the request."), + 775 => new Code(code, "ERROR_NOT_CAPABLE", "The implementation is not capable of performing the request."), + 776 => new Code(code, "ERROR_REQUEST_OUT_OF_SEQUENCE", "The client of a component requested an operation that is not valid given the state of the component instance."), + 777 => new Code(code, "ERROR_VERSION_PARSE_ERROR", "A version number could not be parsed."), + 778 => new Code(code, "ERROR_BADSTARTPOSITION", "The iterator's start position is invalid."), + 779 => new Code(code, "ERROR_MEMORY_HARDWARE", "The hardware has reported an uncorrectable memory error."), + 780 => new Code(code, "ERROR_DISK_REPAIR_DISABLED", "The attempted operation required self-healing to be enabled."), + 781 => new Code(code, "ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE", "The Desktop heap encountered an error while allocating session memory. There is more information in the system event log."), + 782 => new Code(code, "ERROR_SYSTEM_POWERSTATE_TRANSITION", "The system power state is transitioning from %2 to %3."), + 783 => new Code(code, "ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION", "The system power state is transitioning from %2 to %3 but could enter %4."), + 784 => new Code(code, "ERROR_MCA_EXCEPTION", "A thread is getting dispatched with MCA EXCEPTION because of MCA."), + 785 => new Code(code, "ERROR_ACCESS_AUDIT_BY_POLICY", "Access to %1 is monitored by policy rule %2."), + 786 => new Code(code, "ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY", "Access to %1 has been restricted by your administrator by policy rule %2."), + 787 => new Code(code, "ERROR_ABANDON_HIBERFILE", "A valid hibernation file has been invalidated and should be abandoned."), + 788 => new Code(code, "ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED", "{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error can be caused by network connectivity issues. Try to save this file elsewhere."), + 789 => new Code(code, "ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR", "{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. Try to save this file elsewhere."), + 790 => new Code(code, "ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR", "{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error can be caused if the device has been removed or the media is write-protected."), + 994 => new Code(code, "ERROR_EA_ACCESS_DENIED", "Access to the extended attribute was denied."), + 995 => new Code(code, "ERROR_OPERATION_ABORTED", "The I/O operation has been aborted because of either a thread exit or an application request."), + 996 => new Code(code, "ERROR_IO_INCOMPLETE", "Overlapped I/O event is not in a signaled state."), + 997 => new Code(code, "ERROR_IO_PENDING", "Overlapped I/O operation is in progress."), + 998 => new Code(code, "ERROR_NOACCESS", "Invalid access to memory location."), + 999 => new Code(code, "ERROR_SWAPERROR", "Error performing in-page operation."), + 1001 => new Code(code, "ERROR_STACK_OVERFLOW", "Recursion too deep; the stack overflowed."), + 1002 => new Code(code, "ERROR_INVALID_MESSAGE", "The window cannot act on the sent message."), + 1003 => new Code(code, "ERROR_CAN_NOT_COMPLETE", "Cannot complete this function."), + 1004 => new Code(code, "ERROR_INVALID_FLAGS", "Invalid flags."), + 1005 => new Code(code, "ERROR_UNRECOGNIZED_VOLUME", "The volume does not contain a recognized file system. Be sure that all required file system drivers are loaded and that the volume is not corrupted."), + 1006 => new Code(code, "ERROR_FILE_INVALID", "The volume for a file has been externally altered so that the opened file is no longer valid."), + 1007 => new Code(code, "ERROR_FULLSCREEN_MODE", "The requested operation cannot be performed in full-screen mode."), + 1008 => new Code(code, "ERROR_NO_TOKEN", "An attempt was made to reference a token that does not exist."), + 1009 => new Code(code, "ERROR_BADDB", "The configuration registry database is corrupt."), + 1010 => new Code(code, "ERROR_BADKEY", "The configuration registry key is invalid."), + 1011 => new Code(code, "ERROR_CANTOPEN", "The configuration registry key could not be opened."), + 1012 => new Code(code, "ERROR_CANTREAD", "The configuration registry key could not be read."), + 1013 => new Code(code, "ERROR_CANTWRITE", "The configuration registry key could not be written."), + 1014 => new Code(code, "ERROR_REGISTRY_RECOVERED", "One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful."), + 1015 => new Code(code, "ERROR_REGISTRY_CORRUPT", "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."), + 1016 => new Code(code, "ERROR_REGISTRY_IO_FAILED", "An I/O operation initiated by the registry failed and cannot be recovered. The registry could not read in, write out, or flush one of the files that contain the system's image of the registry."), + 1017 => new Code(code, "ERROR_NOT_REGISTRY_FILE", "The system attempted to load or restore a file into the registry, but the specified file is not in a registry file format."), + 1018 => new Code(code, "ERROR_KEY_DELETED", "Illegal operation attempted on a registry key that has been marked for deletion."), + 1019 => new Code(code, "ERROR_NO_LOG_SPACE", "System could not allocate the required space in a registry log."), + 1020 => new Code(code, "ERROR_KEY_HAS_CHILDREN", "Cannot create a symbolic link in a registry key that already has subkeys or values."), + 1021 => new Code(code, "ERROR_CHILD_MUST_BE_VOLATILE", "Cannot create a stable subkey under a volatile parent key."), + 1022 => new Code(code, "ERROR_NOTIFY_ENUM_DIR", "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."), + 1051 => new Code(code, "ERROR_DEPENDENT_SERVICES_RUNNING", "A stop control has been sent to a service that other running services are dependent on."), + 1052 => new Code(code, "ERROR_INVALID_SERVICE_CONTROL", "The requested control is not valid for this service."), + 1053 => new Code(code, "ERROR_SERVICE_REQUEST_TIMEOUT", "The service did not respond to the start or control request in a timely fashion."), + 1054 => new Code(code, "ERROR_SERVICE_NO_THREAD", "A thread could not be created for the service."), + 1055 => new Code(code, "ERROR_SERVICE_DATABASE_LOCKED", "The service database is locked."), + 1056 => new Code(code, "ERROR_SERVICE_ALREADY_RUNNING", "An instance of the service is already running."), + 1057 => new Code(code, "ERROR_INVALID_SERVICE_ACCOUNT", "The account name is invalid or does not exist, or the password is invalid for the account name specified."), + 1058 => new Code(code, "ERROR_SERVICE_DISABLED", "The service cannot be started, either because it is disabled or because it has no enabled devices associated with it."), + 1059 => new Code(code, "ERROR_CIRCULAR_DEPENDENCY", "Circular service dependency was specified."), + 1060 => new Code(code, "ERROR_SERVICE_DOES_NOT_EXIST", "The specified service does not exist as an installed service."), + 1061 => new Code(code, "ERROR_SERVICE_CANNOT_ACCEPT_CTRL", "The service cannot accept control messages at this time."), + 1062 => new Code(code, "ERROR_SERVICE_NOT_ACTIVE", "The service has not been started."), + 1063 => new Code(code, "ERROR_FAILED_SERVICE_CONTROLLER_CONNECT", "The service process could not connect to the service controller."), + 1064 => new Code(code, "ERROR_EXCEPTION_IN_SERVICE", "An exception occurred in the service when handling the control request."), + 1065 => new Code(code, "ERROR_DATABASE_DOES_NOT_EXIST", "The database specified does not exist."), + 1066 => new Code(code, "ERROR_SERVICE_SPECIFIC_ERROR", "The service has returned a service-specific error code."), + 1067 => new Code(code, "ERROR_PROCESS_ABORTED", "The process terminated unexpectedly."), + 1068 => new Code(code, "ERROR_SERVICE_DEPENDENCY_FAIL", "The dependency service or group failed to start."), + 1069 => new Code(code, "ERROR_SERVICE_LOGON_FAILED", "The service did not start due to a logon failure."), + 1070 => new Code(code, "ERROR_SERVICE_START_HANG", "After starting, the service stopped responding in a start-pending state."), + 1071 => new Code(code, "ERROR_INVALID_SERVICE_LOCK", "The specified service database lock is invalid."), + 1072 => new Code(code, "ERROR_SERVICE_MARKED_FOR_DELETE", "The specified service has been marked for deletion."), + 1073 => new Code(code, "ERROR_SERVICE_EXISTS", "The specified service already exists."), + 1074 => new Code(code, "ERROR_ALREADY_RUNNING_LKG", "The system is currently running with the last-known-good configuration."), + 1075 => new Code(code, "ERROR_SERVICE_DEPENDENCY_DELETED", "The dependency service does not exist or has been marked for deletion."), + 1076 => new Code(code, "ERROR_BOOT_ALREADY_ACCEPTED", "The current boot has already been accepted for use as the last-known-good control set."), + 1077 => new Code(code, "ERROR_SERVICE_NEVER_STARTED", "No attempts to start the service have been made since the last boot."), + 1078 => new Code(code, "ERROR_DUPLICATE_SERVICE_NAME", "The name is already in use as either a service name or a service display name."), + 1079 => new Code(code, "ERROR_DIFFERENT_SERVICE_ACCOUNT", "The account specified for this service is different from the account specified for other services running in the same process."), + 1080 => new Code(code, "ERROR_CANNOT_DETECT_DRIVER_FAILURE", "Failure actions can only be set for Win32 services, not for drivers."), + 1081 => new Code(code, "ERROR_CANNOT_DETECT_PROCESS_ABORT", "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."), + 1082 => new Code(code, "ERROR_NO_RECOVERY_PROGRAM", "No recovery program has been configured for this service."), + 1083 => new Code(code, "ERROR_SERVICE_NOT_IN_EXE", "The executable program that this service is configured to run in does not implement the service."), + 1084 => new Code(code, "ERROR_NOT_SAFEBOOT_SERVICE", "This service cannot be started in Safe Mode."), + 1100 => new Code(code, "ERROR_END_OF_MEDIA", "The physical end of the tape has been reached."), + 1101 => new Code(code, "ERROR_FILEMARK_DETECTED", "A tape access reached a filemark."), + 1102 => new Code(code, "ERROR_BEGINNING_OF_MEDIA", "The beginning of the tape or a partition was encountered."), + 1103 => new Code(code, "ERROR_SETMARK_DETECTED", "A tape access reached the end of a set of files."), + 1104 => new Code(code, "ERROR_NO_DATA_DETECTED", "No more data is on the tape."), + 1105 => new Code(code, "ERROR_PARTITION_FAILURE", "Tape could not be partitioned."), + 1106 => new Code(code, "ERROR_INVALID_BLOCK_LENGTH", "When accessing a new tape of a multivolume partition, the current block size is incorrect."), + 1107 => new Code(code, "ERROR_DEVICE_NOT_PARTITIONED", "Tape partition information could not be found when loading a tape."), + 1108 => new Code(code, "ERROR_UNABLE_TO_LOCK_MEDIA", "Unable to lock the media eject mechanism."), + 1109 => new Code(code, "ERROR_UNABLE_TO_UNLOAD_MEDIA", "Unable to unload the media."), + 1110 => new Code(code, "ERROR_MEDIA_CHANGED", "The media in the drive might have changed."), + 1111 => new Code(code, "ERROR_BUS_RESET", "The I/O bus was reset."), + 1112 => new Code(code, "ERROR_NO_MEDIA_IN_DRIVE", "No media in drive."), + 1113 => new Code(code, "ERROR_NO_UNICODE_TRANSLATION", "No mapping for the Unicode character exists in the target multibyte code page."), + 1114 => new Code(code, "ERROR_DLL_INIT_FAILED", "A DLL initialization routine failed."), + 1115 => new Code(code, "ERROR_SHUTDOWN_IN_PROGRESS", "A system shutdown is in progress."), + 1116 => new Code(code, "ERROR_NO_SHUTDOWN_IN_PROGRESS", "Unable to abort the system shutdown because no shutdown was in progress."), + 1117 => new Code(code, "ERROR_IO_DEVICE", "The request could not be performed because of an I/O device error."), + 1118 => new Code(code, "ERROR_SERIAL_NO_DEVICE", "No serial device was successfully initialized. The serial driver will unload."), + 1119 => new Code(code, "ERROR_IRQ_BUSY", "Unable to open a device that was sharing an IRQ with other devices. At least one other device that uses that IRQ was already opened."), + 1120 => new Code(code, "ERROR_MORE_WRITES", "A serial I/O operation was completed by another write to the serial port. (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)"), + 1121 => new Code(code, "ERROR_COUNTER_TIMEOUT", "A serial I/O operation completed because the time-out period expired. (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)"), + 1122 => new Code(code, "ERROR_FLOPPY_ID_MARK_NOT_FOUND", "No ID address mark was found on the floppy disk."), + 1123 => new Code(code, "ERROR_FLOPPY_WRONG_CYLINDER", "Mismatch between the floppy disk sector ID field and the floppy disk controller track address."), + 1124 => new Code(code, "ERROR_FLOPPY_UNKNOWN_ERROR", "The floppy disk controller reported an error that is not recognized by the floppy disk driver."), + 1125 => new Code(code, "ERROR_FLOPPY_BAD_REGISTERS", "The floppy disk controller returned inconsistent results in its registers."), + 1126 => new Code(code, "ERROR_DISK_RECALIBRATE_FAILED", "While accessing the hard disk, a recalibrate operation failed, even after retries."), + 1127 => new Code(code, "ERROR_DISK_OPERATION_FAILED", "While accessing the hard disk, a disk operation failed even after retries."), + 1128 => new Code(code, "ERROR_DISK_RESET_FAILED", "While accessing the hard disk, a disk controller reset was needed, but that also failed."), + 1129 => new Code(code, "ERROR_EOM_OVERFLOW", "Physical end of tape encountered."), + 1130 => new Code(code, "ERROR_NOT_ENOUGH_SERVER_MEMORY", "Not enough server storage is available to process this command."), + 1131 => new Code(code, "ERROR_POSSIBLE_DEADLOCK", "A potential deadlock condition has been detected."), + 1132 => new Code(code, "ERROR_MAPPED_ALIGNMENT", "The base address or the file offset specified does not have the proper alignment."), + 1140 => new Code(code, "ERROR_SET_POWER_STATE_VETOED", "An attempt to change the system power state was vetoed by another application or driver."), + 1141 => new Code(code, "ERROR_SET_POWER_STATE_FAILED", "The system BIOS failed an attempt to change the system power state."), + 1142 => new Code(code, "ERROR_TOO_MANY_LINKS", "An attempt was made to create more links on a file than the file system supports."), + 1150 => new Code(code, "ERROR_OLD_WIN_VERSION", "The specified program requires a newer version of Windows."), + 1151 => new Code(code, "ERROR_APP_WRONG_OS", "The specified program is not a Windows or MS-DOS program."), + 1152 => new Code(code, "ERROR_SINGLE_INSTANCE_APP", "Cannot start more than one instance of the specified program."), + 1153 => new Code(code, "ERROR_RMODE_APP", "The specified program was written for an earlier version of Windows."), + 1154 => new Code(code, "ERROR_INVALID_DLL", "One of the library files needed to run this application is damaged."), + 1155 => new Code(code, "ERROR_NO_ASSOCIATION", "No application is associated with the specified file for this operation."), + 1156 => new Code(code, "ERROR_DDE_FAIL", "An error occurred in sending the command to the application."), + 1157 => new Code(code, "ERROR_DLL_NOT_FOUND", "One of the library files needed to run this application cannot be found."), + 1158 => new Code(code, "ERROR_NO_MORE_USER_HANDLES", "The current process has used all of its system allowance of handles for Windows manager objects."), + 1159 => new Code(code, "ERROR_MESSAGE_SYNC_ONLY", "The message can be used only with synchronous operations."), + 1160 => new Code(code, "ERROR_SOURCE_ELEMENT_EMPTY", "The indicated source element has no media."), + 1161 => new Code(code, "ERROR_DESTINATION_ELEMENT_FULL", "The indicated destination element already contains media."), + 1162 => new Code(code, "ERROR_ILLEGAL_ELEMENT_ADDRESS", "The indicated element does not exist."), + 1163 => new Code(code, "ERROR_MAGAZINE_NOT_PRESENT", "The indicated element is part of a magazine that is not present."), + 1164 => new Code(code, "ERROR_DEVICE_REINITIALIZATION_NEEDED", "The indicated device requires re-initialization due to hardware errors."), + 1165 => new Code(code, "ERROR_DEVICE_REQUIRES_CLEANING", "The device has indicated that cleaning is required before further operations are attempted."), + 1166 => new Code(code, "ERROR_DEVICE_DOOR_OPEN", "The device has indicated that its door is open."), + 1167 => new Code(code, "ERROR_DEVICE_NOT_CONNECTED", "The device is not connected."), + 1168 => new Code(code, "ERROR_NOT_FOUND", "Element not found."), + 1169 => new Code(code, "ERROR_NO_MATCH", "There was no match for the specified key in the index."), + 1170 => new Code(code, "ERROR_SET_NOT_FOUND", "The property set specified does not exist on the object."), + 1171 => new Code(code, "ERROR_POINT_NOT_FOUND", "The point passed to GetMouseMovePoints is not in the buffer."), + 1172 => new Code(code, "ERROR_NO_TRACKING_SERVICE", "The tracking (workstation) service is not running."), + 1173 => new Code(code, "ERROR_NO_VOLUME_ID", "The volume ID could not be found."), + 1175 => new Code(code, "ERROR_UNABLE_TO_REMOVE_REPLACED", "Unable to remove the file to be replaced."), + 1176 => new Code(code, "ERROR_UNABLE_TO_MOVE_REPLACEMENT", "Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name."), + 1177 => new Code(code, "ERROR_UNABLE_TO_MOVE_REPLACEMENT_2", "Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name."), + 1178 => new Code(code, "ERROR_JOURNAL_DELETE_IN_PROGRESS", "The volume change journal is being deleted."), + 1179 => new Code(code, "ERROR_JOURNAL_NOT_ACTIVE", "The volume change journal is not active."), + 1180 => new Code(code, "ERROR_POTENTIAL_FILE_FOUND", "A file was found, but it might not be the correct file."), + 1181 => new Code(code, "ERROR_JOURNAL_ENTRY_DELETED", "The journal entry has been deleted from the journal."), + 1190 => new Code(code, "ERROR_SHUTDOWN_IS_SCHEDULED", "A system shutdown has already been scheduled."), + 1191 => new Code(code, "ERROR_SHUTDOWN_USERS_LOGGED_ON", "The system shutdown cannot be initiated because there are other users logged on to the computer."), + 1200 => new Code(code, "ERROR_BAD_DEVICE", "The specified device name is invalid."), + 1201 => new Code(code, "ERROR_CONNECTION_UNAVAIL", "The device is not currently connected but it is a remembered connection."), + 1202 => new Code(code, "ERROR_DEVICE_ALREADY_REMEMBERED", "The local device name has a remembered connection to another network resource."), + 1203 => new Code(code, "ERROR_NO_NET_OR_BAD_PATH", "The network path was either typed incorrectly, does not exist, or the network provider is not currently available. Try retyping the path or contact your network administrator."), + 1204 => new Code(code, "ERROR_BAD_PROVIDER", "The specified network provider name is invalid."), + 1205 => new Code(code, "ERROR_CANNOT_OPEN_PROFILE", "Unable to open the network connection profile."), + 1206 => new Code(code, "ERROR_BAD_PROFILE", "The network connection profile is corrupted."), + 1207 => new Code(code, "ERROR_NOT_CONTAINER", "Cannot enumerate a noncontainer."), + 1208 => new Code(code, "ERROR_EXTENDED_ERROR", "An extended error has occurred."), + 1209 => new Code(code, "ERROR_INVALID_GROUPNAME", "The format of the specified group name is invalid."), + 1210 => new Code(code, "ERROR_INVALID_COMPUTERNAME", "The format of the specified computer name is invalid."), + 1211 => new Code(code, "ERROR_INVALID_EVENTNAME", "The format of the specified event name is invalid."), + 1212 => new Code(code, "ERROR_INVALID_DOMAINNAME", "The format of the specified domain name is invalid."), + 1213 => new Code(code, "ERROR_INVALID_SERVICENAME", "The format of the specified service name is invalid."), + 1214 => new Code(code, "ERROR_INVALID_NETNAME", "The format of the specified network name is invalid."), + 1215 => new Code(code, "ERROR_INVALID_SHARENAME", "The format of the specified share name is invalid."), + 1216 => new Code(code, "ERROR_INVALID_PASSWORDNAME", "The format of the specified password is invalid."), + 1217 => new Code(code, "ERROR_INVALID_MESSAGENAME", "The format of the specified message name is invalid."), + 1218 => new Code(code, "ERROR_INVALID_MESSAGEDEST", "The format of the specified message destination is invalid."), + 1219 => new Code(code, "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. Disconnect all previous connections to the server or shared resource and try again."), + 1220 => new Code(code, "ERROR_REMOTE_SESSION_LIMIT_EXCEEDED", "An attempt was made to establish a session to a network server, but there are already too many sessions established to that server."), + 1221 => new Code(code, "ERROR_DUP_DOMAINNAME", "The workgroup or domain name is already in use by another computer on the network."), + 1222 => new Code(code, "ERROR_NO_NETWORK", "The network is not present or not started."), + 1223 => new Code(code, "ERROR_CANCELLED", "The operation was canceled by the user."), + 1224 => new Code(code, "ERROR_USER_MAPPED_FILE", "The requested operation cannot be performed on a file with a user-mapped section open."), + 1225 => new Code(code, "ERROR_CONNECTION_REFUSED", "The remote system refused the network connection."), + 1226 => new Code(code, "ERROR_GRACEFUL_DISCONNECT", "The network connection was gracefully closed."), + 1227 => new Code(code, "ERROR_ADDRESS_ALREADY_ASSOCIATED", "The network transport endpoint already has an address associated with it."), + 1228 => new Code(code, "ERROR_ADDRESS_NOT_ASSOCIATED", "An address has not yet been associated with the network endpoint."), + 1229 => new Code(code, "ERROR_CONNECTION_INVALID", "An operation was attempted on a nonexistent network connection."), + 1230 => new Code(code, "ERROR_CONNECTION_ACTIVE", "An invalid operation was attempted on an active network connection."), + 1231 => new Code(code, "ERROR_NETWORK_UNREACHABLE", "The network location cannot be reached. For information about network troubleshooting, see Windows Help."), + 1232 => new Code(code, "ERROR_HOST_UNREACHABLE", "The network location cannot be reached. For information about network troubleshooting, see Windows Help."), + 1233 => new Code(code, "ERROR_PROTOCOL_UNREACHABLE", "The network location cannot be reached. For information about network troubleshooting, see Windows Help."), + 1234 => new Code(code, "ERROR_PORT_UNREACHABLE", "No service is operating at the destination network endpoint on the remote system."), + 1235 => new Code(code, "ERROR_REQUEST_ABORTED", "The request was aborted."), + 1236 => new Code(code, "ERROR_CONNECTION_ABORTED", "The network connection was aborted by the local system."), + 1237 => new Code(code, "ERROR_RETRY", "The operation could not be completed. A retry should be performed."), + 1238 => new Code(code, "ERROR_CONNECTION_COUNT_LIMIT", "A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached."), + 1239 => new Code(code, "ERROR_LOGIN_TIME_RESTRICTION", "Attempting to log on during an unauthorized time of day for this account."), + 1240 => new Code(code, "ERROR_LOGIN_WKSTA_RESTRICTION", "The account is not authorized to log on from this station."), + 1241 => new Code(code, "ERROR_INCORRECT_ADDRESS", "The network address could not be used for the operation requested."), + 1242 => new Code(code, "ERROR_ALREADY_REGISTERED", "The service is already registered."), + 1243 => new Code(code, "ERROR_SERVICE_NOT_FOUND", "The specified service does not exist."), + 1244 => new Code(code, "ERROR_NOT_AUTHENTICATED", "The operation being requested was not performed because the user has not been authenticated."), + 1245 => new Code(code, "ERROR_NOT_LOGGED_ON", "The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist."), + 1246 => new Code(code, "ERROR_CONTINUE", "Continue with work in progress."), + 1247 => new Code(code, "ERROR_ALREADY_INITIALIZED", "An attempt was made to perform an initialization operation when initialization has already been completed."), + 1248 => new Code(code, "ERROR_NO_MORE_DEVICES", "No more local devices."), + 1249 => new Code(code, "ERROR_NO_SUCH_SITE", "The specified site does not exist."), + 1250 => new Code(code, "ERROR_DOMAIN_CONTROLLER_EXISTS", "A domain controller with the specified name already exists."), + 1251 => new Code(code, "ERROR_ONLY_IF_CONNECTED", "This operation is supported only when you are connected to the server."), + 1252 => new Code(code, "ERROR_OVERRIDE_NOCHANGES", "The group policy framework should call the extension even if there are no changes."), + 1253 => new Code(code, "ERROR_BAD_USER_PROFILE", "The specified user does not have a valid profile."), + 1254 => new Code(code, "ERROR_NOT_SUPPORTED_ON_SBS", "This operation is not supported on a computer running Windows Server 2003 operating system for Small Business Server."), + 1255 => new Code(code, "ERROR_SERVER_SHUTDOWN_IN_PROGRESS", "The server machine is shutting down."), + 1256 => new Code(code, "ERROR_HOST_DOWN", "The remote system is not available. For information about network troubleshooting, see Windows Help."), + 1257 => new Code(code, "ERROR_NON_ACCOUNT_SID", "The security identifier provided is not from an account domain."), + 1258 => new Code(code, "ERROR_NON_DOMAIN_SID", "The security identifier provided does not have a domain component."), + 1259 => new Code(code, "ERROR_APPHELP_BLOCK", "AppHelp dialog canceled, thus preventing the application from starting."), + 1260 => new Code(code, "ERROR_ACCESS_DISABLED_BY_POLICY", "This program is blocked by Group Policy. For more information, contact your system administrator."), + 1261 => new Code(code, "ERROR_REG_NAT_CONSUMPTION", "A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific."), + 1262 => new Code(code, "ERROR_CSCSHARE_OFFLINE", "The share is currently offline or does not exist."), + 1263 => new Code(code, "ERROR_PKINIT_FAILURE", "The Kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. There is more information in the system event log."), + 1264 => new Code(code, "ERROR_SMARTCARD_SUBSYSTEM_FAILURE", "The Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem."), + 1265 => new Code(code, "ERROR_DOWNGRADE_DETECTED", "The system detected a possible attempt to compromise security. Ensure that you can contact the server that authenticated you."), + 1271 => new Code(code, "ERROR_MACHINE_LOCKED", "The machine is locked and cannot be shut down without the force option."), + 1273 => new Code(code, "ERROR_CALLBACK_SUPPLIED_INVALID_DATA", "An application-defined callback gave invalid data when called."), + 1274 => new Code(code, "ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED", "The Group Policy framework should call the extension in the synchronous foreground policy refresh."), + 1275 => new Code(code, "ERROR_DRIVER_BLOCKED", "This driver has been blocked from loading."), + 1276 => new Code(code, "ERROR_INVALID_IMPORT_OF_NON_DLL", "A DLL referenced a module that was neither a DLL nor the process's executable image."), + 1277 => new Code(code, "ERROR_ACCESS_DISABLED_WEBBLADE", "Windows cannot open this program because it has been disabled."), + 1278 => new Code(code, "ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER", "Windows cannot open this program because the license enforcement system has been tampered with or become corrupted."), + 1279 => new Code(code, "ERROR_RECOVERY_FAILURE", "A transaction recover failed."), + 1280 => new Code(code, "ERROR_ALREADY_FIBER", "The current thread has already been converted to a fiber."), + 1281 => new Code(code, "ERROR_ALREADY_THREAD", "The current thread has already been converted from a fiber."), + 1282 => new Code(code, "ERROR_STACK_BUFFER_OVERRUN", "The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application."), + 1283 => new Code(code, "ERROR_PARAMETER_QUOTA_EXCEEDED", "Data present in one of the parameters is more than the function can operate on."), + 1284 => new Code(code, "ERROR_DEBUGGER_INACTIVE", "An attempt to perform an operation on a debug object failed because the object is in the process of being deleted."), + 1285 => new Code(code, "ERROR_DELAY_LOAD_FAILED", "An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed."), + 1286 => new Code(code, "ERROR_VDM_DISALLOWED", "%1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator."), + 1287 => new Code(code, "ERROR_UNIDENTIFIED_ERROR", "Insufficient information exists to identify the cause of failure."), + 1288 => new Code(code, "ERROR_INVALID_CRUNTIME_PARAMETER", "The parameter passed to a C runtime function is incorrect."), + 1289 => new Code(code, "ERROR_BEYOND_VDL", "The operation occurred beyond the valid data length of the file."), + 1290 => new Code(code, "ERROR_INCOMPATIBLE_SERVICE_SID_TYPE", "The service start failed because one or more services in the same process have an incompatible service SID type setting. A service with a restricted service SID type can only coexist in the same process with other services with a restricted SID type."), + 1291 => new Code(code, "ERROR_DRIVER_PROCESS_TERMINATED", "The process hosting the driver for this device has been terminated."), + 1292 => new Code(code, "ERROR_IMPLEMENTATION_LIMIT", "An operation attempted to exceed an implementation-defined limit."), + 1293 => new Code(code, "ERROR_PROCESS_IS_PROTECTED", "Either the target process, or the target thread's containing process, is a protected process."), + 1294 => new Code(code, "ERROR_SERVICE_NOTIFY_CLIENT_LAGGING", "The service notification client is lagging too far behind the current state of services in the machine."), + 1295 => new Code(code, "ERROR_DISK_QUOTA_EXCEEDED", "An operation failed because the storage quota was exceeded."), + 1296 => new Code(code, "ERROR_CONTENT_BLOCKED", "An operation failed because the content was blocked."), + 1297 => new Code(code, "ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE", "A privilege that the service requires to function properly does not exist in the service account configuration. The Services Microsoft Management Console (MMC) snap-in (Services.msc) and the Local Security Settings MMC snap-in (Secpol.msc) can be used to view the service configuration and the account configuration."), + 1299 => new Code(code, "ERROR_INVALID_LABEL", "Indicates a particular SID cannot be assigned as the label of an object."), + 1300 => new Code(code, "ERROR_NOT_ALL_ASSIGNED", "Not all privileges or groups referenced are assigned to the caller."), + 1301 => new Code(code, "ERROR_SOME_NOT_MAPPED", "Some mapping between account names and SIDs was not done."), + 1302 => new Code(code, "ERROR_NO_QUOTAS_FOR_ACCOUNT", "No system quota limits are specifically set for this account."), + 1303 => new Code(code, "ERROR_LOCAL_USER_SESSION_KEY", "No encryption key is available. A well-known encryption key was returned."), + 1304 => new Code(code, "ERROR_NULL_LM_PASSWORD", "The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a null string."), + 1305 => new Code(code, "ERROR_UNKNOWN_REVISION", "The revision level is unknown."), + 1306 => new Code(code, "ERROR_REVISION_MISMATCH", "Indicates two revision levels are incompatible."), + 1307 => new Code(code, "ERROR_INVALID_OWNER", "This SID cannot be assigned as the owner of this object."), + 1308 => new Code(code, "ERROR_INVALID_PRIMARY_GROUP", "This SID cannot be assigned as the primary group of an object."), + 1309 => new Code(code, "ERROR_NO_IMPERSONATION_TOKEN", "An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client."), + 1310 => new Code(code, "ERROR_CANT_DISABLE_MANDATORY", "The group cannot be disabled."), + 1311 => new Code(code, "ERROR_NO_LOGON_SERVERS", "There are currently no logon servers available to service the logon request."), + 1312 => new Code(code, "ERROR_NO_SUCH_LOGON_SESSION", "A specified logon session does not exist. It might already have been terminated."), + 1313 => new Code(code, "ERROR_NO_SUCH_PRIVILEGE", "A specified privilege does not exist."), + 1314 => new Code(code, "ERROR_PRIVILEGE_NOT_HELD", "A required privilege is not held by the client."), + 1315 => new Code(code, "ERROR_INVALID_ACCOUNT_NAME", "The name provided is not a properly formed account name."), + 1316 => new Code(code, "ERROR_USER_EXISTS", "The specified account already exists."), + 1317 => new Code(code, "ERROR_NO_SUCH_USER", "The specified account does not exist."), + 1318 => new Code(code, "ERROR_GROUP_EXISTS", "The specified group already exists."), + 1319 => new Code(code, "ERROR_NO_SUCH_GROUP", "The specified group does not exist."), + 1320 => new Code(code, "ERROR_MEMBER_IN_GROUP", "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."), + 1321 => new Code(code, "ERROR_MEMBER_NOT_IN_GROUP", "The specified user account is not a member of the specified group account."), + 1322 => new Code(code, "ERROR_LAST_ADMIN", "The last remaining administration account cannot be disabled or deleted."), + 1323 => new Code(code, "ERROR_WRONG_PASSWORD", "Unable to update the password. The value provided as the current password is incorrect."), + 1324 => new Code(code, "ERROR_ILL_FORMED_PASSWORD", "Unable to update the password. The value provided for the new password contains values that are not allowed in passwords."), + 1325 => new Code(code, "ERROR_PASSWORD_RESTRICTION", "Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirements of the domain."), + 1326 => new Code(code, "ERROR_LOGON_FAILURE", "Logon failure: Unknown user name or bad password."), + 1327 => new Code(code, "ERROR_ACCOUNT_RESTRICTION", "Logon failure: User account restriction. Possible reasons are blank passwords not allowed, logon hour restrictions, or a policy restriction has been enforced."), + 1328 => new Code(code, "ERROR_INVALID_LOGON_HOURS", "Logon failure: Account logon time restriction violation."), + 1329 => new Code(code, "ERROR_INVALID_WORKSTATION", "Logon failure: User not allowed to log on to this computer."), + 1330 => new Code(code, "ERROR_PASSWORD_EXPIRED", "Logon failure: The specified account password has expired."), + 1331 => new Code(code, "ERROR_ACCOUNT_DISABLED", "Logon failure: Account currently disabled."), + 1332 => new Code(code, "ERROR_NONE_MAPPED", "No mapping between account names and SIDs was done."), + 1333 => new Code(code, "ERROR_TOO_MANY_LUIDS_REQUESTED", "Too many local user identifiers (LUIDs) were requested at one time."), + 1334 => new Code(code, "ERROR_LUIDS_EXHAUSTED", "No more LUIDs are available."), + 1335 => new Code(code, "ERROR_INVALID_SUB_AUTHORITY", "The sub-authority part of an SID is invalid for this particular use."), + 1336 => new Code(code, "ERROR_INVALID_ACL", "The ACL structure is invalid."), + 1337 => new Code(code, "ERROR_INVALID_SID", "The SID structure is invalid."), + 1338 => new Code(code, "ERROR_INVALID_SECURITY_DESCR", "The security descriptor structure is invalid."), + 1340 => new Code(code, "ERROR_BAD_INHERITANCE_ACL", "The inherited ACL or ACE could not be built."), + 1341 => new Code(code, "ERROR_SERVER_DISABLED", "The server is currently disabled."), + 1342 => new Code(code, "ERROR_SERVER_NOT_DISABLED", "The server is currently enabled."), + 1343 => new Code(code, "ERROR_INVALID_ID_AUTHORITY", "The value provided was an invalid value for an identifier authority."), + 1344 => new Code(code, "ERROR_ALLOTTED_SPACE_EXCEEDED", "No more memory is available for security information updates."), + 1345 => new Code(code, "ERROR_INVALID_GROUP_ATTRIBUTES", "The specified attributes are invalid, or incompatible with the attributes for the group as a whole."), + 1346 => new Code(code, "ERROR_BAD_IMPERSONATION_LEVEL", "Either a required impersonation level was not provided, or the provided impersonation level is invalid."), + 1347 => new Code(code, "ERROR_CANT_OPEN_ANONYMOUS", "Cannot open an anonymous level security token."), + 1348 => new Code(code, "ERROR_BAD_VALIDATION_CLASS", "The validation information class requested was invalid."), + 1349 => new Code(code, "ERROR_BAD_TOKEN_TYPE", "The type of the token is inappropriate for its attempted use."), + 1350 => new Code(code, "ERROR_NO_SECURITY_ON_OBJECT", "Unable to perform a security operation on an object that has no associated security."), + 1351 => new Code(code, "ERROR_CANT_ACCESS_DOMAIN_INFO", "Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied."), + 1352 => new Code(code, "ERROR_INVALID_SERVER_STATE", "The SAM or local security authority (LSA) server was in the wrong state to perform the security operation."), + 1353 => new Code(code, "ERROR_INVALID_DOMAIN_STATE", "The domain was in the wrong state to perform the security operation."), + 1354 => new Code(code, "ERROR_INVALID_DOMAIN_ROLE", "This operation is only allowed for the PDC of the domain."), + 1355 => new Code(code, "ERROR_NO_SUCH_DOMAIN", "The specified domain either does not exist or could not be contacted."), + 1356 => new Code(code, "ERROR_DOMAIN_EXISTS", "The specified domain already exists."), + 1357 => new Code(code, "ERROR_DOMAIN_LIMIT_EXCEEDED", "An attempt was made to exceed the limit on the number of domains per server."), + 1358 => new Code(code, "ERROR_INTERNAL_DB_CORRUPTION", "Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk."), + 1359 => new Code(code, "ERROR_INTERNAL_ERROR", "An internal error occurred."), + 1360 => new Code(code, "ERROR_GENERIC_NOT_MAPPED", "Generic access types were contained in an access mask that should already be mapped to nongeneric types."), + 1361 => new Code(code, "ERROR_BAD_DESCRIPTOR_FORMAT", "A security descriptor is not in the right format (absolute or self-relative)."), + 1362 => new Code(code, "ERROR_NOT_LOGON_PROCESS", "The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process."), + 1363 => new Code(code, "ERROR_LOGON_SESSION_EXISTS", "Cannot start a new logon session with an ID that is already in use."), + 1364 => new Code(code, "ERROR_NO_SUCH_PACKAGE", "A specified authentication package is unknown."), + 1365 => new Code(code, "ERROR_BAD_LOGON_SESSION_STATE", "The logon session is not in a state that is consistent with the requested operation."), + 1366 => new Code(code, "ERROR_LOGON_SESSION_COLLISION", "The logon session ID is already in use."), + 1367 => new Code(code, "ERROR_INVALID_LOGON_TYPE", "A logon request contained an invalid logon type value."), + 1368 => new Code(code, "ERROR_CANNOT_IMPERSONATE", "Unable to impersonate using a named pipe until data has been read from that pipe."), + 1369 => new Code(code, "ERROR_RXACT_INVALID_STATE", "The transaction state of a registry subtree is incompatible with the requested operation."), + 1370 => new Code(code, "ERROR_RXACT_COMMIT_FAILURE", "An internal security database corruption has been encountered."), + 1371 => new Code(code, "ERROR_SPECIAL_ACCOUNT", "Cannot perform this operation on built-in accounts."), + 1372 => new Code(code, "ERROR_SPECIAL_GROUP", "Cannot perform this operation on this built-in special group."), + 1373 => new Code(code, "ERROR_SPECIAL_USER", "Cannot perform this operation on this built-in special user."), + 1374 => new Code(code, "ERROR_MEMBERS_PRIMARY_GROUP", "The user cannot be removed from a group because the group is currently the user's primary group."), + 1375 => new Code(code, "ERROR_TOKEN_ALREADY_IN_USE", "The token is already in use as a primary token."), + 1376 => new Code(code, "ERROR_NO_SUCH_ALIAS", "The specified local group does not exist."), + 1377 => new Code(code, "ERROR_MEMBER_NOT_IN_ALIAS", "The specified account name is not a member of the group."), + 1378 => new Code(code, "ERROR_MEMBER_IN_ALIAS", "The specified account name is already a member of the group."), + 1379 => new Code(code, "ERROR_ALIAS_EXISTS", "The specified local group already exists."), + 1380 => new Code(code, "ERROR_LOGON_NOT_GRANTED", "Logon failure: The user has not been granted the requested logon type at this computer."), + 1381 => new Code(code, "ERROR_TOO_MANY_SECRETS", "The maximum number of secrets that can be stored in a single system has been exceeded."), + 1382 => new Code(code, "ERROR_SECRET_TOO_LONG", "The length of a secret exceeds the maximum length allowed."), + 1383 => new Code(code, "ERROR_INTERNAL_DB_ERROR", "The local security authority database contains an internal inconsistency."), + 1384 => new Code(code, "ERROR_TOO_MANY_CONTEXT_IDS", "During a logon attempt, the user's security context accumulated too many SIDs."), + 1385 => new Code(code, "ERROR_LOGON_TYPE_NOT_GRANTED", "Logon failure: The user has not been granted the requested logon type at this computer."), + 1386 => new Code(code, "ERROR_NT_CROSS_ENCRYPTION_REQUIRED", "A cross-encrypted password is necessary to change a user password."), + 1387 => new Code(code, "ERROR_NO_SUCH_MEMBER", "A member could not be added to or removed from the local group because the member does not exist."), + 1388 => new Code(code, "ERROR_INVALID_MEMBER", "A new member could not be added to a local group because the member has the wrong account type."), + 1389 => new Code(code, "ERROR_TOO_MANY_SIDS", "Too many SIDs have been specified."), + 1390 => new Code(code, "ERROR_LM_CROSS_ENCRYPTION_REQUIRED", "A cross-encrypted password is necessary to change this user password."), + 1391 => new Code(code, "ERROR_NO_INHERITANCE", "Indicates an ACL contains no inheritable components."), + 1392 => new Code(code, "ERROR_FILE_CORRUPT", "The file or directory is corrupted and unreadable."), + 1393 => new Code(code, "ERROR_DISK_CORRUPT", "The disk structure is corrupted and unreadable."), + 1394 => new Code(code, "ERROR_NO_USER_SESSION_KEY", "There is no user session key for the specified logon session."), + 1395 => new Code(code, "ERROR_LICENSE_QUOTA_EXCEEDED", "The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because the service has accepted the maximum number of connections."), + 1396 => new Code(code, "ERROR_WRONG_TARGET_NAME", "Logon failure: The target account name is incorrect."), + 1397 => new Code(code, "ERROR_MUTUAL_AUTH_FAILED", "Mutual authentication failed. The server's password is out of date at the domain controller."), + 1398 => new Code(code, "ERROR_TIME_SKEW", "There is a time and/or date difference between the client and server."), + 1399 => new Code(code, "ERROR_CURRENT_DOMAIN_NOT_ALLOWED", "This operation cannot be performed on the current domain."), + 1400 => new Code(code, "ERROR_INVALID_WINDOW_HANDLE", "Invalid window handle."), + 1401 => new Code(code, "ERROR_INVALID_MENU_HANDLE", "Invalid menu handle."), + 1402 => new Code(code, "ERROR_INVALID_CURSOR_HANDLE", "Invalid cursor handle."), + 1403 => new Code(code, "ERROR_INVALID_ACCEL_HANDLE", "Invalid accelerator table handle."), + 1404 => new Code(code, "ERROR_INVALID_HOOK_HANDLE", "Invalid hook handle."), + 1405 => new Code(code, "ERROR_INVALID_DWP_HANDLE", "Invalid handle to a multiple-window position structure."), + 1406 => new Code(code, "ERROR_TLW_WITH_WSCHILD", "Cannot create a top-level child window."), + 1407 => new Code(code, "ERROR_CANNOT_FIND_WND_CLASS", "Cannot find window class."), + 1408 => new Code(code, "ERROR_WINDOW_OF_OTHER_THREAD", "Invalid window; it belongs to other thread."), + 1409 => new Code(code, "ERROR_HOTKEY_ALREADY_REGISTERED", "Hot key is already registered."), + 1410 => new Code(code, "ERROR_CLASS_ALREADY_EXISTS", "Class already exists."), + 1411 => new Code(code, "ERROR_CLASS_DOES_NOT_EXIST", "Class does not exist."), + 1412 => new Code(code, "ERROR_CLASS_HAS_WINDOWS", "Class still has open windows."), + 1413 => new Code(code, "ERROR_INVALID_INDEX", "Invalid index."), + 1414 => new Code(code, "ERROR_INVALID_ICON_HANDLE", "Invalid icon handle."), + 1415 => new Code(code, "ERROR_PRIVATE_DIALOG_INDEX", "Using private DIALOG window words."), + 1416 => new Code(code, "ERROR_LISTBOX_ID_NOT_FOUND", "The list box identifier was not found."), + 1417 => new Code(code, "ERROR_NO_WILDCARD_CHARACTERS", "No wildcards were found."), + 1418 => new Code(code, "ERROR_CLIPBOARD_NOT_OPEN", "Thread does not have a clipboard open."), + 1419 => new Code(code, "ERROR_HOTKEY_NOT_REGISTERED", "Hot key is not registered."), + 1420 => new Code(code, "ERROR_WINDOW_NOT_DIALOG", "The window is not a valid dialog window."), + 1421 => new Code(code, "ERROR_CONTROL_ID_NOT_FOUND", "Control ID not found."), + 1422 => new Code(code, "ERROR_INVALID_COMBOBOX_MESSAGE", "Invalid message for a combo box because it does not have an edit control."), + 1423 => new Code(code, "ERROR_WINDOW_NOT_COMBOBOX", "The window is not a combo box."), + 1424 => new Code(code, "ERROR_INVALID_EDIT_HEIGHT", "Height must be less than 256."), + 1425 => new Code(code, "ERROR_DC_NOT_FOUND", "Invalid device context (DC) handle."), + 1426 => new Code(code, "ERROR_INVALID_HOOK_FILTER", "Invalid hook procedure type."), + 1427 => new Code(code, "ERROR_INVALID_FILTER_PROC", "Invalid hook procedure."), + 1428 => new Code(code, "ERROR_HOOK_NEEDS_HMOD", "Cannot set nonlocal hook without a module handle."), + 1429 => new Code(code, "ERROR_GLOBAL_ONLY_HOOK", "This hook procedure can only be set globally."), + 1430 => new Code(code, "ERROR_JOURNAL_HOOK_SET", "The journal hook procedure is already installed."), + 1431 => new Code(code, "ERROR_HOOK_NOT_INSTALLED", "The hook procedure is not installed."), + 1432 => new Code(code, "ERROR_INVALID_LB_MESSAGE", "Invalid message for single-selection list box."), + 1433 => new Code(code, "ERROR_SETCOUNT_ON_BAD_LB", "LB_SETCOUNT sent to non-lazy list box."), + 1434 => new Code(code, "ERROR_LB_WITHOUT_TABSTOPS", "This list box does not support tab stops."), + 1435 => new Code(code, "ERROR_DESTROY_OBJECT_OF_OTHER_THREAD", "Cannot destroy object created by another thread."), + 1436 => new Code(code, "ERROR_CHILD_WINDOW_MENU", "Child windows cannot have menus."), + 1437 => new Code(code, "ERROR_NO_SYSTEM_MENU", "The window does not have a system menu."), + 1438 => new Code(code, "ERROR_INVALID_MSGBOX_STYLE", "Invalid message box style."), + 1439 => new Code(code, "ERROR_INVALID_SPI_VALUE", "Invalid system-wide (SPI_*) parameter."), + 1440 => new Code(code, "ERROR_SCREEN_ALREADY_LOCKED", "Screen already locked."), + 1441 => new Code(code, "ERROR_HWNDS_HAVE_DIFF_PARENT", "All handles to windows in a multiple-window position structure must have the same parent."), + 1442 => new Code(code, "ERROR_NOT_CHILD_WINDOW", "The window is not a child window."), + 1443 => new Code(code, "ERROR_INVALID_GW_COMMAND", "Invalid GW_* command."), + 1444 => new Code(code, "ERROR_INVALID_THREAD_ID", "Invalid thread identifier."), + 1445 => new Code(code, "ERROR_NON_MDICHILD_WINDOW", "Cannot process a message from a window that is not a multiple document interface (MDI) window."), + 1446 => new Code(code, "ERROR_POPUP_ALREADY_ACTIVE", "Pop-up menu already active."), + 1447 => new Code(code, "ERROR_NO_SCROLLBARS", "The window does not have scroll bars."), + 1448 => new Code(code, "ERROR_INVALID_SCROLLBAR_RANGE", "Scroll bar range cannot be greater than MAXLONG."), + 1449 => new Code(code, "ERROR_INVALID_SHOWWIN_COMMAND", "Cannot show or remove the window in the way specified."), + 1450 => new Code(code, "ERROR_NO_SYSTEM_RESOURCES", "Insufficient system resources exist to complete the requested service."), + 1451 => new Code(code, "ERROR_NONPAGED_SYSTEM_RESOURCES", "Insufficient system resources exist to complete the requested service."), + 1452 => new Code(code, "ERROR_PAGED_SYSTEM_RESOURCES", "Insufficient system resources exist to complete the requested service."), + 1453 => new Code(code, "ERROR_WORKING_SET_QUOTA", "Insufficient quota to complete the requested service."), + 1454 => new Code(code, "ERROR_PAGEFILE_QUOTA", "Insufficient quota to complete the requested service."), + 1455 => new Code(code, "ERROR_COMMITMENT_LIMIT", "The paging file is too small for this operation to complete."), + 1456 => new Code(code, "ERROR_MENU_ITEM_NOT_FOUND", "A menu item was not found."), + 1457 => new Code(code, "ERROR_INVALID_KEYBOARD_HANDLE", "Invalid keyboard layout handle."), + 1458 => new Code(code, "ERROR_HOOK_TYPE_NOT_ALLOWED", "Hook type not allowed."), + 1459 => new Code(code, "ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION", "This operation requires an interactive window station."), + 1460 => new Code(code, "ERROR_TIMEOUT", "This operation returned because the time-out period expired."), + 1461 => new Code(code, "ERROR_INVALID_MONITOR_HANDLE", "Invalid monitor handle."), + 1462 => new Code(code, "ERROR_INCORRECT_SIZE", "Incorrect size argument."), + 1463 => new Code(code, "ERROR_SYMLINK_CLASS_DISABLED", "The symbolic link cannot be followed because its type is disabled."), + 1464 => new Code(code, "ERROR_SYMLINK_NOT_SUPPORTED", "This application does not support the current operation on symbolic links."), + 1500 => new Code(code, "ERROR_EVENTLOG_FILE_CORRUPT", "The event log file is corrupted."), + 1501 => new Code(code, "ERROR_EVENTLOG_CANT_START", "No event log file could be opened, so the event logging service did not start."), + 1502 => new Code(code, "ERROR_LOG_FILE_FULL", "The event log file is full."), + 1503 => new Code(code, "ERROR_EVENTLOG_FILE_CHANGED", "The event log file has changed between read operations."), + 1550 => new Code(code, "ERROR_INVALID_TASK_NAME", "The specified task name is invalid."), + 1551 => new Code(code, "ERROR_INVALID_TASK_INDEX", "The specified task index is invalid."), + 1552 => new Code(code, "ERROR_THREAD_ALREADY_IN_TASK", "The specified thread is already joining a task."), + 1601 => new Code(code, "ERROR_INSTALL_SERVICE_FAILURE", "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."), + 1602 => new Code(code, "ERROR_INSTALL_USEREXIT", "User canceled installation."), + 1603 => new Code(code, "ERROR_INSTALL_FAILURE", "Fatal error during installation."), + 1604 => new Code(code, "ERROR_INSTALL_SUSPEND", "Installation suspended, incomplete."), + 1605 => new Code(code, "ERROR_UNKNOWN_PRODUCT", "This action is valid only for products that are currently installed."), + 1606 => new Code(code, "ERROR_UNKNOWN_FEATURE", "Feature ID not registered."), + 1607 => new Code(code, "ERROR_UNKNOWN_COMPONENT", "Component ID not registered."), + 1608 => new Code(code, "ERROR_UNKNOWN_PROPERTY", "Unknown property."), + 1609 => new Code(code, "ERROR_INVALID_HANDLE_STATE", "Handle is in an invalid state."), + 1610 => new Code(code, "ERROR_BAD_CONFIGURATION", "The configuration data for this product is corrupt. Contact your support personnel."), + 1611 => new Code(code, "ERROR_INDEX_ABSENT", "Component qualifier not present."), + 1612 => new Code(code, "ERROR_INSTALL_SOURCE_ABSENT", "The installation source for this product is not available. Verify that the source exists and that you can access it."), + 1613 => new Code(code, "ERROR_INSTALL_PACKAGE_VERSION", "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."), + 1614 => new Code(code, "ERROR_PRODUCT_UNINSTALLED", "Product is uninstalled."), + 1615 => new Code(code, "ERROR_BAD_QUERY_SYNTAX", "SQL query syntax invalid or unsupported."), + 1616 => new Code(code, "ERROR_INVALID_FIELD", "Record field does not exist."), + 1617 => new Code(code, "ERROR_DEVICE_REMOVED", "The device has been removed."), + 1618 => new Code(code, "ERROR_INSTALL_ALREADY_RUNNING", "Another installation is already in progress. Complete that installation before proceeding with this install."), + 1619 => new Code(code, "ERROR_INSTALL_PACKAGE_OPEN_FAILED", "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."), + 1620 => new Code(code, "ERROR_INSTALL_PACKAGE_INVALID", "This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package."), + 1621 => new Code(code, "ERROR_INSTALL_UI_FAILURE", "There was an error starting the Windows Installer service user interface. Contact your support personnel."), + 1622 => new Code(code, "ERROR_INSTALL_LOG_FAILURE", "Error opening installation log file. Verify that the specified log file location exists and that you can write to it."), + 1623 => new Code(code, "ERROR_INSTALL_LANGUAGE_UNSUPPORTED", "The language of this installation package is not supported by your system."), + 1624 => new Code(code, "ERROR_INSTALL_TRANSFORM_FAILURE", "Error applying transforms. Verify that the specified transform paths are valid."), + 1625 => new Code(code, "ERROR_INSTALL_PACKAGE_REJECTED", "This installation is forbidden by system policy. Contact your system administrator."), + 1626 => new Code(code, "ERROR_FUNCTION_NOT_CALLED", "Function could not be executed."), + 1627 => new Code(code, "ERROR_FUNCTION_FAILED", "Function failed during execution."), + 1628 => new Code(code, "ERROR_INVALID_TABLE", "Invalid or unknown table specified."), + 1629 => new Code(code, "ERROR_DATATYPE_MISMATCH", "Data supplied is of wrong type."), + 1630 => new Code(code, "ERROR_UNSUPPORTED_TYPE", "Data of this type is not supported."), + 1631 => new Code(code, "ERROR_CREATE_FAILED", "The Windows Installer service failed to start. Contact your support personnel."), + 1632 => new Code(code, "ERROR_INSTALL_TEMP_UNWRITABLE", "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."), + 1633 => new Code(code, "ERROR_INSTALL_PLATFORM_UNSUPPORTED", "This installation package is not supported by this processor type. Contact your product vendor."), + 1634 => new Code(code, "ERROR_INSTALL_NOTUSED", "Component not used on this computer."), + 1635 => new Code(code, "ERROR_PATCH_PACKAGE_OPEN_FAILED", "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."), + 1636 => new Code(code, "ERROR_PATCH_PACKAGE_INVALID", "This update package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer update package."), + 1637 => new Code(code, "ERROR_PATCH_PACKAGE_UNSUPPORTED", "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."), + 1638 => new Code(code, "ERROR_PRODUCT_VERSION", "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 in Control Panel."), + 1639 => new Code(code, "ERROR_INVALID_COMMAND_LINE", "Invalid command-line argument. Consult the Windows Installer SDK for detailed command line help."), + 1640 => new Code(code, "ERROR_INSTALL_REMOTE_DISALLOWED", "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."), + 1641 => new Code(code, "ERROR_SUCCESS_REBOOT_INITIATED", "The requested operation completed successfully. The system will be restarted so the changes can take effect."), + 1642 => new Code(code, "ERROR_PATCH_TARGET_NOT_FOUND", "The upgrade cannot be installed by the Windows Installer service because the program to be upgraded might be missing, or the upgrade might 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."), + 1643 => new Code(code, "ERROR_PATCH_PACKAGE_REJECTED", "The update package is not permitted by a software restriction policy."), + 1644 => new Code(code, "ERROR_INSTALL_TRANSFORM_REJECTED", "One or more customizations are not permitted by a software restriction policy."), + 1645 => new Code(code, "ERROR_INSTALL_REMOTE_PROHIBITED", "The Windows Installer does not permit installation from a Remote Desktop Connection."), + 1646 => new Code(code, "ERROR_PATCH_REMOVAL_UNSUPPORTED", "Uninstallation of the update package is not supported."), + 1647 => new Code(code, "ERROR_UNKNOWN_PATCH", "The update is not applied to this product."), + 1648 => new Code(code, "ERROR_PATCH_NO_SEQUENCE", "No valid sequence could be found for the set of updates."), + 1649 => new Code(code, "ERROR_PATCH_REMOVAL_DISALLOWED", "Update removal was disallowed by policy."), + 1650 => new Code(code, "ERROR_INVALID_PATCH_XML", "The XML update data is invalid."), + 1651 => new Code(code, "ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT", "Windows Installer does not permit updating of managed advertised products. At least one feature of the product must be installed before applying the update."), + 1652 => new Code(code, "ERROR_INSTALL_SERVICE_SAFEBOOT", "The Windows Installer service is not accessible in Safe Mode. 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."), + 1700 => new Code(code, "RPC_S_INVALID_STRING_BINDING", "The string binding is invalid."), + 1701 => new Code(code, "RPC_S_WRONG_KIND_OF_BINDING", "The binding handle is not the correct type."), + 1702 => new Code(code, "RPC_S_INVALID_BINDING", "The binding handle is invalid."), + 1703 => new Code(code, "RPC_S_PROTSEQ_NOT_SUPPORTED", "The RPC protocol sequence is not supported."), + 1704 => new Code(code, "RPC_S_INVALID_RPC_PROTSEQ", "The RPC protocol sequence is invalid."), + 1705 => new Code(code, "RPC_S_INVALID_STRING_UUID", "The string UUID is invalid."), + 1706 => new Code(code, "RPC_S_INVALID_ENDPOINT_FORMAT", "The endpoint format is invalid."), + 1707 => new Code(code, "RPC_S_INVALID_NET_ADDR", "The network address is invalid."), + 1708 => new Code(code, "RPC_S_NO_ENDPOINT_FOUND", "No endpoint was found."), + 1709 => new Code(code, "RPC_S_INVALID_TIMEOUT", "The time-out value is invalid."), + 1710 => new Code(code, "RPC_S_OBJECT_NOT_FOUND", "The object UUID) was not found."), + 1711 => new Code(code, "RPC_S_ALREADY_REGISTERED", "The object UUID) has already been registered."), + 1712 => new Code(code, "RPC_S_TYPE_ALREADY_REGISTERED", "The type UUID has already been registered."), + 1713 => new Code(code, "RPC_S_ALREADY_LISTENING", "The RPC server is already listening."), + 1714 => new Code(code, "RPC_S_NO_PROTSEQS_REGISTERED", "No protocol sequences have been registered."), + 1715 => new Code(code, "RPC_S_NOT_LISTENING", "The RPC server is not listening."), + 1716 => new Code(code, "RPC_S_UNKNOWN_MGR_TYPE", "The manager type is unknown."), + 1717 => new Code(code, "RPC_S_UNKNOWN_IF", "The interface is unknown."), + 1718 => new Code(code, "RPC_S_NO_BINDINGS", "There are no bindings."), + 1719 => new Code(code, "RPC_S_NO_PROTSEQS", "There are no protocol sequences."), + 1720 => new Code(code, "RPC_S_CANT_CREATE_ENDPOINT", "The endpoint cannot be created."), + 1721 => new Code(code, "RPC_S_OUT_OF_RESOURCES", "Not enough resources are available to complete this operation."), + 1722 => new Code(code, "RPC_S_SERVER_UNAVAILABLE", "The RPC server is unavailable."), + 1723 => new Code(code, "RPC_S_SERVER_TOO_BUSY", "The RPC server is too busy to complete this operation."), + 1724 => new Code(code, "RPC_S_INVALID_NETWORK_OPTIONS", "The network options are invalid."), + 1725 => new Code(code, "RPC_S_NO_CALL_ACTIVE", "There are no RPCs active on this thread."), + 1726 => new Code(code, "RPC_S_CALL_FAILED", "The RPC failed."), + 1727 => new Code(code, "RPC_S_CALL_FAILED_DNE", "The RPC failed and did not execute."), + 1728 => new Code(code, "RPC_S_PROTOCOL_ERROR", "An RPC protocol error occurred."), + 1729 => new Code(code, "RPC_S_PROXY_ACCESS_DENIED", "Access to the HTTP proxy is denied."), + 1730 => new Code(code, "RPC_S_UNSUPPORTED_TRANS_SYN", "The transfer syntax is not supported by the RPC server."), + 1732 => new Code(code, "RPC_S_UNSUPPORTED_TYPE", "The UUID type is not supported."), + 1733 => new Code(code, "RPC_S_INVALID_TAG", "The tag is invalid."), + 1734 => new Code(code, "RPC_S_INVALID_BOUND", "The array bounds are invalid."), + 1735 => new Code(code, "RPC_S_NO_ENTRY_NAME", "The binding does not contain an entry name."), + 1736 => new Code(code, "RPC_S_INVALID_NAME_SYNTAX", "The name syntax is invalid."), + 1737 => new Code(code, "RPC_S_UNSUPPORTED_NAME_SYNTAX", "The name syntax is not supported."), + 1739 => new Code(code, "RPC_S_UUID_NO_ADDRESS", "No network address is available to use to construct a UUID."), + 1740 => new Code(code, "RPC_S_DUPLICATE_ENDPOINT", "The endpoint is a duplicate."), + 1741 => new Code(code, "RPC_S_UNKNOWN_AUTHN_TYPE", "The authentication type is unknown."), + 1742 => new Code(code, "RPC_S_MAX_CALLS_TOO_SMALL", "The maximum number of calls is too small."), + 1743 => new Code(code, "RPC_S_STRING_TOO_LONG", "The string is too long."), + 1744 => new Code(code, "RPC_S_PROTSEQ_NOT_FOUND", "The RPC protocol sequence was not found."), + 1745 => new Code(code, "RPC_S_PROCNUM_OUT_OF_RANGE", "The procedure number is out of range."), + 1746 => new Code(code, "RPC_S_BINDING_HAS_NO_AUTH", "The binding does not contain any authentication information."), + 1747 => new Code(code, "RPC_S_UNKNOWN_AUTHN_SERVICE", "The authentication service is unknown."), + 1748 => new Code(code, "RPC_S_UNKNOWN_AUTHN_LEVEL", "The authentication level is unknown."), + 1749 => new Code(code, "RPC_S_INVALID_AUTH_IDENTITY", "The security context is invalid."), + 1750 => new Code(code, "RPC_S_UNKNOWN_AUTHZ_SERVICE", "The authorization service is unknown."), + 1751 => new Code(code, "EPT_S_INVALID_ENTRY", "The entry is invalid."), + 1752 => new Code(code, "EPT_S_CANT_PERFORM_OP", "The server endpoint cannot perform the operation."), + 1753 => new Code(code, "EPT_S_NOT_REGISTERED", "There are no more endpoints available from the endpoint mapper."), + 1754 => new Code(code, "RPC_S_NOTHING_TO_EXPORT", "No interfaces have been exported."), + 1755 => new Code(code, "RPC_S_INCOMPLETE_NAME", "The entry name is incomplete."), + 1756 => new Code(code, "RPC_S_INVALID_VERS_OPTION", "The version option is invalid."), + 1757 => new Code(code, "RPC_S_NO_MORE_MEMBERS", "There are no more members."), + 1758 => new Code(code, "RPC_S_NOT_ALL_OBJS_UNEXPORTED", "There is nothing to unexport."), + 1759 => new Code(code, "RPC_S_INTERFACE_NOT_FOUND", "The interface was not found."), + 1760 => new Code(code, "RPC_S_ENTRY_ALREADY_EXISTS", "The entry already exists."), + 1761 => new Code(code, "RPC_S_ENTRY_NOT_FOUND", "The entry is not found."), + 1762 => new Code(code, "RPC_S_NAME_SERVICE_UNAVAILABLE", "The name service is unavailable."), + 1763 => new Code(code, "RPC_S_INVALID_NAF_ID", "The network address family is invalid."), + 1764 => new Code(code, "RPC_S_CANNOT_SUPPORT", "The requested operation is not supported."), + 1765 => new Code(code, "RPC_S_NO_CONTEXT_AVAILABLE", "No security context is available to allow impersonation."), + 1766 => new Code(code, "RPC_S_INTERNAL_ERROR", "An internal error occurred in an RPC."), + 1767 => new Code(code, "RPC_S_ZERO_DIVIDE", "The RPC server attempted an integer division by zero."), + 1768 => new Code(code, "RPC_S_ADDRESS_ERROR", "An addressing error occurred in the RPC server."), + 1769 => new Code(code, "RPC_S_FP_DIV_ZERO", "A floating-point operation at the RPC server caused a division by zero."), + 1770 => new Code(code, "RPC_S_FP_UNDERFLOW", "A floating-point underflow occurred at the RPC server."), + 1771 => new Code(code, "RPC_S_FP_OVERFLOW", "A floating-point overflow occurred at the RPC server."), + 1772 => new Code(code, "RPC_X_NO_MORE_ENTRIES", "The list of RPC servers available for the binding of auto handles has been exhausted."), + 1773 => new Code(code, "RPC_X_SS_CHAR_TRANS_OPEN_FAIL", "Unable to open the character translation table file."), + 1774 => new Code(code, "RPC_X_SS_CHAR_TRANS_SHORT_FILE", "The file containing the character translation table has fewer than 512 bytes."), + 1775 => new Code(code, "RPC_X_SS_IN_NULL_CONTEXT", "A null context handle was passed from the client to the host during an RPC."), + 1777 => new Code(code, "RPC_X_SS_CONTEXT_DAMAGED", "The context handle changed during an RPC."), + 1778 => new Code(code, "RPC_X_SS_HANDLES_MISMATCH", "The binding handles passed to an RPC do not match."), + 1779 => new Code(code, "RPC_X_SS_CANNOT_GET_CALL_HANDLE", "The stub is unable to get the RPC handle."), + 1780 => new Code(code, "RPC_X_NULL_REF_POINTER", "A null reference pointer was passed to the stub."), + 1781 => new Code(code, "RPC_X_ENUM_VALUE_OUT_OF_RANGE", "The enumeration value is out of range."), + 1782 => new Code(code, "RPC_X_BYTE_COUNT_TOO_SMALL", "The byte count is too small."), + 1783 => new Code(code, "RPC_X_BAD_STUB_DATA", "The stub received bad data."), + 1784 => new Code(code, "ERROR_INVALID_USER_BUFFER", "The supplied user buffer is not valid for the requested operation."), + 1785 => new Code(code, "ERROR_UNRECOGNIZED_MEDIA", "The disk media is not recognized. It might not be formatted."), + 1786 => new Code(code, "ERROR_NO_TRUST_LSA_SECRET", "The workstation does not have a trust secret."), + 1787 => new Code(code, "ERROR_NO_TRUST_SAM_ACCOUNT", "The security database on the server does not have a computer account for this workstation trust relationship."), + 1788 => new Code(code, "ERROR_TRUSTED_DOMAIN_FAILURE", "The trust relationship between the primary domain and the trusted domain failed."), + 1789 => new Code(code, "ERROR_TRUSTED_RELATIONSHIP_FAILURE", "The trust relationship between this workstation and the primary domain failed."), + 1790 => new Code(code, "ERROR_TRUST_FAILURE", "The network logon failed."), + 1791 => new Code(code, "RPC_S_CALL_IN_PROGRESS", "An RPC is already in progress for this thread."), + 1792 => new Code(code, "ERROR_NETLOGON_NOT_STARTED", "An attempt was made to log on, but the network logon service was not started."), + 1793 => new Code(code, "ERROR_ACCOUNT_EXPIRED", "The user's account has expired."), + 1794 => new Code(code, "ERROR_REDIRECTOR_HAS_OPEN_HANDLES", "The redirector is in use and cannot be unloaded."), + 1795 => new Code(code, "ERROR_PRINTER_DRIVER_ALREADY_INSTALLED", "The specified printer driver is already installed."), + 1796 => new Code(code, "ERROR_UNKNOWN_PORT", "The specified port is unknown."), + 1797 => new Code(code, "ERROR_UNKNOWN_PRINTER_DRIVER", "The printer driver is unknown."), + 1798 => new Code(code, "ERROR_UNKNOWN_PRINTPROCESSOR", "The print processor is unknown."), + 1799 => new Code(code, "ERROR_INVALID_SEPARATOR_FILE", "The specified separator file is invalid."), + 1800 => new Code(code, "ERROR_INVALID_PRIORITY", "The specified priority is invalid."), + 1801 => new Code(code, "ERROR_INVALID_PRINTER_NAME", "The printer name is invalid."), + 1802 => new Code(code, "ERROR_PRINTER_ALREADY_EXISTS", "The printer already exists."), + 1803 => new Code(code, "ERROR_INVALID_PRINTER_COMMAND", "The printer command is invalid."), + 1804 => new Code(code, "ERROR_INVALID_DATATYPE", "The specified data type is invalid."), + 1805 => new Code(code, "ERROR_INVALID_ENVIRONMENT", "The environment specified is invalid."), + 1806 => new Code(code, "RPC_S_NO_MORE_BINDINGS", "There are no more bindings."), + 1807 => new Code(code, "ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT", "The account used is an interdomain trust account. Use your global user account or local user account to access this server."), + 1808 => new Code(code, "ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT", "The account used is a computer account. Use your global user account or local user account to access this server."), + 1809 => new Code(code, "ERROR_NOLOGON_SERVER_TRUST_ACCOUNT", "The account used is a server trust account. Use your global user account or local user account to access this server."), + 1810 => new Code(code, "ERROR_DOMAIN_TRUST_INCONSISTENT", "The name or SID of the domain specified is inconsistent with the trust information for that domain."), + 1811 => new Code(code, "ERROR_SERVER_HAS_OPEN_HANDLES", "The server is in use and cannot be unloaded."), + 1812 => new Code(code, "ERROR_RESOURCE_DATA_NOT_FOUND", "The specified image file did not contain a resource section."), + 1813 => new Code(code, "ERROR_RESOURCE_TYPE_NOT_FOUND", "The specified resource type cannot be found in the image file."), + 1814 => new Code(code, "ERROR_RESOURCE_NAME_NOT_FOUND", "The specified resource name cannot be found in the image file."), + 1815 => new Code(code, "ERROR_RESOURCE_LANG_NOT_FOUND", "The specified resource language ID cannot be found in the image file."), + 1816 => new Code(code, "ERROR_NOT_ENOUGH_QUOTA", "Not enough quota is available to process this command."), + 1817 => new Code(code, "RPC_S_NO_INTERFACES", "No interfaces have been registered."), + 1818 => new Code(code, "RPC_S_CALL_CANCELLED", "The RPC was canceled."), + 1819 => new Code(code, "RPC_S_BINDING_INCOMPLETE", "The binding handle does not contain all the required information."), + 1820 => new Code(code, "RPC_S_COMM_FAILURE", "A communications failure occurred during an RPC."), + 1821 => new Code(code, "RPC_S_UNSUPPORTED_AUTHN_LEVEL", "The requested authentication level is not supported."), + 1822 => new Code(code, "RPC_S_NO_PRINC_NAME", "No principal name is registered."), + 1823 => new Code(code, "RPC_S_NOT_RPC_ERROR", "The error specified is not a valid Windows RPC error code."), + 1824 => new Code(code, "RPC_S_UUID_LOCAL_ONLY", "A UUID that is valid only on this computer has been allocated."), + 1825 => new Code(code, "RPC_S_SEC_PKG_ERROR", "A security package-specific error occurred."), + 1826 => new Code(code, "RPC_S_NOT_CANCELLED", "The thread is not canceled."), + 1827 => new Code(code, "RPC_X_INVALID_ES_ACTION", "Invalid operation on the encoding/decoding handle."), + 1828 => new Code(code, "RPC_X_WRONG_ES_VERSION", "Incompatible version of the serializing package."), + 1829 => new Code(code, "RPC_X_WRONG_STUB_VERSION", "Incompatible version of the RPC stub."), + 1830 => new Code(code, "RPC_X_INVALID_PIPE_OBJECT", "The RPC pipe object is invalid or corrupted."), + 1831 => new Code(code, "RPC_X_WRONG_PIPE_ORDER", "An invalid operation was attempted on an RPC pipe object."), + 1832 => new Code(code, "RPC_X_WRONG_PIPE_VERSION", "Unsupported RPC pipe version."), + 1898 => new Code(code, "RPC_S_GROUP_MEMBER_NOT_FOUND", "The group member was not found."), + 1899 => new Code(code, "EPT_S_CANT_CREATE", "The endpoint mapper database entry could not be created."), + 1900 => new Code(code, "RPC_S_INVALID_OBJECT", "The object UUID is the nil UUID."), + 1901 => new Code(code, "ERROR_INVALID_TIME", "The specified time is invalid."), + 1902 => new Code(code, "ERROR_INVALID_FORM_NAME", "The specified form name is invalid."), + 1903 => new Code(code, "ERROR_INVALID_FORM_SIZE", "The specified form size is invalid."), + 1904 => new Code(code, "ERROR_ALREADY_WAITING", "The specified printer handle is already being waited on."), + 1905 => new Code(code, "ERROR_PRINTER_DELETED", "The specified printer has been deleted."), + 1906 => new Code(code, "ERROR_INVALID_PRINTER_STATE", "The state of the printer is invalid."), + 1907 => new Code(code, "ERROR_PASSWORD_MUST_CHANGE", "The user's password must be changed before logging on the first time."), + 1908 => new Code(code, "ERROR_DOMAIN_CONTROLLER_NOT_FOUND", "Could not find the domain controller for this domain."), + 1909 => new Code(code, "ERROR_ACCOUNT_LOCKED_OUT", "The referenced account is currently locked out and cannot be logged on to."), + 1910 => new Code(code, "OR_INVALID_OXID", "The object exporter specified was not found."), + 1911 => new Code(code, "OR_INVALID_OID", "The object specified was not found."), + 1912 => new Code(code, "OR_INVALID_SET", "The object set specified was not found."), + 1913 => new Code(code, "RPC_S_SEND_INCOMPLETE", "Some data remains to be sent in the request buffer."), + 1914 => new Code(code, "RPC_S_INVALID_ASYNC_HANDLE", "Invalid asynchronous RPC handle."), + 1915 => new Code(code, "RPC_S_INVALID_ASYNC_CALL", "Invalid asynchronous RPC call handle for this operation."), + 1916 => new Code(code, "RPC_X_PIPE_CLOSED", "The RPC pipe object has already been closed."), + 1917 => new Code(code, "RPC_X_PIPE_DISCIPLINE_ERROR", "The RPC call completed before all pipes were processed."), + 1918 => new Code(code, "RPC_X_PIPE_EMPTY", "No more data is available from the RPC pipe."), + 1919 => new Code(code, "ERROR_NO_SITENAME", "No site name is available for this machine."), + 1920 => new Code(code, "ERROR_CANT_ACCESS_FILE", "The file cannot be accessed by the system."), + 1921 => new Code(code, "ERROR_CANT_RESOLVE_FILENAME", "The name of the file cannot be resolved by the system."), + 1922 => new Code(code, "RPC_S_ENTRY_TYPE_MISMATCH", "The entry is not of the expected type."), + 1923 => new Code(code, "RPC_S_NOT_ALL_OBJS_EXPORTED", "Not all object UUIDs could be exported to the specified entry."), + 1924 => new Code(code, "RPC_S_INTERFACE_NOT_EXPORTED", "The interface could not be exported to the specified entry."), + 1925 => new Code(code, "RPC_S_PROFILE_NOT_ADDED", "The specified profile entry could not be added."), + 1926 => new Code(code, "RPC_S_PRF_ELT_NOT_ADDED", "The specified profile element could not be added."), + 1927 => new Code(code, "RPC_S_PRF_ELT_NOT_REMOVED", "The specified profile element could not be removed."), + 1928 => new Code(code, "RPC_S_GRP_ELT_NOT_ADDED", "The group element could not be added."), + 1929 => new Code(code, "RPC_S_GRP_ELT_NOT_REMOVED", "The group element could not be removed."), + 1930 => new Code(code, "ERROR_KM_DRIVER_BLOCKED", "The printer driver is not compatible with a policy enabled on your computer that blocks Windows NT 4.0 operating system drivers."), + 1931 => new Code(code, "ERROR_CONTEXT_EXPIRED", "The context has expired and can no longer be used."), + 1932 => new Code(code, "ERROR_PER_USER_TRUST_QUOTA_EXCEEDED", "The current user's delegated trust creation quota has been exceeded."), + 1933 => new Code(code, "ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED", "The total delegated trust creation quota has been exceeded."), + 1934 => new Code(code, "ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED", "The current user's delegated trust deletion quota has been exceeded."), + 1935 => new Code(code, "ERROR_AUTHENTICATION_FIREWALL_FAILED", "Logon failure: The machine you are logging on to is protected by an authentication firewall. The specified account is not allowed to authenticate to the machine."), + 1936 => new Code(code, "ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED", "Remote connections to the Print Spooler are blocked by a policy set on your machine."), + 2000 => new Code(code, "ERROR_INVALID_PIXEL_FORMAT", "The pixel format is invalid."), + 2001 => new Code(code, "ERROR_BAD_DRIVER", "The specified driver is invalid."), + 2002 => new Code(code, "ERROR_INVALID_WINDOW_STYLE", "The window style or class attribute is invalid for this operation."), + 2003 => new Code(code, "ERROR_METAFILE_NOT_SUPPORTED", "The requested metafile operation is not supported."), + 2004 => new Code(code, "ERROR_TRANSFORM_NOT_SUPPORTED", "The requested transformation operation is not supported."), + 2005 => new Code(code, "ERROR_CLIPPING_NOT_SUPPORTED", "The requested clipping operation is not supported."), + 2010 => new Code(code, "ERROR_INVALID_CMM", "The specified color management module is invalid."), + 2011 => new Code(code, "ERROR_INVALID_PROFILE", "The specified color profile is invalid."), + 2012 => new Code(code, "ERROR_TAG_NOT_FOUND", "The specified tag was not found."), + 2013 => new Code(code, "ERROR_TAG_NOT_PRESENT", "A required tag is not present."), + 2014 => new Code(code, "ERROR_DUPLICATE_TAG", "The specified tag is already present."), + 2015 => new Code(code, "ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE", "The specified color profile is not associated with any device."), + 2016 => new Code(code, "ERROR_PROFILE_NOT_FOUND", "The specified color profile was not found."), + 2017 => new Code(code, "ERROR_INVALID_COLORSPACE", "The specified color space is invalid."), + 2018 => new Code(code, "ERROR_ICM_NOT_ENABLED", "Image Color Management is not enabled."), + 2019 => new Code(code, "ERROR_DELETING_ICM_XFORM", "There was an error while deleting the color transform."), + 2020 => new Code(code, "ERROR_INVALID_TRANSFORM", "The specified color transform is invalid."), + 2021 => new Code(code, "ERROR_COLORSPACE_MISMATCH", "The specified transform does not match the bitmap's color space."), + 2022 => new Code(code, "ERROR_INVALID_COLORINDEX", "The specified named color index is not present in the profile."), + 2023 => new Code(code, "ERROR_PROFILE_DOES_NOT_MATCH_DEVICE", "The specified profile is intended for a device of a different type than the specified device."), + 2102 => new Code(code, "NERR_NetNotStarted", "The workstation driver is not installed."), + 2103 => new Code(code, "NERR_UnknownServer", "The server could not be located."), + 2104 => new Code(code, "NERR_ShareMem", "An internal error occurred. The network cannot access a shared memory segment."), + 2105 => new Code(code, "NERR_NoNetworkResource", "A network resource shortage occurred."), + 2106 => new Code(code, "NERR_RemoteOnly", "This operation is not supported on workstations."), + 2107 => new Code(code, "NERR_DevNotRedirected", "The device is not connected."), + 2108 => new Code(code, "ERROR_CONNECTED_OTHER_PASSWORD", "The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified."), + 2109 => new Code(code, "ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT", "The network connection was made successfully using default credentials."), + 2114 => new Code(code, "NERR_ServerNotStarted", "The Server service is not started."), + 2115 => new Code(code, "NERR_ItemNotFound", "The queue is empty."), + 2116 => new Code(code, "NERR_UnknownDevDir", "The device or directory does not exist."), + 2117 => new Code(code, "NERR_RedirectedPath", "The operation is invalid on a redirected resource."), + 2118 => new Code(code, "NERR_DuplicateShare", "The name has already been shared."), + 2119 => new Code(code, "NERR_NoRoom", "The server is currently out of the requested resource."), + 2121 => new Code(code, "NERR_TooManyItems", "Requested addition of items exceeds the maximum allowed."), + 2122 => new Code(code, "NERR_InvalidMaxUsers", "The Peer service supports only two simultaneous users."), + 2123 => new Code(code, "NERR_BufTooSmall", "The API return buffer is too small."), + 2127 => new Code(code, "NERR_RemoteErr", "A remote API error occurred."), + 2131 => new Code(code, "NERR_LanmanIniError", "An error occurred when opening or reading the configuration file."), + 2136 => new Code(code, "NERR_NetworkError", "A general network error occurred."), + 2137 => new Code(code, "NERR_WkstaInconsistentState", "The Workstation service is in an inconsistent state. Restart the computer before restarting the Workstation service."), + 2138 => new Code(code, "NERR_WkstaNotStarted", "The Workstation service has not been started."), + 2139 => new Code(code, "NERR_BrowserNotStarted", "The requested information is not available."), + 2140 => new Code(code, "NERR_InternalError", "An internal error occurred."), + 2141 => new Code(code, "NERR_BadTransactConfig", "The server is not configured for transactions."), + 2142 => new Code(code, "NERR_InvalidAPI", "The requested API is not supported on the remote server."), + 2143 => new Code(code, "NERR_BadEventName", "The event name is invalid."), + 2144 => new Code(code, "NERR_DupNameReboot", "The computer name already exists on the network. Change it and reboot the computer."), + 2146 => new Code(code, "NERR_CfgCompNotFound", "The specified component could not be found in the configuration information."), + 2147 => new Code(code, "NERR_CfgParamNotFound", "The specified parameter could not be found in the configuration information."), + 2149 => new Code(code, "NERR_LineTooLong", "A line in the configuration file is too long."), + 2150 => new Code(code, "NERR_QNotFound", "The printer does not exist."), + 2151 => new Code(code, "NERR_JobNotFound", "The print job does not exist."), + 2152 => new Code(code, "NERR_DestNotFound", "The printer destination cannot be found."), + 2153 => new Code(code, "NERR_DestExists", "The printer destination already exists."), + 2154 => new Code(code, "NERR_QExists", "The print queue already exists."), + 2155 => new Code(code, "NERR_QNoRoom", "No more printers can be added."), + 2156 => new Code(code, "NERR_JobNoRoom", "No more print jobs can be added."), + 2157 => new Code(code, "NERR_DestNoRoom", "No more printer destinations can be added."), + 2158 => new Code(code, "NERR_DestIdle", "This printer destination is idle and cannot accept control operations."), + 2159 => new Code(code, "NERR_DestInvalidOp", "This printer destination request contains an invalid control function."), + 2160 => new Code(code, "NERR_ProcNoRespond", "The print processor is not responding."), + 2161 => new Code(code, "NERR_SpoolerNotLoaded", "The spooler is not running."), + 2162 => new Code(code, "NERR_DestInvalidState", "This operation cannot be performed on the print destination in its current state."), + 2163 => new Code(code, "NERR_QinvalidState", "This operation cannot be performed on the print queue in its current state."), + 2164 => new Code(code, "NERR_JobInvalidState", "This operation cannot be performed on the print job in its current state."), + 2165 => new Code(code, "NERR_SpoolNoMemory", "A spooler memory allocation failure occurred."), + 2166 => new Code(code, "NERR_DriverNotFound", "The device driver does not exist."), + 2167 => new Code(code, "NERR_DataTypeInvalid", "The data type is not supported by the print processor."), + 2168 => new Code(code, "NERR_ProcNotFound", "The print processor is not installed."), + 2180 => new Code(code, "NERR_ServiceTableLocked", "The service database is locked."), + 2181 => new Code(code, "NERR_ServiceTableFull", "The service table is full."), + 2182 => new Code(code, "NERR_ServiceInstalled", "The requested service has already been started."), + 2183 => new Code(code, "NERR_ServiceEntryLocked", "The service does not respond to control actions."), + 2184 => new Code(code, "NERR_ServiceNotInstalled", "The service has not been started."), + 2185 => new Code(code, "NERR_BadServiceName", "The service name is invalid."), + 2186 => new Code(code, "NERR_ServiceCtlTimeout", "The service is not responding to the control function."), + 2187 => new Code(code, "NERR_ServiceCtlBusy", "The service control is busy."), + 2188 => new Code(code, "NERR_BadServiceProgName", "The configuration file contains an invalid service program name."), + 2189 => new Code(code, "NERR_ServiceNotCtrl", "The service could not be controlled in its present state."), + 2190 => new Code(code, "NERR_ServiceKillProc", "The service ended abnormally."), + 2191 => new Code(code, "NERR_ServiceCtlNotValid", "The requested pause or stop is not valid for this service."), + 2192 => new Code(code, "NERR_NotInDispatchTbl", "The service control dispatcher could not find the service name in the dispatch table."), + 2193 => new Code(code, "NERR_BadControlRecv", "The service control dispatcher pipe read failed."), + 2194 => new Code(code, "NERR_ServiceNotStarting", "A thread for the new service could not be created."), + 2200 => new Code(code, "NERR_AlreadyLoggedOn", "This workstation is already logged on to the LAN."), + 2201 => new Code(code, "NERR_NotLoggedOn", "The workstation is not logged on to the LAN."), + 2202 => new Code(code, "NERR_BadUsername", "The user name or group name parameter is invalid."), + 2203 => new Code(code, "NERR_BadPassword", "The password parameter is invalid."), + 2204 => new Code(code, "NERR_UnableToAddName_W", "The logon processor did not add the message alias."), + 2205 => new Code(code, "NERR_UnableToAddName_F", "The logon processor did not add the message alias."), + 2206 => new Code(code, "NERR_UnableToDelName_W", "The logoff processor did not delete the message alias."), + 2207 => new Code(code, "NERR_UnableToDelName_F", "The logoff processor did not delete the message alias."), + 2209 => new Code(code, "NERR_LogonsPaused", "Network logons are paused."), + 2210 => new Code(code, "NERR_LogonServerConflict", "A centralized logon server conflict occurred."), + 2211 => new Code(code, "NERR_LogonNoUserPath", "The server is configured without a valid user path."), + 2212 => new Code(code, "NERR_LogonScriptError", "An error occurred while loading or running the logon script."), + 2214 => new Code(code, "NERR_StandaloneLogon", "The logon server was not specified. The computer will be logged on as STANDALONE."), + 2215 => new Code(code, "NERR_LogonServerNotFound", "The logon server could not be found."), + 2216 => new Code(code, "NERR_LogonDomainExists", "There is already a logon domain for this computer."), + 2217 => new Code(code, "NERR_NonValidatedLogon", "The logon server could not validate the logon."), + 2219 => new Code(code, "NERR_ACFNotFound", "The security database could not be found."), + 2220 => new Code(code, "NERR_GroupNotFound", "The group name could not be found."), + 2221 => new Code(code, "NERR_UserNotFound", "The user name could not be found."), + 2222 => new Code(code, "NERR_ResourceNotFound", "The resource name could not be found."), + 2223 => new Code(code, "NERR_GroupExists", "The group already exists."), + 2224 => new Code(code, "NERR_UserExists", "The user account already exists."), + 2225 => new Code(code, "NERR_ResourceExists", "The resource permission list already exists."), + 2226 => new Code(code, "NERR_NotPrimary", "This operation is allowed only on the PDC of the domain."), + 2227 => new Code(code, "NERR_ACFNotLoaded", "The security database has not been started."), + 2228 => new Code(code, "NERR_ACFNoRoom", "There are too many names in the user accounts database."), + 2229 => new Code(code, "NERR_ACFFileIOFail", "A disk I/O failure occurred."), + 2230 => new Code(code, "NERR_ACFTooManyLists", "The limit of 64 entries per resource was exceeded."), + 2231 => new Code(code, "NERR_UserLogon", "Deleting a user with a session is not allowed."), + 2232 => new Code(code, "NERR_ACFNoParent", "The parent directory could not be located."), + 2233 => new Code(code, "NERR_CanNotGrowSegment", "Unable to add to the security database session cache segment."), + 2234 => new Code(code, "NERR_SpeGroupOp", "This operation is not allowed on this special group."), + 2235 => new Code(code, "NERR_NotInCache", "This user is not cached in the user accounts database session cache."), + 2236 => new Code(code, "NERR_UserInGroup", "The user already belongs to this group."), + 2237 => new Code(code, "NERR_UserNotInGroup", "The user does not belong to this group."), + 2238 => new Code(code, "NERR_AccountUndefined", "This user account is undefined."), + 2239 => new Code(code, "NERR_AccountExpired", "This user account has expired."), + 2240 => new Code(code, "NERR_InvalidWorkstation", "The user is not allowed to log on from this workstation."), + 2241 => new Code(code, "NERR_InvalidLogonHours", "The user is not allowed to log on at this time."), + 2242 => new Code(code, "NERR_PasswordExpired", "The password of this user has expired."), + 2243 => new Code(code, "NERR_PasswordCantChange", "The password of this user cannot change."), + 2244 => new Code(code, "NERR_PasswordHistConflict", "This password cannot be used now."), + 2245 => new Code(code, "NERR_PasswordTooShort", "The password does not meet the password policy requirements. Check the minimum password length, password complexity, and password history requirements."), + 2246 => new Code(code, "NERR_PasswordTooRecent", "The password of this user is too recent to change."), + 2247 => new Code(code, "NERR_InvalidDatabase", "The security database is corrupted."), + 2248 => new Code(code, "NERR_DatabaseUpToDate", "No updates are necessary to this replicant network or local security database."), + 2249 => new Code(code, "NERR_SyncRequired", "This replicant database is outdated; synchronization is required."), + 2250 => new Code(code, "NERR_UseNotFound", "The network connection could not be found."), + 2251 => new Code(code, "NERR_BadAsgType", "This asg_type is invalid."), + 2252 => new Code(code, "NERR_DeviceIsShared", "This device is currently being shared."), + 2270 => new Code(code, "NERR_NoComputerName", "The computer name could not be added as a message alias. The name might already exist on the network."), + 2271 => new Code(code, "NERR_MsgAlreadyStarted", "The Messenger service is already started."), + 2272 => new Code(code, "NERR_MsgInitFailed", "The Messenger service failed to start."), + 2273 => new Code(code, "NERR_NameNotFound", "The message alias could not be found on the network."), + 2274 => new Code(code, "NERR_AlreadyForwarded", "This message alias has already been forwarded."), + 2275 => new Code(code, "NERR_AddForwarded", "This message alias has been added but is still forwarded."), + 2276 => new Code(code, "NERR_AlreadyExists", "This message alias already exists locally."), + 2277 => new Code(code, "NERR_TooManyNames", "The maximum number of added message aliases has been exceeded."), + 2278 => new Code(code, "NERR_DelComputerName", "The computer name could not be deleted."), + 2279 => new Code(code, "NERR_LocalForward", "Messages cannot be forwarded back to the same workstation."), + 2280 => new Code(code, "NERR_GrpMsgProcessor", "An error occurred in the domain message processor."), + 2281 => new Code(code, "NERR_PausedRemote", "The message was sent, but the recipient has paused the Messenger service."), + 2282 => new Code(code, "NERR_BadReceive", "The message was sent but not received."), + 2283 => new Code(code, "NERR_NameInUse", "The message alias is currently in use. Try again later."), + 2284 => new Code(code, "NERR_MsgNotStarted", "The Messenger service has not been started."), + 2285 => new Code(code, "NERR_NotLocalName", "The name is not on the local computer."), + 2286 => new Code(code, "NERR_NoForwardName", "The forwarded message alias could not be found on the network."), + 2287 => new Code(code, "NERR_RemoteFull", "The message alias table on the remote station is full."), + 2288 => new Code(code, "NERR_NameNotForwarded", "Messages for this alias are not currently being forwarded."), + 2289 => new Code(code, "NERR_TruncatedBroadcast", "The broadcast message was truncated."), + 2294 => new Code(code, "NERR_InvalidDevice", "This is an invalid device name."), + 2295 => new Code(code, "NERR_WriteFault", "A write fault occurred."), + 2297 => new Code(code, "NERR_DuplicateName", "A duplicate message alias exists on the network."), + 2298 => new Code(code, "NERR_DeleteLater", "This message alias will be deleted later."), + 2299 => new Code(code, "NERR_IncompleteDel", "The message alias was not successfully deleted from all networks."), + 2300 => new Code(code, "NERR_MultipleNets", "This operation is not supported on computers with multiple networks."), + 2310 => new Code(code, "NERR_NetNameNotFound", "This shared resource does not exist."), + 2311 => new Code(code, "NERR_DeviceNotShared", "This device is not shared."), + 2312 => new Code(code, "NERR_ClientNameNotFound", "A session does not exist with that computer name."), + 2314 => new Code(code, "NERR_FileIdNotFound", "There is not an open file with that identification number."), + 2315 => new Code(code, "NERR_ExecFailure", "A failure occurred when executing a remote administration command."), + 2316 => new Code(code, "NERR_TmpFile", "A failure occurred when opening a remote temporary file."), + 2317 => new Code(code, "NERR_TooMuchData", "The data returned from a remote administration command has been truncated to 64 KB."), + 2318 => new Code(code, "NERR_DeviceShareConflict", "This device cannot be shared as both a spooled and a nonspooled resource."), + 2319 => new Code(code, "NERR_BrowserTableIncomplete", "The information in the list of servers might be incorrect."), + 2320 => new Code(code, "NERR_NotLocalDomain", "The computer is not active in this domain."), + 2321 => new Code(code, "NERR_IsDfsShare", "The share must be removed from the Distributed File System (DFS) before it can be deleted."), + 2331 => new Code(code, "NERR_DevInvalidOpCode", "The operation is invalid for this device."), + 2332 => new Code(code, "NERR_DevNotFound", "This device cannot be shared."), + 2333 => new Code(code, "NERR_DevNotOpen", "This device was not open."), + 2334 => new Code(code, "NERR_BadQueueDevString", "This device name list is invalid."), + 2335 => new Code(code, "NERR_BadQueuePriority", "The queue priority is invalid."), + 2337 => new Code(code, "NERR_NoCommDevs", "There are no shared communication devices."), + 2338 => new Code(code, "NERR_QueueNotFound", "The queue you specified does not exist."), + 2340 => new Code(code, "NERR_BadDevString", "This list of devices is invalid."), + 2341 => new Code(code, "NERR_BadDev", "The requested device is invalid."), + 2342 => new Code(code, "NERR_InUseBySpooler", "This device is already in use by the spooler."), + 2343 => new Code(code, "NERR_CommDevInUse", "This device is already in use as a communication device."), + 2351 => new Code(code, "NERR_InvalidComputer", "This computer name is invalid."), + 2354 => new Code(code, "NERR_MaxLenExceeded", "The string and prefix specified are too long."), + 2356 => new Code(code, "NERR_BadComponent", "This path component is invalid."), + 2357 => new Code(code, "NERR_CantType", "Could not determine the type of input."), + 2362 => new Code(code, "NERR_TooManyEntries", "The buffer for types is not big enough."), + 2370 => new Code(code, "NERR_ProfileFileTooBig", "Profile files cannot exceed 64 KB."), + 2371 => new Code(code, "NERR_ProfileOffset", "The start offset is out of range."), + 2372 => new Code(code, "NERR_ProfileCleanup", "The system cannot delete current connections to network resources."), + 2373 => new Code(code, "NERR_ProfileUnknownCmd", "The system was unable to parse the command line in this file."), + 2374 => new Code(code, "NERR_ProfileLoadErr", "An error occurred while loading the profile file."), + 2375 => new Code(code, "NERR_ProfileSaveErr", "Errors occurred while saving the profile file. The profile was partially saved."), + 2377 => new Code(code, "NERR_LogOverflow", "Log file %1 is full."), + 2378 => new Code(code, "NERR_LogFileChanged", "This log file has changed between reads."), + 2379 => new Code(code, "NERR_LogFileCorrupt", "Log file %1 is corrupt."), + 2380 => new Code(code, "NERR_SourceIsDir", "The source path cannot be a directory."), + 2381 => new Code(code, "NERR_BadSource", "The source path is illegal."), + 2382 => new Code(code, "NERR_BadDest", "The destination path is illegal."), + 2383 => new Code(code, "NERR_DifferentServers", "The source and destination paths are on different servers."), + 2385 => new Code(code, "NERR_RunSrvPaused", "The Run server you requested is paused."), + 2389 => new Code(code, "NERR_ErrCommRunSrv", "An error occurred when communicating with a Run server."), + 2391 => new Code(code, "NERR_ErrorExecingGhost", "An error occurred when starting a background process."), + 2392 => new Code(code, "NERR_ShareNotFound", "The shared resource you are connected to could not be found."), + 2400 => new Code(code, "NERR_InvalidLana", "The LAN adapter number is invalid."), + 2401 => new Code(code, "NERR_OpenFiles", "There are open files on the connection."), + 2402 => new Code(code, "NERR_ActiveConns", "Active connections still exist."), + 2403 => new Code(code, "NERR_BadPasswordCore", "This share name or password is invalid."), + 2404 => new Code(code, "NERR_DevInUse", "The device is being accessed by an active process."), + 2405 => new Code(code, "NERR_LocalDrive", "The drive letter is in use locally."), + 2430 => new Code(code, "NERR_AlertExists", "The specified client is already registered for the specified event."), + 2431 => new Code(code, "NERR_TooManyAlerts", "The alert table is full."), + 2432 => new Code(code, "NERR_NoSuchAlert", "An invalid or nonexistent alert name was raised."), + 2433 => new Code(code, "NERR_BadRecipient", "The alert recipient is invalid."), + 2434 => new Code(code, "NERR_AcctLimitExceeded", "A user's session with this server has been deleted."), + 2440 => new Code(code, "NERR_InvalidLogSeek", "The log file does not contain the requested record number."), + 2450 => new Code(code, "NERR_BadUasConfig", "The user accounts database is not configured correctly."), + 2451 => new Code(code, "NERR_InvalidUASOp", "This operation is not permitted when the Net Logon service is running."), + 2452 => new Code(code, "NERR_LastAdmin", "This operation is not allowed on the last administrative account."), + 2453 => new Code(code, "NERR_DCNotFound", "Could not find the domain controller for this domain."), + 2454 => new Code(code, "NERR_LogonTrackingError", "Could not set logon information for this user."), + 2455 => new Code(code, "NERR_NetlogonNotStarted", "The Net Logon service has not been started."), + 2456 => new Code(code, "NERR_CanNotGrowUASFile", "Unable to add to the user accounts database."), + 2457 => new Code(code, "NERR_TimeDiffAtDC", "This server's clock is not synchronized with the PDC's clock."), + 2458 => new Code(code, "NERR_PasswordMismatch", "A password mismatch has been detected."), + 2460 => new Code(code, "NERR_NoSuchServer", "The server identification does not specify a valid server."), + 2461 => new Code(code, "NERR_NoSuchSession", "The session identification does not specify a valid session."), + 2462 => new Code(code, "NERR_NoSuchConnection", "The connection identification does not specify a valid connection."), + 2463 => new Code(code, "NERR_TooManyServers", "There is no space for another entry in the table of available servers."), + 2464 => new Code(code, "NERR_TooManySessions", "The server has reached the maximum number of sessions it supports."), + 2465 => new Code(code, "NERR_TooManyConnections", "The server has reached the maximum number of connections it supports."), + 2466 => new Code(code, "NERR_TooManyFiles", "The server cannot open more files because it has reached its maximum number."), + 2467 => new Code(code, "NERR_NoAlternateServers", "There are no alternate servers registered on this server."), + 2470 => new Code(code, "NERR_TryDownLevel", "Try the down-level (remote admin protocol) version of API instead."), + 2480 => new Code(code, "NERR_UPSDriverNotStarted", "The uninterruptible power supply (UPS) driver could not be accessed by the UPS service."), + 2481 => new Code(code, "NERR_UPSInvalidConfig", "The UPS service is not configured correctly."), + 2482 => new Code(code, "NERR_UPSInvalidCommPort", "The UPS service could not access the specified Comm Port."), + 2483 => new Code(code, "NERR_UPSSignalAsserted", "The UPS indicated a line fail or low battery situation. Service not started."), + 2484 => new Code(code, "NERR_UPSShutdownFailed", "The UPS service failed to perform a system shut down."), + 2500 => new Code(code, "NERR_BadDosRetCode", "The program below returned an MS-DOS error code."), + 2501 => new Code(code, "NERR_ProgNeedsExtraMem", "The program below needs more memory."), + 2502 => new Code(code, "NERR_BadDosFunction", "The program below called an unsupported MS-DOS function."), + 2503 => new Code(code, "NERR_RemoteBootFailed", "The workstation failed to boot."), + 2504 => new Code(code, "NERR_BadFileCheckSum", "The file below is corrupt."), + 2505 => new Code(code, "NERR_NoRplBootSystem", "No loader is specified in the boot-block definition file."), + 2506 => new Code(code, "NERR_RplLoadrNetBiosErr", "NetBIOS returned an error: The network control blocks (NCBs) and Server Message Block (SMB) are dumped above."), + 2507 => new Code(code, "NERR_RplLoadrDiskErr", "A disk I/O error occurred."), + 2508 => new Code(code, "NERR_ImageParamErr", "Image parameter substitution failed."), + 2509 => new Code(code, "NERR_TooManyImageParams", "Too many image parameters cross disk sector boundaries."), + 2510 => new Code(code, "NERR_NonDosFloppyUsed", "The image was not generated from an MS-DOS disk formatted with /S."), + 2511 => new Code(code, "NERR_RplBootRestart", "Remote boot will be restarted later."), + 2512 => new Code(code, "NERR_RplSrvrCallFailed", "The call to the Remoteboot server failed."), + 2513 => new Code(code, "NERR_CantConnectRplSrvr", "Cannot connect to the Remoteboot server."), + 2514 => new Code(code, "NERR_CantOpenImageFile", "Cannot open image file on the Remoteboot server."), + 2515 => new Code(code, "NERR_CallingRplSrvr", "Connecting to the Remoteboot server."), + 2516 => new Code(code, "NERR_StartingRplBoot", "Connecting to the Remoteboot server."), + 2517 => new Code(code, "NERR_RplBootServiceTerm", "Remote boot service was stopped, check the error log for the cause of the problem."), + 2518 => new Code(code, "NERR_RplBootStartFailed", "Remote boot startup failed; check the error log for the cause of the problem."), + 2519 => new Code(code, "NERR_RPL_CONNECTED", "A second connection to a Remoteboot resource is not allowed."), + 2550 => new Code(code, "NERR_BrowserConfiguredToNotRun", "The browser service was configured with MaintainServerList=No."), + 2610 => new Code(code, "NERR_RplNoAdaptersStarted", "Service failed to start because none of the network adapters started with this service."), + 2611 => new Code(code, "NERR_RplBadRegistry", "Service failed to start due to bad startup information in the registry."), + 2612 => new Code(code, "NERR_RplBadDatabase", "Service failed to start because its database is absent or corrupt."), + 2613 => new Code(code, "NERR_RplRplfilesShare", "Service failed to start because the RPLFILES share is absent."), + 2614 => new Code(code, "NERR_RplNotRplServer", "Service failed to start because the RPLUSER group is absent."), + 2615 => new Code(code, "NERR_RplCannotEnum", "Cannot enumerate service records."), + 2616 => new Code(code, "NERR_RplWkstaInfoCorrupted", "Workstation record information has been corrupted."), + 2617 => new Code(code, "NERR_RplWkstaNotFound", "Workstation record was not found."), + 2618 => new Code(code, "NERR_RplWkstaNameUnavailable", "Workstation name is in use by some other workstation."), + 2619 => new Code(code, "NERR_RplProfileInfoCorrupted", "Profile record information has been corrupted."), + 2620 => new Code(code, "NERR_RplProfileNotFound", "Profile record was not found."), + 2621 => new Code(code, "NERR_RplProfileNameUnavailable", "Profile name is in use by some other profile."), + 2622 => new Code(code, "NERR_RplProfileNotEmpty", "There are workstations using this profile."), + 2623 => new Code(code, "NERR_RplConfigInfoCorrupted", "Configuration record information has been corrupted."), + 2624 => new Code(code, "NERR_RplConfigNotFound", "Configuration record was not found."), + 2625 => new Code(code, "NERR_RplAdapterInfoCorrupted", "Adapter ID record information has been corrupted."), + 2626 => new Code(code, "NERR_RplInternal", "An internal service error has occurred."), + 2627 => new Code(code, "NERR_RplVendorInfoCorrupted", "Vendor ID record information has been corrupted."), + 2628 => new Code(code, "NERR_RplBootInfoCorrupted", "Boot block record information has been corrupted."), + 2629 => new Code(code, "NERR_RplWkstaNeedsUserAcct", "The user account for this workstation record is missing."), + 2630 => new Code(code, "NERR_RplNeedsRPLUSERAcct", "The RPLUSER local group could not be found."), + 2631 => new Code(code, "NERR_RplBootNotFound", "Boot block record was not found."), + 2632 => new Code(code, "NERR_RplIncompatibleProfile", "Chosen profile is incompatible with this workstation."), + 2633 => new Code(code, "NERR_RplAdapterNameUnavailable", "Chosen network adapter ID is in use by some other workstation."), + 2634 => new Code(code, "NERR_RplConfigNotEmpty", "There are profiles using this configuration."), + 2635 => new Code(code, "NERR_RplBootInUse", "There are workstations, profiles, or configurations using this boot block."), + 2636 => new Code(code, "NERR_RplBackupDatabase", "Service failed to back up the Remoteboot database."), + 2637 => new Code(code, "NERR_RplAdapterNotFound", "Adapter record was not found."), + 2638 => new Code(code, "NERR_RplVendorNotFound", "Vendor record was not found."), + 2639 => new Code(code, "NERR_RplVendorNameUnavailable", "Vendor name is in use by some other vendor record."), + 2640 => new Code(code, "NERR_RplBootNameUnavailable", "The boot name or vendor ID is in use by some other boot block record."), + 2641 => new Code(code, "NERR_RplConfigNameUnavailable", "The configuration name is in use by some other configuration."), + 2660 => new Code(code, "NERR_DfsInternalCorruption", "The internal database maintained by the DFS service is corrupt."), + 2661 => new Code(code, "NERR_DfsVolumeDataCorrupt", "One of the records in the internal DFS database is corrupt."), + 2662 => new Code(code, "NERR_DfsNoSuchVolume", "There is no DFS name whose entry path matches the input entry path."), + 2663 => new Code(code, "NERR_DfsVolumeAlreadyExists", "A root or link with the given name already exists."), + 2664 => new Code(code, "NERR_DfsAlreadyShared", "The server share specified is already shared in the DFS."), + 2665 => new Code(code, "NERR_DfsNoSuchShare", "The indicated server share does not support the indicated DFS namespace."), + 2666 => new Code(code, "NERR_DfsNotALeafVolume", "The operation is not valid in this portion of the namespace."), + 2667 => new Code(code, "NERR_DfsLeafVolume", "The operation is not valid in this portion of the namespace."), + 2668 => new Code(code, "NERR_DfsVolumeHasMultipleServers", "The operation is ambiguous because the link has multiple servers."), + 2669 => new Code(code, "NERR_DfsCantCreateJunctionPoint", "Unable to create a link."), + 2670 => new Code(code, "NERR_DfsServerNotDfsAware", "The server is not DFS-aware."), + 2671 => new Code(code, "NERR_DfsBadRenamePath", "The specified rename target path is invalid."), + 2672 => new Code(code, "NERR_DfsVolumeIsOffline", "The specified DFS link is offline."), + 2673 => new Code(code, "NERR_DfsNoSuchServer", "The specified server is not a server for this link."), + 2674 => new Code(code, "NERR_DfsCyclicalName", "A cycle in the DFS name was detected."), + 2675 => new Code(code, "NERR_DfsNotSupportedInServerDfs", "The operation is not supported on a server-based DFS."), + 2676 => new Code(code, "NERR_DfsDuplicateService", "This link is already supported by the specified server share."), + 2677 => new Code(code, "NERR_DfsCantRemoveLastServerShare", "Cannot remove the last server share supporting this root or link."), + 2678 => new Code(code, "NERR_DfsVolumeIsInterDfs", "The operation is not supported for an inter-DFS link."), + 2679 => new Code(code, "NERR_DfsInconsistent", "The internal state of the DFS Service has become inconsistent."), + 2680 => new Code(code, "NERR_DfsServerUpgraded", "The DFS Service has been installed on the specified server."), + 2681 => new Code(code, "NERR_DfsDataIsIdentical", "The DFS data being reconciled is identical."), + 2682 => new Code(code, "NERR_DfsCantRemoveDfsRoot", "The DFS root cannot be deleted. Uninstall DFS if required."), + 2683 => new Code(code, "NERR_DfsChildOrParentInDfs", "A child or parent directory of the share is already in a DFS."), + 2690 => new Code(code, "NERR_DfsInternalError", "DFS internal error."), + 2691 => new Code(code, "NERR_SetupAlreadyJoined", "This machine is already joined to a domain."), + 2692 => new Code(code, "NERR_SetupNotJoined", "This machine is not currently joined to a domain."), + 2693 => new Code(code, "NERR_SetupDomainController", "This machine is a domain controller and cannot be unjoined from a domain."), + 2694 => new Code(code, "NERR_DefaultJoinRequired", "The destination domain controller does not support creating machine accounts in organizational units (OUs)."), + 2695 => new Code(code, "NERR_InvalidWorkgroupName", "The specified workgroup name is invalid."), + 2696 => new Code(code, "NERR_NameUsesIncompatibleCodePage", "The specified computer name is incompatible with the default language used on the domain controller."), + 2697 => new Code(code, "NERR_ComputerAccountNotFound", "The specified computer account could not be found."), + 2698 => new Code(code, "NERR_PersonalSku", "This version of Windows cannot be joined to a domain."), + 2701 => new Code(code, "NERR_PasswordMustChange", "The password must change at the next logon."), + 2702 => new Code(code, "NERR_AccountLockedOut", "The account is locked out."), + 2703 => new Code(code, "NERR_PasswordTooLong", "The password is too long."), + 2704 => new Code(code, "NERR_PasswordNotComplexEnough", "The password does not meet the complexity policy."), + 2705 => new Code(code, "NERR_PasswordFilterError", "The password does not meet the requirements of the password filter DLLs."), + 3000 => new Code(code, "ERROR_UNKNOWN_PRINT_MONITOR", "The specified print monitor is unknown."), + 3001 => new Code(code, "ERROR_PRINTER_DRIVER_IN_USE", "The specified printer driver is currently in use."), + 3002 => new Code(code, "ERROR_SPOOL_FILE_NOT_FOUND", "The spool file was not found."), + 3003 => new Code(code, "ERROR_SPL_NO_STARTDOC", "A StartDocPrinter call was not issued."), + 3004 => new Code(code, "ERROR_SPL_NO_ADDJOB", "An AddJob call was not issued."), + 3005 => new Code(code, "ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED", "The specified print processor has already been installed."), + 3006 => new Code(code, "ERROR_PRINT_MONITOR_ALREADY_INSTALLED", "The specified print monitor has already been installed."), + 3007 => new Code(code, "ERROR_INVALID_PRINT_MONITOR", "The specified print monitor does not have the required functions."), + 3008 => new Code(code, "ERROR_PRINT_MONITOR_IN_USE", "The specified print monitor is currently in use."), + 3009 => new Code(code, "ERROR_PRINTER_HAS_JOBS_QUEUED", "The requested operation is not allowed when there are jobs queued to the printer."), + 3010 => new Code(code, "ERROR_SUCCESS_REBOOT_REQUIRED", "The requested operation is successful. Changes will not be effective until the system is rebooted."), + 3011 => new Code(code, "ERROR_SUCCESS_RESTART_REQUIRED", "The requested operation is successful. Changes will not be effective until the service is restarted."), + 3012 => new Code(code, "ERROR_PRINTER_NOT_FOUND", "No printers were found."), + 3013 => new Code(code, "ERROR_PRINTER_DRIVER_WARNED", "The printer driver is known to be unreliable."), + 3014 => new Code(code, "ERROR_PRINTER_DRIVER_BLOCKED", "The printer driver is known to harm the system."), + 3015 => new Code(code, "ERROR_PRINTER_DRIVER_PACKAGE_IN_USE", "The specified printer driver package is currently in use."), + 3016 => new Code(code, "ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND", "Unable to find a core driver package that is required by the printer driver package."), + 3017 => new Code(code, "ERROR_FAIL_REBOOT_REQUIRED", "The requested operation failed. A system reboot is required to roll back changes made."), + 3018 => new Code(code, "ERROR_FAIL_REBOOT_INITIATED", "The requested operation failed. A system reboot has been initiated to roll back changes made."), + 3019 => new Code(code, "ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED", "The specified printer driver was not found on the system and needs to be downloaded."), + 3022 => new Code(code, "ERROR_PRINTER_NOT_SHAREABLE", "The specified printer cannot be shared."), + 3950 => new Code(code, "ERROR_IO_REISSUE_AS_CACHED", "Reissue the given operation as a cached I/O operation."), + 4000 => new Code(code, "ERROR_WINS_INTERNAL", "Windows Internet Name Service (WINS) encountered an error while processing the command."), + 4001 => new Code(code, "ERROR_CAN_NOT_DEL_LOCAL_WINS", "The local WINS cannot be deleted."), + 4002 => new Code(code, "ERROR_STATIC_INIT", "The importation from the file failed."), + 4003 => new Code(code, "ERROR_INC_BACKUP", "The backup failed. Was a full backup done before?"), + 4004 => new Code(code, "ERROR_FULL_BACKUP", "The backup failed. Check the directory to which you are backing the database."), + 4005 => new Code(code, "ERROR_REC_NON_EXISTENT", "The name does not exist in the WINS database."), + 4006 => new Code(code, "ERROR_RPL_NOT_ALLOWED", "Replication with a nonconfigured partner is not allowed."), + 4050 => new Code(code, "PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED", "The version of the supplied content information is not supported."), + 4051 => new Code(code, "PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO", "The supplied content information is malformed."), + 4052 => new Code(code, "PEERDIST_ERROR_MISSING_DATA", "The requested data cannot be found in local or peer caches."), + 4053 => new Code(code, "PEERDIST_ERROR_NO_MORE", "No more data is available or required."), + 4054 => new Code(code, "PEERDIST_ERROR_NOT_INITIALIZED", "The supplied object has not been initialized."), + 4055 => new Code(code, "PEERDIST_ERROR_ALREADY_INITIALIZED", "The supplied object has already been initialized."), + 4056 => new Code(code, "PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS", "A shutdown operation is already in progress."), + 4057 => new Code(code, "PEERDIST_ERROR_INVALIDATED", "The supplied object has already been invalidated."), + 4058 => new Code(code, "PEERDIST_ERROR_ALREADY_EXISTS", "An element already exists and was not replaced."), + 4059 => new Code(code, "PEERDIST_ERROR_OPERATION_NOTFOUND", "Cannot cancel the requested operation as it has already been completed."), + 4060 => new Code(code, "PEERDIST_ERROR_ALREADY_COMPLETED", "Cannot perform the requested operation because it has already been carried out."), + 4061 => new Code(code, "PEERDIST_ERROR_OUT_OF_BOUNDS", "An operation accessed data beyond the bounds of valid data."), + 4062 => new Code(code, "PEERDIST_ERROR_VERSION_UNSUPPORTED", "The requested version is not supported."), + 4063 => new Code(code, "PEERDIST_ERROR_INVALID_CONFIGURATION", "A configuration value is invalid."), + 4064 => new Code(code, "PEERDIST_ERROR_NOT_LICENSED", "The SKU is not licensed."), + 4065 => new Code(code, "PEERDIST_ERROR_SERVICE_UNAVAILABLE", "PeerDist Service is still initializing and will be available shortly."), + 4100 => new Code(code, "ERROR_DHCP_ADDRESS_CONFLICT", "The Dynamic Host Configuration Protocol (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."), + 4200 => new Code(code, "ERROR_WMI_GUID_NOT_FOUND", "The GUID passed was not recognized as valid by a WMI data provider."), + 4201 => new Code(code, "ERROR_WMI_INSTANCE_NOT_FOUND", "The instance name passed was not recognized as valid by a WMI data provider."), + 4202 => new Code(code, "ERROR_WMI_ITEMID_NOT_FOUND", "The data item ID passed was not recognized as valid by a WMI data provider."), + 4203 => new Code(code, "ERROR_WMI_TRY_AGAIN", "The WMI request could not be completed and should be retried."), + 4204 => new Code(code, "ERROR_WMI_DP_NOT_FOUND", "The WMI data provider could not be located."), + 4205 => new Code(code, "ERROR_WMI_UNRESOLVED_INSTANCE_REF", "The WMI data provider references an instance set that has not been registered."), + 4206 => new Code(code, "ERROR_WMI_ALREADY_ENABLED", "The WMI data block or event notification has already been enabled."), + 4207 => new Code(code, "ERROR_WMI_GUID_DISCONNECTED", "The WMI data block is no longer available."), + 4208 => new Code(code, "ERROR_WMI_SERVER_UNAVAILABLE", "The WMI data service is not available."), + 4209 => new Code(code, "ERROR_WMI_DP_FAILED", "The WMI data provider failed to carry out the request."), + 4210 => new Code(code, "ERROR_WMI_INVALID_MOF", "The WMI Managed Object Format (MOF) information is not valid."), + 4211 => new Code(code, "ERROR_WMI_INVALID_REGINFO", "The WMI registration information is not valid."), + 4212 => new Code(code, "ERROR_WMI_ALREADY_DISABLED", "The WMI data block or event notification has already been disabled."), + 4213 => new Code(code, "ERROR_WMI_READ_ONLY", "The WMI data item or data block is read-only."), + 4214 => new Code(code, "ERROR_WMI_SET_FAILURE", "The WMI data item or data block could not be changed."), + 4300 => new Code(code, "ERROR_INVALID_MEDIA", "The media identifier does not represent a valid medium."), + 4301 => new Code(code, "ERROR_INVALID_LIBRARY", "The library identifier does not represent a valid library."), + 4302 => new Code(code, "ERROR_INVALID_MEDIA_POOL", "The media pool identifier does not represent a valid media pool."), + 4303 => new Code(code, "ERROR_DRIVE_MEDIA_MISMATCH", "The drive and medium are not compatible, or they exist in different libraries."), + 4304 => new Code(code, "ERROR_MEDIA_OFFLINE", "The medium currently exists in an offline library and must be online to perform this operation."), + 4305 => new Code(code, "ERROR_LIBRARY_OFFLINE", "The operation cannot be performed on an offline library."), + 4306 => new Code(code, "ERROR_EMPTY", "The library, drive, or media pool is empty."), + 4307 => new Code(code, "ERROR_NOT_EMPTY", "The library, drive, or media pool must be empty to perform this operation."), + 4308 => new Code(code, "ERROR_MEDIA_UNAVAILABLE", "No media is currently available in this media pool or library."), + 4309 => new Code(code, "ERROR_RESOURCE_DISABLED", "A resource required for this operation is disabled."), + 4310 => new Code(code, "ERROR_INVALID_CLEANER", "The media identifier does not represent a valid cleaner."), + 4311 => new Code(code, "ERROR_UNABLE_TO_CLEAN", "The drive cannot be cleaned or does not support cleaning."), + 4312 => new Code(code, "ERROR_OBJECT_NOT_FOUND", "The object identifier does not represent a valid object."), + 4313 => new Code(code, "ERROR_DATABASE_FAILURE", "Unable to read from or write to the database."), + 4314 => new Code(code, "ERROR_DATABASE_FULL", "The database is full."), + 4315 => new Code(code, "ERROR_MEDIA_INCOMPATIBLE", "The medium is not compatible with the device or media pool."), + 4316 => new Code(code, "ERROR_RESOURCE_NOT_PRESENT", "The resource required for this operation does not exist."), + 4317 => new Code(code, "ERROR_INVALID_OPERATION", "The operation identifier is not valid."), + 4318 => new Code(code, "ERROR_MEDIA_NOT_AVAILABLE", "The media is not mounted or ready for use."), + 4319 => new Code(code, "ERROR_DEVICE_NOT_AVAILABLE", "The device is not ready for use."), + 4320 => new Code(code, "ERROR_REQUEST_REFUSED", "The operator or administrator has refused the request."), + 4321 => new Code(code, "ERROR_INVALID_DRIVE_OBJECT", "The drive identifier does not represent a valid drive."), + 4322 => new Code(code, "ERROR_LIBRARY_FULL", "Library is full. No slot is available for use."), + 4323 => new Code(code, "ERROR_MEDIUM_NOT_ACCESSIBLE", "The transport cannot access the medium."), + 4324 => new Code(code, "ERROR_UNABLE_TO_LOAD_MEDIUM", "Unable to load the medium into the drive."), + 4325 => new Code(code, "ERROR_UNABLE_TO_INVENTORY_DRIVE", "Unable to retrieve the drive status."), + 4326 => new Code(code, "ERROR_UNABLE_TO_INVENTORY_SLOT", "Unable to retrieve the slot status."), + 4327 => new Code(code, "ERROR_UNABLE_TO_INVENTORY_TRANSPORT", "Unable to retrieve status about the transport."), + 4328 => new Code(code, "ERROR_TRANSPORT_FULL", "Cannot use the transport because it is already in use."), + 4329 => new Code(code, "ERROR_CONTROLLING_IEPORT", "Unable to open or close the inject/eject port."), + 4330 => new Code(code, "ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA", "Unable to eject the medium because it is in a drive."), + 4331 => new Code(code, "ERROR_CLEANER_SLOT_SET", "A cleaner slot is already reserved."), + 4332 => new Code(code, "ERROR_CLEANER_SLOT_NOT_SET", "A cleaner slot is not reserved."), + 4333 => new Code(code, "ERROR_CLEANER_CARTRIDGE_SPENT", "The cleaner cartridge has performed the maximum number of drive cleanings."), + 4334 => new Code(code, "ERROR_UNEXPECTED_OMID", "Unexpected on-medium identifier."), + 4335 => new Code(code, "ERROR_CANT_DELETE_LAST_ITEM", "The last remaining item in this group or resource cannot be deleted."), + 4336 => new Code(code, "ERROR_MESSAGE_EXCEEDS_MAX_SIZE", "The message provided exceeds the maximum size allowed for this parameter."), + 4337 => new Code(code, "ERROR_VOLUME_CONTAINS_SYS_FILES", "The volume contains system or paging files."), + 4338 => new Code(code, "ERROR_INDIGENOUS_TYPE", "The media type cannot be removed from this library because at least one drive in the library reports it can support this media type."), + 4339 => new Code(code, "ERROR_NO_SUPPORTING_DRIVES", "This offline media cannot be mounted on this system because no enabled drives are present that can be used."), + 4340 => new Code(code, "ERROR_CLEANER_CARTRIDGE_INSTALLED", "A cleaner cartridge is present in the tape library."), + 4341 => new Code(code, "ERROR_IEPORT_FULL", "Cannot use the IEport because it is not empty."), + 4350 => new Code(code, "ERROR_FILE_OFFLINE", "The remote storage service was not able to recall the file."), + 4351 => new Code(code, "ERROR_REMOTE_STORAGE_NOT_ACTIVE", "The remote storage service is not operational at this time."), + 4352 => new Code(code, "ERROR_REMOTE_STORAGE_MEDIA_ERROR", "The remote storage service encountered a media error."), + 4390 => new Code(code, "ERROR_NOT_A_REPARSE_POINT", "The file or directory is not a reparse point."), + 4391 => new Code(code, "ERROR_REPARSE_ATTRIBUTE_CONFLICT", "The reparse point attribute cannot be set because it conflicts with an existing attribute."), + 4392 => new Code(code, "ERROR_INVALID_REPARSE_DATA", "The data present in the reparse point buffer is invalid."), + 4393 => new Code(code, "ERROR_REPARSE_TAG_INVALID", "The tag present in the reparse point buffer is invalid."), + 4394 => new Code(code, "ERROR_REPARSE_TAG_MISMATCH", "There is a mismatch between the tag specified in the request and the tag present in the reparse point."), + 4500 => new Code(code, "ERROR_VOLUME_NOT_SIS_ENABLED", "Single Instance Storage (SIS) is not available on this volume."), + 5001 => new Code(code, "ERROR_DEPENDENT_RESOURCE_EXISTS", "The operation cannot be completed because other resources depend on this resource."), + 5002 => new Code(code, "ERROR_DEPENDENCY_NOT_FOUND", "The cluster resource dependency cannot be found."), + 5003 => new Code(code, "ERROR_DEPENDENCY_ALREADY_EXISTS", "The cluster resource cannot be made dependent on the specified resource because it is already dependent."), + 5004 => new Code(code, "ERROR_RESOURCE_NOT_ONLINE", "The cluster resource is not online."), + 5005 => new Code(code, "ERROR_HOST_NODE_NOT_AVAILABLE", "A cluster node is not available for this operation."), + 5006 => new Code(code, "ERROR_RESOURCE_NOT_AVAILABLE", "The cluster resource is not available."), + 5007 => new Code(code, "ERROR_RESOURCE_NOT_FOUND", "The cluster resource could not be found."), + 5008 => new Code(code, "ERROR_SHUTDOWN_CLUSTER", "The cluster is being shut down."), + 5009 => new Code(code, "ERROR_CANT_EVICT_ACTIVE_NODE", "A cluster node cannot be evicted from the cluster unless the node is down or it is the last node."), + 5010 => new Code(code, "ERROR_OBJECT_ALREADY_EXISTS", "The object already exists."), + 5011 => new Code(code, "ERROR_OBJECT_IN_LIST", "The object is already in the list."), + 5012 => new Code(code, "ERROR_GROUP_NOT_AVAILABLE", "The cluster group is not available for any new requests."), + 5013 => new Code(code, "ERROR_GROUP_NOT_FOUND", "The cluster group could not be found."), + 5014 => new Code(code, "ERROR_GROUP_NOT_ONLINE", "The operation could not be completed because the cluster group is not online."), + 5015 => new Code(code, "ERROR_HOST_NODE_NOT_RESOURCE_OWNER", "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."), + 5016 => new Code(code, "ERROR_HOST_NODE_NOT_GROUP_OWNER", "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."), + 5017 => new Code(code, "ERROR_RESMON_CREATE_FAILED", "The cluster resource could not be created in the specified resource monitor."), + 5018 => new Code(code, "ERROR_RESMON_ONLINE_FAILED", "The cluster resource could not be brought online by the resource monitor."), + 5019 => new Code(code, "ERROR_RESOURCE_ONLINE", "The operation could not be completed because the cluster resource is online."), + 5020 => new Code(code, "ERROR_QUORUM_RESOURCE", "The cluster resource could not be deleted or brought offline because it is the quorum resource."), + 5021 => new Code(code, "ERROR_NOT_QUORUM_CAPABLE", "The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource."), + 5022 => new Code(code, "ERROR_CLUSTER_SHUTTING_DOWN", "The cluster software is shutting down."), + 5023 => new Code(code, "ERROR_INVALID_STATE", "The group or resource is not in the correct state to perform the requested operation."), + 5024 => new Code(code, "ERROR_RESOURCE_PROPERTIES_STORED", "The properties were stored but not all changes will take effect until the next time the resource is brought online."), + 5025 => new Code(code, "ERROR_NOT_QUORUM_CLASS", "The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class."), + 5026 => new Code(code, "ERROR_CORE_RESOURCE", "The cluster resource could not be deleted because it is a core resource."), + 5027 => new Code(code, "ERROR_QUORUM_RESOURCE_ONLINE_FAILED", "The quorum resource failed to come online."), + 5028 => new Code(code, "ERROR_QUORUMLOG_OPEN_FAILED", "The quorum log could not be created or mounted successfully."), + 5029 => new Code(code, "ERROR_CLUSTERLOG_CORRUPT", "The cluster log is corrupt."), + 5030 => new Code(code, "ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE", "The record could not be written to the cluster log because it exceeds the maximum size."), + 5031 => new Code(code, "ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE", "The cluster log exceeds its maximum size."), + 5032 => new Code(code, "ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND", "No checkpoint record was found in the cluster log."), + 5033 => new Code(code, "ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE", "The minimum required disk space needed for logging is not available."), + 5034 => new Code(code, "ERROR_QUORUM_OWNER_ALIVE", "The cluster node failed to take control of the quorum resource because the resource is owned by another active node."), + 5035 => new Code(code, "ERROR_NETWORK_NOT_AVAILABLE", "A cluster network is not available for this operation."), + 5036 => new Code(code, "ERROR_NODE_NOT_AVAILABLE", "A cluster node is not available for this operation."), + 5037 => new Code(code, "ERROR_ALL_NODES_NOT_AVAILABLE", "All cluster nodes must be running to perform this operation."), + 5038 => new Code(code, "ERROR_RESOURCE_FAILED", "A cluster resource failed."), + 5039 => new Code(code, "ERROR_CLUSTER_INVALID_NODE", "The cluster node is not valid."), + 5040 => new Code(code, "ERROR_CLUSTER_NODE_EXISTS", "The cluster node already exists."), + 5041 => new Code(code, "ERROR_CLUSTER_JOIN_IN_PROGRESS", "A node is in the process of joining the cluster."), + 5042 => new Code(code, "ERROR_CLUSTER_NODE_NOT_FOUND", "The cluster node was not found."), + 5043 => new Code(code, "ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND", "The cluster local node information was not found."), + 5044 => new Code(code, "ERROR_CLUSTER_NETWORK_EXISTS", "The cluster network already exists."), + 5045 => new Code(code, "ERROR_CLUSTER_NETWORK_NOT_FOUND", "The cluster network was not found."), + 5046 => new Code(code, "ERROR_CLUSTER_NETINTERFACE_EXISTS", "The cluster network interface already exists."), + 5047 => new Code(code, "ERROR_CLUSTER_NETINTERFACE_NOT_FOUND", "The cluster network interface was not found."), + 5048 => new Code(code, "ERROR_CLUSTER_INVALID_REQUEST", "The cluster request is not valid for this object."), + 5049 => new Code(code, "ERROR_CLUSTER_INVALID_NETWORK_PROVIDER", "The cluster network provider is not valid."), + 5050 => new Code(code, "ERROR_CLUSTER_NODE_DOWN", "The cluster node is down."), + 5051 => new Code(code, "ERROR_CLUSTER_NODE_UNREACHABLE", "The cluster node is not reachable."), + 5052 => new Code(code, "ERROR_CLUSTER_NODE_NOT_MEMBER", "The cluster node is not a member of the cluster."), + 5053 => new Code(code, "ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS", "A cluster join operation is not in progress."), + 5054 => new Code(code, "ERROR_CLUSTER_INVALID_NETWORK", "The cluster network is not valid."), + 5056 => new Code(code, "ERROR_CLUSTER_NODE_UP", "The cluster node is up."), + 5057 => new Code(code, "ERROR_CLUSTER_IPADDR_IN_USE", "The cluster IP address is already in use."), + 5058 => new Code(code, "ERROR_CLUSTER_NODE_NOT_PAUSED", "The cluster node is not paused."), + 5059 => new Code(code, "ERROR_CLUSTER_NO_SECURITY_CONTEXT", "No cluster security context is available."), + 5060 => new Code(code, "ERROR_CLUSTER_NETWORK_NOT_INTERNAL", "The cluster network is not configured for internal cluster communication."), + 5061 => new Code(code, "ERROR_CLUSTER_NODE_ALREADY_UP", "The cluster node is already up."), + 5062 => new Code(code, "ERROR_CLUSTER_NODE_ALREADY_DOWN", "The cluster node is already down."), + 5063 => new Code(code, "ERROR_CLUSTER_NETWORK_ALREADY_ONLINE", "The cluster network is already online."), + 5064 => new Code(code, "ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE", "The cluster network is already offline."), + 5065 => new Code(code, "ERROR_CLUSTER_NODE_ALREADY_MEMBER", "The cluster node is already a member of the cluster."), + 5066 => new Code(code, "ERROR_CLUSTER_LAST_INTERNAL_NETWORK", "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."), + 5067 => new Code(code, "ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS", "One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network."), + 5068 => new Code(code, "ERROR_INVALID_OPERATION_ON_QUORUM", "This operation cannot be performed on the cluster resource because it is the quorum resource. This quorum resource cannot be brought offline and its possible owners list cannot be modified."), + 5069 => new Code(code, "ERROR_DEPENDENCY_NOT_ALLOWED", "The cluster quorum resource is not allowed to have any dependencies."), + 5070 => new Code(code, "ERROR_CLUSTER_NODE_PAUSED", "The cluster node is paused."), + 5071 => new Code(code, "ERROR_NODE_CANT_HOST_RESOURCE", "The cluster resource cannot be brought online. The owner node cannot run this resource."), + 5072 => new Code(code, "ERROR_CLUSTER_NODE_NOT_READY", "The cluster node is not ready to perform the requested operation."), + 5073 => new Code(code, "ERROR_CLUSTER_NODE_SHUTTING_DOWN", "The cluster node is shutting down."), + 5074 => new Code(code, "ERROR_CLUSTER_JOIN_ABORTED", "The cluster join operation was aborted."), + 5075 => new Code(code, "ERROR_CLUSTER_INCOMPATIBLE_VERSIONS", "The cluster join operation failed due to incompatible software versions between the joining node and its sponsor."), + 5076 => new Code(code, "ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED", "This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor."), + 5077 => new Code(code, "ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED", "The system configuration changed during the cluster join or form operation. The join or form operation was aborted."), + 5078 => new Code(code, "ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND", "The specified resource type was not found."), + 5079 => new Code(code, "ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED", "The specified node does not support a resource of this type. This might be due to version inconsistencies or due to the absence of the resource DLL on this node."), + 5080 => new Code(code, "ERROR_CLUSTER_RESNAME_NOT_FOUND", "The specified resource name is not supported by this resource DLL. This might be due to a bad (or changed) name supplied to the resource DLL."), + 5081 => new Code(code, "ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED", "No authentication package could be registered with the RPC server."), + 5082 => new Code(code, "ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST", "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."), + 5083 => new Code(code, "ERROR_CLUSTER_DATABASE_SEQMISMATCH", "The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This can happen during a join operation if the cluster database was changing during the join."), + 5084 => new Code(code, "ERROR_RESMON_INVALID_STATE", "The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This can happen if the resource is in a pending state."), + 5085 => new Code(code, "ERROR_CLUSTER_GUM_NOT_LOCKER", "A non-locker code received a request to reserve the lock for making global updates."), + 5086 => new Code(code, "ERROR_QUORUM_DISK_NOT_FOUND", "The quorum disk could not be located by the cluster service."), + 5087 => new Code(code, "ERROR_DATABASE_BACKUP_CORRUPT", "The backed-up cluster database is possibly corrupt."), + 5088 => new Code(code, "ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT", "A DFS root already exists in this cluster node."), + 5089 => new Code(code, "ERROR_RESOURCE_PROPERTY_UNCHANGEABLE", "An attempt to modify a resource property failed because it conflicts with another existing property."), + 5890 => new Code(code, "ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE", "An operation was attempted that is incompatible with the current membership state of the node."), + 5891 => new Code(code, "ERROR_CLUSTER_QUORUMLOG_NOT_FOUND", "The quorum resource does not contain the quorum log."), + 5892 => new Code(code, "ERROR_CLUSTER_MEMBERSHIP_HALT", "The membership engine requested shutdown of the cluster service on this node."), + 5893 => new Code(code, "ERROR_CLUSTER_INSTANCE_ID_MISMATCH", "The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node."), + 5894 => new Code(code, "ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP", "A matching cluster network for the specified IP address could not be found."), + 5895 => new Code(code, "ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH", "The actual data type of the property did not match the expected data type of the property."), + 5896 => new Code(code, "ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP", "The cluster node was evicted from the cluster successfully, but the node was not cleaned up. To determine what clean-up steps failed and how to recover, see the Failover Clustering application event log using Event Viewer."), + 5897 => new Code(code, "ERROR_CLUSTER_PARAMETER_MISMATCH", "Two or more parameter values specified for a resource's properties are in conflict."), + 5898 => new Code(code, "ERROR_NODE_CANNOT_BE_CLUSTERED", "This computer cannot be made a member of a cluster."), + 5899 => new Code(code, "ERROR_CLUSTER_WRONG_OS_VERSION", "This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed."), + 5900 => new Code(code, "ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME", "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."), + 5901 => new Code(code, "ERROR_CLUSCFG_ALREADY_COMMITTED", "The cluster configuration action has already been committed."), + 5902 => new Code(code, "ERROR_CLUSCFG_ROLLBACK_FAILED", "The cluster configuration action could not be rolled back."), + 5903 => new Code(code, "ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT", "The drive letter assigned to a system disk on one node conflicted with the drive letter assigned to a disk on another node."), + 5904 => new Code(code, "ERROR_CLUSTER_OLD_VERSION", "One or more nodes in the cluster are running a version of Windows that does not support this operation."), + 5905 => new Code(code, "ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME", "The name of the corresponding computer account does not match the network name for this resource."), + 5906 => new Code(code, "ERROR_CLUSTER_NO_NET_ADAPTERS", "No network adapters are available."), + 5907 => new Code(code, "ERROR_CLUSTER_POISONED", "The cluster node has been poisoned."), + 5908 => new Code(code, "ERROR_CLUSTER_GROUP_MOVING", "The group is unable to accept the request because it is moving to another node."), + 5909 => new Code(code, "ERROR_CLUSTER_RESOURCE_TYPE_BUSY", "The resource type cannot accept the request because it is too busy performing another operation."), + 5910 => new Code(code, "ERROR_RESOURCE_CALL_TIMED_OUT", "The call to the cluster resource DLL timed out."), + 5911 => new Code(code, "ERROR_INVALID_CLUSTER_IPV6_ADDRESS", "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."), + 5912 => new Code(code, "ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION", "An internal cluster error occurred. A call to an invalid function was attempted."), + 5913 => new Code(code, "ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS", "A parameter value is out of acceptable range."), + 5914 => new Code(code, "ERROR_CLUSTER_PARTIAL_SEND", "A network error occurred while sending data to another node in the cluster. The number of bytes transmitted was less than required."), + 5915 => new Code(code, "ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION", "An invalid cluster registry operation was attempted."), + 5916 => new Code(code, "ERROR_CLUSTER_INVALID_STRING_TERMINATION", "An input string of characters is not properly terminated."), + 5917 => new Code(code, "ERROR_CLUSTER_INVALID_STRING_FORMAT", "An input string of characters is not in a valid format for the data it represents."), + 5918 => new Code(code, "ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS", "An internal cluster error occurred. A cluster database transaction was attempted while a transaction was already in progress."), + 5919 => new Code(code, "ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS", "An internal cluster error occurred. There was an attempt to commit a cluster database transaction while no transaction was in progress."), + 5920 => new Code(code, "ERROR_CLUSTER_NULL_DATA", "An internal cluster error occurred. Data was not properly initialized."), + 5921 => new Code(code, "ERROR_CLUSTER_PARTIAL_READ", "An error occurred while reading from a stream of data. An unexpected number of bytes was returned."), + 5922 => new Code(code, "ERROR_CLUSTER_PARTIAL_WRITE", "An error occurred while writing to a stream of data. The required number of bytes could not be written."), + 5923 => new Code(code, "ERROR_CLUSTER_CANT_DESERIALIZE_DATA", "An error occurred while deserializing a stream of cluster data."), + 5924 => new Code(code, "ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT", "One or more property values for this resource are in conflict with one or more property values associated with its dependent resources."), + 5925 => new Code(code, "ERROR_CLUSTER_NO_QUORUM", "A quorum of cluster nodes was not present to form a cluster."), + 5926 => new Code(code, "ERROR_CLUSTER_INVALID_IPV6_NETWORK", "The cluster network is not valid for an IPv6 address resource, or it does not match the configured address."), + 5927 => new Code(code, "ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK", "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."), + 5928 => new Code(code, "ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP", "Quorum resource cannot reside in the available storage group."), + 6000 => new Code(code, "ERROR_ENCRYPTION_FAILED", "The specified file could not be encrypted."), + 6001 => new Code(code, "ERROR_DECRYPTION_FAILED", "The specified file could not be decrypted."), + 6002 => new Code(code, "ERROR_FILE_ENCRYPTED", "The specified file is encrypted and the user does not have the ability to decrypt it."), + 6003 => new Code(code, "ERROR_NO_RECOVERY_POLICY", "There is no valid encryption recovery policy configured for this system."), + 6004 => new Code(code, "ERROR_NO_EFS", "The required encryption driver is not loaded for this system."), + 6005 => new Code(code, "ERROR_WRONG_EFS", "The file was encrypted with a different encryption driver than is currently loaded."), + 6006 => new Code(code, "ERROR_NO_USER_KEYS", "There are no Encrypting File System (EFS) keys defined for the user."), + 6007 => new Code(code, "ERROR_FILE_NOT_ENCRYPTED", "The specified file is not encrypted."), + 6008 => new Code(code, "ERROR_NOT_EXPORT_FORMAT", "The specified file is not in the defined EFS export format."), + 6009 => new Code(code, "ERROR_FILE_READ_ONLY", "The specified file is read-only."), + 6010 => new Code(code, "ERROR_DIR_EFS_DISALLOWED", "The directory has been disabled for encryption."), + 6011 => new Code(code, "ERROR_EFS_SERVER_NOT_TRUSTED", "The server is not trusted for remote encryption operation."), + 6012 => new Code(code, "ERROR_BAD_RECOVERY_POLICY", "Recovery policy configured for this system contains invalid recovery certificate."), + 6013 => new Code(code, "ERROR_EFS_ALG_BLOB_TOO_BIG", "The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file."), + 6014 => new Code(code, "ERROR_VOLUME_NOT_SUPPORT_EFS", "The disk partition does not support file encryption."), + 6015 => new Code(code, "ERROR_EFS_DISABLED", "This machine is disabled for file encryption."), + 6016 => new Code(code, "ERROR_EFS_VERSION_NOT_SUPPORT", "A newer system is required to decrypt this encrypted file."), + 6017 => new Code(code, "ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE", "The remote server sent an invalid response for a file being opened with client-side encryption."), + 6018 => new Code(code, "ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER", "Client-side encryption is not supported by the remote server even though it claims to support it."), + 6019 => new Code(code, "ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE", "File is encrypted and should be opened in client-side encryption mode."), + 6020 => new Code(code, "ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE", "A new encrypted file is being created and a $EFS needs to be provided."), + 6021 => new Code(code, "ERROR_CS_ENCRYPTION_FILE_NOT_CSE", "The SMB client requested a client-side extension (CSE) file system control (FSCTL) on a non-CSE file."), + 6118 => new Code(code, "ERROR_NO_BROWSER_SERVERS_FOUND", "The list of servers for this workgroup is not currently available"), + 6200 => new Code(code, "SCHED_E_SERVICE_NOT_LOCALSYSTEM", "The Task Scheduler service must be configured to run in the System account to function properly. Individual tasks can be configured to run in other accounts."), + 6600 => new Code(code, "ERROR_LOG_SECTOR_INVALID", "The log service encountered an invalid log sector."), + 6601 => new Code(code, "ERROR_LOG_SECTOR_PARITY_INVALID", "The log service encountered a log sector with invalid block parity."), + 6602 => new Code(code, "ERROR_LOG_SECTOR_REMAPPED", "The log service encountered a remapped log sector."), + 6603 => new Code(code, "ERROR_LOG_BLOCK_INCOMPLETE", "The log service encountered a partial or incomplete log block."), + 6604 => new Code(code, "ERROR_LOG_INVALID_RANGE", "The log service encountered an attempt to access data outside the active log range."), + 6605 => new Code(code, "ERROR_LOG_BLOCKS_EXHAUSTED", "The log service user marshaling buffers are exhausted."), + 6606 => new Code(code, "ERROR_LOG_READ_CONTEXT_INVALID", "The log service encountered an attempt to read from a marshaling area with an invalid read context."), + 6607 => new Code(code, "ERROR_LOG_RESTART_INVALID", "The log service encountered an invalid log restart area."), + 6608 => new Code(code, "ERROR_LOG_BLOCK_VERSION", "The log service encountered an invalid log block version."), + 6609 => new Code(code, "ERROR_LOG_BLOCK_INVALID", "The log service encountered an invalid log block."), + 6610 => new Code(code, "ERROR_LOG_READ_MODE_INVALID", "The log service encountered an attempt to read the log with an invalid read mode."), + 6611 => new Code(code, "ERROR_LOG_NO_RESTART", "The log service encountered a log stream with no restart area."), + 6612 => new Code(code, "ERROR_LOG_METADATA_CORRUPT", "The log service encountered a corrupted metadata file."), + 6613 => new Code(code, "ERROR_LOG_METADATA_INVALID", "The log service encountered a metadata file that could not be created by the log file system."), + 6614 => new Code(code, "ERROR_LOG_METADATA_INCONSISTENT", "The log service encountered a metadata file with inconsistent data."), + 6615 => new Code(code, "ERROR_LOG_RESERVATION_INVALID", "The log service encountered an attempt to erroneous allocate or dispose reservation space."), + 6616 => new Code(code, "ERROR_LOG_CANT_DELETE", "The log service cannot delete a log file or file system container."), + 6617 => new Code(code, "ERROR_LOG_CONTAINER_LIMIT_EXCEEDED", "The log service has reached the maximum allowable containers allocated to a log file."), + 6618 => new Code(code, "ERROR_LOG_START_OF_LOG", "The log service has attempted to read or write backward past the start of the log."), + 6619 => new Code(code, "ERROR_LOG_POLICY_ALREADY_INSTALLED", "The log policy could not be installed because a policy of the same type is already present."), + 6620 => new Code(code, "ERROR_LOG_POLICY_NOT_INSTALLED", "The log policy in question was not installed at the time of the request."), + 6621 => new Code(code, "ERROR_LOG_POLICY_INVALID", "The installed set of policies on the log is invalid."), + 6622 => new Code(code, "ERROR_LOG_POLICY_CONFLICT", "A policy on the log in question prevented the operation from completing."), + 6623 => new Code(code, "ERROR_LOG_PINNED_ARCHIVE_TAIL", "Log space cannot be reclaimed because the log is pinned by the archive tail."), + 6624 => new Code(code, "ERROR_LOG_RECORD_NONEXISTENT", "The log record is not a record in the log file."), + 6625 => new Code(code, "ERROR_LOG_RECORDS_RESERVED_INVALID", "The number of reserved log records or the adjustment of the number of reserved log records is invalid."), + 6626 => new Code(code, "ERROR_LOG_SPACE_RESERVED_INVALID", "The reserved log space or the adjustment of the log space is invalid."), + 6627 => new Code(code, "ERROR_LOG_TAIL_INVALID", "A new or existing archive tail or base of the active log is invalid."), + 6628 => new Code(code, "ERROR_LOG_FULL", "The log space is exhausted."), + 6629 => new Code(code, "ERROR_COULD_NOT_RESIZE_LOG", "The log could not be set to the requested size."), + 6630 => new Code(code, "ERROR_LOG_MULTIPLEXED", "The log is multiplexed; no direct writes to the physical log are allowed."), + 6631 => new Code(code, "ERROR_LOG_DEDICATED", "The operation failed because the log is a dedicated log."), + 6632 => new Code(code, "ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS", "The operation requires an archive context."), + 6633 => new Code(code, "ERROR_LOG_ARCHIVE_IN_PROGRESS", "Log archival is in progress."), + 6634 => new Code(code, "ERROR_LOG_EPHEMERAL", "The operation requires a non-ephemeral log, but the log is ephemeral."), + 6635 => new Code(code, "ERROR_LOG_NOT_ENOUGH_CONTAINERS", "The log must have at least two containers before it can be read from or written to."), + 6636 => new Code(code, "ERROR_LOG_CLIENT_ALREADY_REGISTERED", "A log client has already registered on the stream."), + 6637 => new Code(code, "ERROR_LOG_CLIENT_NOT_REGISTERED", "A log client has not been registered on the stream."), + 6638 => new Code(code, "ERROR_LOG_FULL_HANDLER_IN_PROGRESS", "A request has already been made to handle the log full condition."), + 6639 => new Code(code, "ERROR_LOG_CONTAINER_READ_FAILED", "The log service encountered an error when attempting to read from a log container."), + 6640 => new Code(code, "ERROR_LOG_CONTAINER_WRITE_FAILED", "The log service encountered an error when attempting to write to a log container."), + 6641 => new Code(code, "ERROR_LOG_CONTAINER_OPEN_FAILED", "The log service encountered an error when attempting to open a log container."), + 6642 => new Code(code, "ERROR_LOG_CONTAINER_STATE_INVALID", "The log service encountered an invalid container state when attempting a requested action."), + 6643 => new Code(code, "ERROR_LOG_STATE_INVALID", "The log service is not in the correct state to perform a requested action."), + 6644 => new Code(code, "ERROR_LOG_PINNED", "The log space cannot be reclaimed because the log is pinned."), + 6645 => new Code(code, "ERROR_LOG_METADATA_FLUSH_FAILED", "The log metadata flush failed."), + 6646 => new Code(code, "ERROR_LOG_INCONSISTENT_SECURITY", "Security on the log and its containers is inconsistent."), + 6647 => new Code(code, "ERROR_LOG_APPENDED_FLUSH_FAILED", "Records were appended to the log or reservation changes were made, but the log could not be flushed."), + 6648 => new Code(code, "ERROR_LOG_PINNED_RESERVATION", "The log is pinned due to reservation consuming most of the log space. Free some reserved records to make space available."), + 6700 => new Code(code, "ERROR_INVALID_TRANSACTION", "The transaction handle associated with this operation is not valid."), + 6701 => new Code(code, "ERROR_TRANSACTION_NOT_ACTIVE", "The requested operation was made in the context of a transaction that is no longer active."), + 6702 => new Code(code, "ERROR_TRANSACTION_REQUEST_NOT_VALID", "The requested operation is not valid on the transaction object in its current state."), + 6703 => new Code(code, "ERROR_TRANSACTION_NOT_REQUESTED", "The caller has called a response API, but the response is not expected because the transaction manager did not issue the corresponding request to the caller."), + 6704 => new Code(code, "ERROR_TRANSACTION_ALREADY_ABORTED", "It is too late to perform the requested operation because the transaction has already been aborted."), + 6705 => new Code(code, "ERROR_TRANSACTION_ALREADY_COMMITTED", "It is too late to perform the requested operation because the transaction has already been committed."), + 6706 => new Code(code, "ERROR_TM_INITIALIZATION_FAILED", "The transaction manager was unable to be successfully initialized. Transacted operations are not supported."), + 6707 => new Code(code, "ERROR_RESOURCEMANAGER_READ_ONLY", "The specified resource manager made no changes or updates to the resource under this transaction."), + 6708 => new Code(code, "ERROR_TRANSACTION_NOT_JOINED", "The resource manager has attempted to prepare a transaction that it has not successfully joined."), + 6709 => new Code(code, "ERROR_TRANSACTION_SUPERIOR_EXISTS", "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 allowed."), + 6710 => new Code(code, "ERROR_CRM_PROTOCOL_ALREADY_EXISTS", "The resource manager tried to register a protocol that already exists."), + 6711 => new Code(code, "ERROR_TRANSACTION_PROPAGATION_FAILED", "The attempt to propagate the transaction failed."), + 6712 => new Code(code, "ERROR_CRM_PROTOCOL_NOT_FOUND", "The requested propagation protocol was not registered as a CRM."), + 6713 => new Code(code, "ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER", "The buffer passed in to PushTransaction or PullTransaction is not in a valid format."), + 6714 => new Code(code, "ERROR_CURRENT_TRANSACTION_NOT_VALID", "The current transaction context associated with the thread is not a valid handle to a transaction object."), + 6715 => new Code(code, "ERROR_TRANSACTION_NOT_FOUND", "The specified transaction object could not be opened because it was not found."), + 6716 => new Code(code, "ERROR_RESOURCEMANAGER_NOT_FOUND", "The specified resource manager object could not be opened because it was not found."), + 6717 => new Code(code, "ERROR_ENLISTMENT_NOT_FOUND", "The specified enlistment object could not be opened because it was not found."), + 6718 => new Code(code, "ERROR_TRANSACTIONMANAGER_NOT_FOUND", "The specified transaction manager object could not be opened because it was not found."), + 6719 => new Code(code, "ERROR_TRANSACTIONMANAGER_NOT_ONLINE", "The specified resource manager was unable to create an enlistment because its associated transaction manager is not online."), + 6720 => new Code(code, "ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION", "The specified transaction manager was unable to create the objects contained in its log file in the ObjectB namespace. Therefore, the transaction manager was unable to recover."), + 6800 => new Code(code, "ERROR_TRANSACTIONAL_CONFLICT", "The function attempted to use a name that is reserved for use by another transaction."), + 6801 => new Code(code, "ERROR_RM_NOT_ACTIVE", "Transaction support within the specified file system resource manager is not started or was shut down due to an error."), + 6802 => new Code(code, "ERROR_RM_METADATA_CORRUPT", "The metadata of the resource manager has been corrupted. The resource manager will not function."), + 6803 => new Code(code, "ERROR_DIRECTORY_NOT_RM", "The specified directory does not contain a resource manager."), + 6805 => new Code(code, "ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE", "The remote server or share does not support transacted file operations."), + 6806 => new Code(code, "ERROR_LOG_RESIZE_INVALID_SIZE", "The requested log size is invalid."), + 6807 => new Code(code, "ERROR_OBJECT_NO_LONGER_EXISTS", "The object (file, stream, link) corresponding to the handle has been deleted by a transaction savepoint rollback."), + 6808 => new Code(code, "ERROR_STREAM_MINIVERSION_NOT_FOUND", "The specified file miniversion was not found for this transacted file open."), + 6809 => new Code(code, "ERROR_STREAM_MINIVERSION_NOT_VALID", "The specified file miniversion was found but has been invalidated. The most likely cause is a transaction savepoint rollback."), + 6810 => new Code(code, "ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION", "A miniversion can only be opened in the context of the transaction that created it."), + 6811 => new Code(code, "ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT", "It is not possible to open a miniversion with modify access."), + 6812 => new Code(code, "ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS", "It is not possible to create any more miniversions for this stream."), + 6814 => new Code(code, "ERROR_REMOTE_FILE_VERSION_MISMATCH", "The remote server sent mismatching version numbers or FID for a file opened with transactions."), + 6815 => new Code(code, "ERROR_HANDLE_NO_LONGER_VALID", "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."), + 6816 => new Code(code, "ERROR_NO_TXF_METADATA", "There is no transaction metadata on the file."), + 6817 => new Code(code, "ERROR_LOG_CORRUPTION_DETECTED", "The log data is corrupt."), + 6818 => new Code(code, "ERROR_CANT_RECOVER_WITH_HANDLE_OPEN", "The file cannot be recovered because a handle is still open on it."), + 6819 => new Code(code, "ERROR_RM_DISCONNECTED", "The transaction outcome is unavailable because the resource manager responsible for it is disconnected."), + 6820 => new Code(code, "ERROR_ENLISTMENT_NOT_SUPERIOR", "The request was rejected because the enlistment in question is not a superior enlistment."), + 6821 => new Code(code, "ERROR_RECOVERY_NOT_NEEDED", "The transactional resource manager is already consistent. Recovery is not needed."), + 6822 => new Code(code, "ERROR_RM_ALREADY_STARTED", "The transactional resource manager has already been started."), + 6823 => new Code(code, "ERROR_FILE_IDENTITY_NOT_PERSISTENT", "The file cannot be opened in a transaction because its identity depends on the outcome of an unresolved transaction."), + 6824 => new Code(code, "ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY", "The operation cannot be performed because another transaction is depending on the fact that this property will not change."), + 6825 => new Code(code, "ERROR_CANT_CROSS_RM_BOUNDARY", "The operation would involve a single file with two transactional resource managers and is therefore not allowed."), + 6826 => new Code(code, "ERROR_TXF_DIR_NOT_EMPTY", "The $Txf directory must be empty for this operation to succeed."), + 6827 => new Code(code, "ERROR_INDOUBT_TRANSACTIONS_EXIST", "The operation would leave a transactional resource manager in an inconsistent state and is, therefore, not allowed."), + 6828 => new Code(code, "ERROR_TM_VOLATILE", "The operation could not be completed because the transaction manager does not have a log."), + 6829 => new Code(code, "ERROR_ROLLBACK_TIMER_EXPIRED", "A rollback could not be scheduled because a previously scheduled rollback has already been executed or is queued for execution."), + 6830 => new Code(code, "ERROR_TXF_ATTRIBUTE_CORRUPT", "The transactional metadata attribute on the file or directory is corrupt and unreadable."), + 6831 => new Code(code, "ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION", "The encryption operation could not be completed because a transaction is active."), + 6832 => new Code(code, "ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED", "This object is not allowed to be opened in a transaction."), + 6833 => new Code(code, "ERROR_LOG_GROWTH_FAILED", "An attempt to create space in the transactional resource manager's log failed. The failure status has been recorded in the event log."), + 6834 => new Code(code, "ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE", "Memory mapping (creating a mapped section) to a remote file under a transaction is not supported."), + 6835 => new Code(code, "ERROR_TXF_METADATA_ALREADY_PRESENT", "Transaction metadata is already present on this file and cannot be superseded."), + 6836 => new Code(code, "ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET", "A transaction scope could not be entered because the scope handler has not been initialized."), + 6837 => new Code(code, "ERROR_TRANSACTION_REQUIRED_PROMOTION", "Promotion was required to allow the resource manager to enlist, but the transaction was set to disallow it."), + 6838 => new Code(code, "ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION", "This file is open for modification in an unresolved transaction and can be opened for execution only by a transacted reader."), + 6839 => new Code(code, "ERROR_TRANSACTIONS_NOT_FROZEN", "The request to thaw frozen transactions was ignored because transactions were not previously frozen."), + 6840 => new Code(code, "ERROR_TRANSACTION_FREEZE_IN_PROGRESS", "Transactions cannot be frozen because a freeze is already in progress."), + 6841 => new Code(code, "ERROR_NOT_SNAPSHOT_VOLUME", "The target volume is not a snapshot volume. This operation is only valid on a volume mounted as a snapshot."), + 6842 => new Code(code, "ERROR_NO_SAVEPOINT_WITH_OPEN_FILES", "The savepoint operation failed because files are open on the transaction. This is not permitted."), + 6843 => new Code(code, "ERROR_DATA_LOST_REPAIR", "Windows has discovered corruption in a file, and that file has since been repaired. Data loss might have occurred."), + 6844 => new Code(code, "ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION", "The sparse operation could not be completed because a transaction is active on the file."), + 6845 => new Code(code, "ERROR_TM_IDENTITY_MISMATCH", "The call to create a transaction manager object failed because the Tm Identity stored in the logfile does not match the Tm Identity that was passed in as an argument."), + 6846 => new Code(code, "ERROR_FLOATED_SECTION", "I/O was attempted on a section object that has been floated as a result of a transaction ending. There is no valid data."), + 6847 => new Code(code, "ERROR_CANNOT_ACCEPT_TRANSACTED_WORK", "The transactional resource manager cannot currently accept transacted work due to a transient condition, such as low resources."), + 6848 => new Code(code, "ERROR_CANNOT_ABORT_TRANSACTIONS", "The transactional resource manager had too many transactions outstanding that could not be aborted. The transactional resource manager has been shut down."), + 7001 => new Code(code, "ERROR_CTX_WINSTATION_NAME_INVALID", "The specified session name is invalid."), + 7002 => new Code(code, "ERROR_CTX_INVALID_PD", "The specified protocol driver is invalid."), + 7003 => new Code(code, "ERROR_CTX_PD_NOT_FOUND", "The specified protocol driver was not found in the system path."), + 7004 => new Code(code, "ERROR_CTX_WD_NOT_FOUND", "The specified terminal connection driver was not found in the system path."), + 7005 => new Code(code, "ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY", "A registry key for event logging could not be created for this session."), + 7006 => new Code(code, "ERROR_CTX_SERVICE_NAME_COLLISION", "A service with the same name already exists on the system."), + 7007 => new Code(code, "ERROR_CTX_CLOSE_PENDING", "A close operation is pending on the session."), + 7008 => new Code(code, "ERROR_CTX_NO_OUTBUF", "There are no free output buffers available."), + 7009 => new Code(code, "ERROR_CTX_MODEM_INF_NOT_FOUND", "The MODEM.INF file was not found."), + 7010 => new Code(code, "ERROR_CTX_INVALID_MODEMNAME", "The modem name was not found in the MODEM.INF file."), + 7011 => new Code(code, "ERROR_CTX_MODEM_RESPONSE_ERROR", "The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem."), + 7012 => new Code(code, "ERROR_CTX_MODEM_RESPONSE_TIMEOUT", "The modem did not respond to the command sent to it. Verify that the modem is properly cabled and turned on."), + 7013 => new Code(code, "ERROR_CTX_MODEM_RESPONSE_NO_CARRIER", "Carrier detect has failed or carrier has been dropped due to disconnect."), + 7014 => new Code(code, "ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE", "Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional."), + 7015 => new Code(code, "ERROR_CTX_MODEM_RESPONSE_BUSY", "Busy signal detected at remote site on callback."), + 7016 => new Code(code, "ERROR_CTX_MODEM_RESPONSE_VOICE", "Voice detected at remote site on callback."), + 7017 => new Code(code, "ERROR_CTX_TD_ERROR", "Transport driver error."), + 7022 => new Code(code, "ERROR_CTX_WINSTATION_NOT_FOUND", "The specified session cannot be found."), + 7023 => new Code(code, "ERROR_CTX_WINSTATION_ALREADY_EXISTS", "The specified session name is already in use."), + 7024 => new Code(code, "ERROR_CTX_WINSTATION_BUSY", "The requested operation cannot be completed because the terminal connection is currently busy processing a connect, disconnect, reset, or delete operation."), + 7025 => new Code(code, "ERROR_CTX_BAD_VIDEO_MODE", "An attempt has been made to connect to a session whose video mode is not supported by the current client."), + 7035 => new Code(code, "ERROR_CTX_GRAPHICS_INVALID", "The application attempted to enable DOS graphics mode. DOS graphics mode is not supported."), + 7037 => new Code(code, "ERROR_CTX_LOGON_DISABLED", "Your interactive logon privilege has been disabled. Contact your administrator."), + 7038 => new Code(code, "ERROR_CTX_NOT_CONSOLE", "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."), + 7040 => new Code(code, "ERROR_CTX_CLIENT_QUERY_TIMEOUT", "The client failed to respond to the server connect message."), + 7041 => new Code(code, "ERROR_CTX_CONSOLE_DISCONNECT", "Disconnecting the console session is not supported."), + 7042 => new Code(code, "ERROR_CTX_CONSOLE_CONNECT", "Reconnecting a disconnected session to the console is not supported."), + 7044 => new Code(code, "ERROR_CTX_SHADOW_DENIED", "The request to control another session remotely was denied."), + 7045 => new Code(code, "ERROR_CTX_WINSTATION_ACCESS_DENIED", "The requested session access is denied."), + 7049 => new Code(code, "ERROR_CTX_INVALID_WD", "The specified terminal connection driver is invalid."), + 7050 => new Code(code, "ERROR_CTX_SHADOW_INVALID", "The requested session cannot be controlled remotely. This might be because the session is disconnected or does not currently have a user logged on."), + 7051 => new Code(code, "ERROR_CTX_SHADOW_DISABLED", "The requested session is not configured to allow remote control."), + 7052 => new Code(code, "ERROR_CTX_CLIENT_LICENSE_IN_USE", "Your request to connect to this terminal server has been rejected. Your terminal server client license number is currently being used by another user. Call your system administrator to obtain a unique license number."), + 7053 => new Code(code, "ERROR_CTX_CLIENT_LICENSE_NOT_SET", "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. Contact your system administrator."), + 7054 => new Code(code, "ERROR_CTX_LICENSE_NOT_AVAILABLE", "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."), + 7055 => new Code(code, "ERROR_CTX_LICENSE_CLIENT_INVALID", "The client you are using is not licensed to use this system. Your logon request is denied."), + 7056 => new Code(code, "ERROR_CTX_LICENSE_EXPIRED", "The system license has expired. Your logon request is denied."), + 7057 => new Code(code, "ERROR_CTX_SHADOW_NOT_RUNNING", "Remote control could not be terminated because the specified session is not currently being remotely controlled."), + 7058 => new Code(code, "ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE", "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."), + 7059 => new Code(code, "ERROR_ACTIVATION_COUNT_EXCEEDED", "Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared."), + 7060 => new Code(code, "ERROR_CTX_WINSTATIONS_DISABLED", "Remote logons are currently disabled."), + 7061 => new Code(code, "ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED", "You do not have the proper encryption level to access this session."), + 7062 => new Code(code, "ERROR_CTX_SESSION_IN_USE", "The user %s\\%s is currently logged on to this computer. Only the current user or an administrator can log on to this computer."), + 7063 => new Code(code, "ERROR_CTX_NO_FORCE_LOGOFF", "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."), + 7064 => new Code(code, "ERROR_CTX_ACCOUNT_RESTRICTION", "Unable to log you on because of an account restriction."), + 7065 => new Code(code, "ERROR_RDP_PROTOCOL_ERROR", "The RDP component %2 detected an error in the protocol stream and has disconnected the client."), + 7066 => new Code(code, "ERROR_CTX_CDM_CONNECT", "The Client Drive Mapping Service has connected on terminal connection."), + 7067 => new Code(code, "ERROR_CTX_CDM_DISCONNECT", "The Client Drive Mapping Service has disconnected on terminal connection."), + 7068 => new Code(code, "ERROR_CTX_SECURITY_LAYER_ERROR", "The terminal server security layer detected an error in the protocol stream and has disconnected the client."), + 7069 => new Code(code, "ERROR_TS_INCOMPATIBLE_SESSIONS", "The target session is incompatible with the current session."), + 8001 => new Code(code, "FRS_ERR_INVALID_API_SEQUENCE", "The file replication service API was called incorrectly."), + 8002 => new Code(code, "FRS_ERR_STARTING_SERVICE", "The file replication service cannot be started."), + 8003 => new Code(code, "FRS_ERR_STOPPING_SERVICE", "The file replication service cannot be stopped."), + 8004 => new Code(code, "FRS_ERR_INTERNAL_API", "The file replication service API terminated the request. The event log might contain more information."), + 8005 => new Code(code, "FRS_ERR_INTERNAL", "The file replication service terminated the request. The event log might contain more information."), + 8006 => new Code(code, "FRS_ERR_SERVICE_COMM", "The file replication service cannot be contacted. The event log might contain more information."), + 8007 => new Code(code, "FRS_ERR_INSUFFICIENT_PRIV", "The file replication service cannot satisfy the request because the user has insufficient privileges. The event log might contain more information."), + 8008 => new Code(code, "FRS_ERR_AUTHENTICATION", "The file replication service cannot satisfy the request because authenticated RPC is not available. The event log might contain more information."), + 8009 => new Code(code, "FRS_ERR_PARENT_INSUFFICIENT_PRIV", "The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller. The event log might contain more information."), + 8010 => new Code(code, "FRS_ERR_PARENT_AUTHENTICATION", "The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller. The event log might contain more information."), + 8011 => new Code(code, "FRS_ERR_CHILD_TO_PARENT_COMM", "The file replication service cannot communicate with the file replication service on the domain controller. The event log might contain more information."), + 8012 => new Code(code, "FRS_ERR_PARENT_TO_CHILD_COMM", "The file replication service on the domain controller cannot communicate with the file replication service on this computer. The event log might contain more information."), + 8013 => new Code(code, "FRS_ERR_SYSVOL_POPULATE", "The file replication service cannot populate the system volume because of an internal error. The event log might contain more information."), + 8014 => new Code(code, "FRS_ERR_SYSVOL_POPULATE_TIMEOUT", "The file replication service cannot populate the system volume because of an internal time-out. The event log might contain more information."), + 8015 => new Code(code, "FRS_ERR_SYSVOL_IS_BUSY", "The file replication service cannot process the request. The system volume is busy with a previous request."), + 8016 => new Code(code, "FRS_ERR_SYSVOL_DEMOTE", "The file replication service cannot stop replicating the system volume because of an internal error. The event log might contain more information."), + 8017 => new Code(code, "FRS_ERR_INVALID_SERVICE_PARAMETER", "The file replication service detected an invalid parameter."), + 8200 => new Code(code, "ERROR_DS_NOT_INSTALLED", "An error occurred while installing the directory service. For more information, see the event log."), + 8201 => new Code(code, "ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY", "The directory service evaluated group memberships locally."), + 8202 => new Code(code, "ERROR_DS_NO_ATTRIBUTE_OR_VALUE", "The specified directory service attribute or value does not exist."), + 8203 => new Code(code, "ERROR_DS_INVALID_ATTRIBUTE_SYNTAX", "The attribute syntax specified to the directory service is invalid."), + 8204 => new Code(code, "ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED", "The attribute type specified to the directory service is not defined."), + 8205 => new Code(code, "ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS", "The specified directory service attribute or value already exists."), + 8206 => new Code(code, "ERROR_DS_BUSY", "The directory service is busy."), + 8207 => new Code(code, "ERROR_DS_UNAVAILABLE", "The directory service is unavailable."), + 8208 => new Code(code, "ERROR_DS_NO_RIDS_ALLOCATED", "The directory service was unable to allocate a relative identifier."), + 8209 => new Code(code, "ERROR_DS_NO_MORE_RIDS", "The directory service has exhausted the pool of relative identifiers."), + 8210 => new Code(code, "ERROR_DS_INCORRECT_ROLE_OWNER", "The requested operation could not be performed because the directory service is not the master for that type of operation."), + 8211 => new Code(code, "ERROR_DS_RIDMGR_INIT_ERROR", "The directory service was unable to initialize the subsystem that allocates relative identifiers."), + 8212 => new Code(code, "ERROR_DS_OBJ_CLASS_VIOLATION", "The requested operation did not satisfy one or more constraints associated with the class of the object."), + 8213 => new Code(code, "ERROR_DS_CANT_ON_NON_LEAF", "The directory service can perform the requested operation only on a leaf object."), + 8214 => new Code(code, "ERROR_DS_CANT_ON_RDN", "The directory service cannot perform the requested operation on the relative distinguished name (RDN) attribute of an object."), + 8215 => new Code(code, "ERROR_DS_CANT_MOD_OBJ_CLASS", "The directory service detected an attempt to modify the object class of an object."), + 8216 => new Code(code, "ERROR_DS_CROSS_DOM_MOVE_ERROR", "The requested cross-domain move operation could not be performed."), + 8217 => new Code(code, "ERROR_DS_GC_NOT_AVAILABLE", "Unable to contact the global catalog (GC) server."), + 8218 => new Code(code, "ERROR_SHARED_POLICY", "The policy object is shared and can only be modified at the root."), + 8219 => new Code(code, "ERROR_POLICY_OBJECT_NOT_FOUND", "The policy object does not exist."), + 8220 => new Code(code, "ERROR_POLICY_ONLY_IN_DS", "The requested policy information is only in the directory service."), + 8221 => new Code(code, "ERROR_PROMOTION_ACTIVE", "A domain controller promotion is currently active."), + 8222 => new Code(code, "ERROR_NO_PROMOTION_ACTIVE", "A domain controller promotion is not currently active."), + 8224 => new Code(code, "ERROR_DS_OPERATIONS_ERROR", "An operations error occurred."), + 8225 => new Code(code, "ERROR_DS_PROTOCOL_ERROR", "A protocol error occurred."), + 8226 => new Code(code, "ERROR_DS_TIMELIMIT_EXCEEDED", "The time limit for this request was exceeded."), + 8227 => new Code(code, "ERROR_DS_SIZELIMIT_EXCEEDED", "The size limit for this request was exceeded."), + 8228 => new Code(code, "ERROR_DS_ADMIN_LIMIT_EXCEEDED", "The administrative limit for this request was exceeded."), + 8229 => new Code(code, "ERROR_DS_COMPARE_FALSE", "The compare response was false."), + 8230 => new Code(code, "ERROR_DS_COMPARE_TRUE", "The compare response was true."), + 8231 => new Code(code, "ERROR_DS_AUTH_METHOD_NOT_SUPPORTED", "The requested authentication method is not supported by the server."), + 8232 => new Code(code, "ERROR_DS_STRONG_AUTH_REQUIRED", "A more secure authentication method is required for this server."), + 8233 => new Code(code, "ERROR_DS_INAPPROPRIATE_AUTH", "Inappropriate authentication."), + 8234 => new Code(code, "ERROR_DS_AUTH_UNKNOWN", "The authentication mechanism is unknown."), + 8235 => new Code(code, "ERROR_DS_REFERRAL", "A referral was returned from the server."), + 8236 => new Code(code, "ERROR_DS_UNAVAILABLE_CRIT_EXTENSION", "The server does not support the requested critical extension."), + 8237 => new Code(code, "ERROR_DS_CONFIDENTIALITY_REQUIRED", "This request requires a secure connection."), + 8238 => new Code(code, "ERROR_DS_INAPPROPRIATE_MATCHING", "Inappropriate matching."), + 8239 => new Code(code, "ERROR_DS_CONSTRAINT_VIOLATION", "A constraint violation occurred."), + 8240 => new Code(code, "ERROR_DS_NO_SUCH_OBJECT", "There is no such object on the server."), + 8241 => new Code(code, "ERROR_DS_ALIAS_PROBLEM", "There is an alias problem."), + 8242 => new Code(code, "ERROR_DS_INVALID_DN_SYNTAX", "An invalid dn syntax has been specified."), + 8243 => new Code(code, "ERROR_DS_IS_LEAF", "The object is a leaf object."), + 8244 => new Code(code, "ERROR_DS_ALIAS_DEREF_PROBLEM", "There is an alias dereferencing problem."), + 8245 => new Code(code, "ERROR_DS_UNWILLING_TO_PERFORM", "The server is unwilling to process the request."), + 8246 => new Code(code, "ERROR_DS_LOOP_DETECT", "A loop has been detected."), + 8247 => new Code(code, "ERROR_DS_NAMING_VIOLATION", "There is a naming violation."), + 8248 => new Code(code, "ERROR_DS_OBJECT_RESULTS_TOO_LARGE", "The result set is too large."), + 8249 => new Code(code, "ERROR_DS_AFFECTS_MULTIPLE_DSAS", "The operation affects multiple DSAs."), + 8250 => new Code(code, "ERROR_DS_SERVER_DOWN", "The server is not operational."), + 8251 => new Code(code, "ERROR_DS_LOCAL_ERROR", "A local error has occurred."), + 8252 => new Code(code, "ERROR_DS_ENCODING_ERROR", "An encoding error has occurred."), + 8253 => new Code(code, "ERROR_DS_DECODING_ERROR", "A decoding error has occurred."), + 8254 => new Code(code, "ERROR_DS_FILTER_UNKNOWN", "The search filter cannot be recognized."), + 8255 => new Code(code, "ERROR_DS_PARAM_ERROR", "One or more parameters are illegal."), + 8256 => new Code(code, "ERROR_DS_NOT_SUPPORTED", "The specified method is not supported."), + 8257 => new Code(code, "ERROR_DS_NO_RESULTS_RETURNED", "No results were returned."), + 8258 => new Code(code, "ERROR_DS_CONTROL_NOT_FOUND", "The specified control is not supported by the server."), + 8259 => new Code(code, "ERROR_DS_CLIENT_LOOP", "A referral loop was detected by the client."), + 8260 => new Code(code, "ERROR_DS_REFERRAL_LIMIT_EXCEEDED", "The preset referral limit was exceeded."), + 8261 => new Code(code, "ERROR_DS_SORT_CONTROL_MISSING", "The search requires a SORT control."), + 8262 => new Code(code, "ERROR_DS_OFFSET_RANGE_ERROR", "The search results exceed the offset range specified."), + 8301 => new Code(code, "ERROR_DS_ROOT_MUST_BE_NC", "The root object must be the head of a naming context. The root object cannot have an instantiated parent."), + 8302 => new Code(code, "ERROR_DS_ADD_REPLICA_INHIBITED", "The add replica operation cannot be performed. The naming context must be writable to create the replica."), + 8303 => new Code(code, "ERROR_DS_ATT_NOT_DEF_IN_SCHEMA", "A reference to an attribute that is not defined in the schema occurred."), + 8304 => new Code(code, "ERROR_DS_MAX_OBJ_SIZE_EXCEEDED", "The maximum size of an object has been exceeded."), + 8305 => new Code(code, "ERROR_DS_OBJ_STRING_NAME_EXISTS", "An attempt was made to add an object to the directory with a name that is already in use."), + 8306 => new Code(code, "ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA", "An attempt was made to add an object of a class that does not have an RDN defined in the schema."), + 8307 => new Code(code, "ERROR_DS_RDN_DOESNT_MATCH_SCHEMA", "An attempt was made to add an object using an RDN that is not the RDN defined in the schema."), + 8308 => new Code(code, "ERROR_DS_NO_REQUESTED_ATTS_FOUND", "None of the requested attributes were found on the objects."), + 8309 => new Code(code, "ERROR_DS_USER_BUFFER_TO_SMALL", "The user buffer is too small."), + 8310 => new Code(code, "ERROR_DS_ATT_IS_NOT_ON_OBJ", "The attribute specified in the operation is not present on the object."), + 8311 => new Code(code, "ERROR_DS_ILLEGAL_MOD_OPERATION", "Illegal modify operation. Some aspect of the modification is not permitted."), + 8312 => new Code(code, "ERROR_DS_OBJ_TOO_LARGE", "The specified object is too large."), + 8313 => new Code(code, "ERROR_DS_BAD_INSTANCE_TYPE", "The specified instance type is not valid."), + 8314 => new Code(code, "ERROR_DS_MASTERDSA_REQUIRED", "The operation must be performed at a master DSA."), + 8315 => new Code(code, "ERROR_DS_OBJECT_CLASS_REQUIRED", "The object class attribute must be specified."), + 8316 => new Code(code, "ERROR_DS_MISSING_REQUIRED_ATT", "A required attribute is missing."), + 8317 => new Code(code, "ERROR_DS_ATT_NOT_DEF_FOR_CLASS", "An attempt was made to modify an object to include an attribute that is not legal for its class."), + 8318 => new Code(code, "ERROR_DS_ATT_ALREADY_EXISTS", "The specified attribute is already present on the object."), + 8320 => new Code(code, "ERROR_DS_CANT_ADD_ATT_VALUES", "The specified attribute is not present, or has no values."), + 8321 => new Code(code, "ERROR_DS_SINGLE_VALUE_CONSTRAINT", "Multiple values were specified for an attribute that can have only one value."), + 8322 => new Code(code, "ERROR_DS_RANGE_CONSTRAINT", "A value for the attribute was not in the acceptable range of values."), + 8323 => new Code(code, "ERROR_DS_ATT_VAL_ALREADY_EXISTS", "The specified value already exists."), + 8324 => new Code(code, "ERROR_DS_CANT_REM_MISSING_ATT", "The attribute cannot be removed because it is not present on the object."), + 8325 => new Code(code, "ERROR_DS_CANT_REM_MISSING_ATT_VAL", "The attribute value cannot be removed because it is not present on the object."), + 8326 => new Code(code, "ERROR_DS_ROOT_CANT_BE_SUBREF", "The specified root object cannot be a subreference."), + 8327 => new Code(code, "ERROR_DS_NO_CHAINING", "Chaining is not permitted."), + 8328 => new Code(code, "ERROR_DS_NO_CHAINED_EVAL", "Chained evaluation is not permitted."), + 8329 => new Code(code, "ERROR_DS_NO_PARENT_OBJECT", "The operation could not be performed because the object's parent is either uninstantiated or deleted."), + 8330 => new Code(code, "ERROR_DS_PARENT_IS_AN_ALIAS", "Having a parent that is an alias is not permitted. Aliases are leaf objects."), + 8331 => new Code(code, "ERROR_DS_CANT_MIX_MASTER_AND_REPS", "The object and parent must be of the same type, either both masters or both replicas."), + 8332 => new Code(code, "ERROR_DS_CHILDREN_EXIST", "The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object."), + 8333 => new Code(code, "ERROR_DS_OBJ_NOT_FOUND", "Directory object not found."), + 8334 => new Code(code, "ERROR_DS_ALIASED_OBJ_MISSING", "The aliased object is missing."), + 8335 => new Code(code, "ERROR_DS_BAD_NAME_SYNTAX", "The object name has bad syntax."), + 8336 => new Code(code, "ERROR_DS_ALIAS_POINTS_TO_ALIAS", "An alias is not permitted to refer to another alias."), + 8337 => new Code(code, "ERROR_DS_CANT_DEREF_ALIAS", "The alias cannot be dereferenced."), + 8338 => new Code(code, "ERROR_DS_OUT_OF_SCOPE", "The operation is out of scope."), + 8339 => new Code(code, "ERROR_DS_OBJECT_BEING_REMOVED", "The operation cannot continue because the object is in the process of being removed."), + 8340 => new Code(code, "ERROR_DS_CANT_DELETE_DSA_OBJ", "The DSA object cannot be deleted."), + 8341 => new Code(code, "ERROR_DS_GENERIC_ERROR", "A directory service error has occurred."), + 8342 => new Code(code, "ERROR_DS_DSA_MUST_BE_INT_MASTER", "The operation can only be performed on an internal master DSA object."), + 8343 => new Code(code, "ERROR_DS_CLASS_NOT_DSA", "The object must be of class DSA."), + 8344 => new Code(code, "ERROR_DS_INSUFF_ACCESS_RIGHTS", "Insufficient access rights to perform the operation."), + 8345 => new Code(code, "ERROR_DS_ILLEGAL_SUPERIOR", "The object cannot be added because the parent is not on the list of possible superiors."), + 8346 => new Code(code, "ERROR_DS_ATTRIBUTE_OWNED_BY_SAM", "Access to the attribute is not permitted because the attribute is owned by the SAM."), + 8347 => new Code(code, "ERROR_DS_NAME_TOO_MANY_PARTS", "The name has too many parts."), + 8348 => new Code(code, "ERROR_DS_NAME_TOO_LONG", "The name is too long."), + 8349 => new Code(code, "ERROR_DS_NAME_VALUE_TOO_LONG", "The name value is too long."), + 8350 => new Code(code, "ERROR_DS_NAME_UNPARSEABLE", "The directory service encountered an error parsing a name."), + 8351 => new Code(code, "ERROR_DS_NAME_TYPE_UNKNOWN", "The directory service cannot get the attribute type for a name."), + 8352 => new Code(code, "ERROR_DS_NOT_AN_OBJECT", "The name does not identify an object; the name identifies a phantom."), + 8353 => new Code(code, "ERROR_DS_SEC_DESC_TOO_SHORT", "The security descriptor is too short."), + 8354 => new Code(code, "ERROR_DS_SEC_DESC_INVALID", "The security descriptor is invalid."), + 8355 => new Code(code, "ERROR_DS_NO_DELETED_NAME", "Failed to create name for deleted object."), + 8356 => new Code(code, "ERROR_DS_SUBREF_MUST_HAVE_PARENT", "The parent of a new subreference must exist."), + 8357 => new Code(code, "ERROR_DS_NCNAME_MUST_BE_NC", "The object must be a naming context."), + 8358 => new Code(code, "ERROR_DS_CANT_ADD_SYSTEM_ONLY", "It is not permitted to add an attribute that is owned by the system."), + 8359 => new Code(code, "ERROR_DS_CLASS_MUST_BE_CONCRETE", "The class of the object must be structural; you cannot instantiate an abstract class."), + 8360 => new Code(code, "ERROR_DS_INVALID_DMD", "The schema object could not be found."), + 8361 => new Code(code, "ERROR_DS_OBJ_GUID_EXISTS", "A local object with this GUID (dead or alive) already exists."), + 8362 => new Code(code, "ERROR_DS_NOT_ON_BACKLINK", "The operation cannot be performed on a back link."), + 8363 => new Code(code, "ERROR_DS_NO_CROSSREF_FOR_NC", "The cross-reference for the specified naming context could not be found."), + 8364 => new Code(code, "ERROR_DS_SHUTTING_DOWN", "The operation could not be performed because the directory service is shutting down."), + 8365 => new Code(code, "ERROR_DS_UNKNOWN_OPERATION", "The directory service request is invalid."), + 8366 => new Code(code, "ERROR_DS_INVALID_ROLE_OWNER", "The role owner attribute could not be read."), + 8367 => new Code(code, "ERROR_DS_COULDNT_CONTACT_FSMO", "The requested Flexible Single Master Operations (FSMO) operation failed. The current FSMO holder could not be contacted."), + 8368 => new Code(code, "ERROR_DS_CROSS_NC_DN_RENAME", "Modification of a distinguished name across a naming context is not permitted."), + 8369 => new Code(code, "ERROR_DS_CANT_MOD_SYSTEM_ONLY", "The attribute cannot be modified because it is owned by the system."), + 8370 => new Code(code, "ERROR_DS_REPLICATOR_ONLY", "Only the replicator can perform this function."), + 8371 => new Code(code, "ERROR_DS_OBJ_CLASS_NOT_DEFINED", "The specified class is not defined."), + 8372 => new Code(code, "ERROR_DS_OBJ_CLASS_NOT_SUBCLASS", "The specified class is not a subclass."), + 8373 => new Code(code, "ERROR_DS_NAME_REFERENCE_INVALID", "The name reference is invalid."), + 8374 => new Code(code, "ERROR_DS_CROSS_REF_EXISTS", "A cross-reference already exists."), + 8375 => new Code(code, "ERROR_DS_CANT_DEL_MASTER_CROSSREF", "It is not permitted to delete a master cross-reference."), + 8376 => new Code(code, "ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD", "Subtree notifications are only supported on naming context (NC) heads."), + 8377 => new Code(code, "ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX", "Notification filter is too complex."), + 8378 => new Code(code, "ERROR_DS_DUP_RDN", "Schema update failed: Duplicate RDN."), + 8379 => new Code(code, "ERROR_DS_DUP_OID", "Schema update failed: Duplicate OID."), + 8380 => new Code(code, "ERROR_DS_DUP_MAPI_ID", "Schema update failed: Duplicate Message Application Programming Interface (MAPI) identifier."), + 8381 => new Code(code, "ERROR_DS_DUP_SCHEMA_ID_GUID", "Schema update failed: Duplicate schema ID GUID."), + 8382 => new Code(code, "ERROR_DS_DUP_LDAP_DISPLAY_NAME", "Schema update failed: Duplicate LDAP display name."), + 8383 => new Code(code, "ERROR_DS_SEMANTIC_ATT_TEST", "Schema update failed: Range-Lower less than Range-Upper."), + 8384 => new Code(code, "ERROR_DS_SYNTAX_MISMATCH", "Schema update failed: Syntax mismatch."), + 8385 => new Code(code, "ERROR_DS_EXISTS_IN_MUST_HAVE", "Schema deletion failed: Attribute is used in the Must-Contain list."), + 8386 => new Code(code, "ERROR_DS_EXISTS_IN_MAY_HAVE", "Schema deletion failed: Attribute is used in the May-Contain list."), + 8387 => new Code(code, "ERROR_DS_NONEXISTENT_MAY_HAVE", "Schema update failed: Attribute in May-Contain list does not exist."), + 8388 => new Code(code, "ERROR_DS_NONEXISTENT_MUST_HAVE", "Schema update failed: Attribute in the Must-Contain list does not exist."), + 8389 => new Code(code, "ERROR_DS_AUX_CLS_TEST_FAIL", "Schema update failed: Class in the Aux Class list does not exist or is not an auxiliary class."), + 8390 => new Code(code, "ERROR_DS_NONEXISTENT_POSS_SUP", "Schema update failed: Class in the Poss-Superiors list does not exist."), + 8391 => new Code(code, "ERROR_DS_SUB_CLS_TEST_FAIL", "Schema update failed: Class in the subclass of the list does not exist or does not satisfy hierarchy rules."), + 8392 => new Code(code, "ERROR_DS_BAD_RDN_ATT_ID_SYNTAX", "Schema update failed: Rdn-Att-Id has wrong syntax."), + 8393 => new Code(code, "ERROR_DS_EXISTS_IN_AUX_CLS", "Schema deletion failed: Class is used as an auxiliary class."), + 8394 => new Code(code, "ERROR_DS_EXISTS_IN_SUB_CLS", "Schema deletion failed: Class is used as a subclass."), + 8395 => new Code(code, "ERROR_DS_EXISTS_IN_POSS_SUP", "Schema deletion failed: Class is used as a Poss-Superior."), + 8396 => new Code(code, "ERROR_DS_RECALCSCHEMA_FAILED", "Schema update failed in recalculating validation cache."), + 8397 => new Code(code, "ERROR_DS_TREE_DELETE_NOT_FINISHED", "The tree deletion is not finished. The request must be made again to continue deleting the tree."), + 8398 => new Code(code, "ERROR_DS_CANT_DELETE", "The requested delete operation could not be performed."), + 8399 => new Code(code, "ERROR_DS_ATT_SCHEMA_REQ_ID", "Cannot read the governs class identifier for the schema record."), + 8400 => new Code(code, "ERROR_DS_BAD_ATT_SCHEMA_SYNTAX", "The attribute schema has bad syntax."), + 8401 => new Code(code, "ERROR_DS_CANT_CACHE_ATT", "The attribute could not be cached."), + 8402 => new Code(code, "ERROR_DS_CANT_CACHE_CLASS", "The class could not be cached."), + 8403 => new Code(code, "ERROR_DS_CANT_REMOVE_ATT_CACHE", "The attribute could not be removed from the cache."), + 8404 => new Code(code, "ERROR_DS_CANT_REMOVE_CLASS_CACHE", "The class could not be removed from the cache."), + 8405 => new Code(code, "ERROR_DS_CANT_RETRIEVE_DN", "The distinguished name attribute could not be read."), + 8406 => new Code(code, "ERROR_DS_MISSING_SUPREF", "No superior reference has been configured for the directory service. The directory service is, therefore, unable to issue referrals to objects outside this forest."), + 8407 => new Code(code, "ERROR_DS_CANT_RETRIEVE_INSTANCE", "The instance type attribute could not be retrieved."), + 8408 => new Code(code, "ERROR_DS_CODE_INCONSISTENCY", "An internal error has occurred."), + 8409 => new Code(code, "ERROR_DS_DATABASE_ERROR", "A database error has occurred."), + 8410 => new Code(code, "ERROR_DS_GOVERNSID_MISSING", "The governsID attribute is missing."), + 8411 => new Code(code, "ERROR_DS_MISSING_EXPECTED_ATT", "An expected attribute is missing."), + 8412 => new Code(code, "ERROR_DS_NCNAME_MISSING_CR_REF", "The specified naming context is missing a cross-reference."), + 8413 => new Code(code, "ERROR_DS_SECURITY_CHECKING_ERROR", "A security checking error has occurred."), + 8414 => new Code(code, "ERROR_DS_SCHEMA_NOT_LOADED", "The schema is not loaded."), + 8415 => new Code(code, "ERROR_DS_SCHEMA_ALLOC_FAILED", "Schema allocation failed. Check if the machine is running low on memory."), + 8416 => new Code(code, "ERROR_DS_ATT_SCHEMA_REQ_SYNTAX", "Failed to obtain the required syntax for the attribute schema."), + 8417 => new Code(code, "ERROR_DS_GCVERIFY_ERROR", "The GC verification failed. The GC is not available or does not support the operation. Some part of the directory is currently not available."), + 8418 => new Code(code, "ERROR_DS_DRA_SCHEMA_MISMATCH", "The replication operation failed because of a schema mismatch between the servers involved."), + 8419 => new Code(code, "ERROR_DS_CANT_FIND_DSA_OBJ", "The DSA object could not be found."), + 8420 => new Code(code, "ERROR_DS_CANT_FIND_EXPECTED_NC", "The naming context could not be found."), + 8421 => new Code(code, "ERROR_DS_CANT_FIND_NC_IN_CACHE", "The naming context could not be found in the cache."), + 8422 => new Code(code, "ERROR_DS_CANT_RETRIEVE_CHILD", "The child object could not be retrieved."), + 8423 => new Code(code, "ERROR_DS_SECURITY_ILLEGAL_MODIFY", "The modification was not permitted for security reasons."), + 8424 => new Code(code, "ERROR_DS_CANT_REPLACE_HIDDEN_REC", "The operation cannot replace the hidden record."), + 8425 => new Code(code, "ERROR_DS_BAD_HIERARCHY_FILE", "The hierarchy file is invalid."), + 8426 => new Code(code, "ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED", "The attempt to build the hierarchy table failed."), + 8427 => new Code(code, "ERROR_DS_CONFIG_PARAM_MISSING", "The directory configuration parameter is missing from the registry."), + 8428 => new Code(code, "ERROR_DS_COUNTING_AB_INDICES_FAILED", "The attempt to count the address book indices failed."), + 8429 => new Code(code, "ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED", "The allocation of the hierarchy table failed."), + 8430 => new Code(code, "ERROR_DS_INTERNAL_FAILURE", "The directory service encountered an internal failure."), + 8431 => new Code(code, "ERROR_DS_UNKNOWN_ERROR", "The directory service encountered an unknown failure."), + 8432 => new Code(code, "ERROR_DS_ROOT_REQUIRES_CLASS_TOP", "A root object requires a class of \"top\"."), + 8433 => new Code(code, "ERROR_DS_REFUSING_FSMO_ROLES", "This directory server is shutting down, and cannot take ownership of new floating single-master operation roles."), + 8434 => new Code(code, "ERROR_DS_MISSING_FSMO_SETTINGS", "The directory service is missing mandatory configuration information and is unable to determine the ownership of floating single-master operation roles."), + 8435 => new Code(code, "ERROR_DS_UNABLE_TO_SURRENDER_ROLES", "The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers."), + 8436 => new Code(code, "ERROR_DS_DRA_GENERIC", "The replication operation failed."), + 8437 => new Code(code, "ERROR_DS_DRA_INVALID_PARAMETER", "An invalid parameter was specified for this replication operation."), + 8438 => new Code(code, "ERROR_DS_DRA_BUSY", "The directory service is too busy to complete the replication operation at this time."), + 8439 => new Code(code, "ERROR_DS_DRA_BAD_DN", "The DN specified for this replication operation is invalid."), + 8440 => new Code(code, "ERROR_DS_DRA_BAD_NC", "The naming context specified for this replication operation is invalid."), + 8441 => new Code(code, "ERROR_DS_DRA_DN_EXISTS", "The DN specified for this replication operation already exists."), + 8442 => new Code(code, "ERROR_DS_DRA_INTERNAL_ERROR", "The replication system encountered an internal error."), + 8443 => new Code(code, "ERROR_DS_DRA_INCONSISTENT_DIT", "The replication operation encountered a database inconsistency."), + 8444 => new Code(code, "ERROR_DS_DRA_CONNECTION_FAILED", "The server specified for this replication operation could not be contacted."), + 8445 => new Code(code, "ERROR_DS_DRA_BAD_INSTANCE_TYPE", "The replication operation encountered an object with an invalid instance type."), + 8446 => new Code(code, "ERROR_DS_DRA_OUT_OF_MEM", "The replication operation failed to allocate memory."), + 8447 => new Code(code, "ERROR_DS_DRA_MAIL_PROBLEM", "The replication operation encountered an error with the mail system."), + 8448 => new Code(code, "ERROR_DS_DRA_REF_ALREADY_EXISTS", "The replication reference information for the target server already exists."), + 8449 => new Code(code, "ERROR_DS_DRA_REF_NOT_FOUND", "The replication reference information for the target server does not exist."), + 8450 => new Code(code, "ERROR_DS_DRA_OBJ_IS_REP_SOURCE", "The naming context cannot be removed because it is replicated to another server."), + 8451 => new Code(code, "ERROR_DS_DRA_DB_ERROR", "The replication operation encountered a database error."), + 8452 => new Code(code, "ERROR_DS_DRA_NO_REPLICA", "The naming context is in the process of being removed or is not replicated from the specified server."), + 8453 => new Code(code, "ERROR_DS_DRA_ACCESS_DENIED", "Replication access was denied."), + 8454 => new Code(code, "ERROR_DS_DRA_NOT_SUPPORTED", "The requested operation is not supported by this version of the directory service."), + 8455 => new Code(code, "ERROR_DS_DRA_RPC_CANCELLED", "The replication RPC was canceled."), + 8456 => new Code(code, "ERROR_DS_DRA_SOURCE_DISABLED", "The source server is currently rejecting replication requests."), + 8457 => new Code(code, "ERROR_DS_DRA_SINK_DISABLED", "The destination server is currently rejecting replication requests."), + 8458 => new Code(code, "ERROR_DS_DRA_NAME_COLLISION", "The replication operation failed due to a collision of object names."), + 8459 => new Code(code, "ERROR_DS_DRA_SOURCE_REINSTALLED", "The replication source has been reinstalled."), + 8460 => new Code(code, "ERROR_DS_DRA_MISSING_PARENT", "The replication operation failed because a required parent object is missing."), + 8461 => new Code(code, "ERROR_DS_DRA_PREEMPTED", "The replication operation was preempted."), + 8462 => new Code(code, "ERROR_DS_DRA_ABANDON_SYNC", "The replication synchronization attempt was abandoned because of a lack of updates."), + 8463 => new Code(code, "ERROR_DS_DRA_SHUTDOWN", "The replication operation was terminated because the system is shutting down."), + 8464 => new Code(code, "ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET", "A synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from the 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 the source partial attribute set."), + 8465 => new Code(code, "ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA", "The replication synchronization attempt failed because a master replica attempted to sync from a partial replica."), + 8466 => new Code(code, "ERROR_DS_DRA_EXTN_CONNECTION_FAILED", "The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation."), + 8467 => new Code(code, "ERROR_DS_INSTALL_SCHEMA_MISMATCH", "The version of the directory service schema of the source forest is not compatible with the version of the directory service on this computer."), + 8468 => new Code(code, "ERROR_DS_DUP_LINK_ID", "Schema update failed: An attribute with the same link identifier already exists."), + 8469 => new Code(code, "ERROR_DS_NAME_ERROR_RESOLVING", "Name translation: Generic processing error."), + 8470 => new Code(code, "ERROR_DS_NAME_ERROR_NOT_FOUND", "Name translation: Could not find the name or insufficient right to see name."), + 8471 => new Code(code, "ERROR_DS_NAME_ERROR_NOT_UNIQUE", "Name translation: Input name mapped to more than one output name."), + 8472 => new Code(code, "ERROR_DS_NAME_ERROR_NO_MAPPING", "Name translation: The input name was found but not the associated output format."), + 8473 => new Code(code, "ERROR_DS_NAME_ERROR_DOMAIN_ONLY", "Name translation: Unable to resolve completely, only the domain was found."), + 8474 => new Code(code, "ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING", "Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire."), + 8475 => new Code(code, "ERROR_DS_CONSTRUCTED_ATT_MOD", "Modification of a constructed attribute is not allowed."), + 8476 => new Code(code, "ERROR_DS_WRONG_OM_OBJ_CLASS", "The OM-Object-Class specified is incorrect for an attribute with the specified syntax."), + 8477 => new Code(code, "ERROR_DS_DRA_REPL_PENDING", "The replication request has been posted; waiting for a reply."), + 8478 => new Code(code, "ERROR_DS_DS_REQUIRED", "The requested operation requires a directory service, and none was available."), + 8479 => new Code(code, "ERROR_DS_INVALID_LDAP_DISPLAY_NAME", "The LDAP display name of the class or attribute contains non-ASCII characters."), + 8480 => new Code(code, "ERROR_DS_NON_BASE_SEARCH", "The requested search operation is only supported for base searches."), + 8481 => new Code(code, "ERROR_DS_CANT_RETRIEVE_ATTS", "The search failed to retrieve attributes from the database."), + 8482 => new Code(code, "ERROR_DS_BACKLINK_WITHOUT_LINK", "The schema update operation tried to add a backward link attribute that has no corresponding forward link."), + 8483 => new Code(code, "ERROR_DS_EPOCH_MISMATCH", "The source and destination of a cross-domain move do not agree on the object's epoch number. Either the source or the destination does not have the latest version of the object."), + 8484 => new Code(code, "ERROR_DS_SRC_NAME_MISMATCH", "The source and destination of a cross-domain move do not agree on the object's current name. Either the source or the destination does not have the latest version of the object."), + 8485 => new Code(code, "ERROR_DS_SRC_AND_DST_NC_IDENTICAL", "The source and destination for the cross-domain move operation are identical. The caller should use a local move operation instead of a cross-domain move operation."), + 8486 => new Code(code, "ERROR_DS_DST_NC_MISMATCH", "The source and destination for a cross-domain move do not agree on the naming contexts in the forest. Either the source or the destination does not have the latest version of the Partitions container."), + 8487 => new Code(code, "ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC", "The destination of a cross-domain move is not authoritative for the destination naming context."), + 8488 => new Code(code, "ERROR_DS_SRC_GUID_MISMATCH", "The source and destination of a cross-domain move do not agree on the identity of the source object. Either the source or the destination does not have the latest version of the source object."), + 8489 => new Code(code, "ERROR_DS_CANT_MOVE_DELETED_OBJECT", "The 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."), + 8490 => new Code(code, "ERROR_DS_PDC_OPERATION_IN_PROGRESS", "Another operation that requires exclusive access to the PDC FSMO is already in progress."), + 8491 => new Code(code, "ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD", "A cross-domain move operation failed because 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."), + 8492 => new Code(code, "ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION", "This object cannot be moved across domain boundaries either because cross-domain moves for this class are not allowed, or the object has some special characteristics, for example, a trust account or a restricted relative identifier (RID), that prevent its move."), + 8493 => new Code(code, "ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS", "Cannot move objects with memberships across domain boundaries because, once moved, this violates the membership conditions of the account group. Remove the object from any account group memberships and retry."), + 8494 => new Code(code, "ERROR_DS_NC_MUST_HAVE_NC_PARENT", "A naming context head must be the immediate child of another naming context head, not of an interior node."), + 8495 => new Code(code, "ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE", "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. Ensure that the domain naming master role is held by a server that is configured as a GC server, and that the server is up-to-date with its replication partners. (Applies only to Windows 2000 operating system domain naming masters.)"), + 8496 => new Code(code, "ERROR_DS_DST_DOMAIN_NOT_NATIVE", "Destination domain must be in native mode."), + 8497 => new Code(code, "ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER", "The operation cannot be performed because the server does not have an infrastructure container in the domain of interest."), + 8498 => new Code(code, "ERROR_DS_CANT_MOVE_ACCOUNT_GROUP", "Cross-domain moves of nonempty account groups is not allowed."), + 8499 => new Code(code, "ERROR_DS_CANT_MOVE_RESOURCE_GROUP", "Cross-domain moves of nonempty resource groups is not allowed."), + 8500 => new Code(code, "ERROR_DS_INVALID_SEARCH_FLAG", "The search flags for the attribute are invalid. The ambiguous name resolution (ANR) bit is valid only on attributes of Unicode or Teletex strings."), + 8501 => new Code(code, "ERROR_DS_NO_TREE_DELETE_ABOVE_NC", "Tree deletions starting at an object that has an NC head as a descendant are not allowed."), + 8502 => new Code(code, "ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE", "The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use."), + 8503 => new Code(code, "ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE", "The directory service failed to identify the list of objects to delete while attempting a tree deletion."), + 8504 => new Code(code, "ERROR_DS_SAM_INIT_FAILURE", "SAM initialization failed because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system and reboot into Directory Services Restore Mode. Check the event log for detailed information."), + 8505 => new Code(code, "ERROR_DS_SENSITIVE_GROUP_VIOLATION", "Only an administrator can modify the membership list of an administrative group."), + 8506 => new Code(code, "ERROR_DS_CANT_MOD_PRIMARYGROUPID", "Cannot change the primary group ID of a domain controller account."), + 8507 => new Code(code, "ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD", "An attempt was made to modify the base schema."), + 8508 => new Code(code, "ERROR_DS_NONSAFE_SCHEMA_CHANGE", "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."), + 8509 => new Code(code, "ERROR_DS_SCHEMA_UPDATE_DISALLOWED", "Schema update is not allowed on this DC because the DC is not the schema FSMO role owner."), + 8510 => new Code(code, "ERROR_DS_CANT_CREATE_UNDER_SCHEMA", "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."), + 8511 => new Code(code, "ERROR_DS_INSTALL_NO_SRC_SCH_VERSION", "The replica or 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."), + 8512 => new Code(code, "ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE", "The replica or child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the System32 directory."), + 8513 => new Code(code, "ERROR_DS_INVALID_GROUP_TYPE", "The specified group type is invalid."), + 8514 => new Code(code, "ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN", "You cannot nest global groups in a mixed domain if the group is security-enabled."), + 8515 => new Code(code, "ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN", "You cannot nest local groups in a mixed domain if the group is security-enabled."), + 8516 => new Code(code, "ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER", "A global group cannot have a local group as a member."), + 8517 => new Code(code, "ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER", "A global group cannot have a universal group as a member."), + 8518 => new Code(code, "ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER", "A universal group cannot have a local group as a member."), + 8519 => new Code(code, "ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER", "A global group cannot have a cross-domain member."), + 8520 => new Code(code, "ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER", "A local group cannot have another cross domain local group as a member."), + 8521 => new Code(code, "ERROR_DS_HAVE_PRIMARY_MEMBERS", "A group with primary members cannot change to a security-disabled group."), + 8522 => new Code(code, "ERROR_DS_STRING_SD_CONVERSION_FAILED", "The schema cache load failed to convert the string default security descriptor (SD) on a class-schema object."), + 8523 => new Code(code, "ERROR_DS_NAMING_MASTER_GC", "Only DSAs configured to be GC servers should be allowed to hold the domain naming master FSMO role. (Applies only to Windows 2000 servers.)"), + 8524 => new Code(code, "ERROR_DS_DNS_LOOKUP_FAILURE", "The DSA operation is unable to proceed because of a DNS lookup failure."), + 8525 => new Code(code, "ERROR_DS_COULDNT_UPDATE_SPNS", "While processing a change to the DNS host name for an object, the SPN values could not be kept in sync."), + 8526 => new Code(code, "ERROR_DS_CANT_RETRIEVE_SD", "The Security Descriptor attribute could not be read."), + 8527 => new Code(code, "ERROR_DS_KEY_NOT_UNIQUE", "The object requested was not found, but an object with that key was found."), + 8528 => new Code(code, "ERROR_DS_WRONG_LINKED_ATT_SYNTAX", "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."), + 8529 => new Code(code, "ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD", "SAM needs to get the boot password."), + 8530 => new Code(code, "ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY", "SAM needs to get the boot key from the floppy disk."), + 8531 => new Code(code, "ERROR_DS_CANT_START", "Directory Service cannot start."), + 8532 => new Code(code, "ERROR_DS_INIT_FAILURE", "Directory Services could not start."), + 8533 => new Code(code, "ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION", "The connection between client and server requires packet privacy or better."), + 8534 => new Code(code, "ERROR_DS_SOURCE_DOMAIN_IN_FOREST", "The source domain cannot be in the same forest as the destination."), + 8535 => new Code(code, "ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST", "The destination domain MUST be in the forest."), + 8536 => new Code(code, "ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED", "The operation requires that destination domain auditing be enabled."), + 8537 => new Code(code, "ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN", "The operation could not locate a DC for the source domain."), + 8538 => new Code(code, "ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER", "The source object must be a group or user."), + 8539 => new Code(code, "ERROR_DS_SRC_SID_EXISTS_IN_FOREST", "The source object's SID already exists in the destination forest."), + 8540 => new Code(code, "ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH", "The source and destination object must be of the same type."), + 8541 => new Code(code, "ERROR_SAM_INIT_FAILURE", "SAM 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."), + 8542 => new Code(code, "ERROR_DS_DRA_SCHEMA_INFO_SHIP", "Schema information could not be included in the replication request."), + 8543 => new Code(code, "ERROR_DS_DRA_SCHEMA_CONFLICT", "The replication operation could not be completed due to a schema incompatibility."), + 8544 => new Code(code, "ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT", "The replication operation could not be completed due to a previous schema incompatibility."), + 8545 => new Code(code, "ERROR_DS_DRA_OBJ_NC_MISMATCH", "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."), + 8546 => new Code(code, "ERROR_DS_NC_STILL_HAS_DSAS", "The requested domain could not be deleted because there exist domain controllers that still host this domain."), + 8547 => new Code(code, "ERROR_DS_GC_REQUIRED", "The requested operation can be performed only on a GC server."), + 8548 => new Code(code, "ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY", "A local group can only be a member of other local groups in the same domain."), + 8549 => new Code(code, "ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS", "Foreign security principals cannot be members of universal groups."), + 8550 => new Code(code, "ERROR_DS_CANT_ADD_TO_GC", "The attribute is not allowed to be replicated to the GC because of security reasons."), + 8551 => new Code(code, "ERROR_DS_NO_CHECKPOINT_WITH_PDC", "The checkpoint with the PDC could not be taken because too many modifications are currently being processed."), + 8552 => new Code(code, "ERROR_DS_SOURCE_AUDITING_NOT_ENABLED", "The operation requires that source domain auditing be enabled."), + 8553 => new Code(code, "ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC", "Security principal objects can only be created inside domain naming contexts."), + 8554 => new Code(code, "ERROR_DS_INVALID_NAME_FOR_SPN", "An SPN could not be constructed because the provided host name is not in the necessary format."), + 8555 => new Code(code, "ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS", "A filter was passed that uses constructed attributes."), + 8556 => new Code(code, "ERROR_DS_UNICODEPWD_NOT_IN_QUOTES", "The unicodePwd attribute value must be enclosed in quotation marks."), + 8557 => new Code(code, "ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased."), + 8558 => new Code(code, "ERROR_DS_MUST_BE_RUN_ON_DST_DC", "For security reasons, the operation must be run on the destination DC."), + 8559 => new Code(code, "ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER", "For security reasons, the source DC must be NT4SP4 or greater."), + 8560 => new Code(code, "ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ", "Critical directory service system objects cannot be deleted during tree deletion operations. The tree deletion might have been partially performed."), + 8561 => new Code(code, "ERROR_DS_INIT_FAILURE_CONSOLE", "Directory Services could not start because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system. You can use the Recovery Console to further diagnose the system."), + 8562 => new Code(code, "ERROR_DS_SAM_INIT_FAILURE_CONSOLE", "SAM initialization failed because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system. You can use the Recovery Console to further diagnose the system."), + 8563 => new Code(code, "ERROR_DS_FOREST_VERSION_TOO_HIGH", "The version of the operating system installed is incompatible with the current forest functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this forest."), + 8564 => new Code(code, "ERROR_DS_DOMAIN_VERSION_TOO_HIGH", "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."), + 8565 => new Code(code, "ERROR_DS_FOREST_VERSION_TOO_LOW", "The version of the operating system installed on this server no longer supports the current forest functional level. You must raise the forest functional level before this server can become a domain controller in this forest."), + 8566 => new Code(code, "ERROR_DS_DOMAIN_VERSION_TOO_LOW", "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."), + 8567 => new Code(code, "ERROR_DS_INCOMPATIBLE_VERSION", "The version of the operating system installed on this server is incompatible with the functional level of the domain or forest."), + 8568 => new Code(code, "ERROR_DS_LOW_DSA_VERSION", "The functional level of the domain (or forest) cannot be raised to the requested value because one or more domain controllers in the domain (or forest) are at a lower, incompatible functional level."), + 8569 => new Code(code, "ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN", "The forest functional level cannot be raised to the requested value because 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."), + 8570 => new Code(code, "ERROR_DS_NOT_SUPPORTED_SORT_ORDER", "The sort order requested is not supported."), + 8571 => new Code(code, "ERROR_DS_NAME_NOT_UNIQUE", "The requested name already exists as a unique identifier."), + 8572 => new Code(code, "ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4", "The machine account was created before Windows NT 4.0. The account needs to be re-created."), + 8573 => new Code(code, "ERROR_DS_OUT_OF_VERSION_STORE", "The database is out of version store."), + 8574 => new Code(code, "ERROR_DS_INCOMPATIBLE_CONTROLS_USED", "Unable to continue operation because multiple conflicting controls were used."), + 8575 => new Code(code, "ERROR_DS_NO_REF_DOMAIN", "Unable to find a valid security descriptor reference domain for this partition."), + 8576 => new Code(code, "ERROR_DS_RESERVED_LINK_ID", "Schema update failed: The link identifier is reserved."), + 8577 => new Code(code, "ERROR_DS_LINK_ID_NOT_AVAILABLE", "Schema update failed: There are no link identifiers available."), + 8578 => new Code(code, "ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER", "An account group cannot have a universal group as a member."), + 8579 => new Code(code, "ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE", "Rename or move operations on naming context heads or read-only objects are not allowed."), + 8580 => new Code(code, "ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC", "Move operations on objects in the schema naming context are not allowed."), + 8581 => new Code(code, "ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG", "A system flag has been set on the object that does not allow the object to be moved or renamed."), + 8582 => new Code(code, "ERROR_DS_MODIFYDN_WRONG_GRANDPARENT", "This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers."), + 8583 => new Code(code, "ERROR_DS_NAME_ERROR_TRUST_REFERRAL", "Unable to resolve completely; a referral to another forest was generated."), + 8584 => new Code(code, "ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER", "The requested action is not supported on a standard server."), + 8585 => new Code(code, "ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD", "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."), + 8586 => new Code(code, "ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2", "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. Ensure that the parent naming context is properly registered in the DNS, and at least one replica of this naming context is reachable by the domain naming master."), + 8587 => new Code(code, "ERROR_DS_THREAD_LIMIT_EXCEEDED", "The thread limit for this request was exceeded."), + 8588 => new Code(code, "ERROR_DS_NOT_CLOSEST", "The GC server is not in the closest site."), + 8589 => new Code(code, "ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF", "The directory service cannot derive an SPN with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute."), + 8590 => new Code(code, "ERROR_DS_SINGLE_USER_MODE_FAILED", "The directory service failed to enter single-user mode."), + 8591 => new Code(code, "ERROR_DS_NTDSCRIPT_SYNTAX_ERROR", "The directory service cannot parse the script because of a syntax error."), + 8592 => new Code(code, "ERROR_DS_NTDSCRIPT_PROCESS_ERROR", "The directory service cannot process the script because of an error."), + 8593 => new Code(code, "ERROR_DS_DIFFERENT_REPL_EPOCHS", "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)."), + 8594 => new Code(code, "ERROR_DS_DRS_EXTENSIONS_CHANGED", "The directory service binding must be renegotiated due to a change in the server extensions information."), + 8595 => new Code(code, "ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR", "The operation is not allowed on a disabled cross-reference."), + 8596 => new Code(code, "ERROR_DS_NO_MSDS_INTID", "Schema update failed: No values for msDS-IntId are available."), + 8597 => new Code(code, "ERROR_DS_DUP_MSDS_INTID", "Schema update failed: Duplicate msDS-IntId. Retry the operation."), + 8598 => new Code(code, "ERROR_DS_EXISTS_IN_RDNATTID", "Schema deletion failed: Attribute is used in rDNAttID."), + 8599 => new Code(code, "ERROR_DS_AUTHORIZATION_FAILED", "The directory service failed to authorize the request."), + 8600 => new Code(code, "ERROR_DS_INVALID_SCRIPT", "The directory service cannot process the script because it is invalid."), + 8601 => new Code(code, "ERROR_DS_REMOTE_CROSSREF_OP_FAILED", "The remote create cross-reference operation failed on the domain naming master FSMO. The operation's error is in the extended data."), + 8602 => new Code(code, "ERROR_DS_CROSS_REF_BUSY", "A cross-reference is in use locally with the same name."), + 8603 => new Code(code, "ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN", "The directory service cannot derive an SPN with which to mutually authenticate the target server because the server's domain has been deleted from the forest."), + 8604 => new Code(code, "ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC", "Writable NCs prevent this DC from demoting."), + 8605 => new Code(code, "ERROR_DS_DUPLICATE_ID_FOUND", "The requested object has a nonunique identifier and cannot be retrieved."), + 8606 => new Code(code, "ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT", "Insufficient attributes were given to create an object. This object might not exist because it might have been deleted and the garbage already collected."), + 8607 => new Code(code, "ERROR_DS_GROUP_CONVERSION_ERROR", "The group cannot be converted due to attribute restrictions on the requested group type."), + 8608 => new Code(code, "ERROR_DS_CANT_MOVE_APP_BASIC_GROUP", "Cross-domain moves of nonempty basic application groups is not allowed."), + 8609 => new Code(code, "ERROR_DS_CANT_MOVE_APP_QUERY_GROUP", "Cross-domain moves of nonempty query-based application groups is not allowed."), + 8610 => new Code(code, "ERROR_DS_ROLE_NOT_VERIFIED", "The FSMO role ownership could not be verified because its directory partition did not replicate successfully with at least one replication partner."), + 8611 => new Code(code, "ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL", "The target container for a redirection of a well-known object container cannot already be a special container."), + 8612 => new Code(code, "ERROR_DS_DOMAIN_RENAME_IN_PROGRESS", "The directory service cannot perform the requested operation because a domain rename operation is in progress."), + 8613 => new Code(code, "ERROR_DS_EXISTING_AD_CHILD_NC", "The directory service detected a child partition below the requested partition name. The partition hierarchy must be created in a top down method."), + 8614 => new Code(code, "ERROR_DS_REPL_LIFETIME_EXCEEDED", "The directory service cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime."), + 8615 => new Code(code, "ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER", "The requested operation is not allowed on an object under the system container."), + 8616 => new Code(code, "ERROR_DS_LDAP_SEND_QUEUE_FULL", "The LDAP server's 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."), + 8617 => new Code(code, "ERROR_DS_DRA_OUT_SCHEDULE_WINDOW", "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."), + 8618 => new Code(code, "ERROR_DS_POLICY_NOT_KNOWN", "At this time, it cannot be determined if the branch replication policy is available on the hub domain controller. Retry at a later time to account for replication latencies."), + 8619 => new Code(code, "ERROR_NO_SITE_SETTINGS_OBJECT", "The site settings object for the specified site does not exist."), + 8620 => new Code(code, "ERROR_NO_SECRETS", "The local account store does not contain secret material for the specified account."), + 8621 => new Code(code, "ERROR_NO_WRITABLE_DC_FOUND", "Could not find a writable domain controller in the domain."), + 8622 => new Code(code, "ERROR_DS_NO_SERVER_OBJECT", "The server object for the domain controller does not exist."), + 8623 => new Code(code, "ERROR_DS_NO_NTDSA_OBJECT", "The NTDS Settings object for the domain controller does not exist."), + 8624 => new Code(code, "ERROR_DS_NON_ASQ_SEARCH", "The requested search operation is not supported for attribute scoped query (ASQ) searches."), + 8625 => new Code(code, "ERROR_DS_AUDIT_FAILURE", "A required audit event could not be generated for the operation."), + 8626 => new Code(code, "ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE", "The search flags for the attribute are invalid. The subtree index bit is valid only on single-valued attributes."), + 8627 => new Code(code, "ERROR_DS_INVALID_SEARCH_FLAG_TUPLE", "The search flags for the attribute are invalid. The tuple index bit is valid only on attributes of Unicode strings."), + 8639 => new Code(code, "ERROR_DS_DRA_RECYCLED_TARGET", "The replication operation failed because the target object referenced by a link value is recycled."), + 8642 => new Code(code, "ERROR_DS_HIGH_DSA_VERSION", "The functional level of the domain (or forest) cannot be lowered to the requested value."), + 8647 => new Code(code, "ERROR_DS_SPN_VALUE_NOT_UNIQUE_IN_FOREST", "The operation failed because the SPN value provided for addition/modification is not unique forest-wide."), + 8648 => new Code(code, "ERROR_DS_UPN_VALUE_NOT_UNIQUE_IN_FOREST", "The operation failed because the UPN value provided for addition/modification is not unique forest-wide."), + 9001 => new Code(code, "DNS_ERROR_RCODE_FORMAT_ERROR", "DNS server unable to interpret format."), + 9002 => new Code(code, "DNS_ERROR_RCODE_SERVER_FAILURE", "DNS server failure."), + 9003 => new Code(code, "DNS_ERROR_RCODE_NAME_ERROR", "DNS name does not exist."), + 9004 => new Code(code, "DNS_ERROR_RCODE_NOT_IMPLEMENTED", "DNS request not supported by name server."), + 9005 => new Code(code, "DNS_ERROR_RCODE_REFUSED", "DNS operation refused."), + 9006 => new Code(code, "DNS_ERROR_RCODE_YXDOMAIN", "DNS name that should not exist, does exist."), + 9007 => new Code(code, "DNS_ERROR_RCODE_YXRRSET", "DNS resource record (RR) set that should not exist, does exist."), + 9008 => new Code(code, "DNS_ERROR_RCODE_NXRRSET", "DNS RR set that should to exist, does not exist."), + 9009 => new Code(code, "DNS_ERROR_RCODE_NOTAUTH", "DNS server not authoritative for zone."), + 9010 => new Code(code, "DNS_ERROR_RCODE_NOTZONE", "DNS name in update or prereq is not in zone."), + 9016 => new Code(code, "DNS_ERROR_RCODE_BADSIG", "DNS signature failed to verify."), + 9017 => new Code(code, "DNS_ERROR_RCODE_BADKEY", "DNS bad key."), + 9018 => new Code(code, "DNS_ERROR_RCODE_BADTIME", "DNS signature validity expired."), + 9501 => new Code(code, "DNS_INFO_NO_RECORDS", "No records found for given DNS query."), + 9502 => new Code(code, "DNS_ERROR_BAD_PACKET", "Bad DNS packet."), + 9503 => new Code(code, "DNS_ERROR_NO_PACKET", "No DNS packet."), + 9504 => new Code(code, "DNS_ERROR_RCODE", "DNS error, check rcode."), + 9505 => new Code(code, "DNS_ERROR_UNSECURE_PACKET", "Unsecured DNS packet."), + 9551 => new Code(code, "DNS_ERROR_INVALID_TYPE", "Invalid DNS type."), + 9552 => new Code(code, "DNS_ERROR_INVALID_IP_ADDRESS", "Invalid IP address."), + 9553 => new Code(code, "DNS_ERROR_INVALID_PROPERTY", "Invalid property."), + 9554 => new Code(code, "DNS_ERROR_TRY_AGAIN_LATER", "Try DNS operation again later."), + 9555 => new Code(code, "DNS_ERROR_NOT_UNIQUE", "Record for given name and type is not unique."), + 9556 => new Code(code, "DNS_ERROR_NON_RFC_NAME", "DNS name does not comply with RFC specifications."), + 9557 => new Code(code, "DNS_STATUS_FQDN", "DNS name is a fully qualified DNS name."), + 9558 => new Code(code, "DNS_STATUS_DOTTED_NAME", "DNS name is dotted (multilabel)."), + 9559 => new Code(code, "DNS_STATUS_SINGLE_PART_NAME", "DNS name is a single-part name."), + 9560 => new Code(code, "DNS_ERROR_INVALID_NAME_CHAR", "DNS name contains an invalid character."), + 9561 => new Code(code, "DNS_ERROR_NUMERIC_NAME", "DNS name is entirely numeric."), + 9562 => new Code(code, "DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER", "The operation requested is not permitted on a DNS root server."), + 9563 => new Code(code, "DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION", "The record could not be created because this part of the DNS namespace has been delegated to another server."), + 9564 => new Code(code, "DNS_ERROR_CANNOT_FIND_ROOT_HINTS", "The DNS server could not find a set of root hints."), + 9565 => new Code(code, "DNS_ERROR_INCONSISTENT_ROOT_HINTS", "The DNS server found root hints but they were not consistent across all adapters."), + 9566 => new Code(code, "DNS_ERROR_DWORD_VALUE_TOO_SMALL", "The specified value is too small for this parameter."), + 9567 => new Code(code, "DNS_ERROR_DWORD_VALUE_TOO_LARGE", "The specified value is too large for this parameter."), + 9568 => new Code(code, "DNS_ERROR_BACKGROUND_LOADING", "This operation is not allowed while the DNS server is loading zones in the background. Try again later."), + 9569 => new Code(code, "DNS_ERROR_NOT_ALLOWED_ON_RODC", "The operation requested is not permitted on against a DNS server running on a read-only DC."), + 9601 => new Code(code, "DNS_ERROR_ZONE_DOES_NOT_EXIST", "DNS zone does not exist."), + 9602 => new Code(code, "DNS_ERROR_NO_ZONE_INFO", "DNS zone information not available."), + 9603 => new Code(code, "DNS_ERROR_INVALID_ZONE_OPERATION", "Invalid operation for DNS zone."), + 9604 => new Code(code, "DNS_ERROR_ZONE_CONFIGURATION_ERROR", "Invalid DNS zone configuration."), + 9605 => new Code(code, "DNS_ERROR_ZONE_HAS_NO_SOA_RECORD", "DNS zone has no start of authority (SOA) record."), + 9606 => new Code(code, "DNS_ERROR_ZONE_HAS_NO_NS_RECORDS", "DNS zone has no Name Server (NS) record."), + 9607 => new Code(code, "DNS_ERROR_ZONE_LOCKED", "DNS zone is locked."), + 9608 => new Code(code, "DNS_ERROR_ZONE_CREATION_FAILED", "DNS zone creation failed."), + 9609 => new Code(code, "DNS_ERROR_ZONE_ALREADY_EXISTS", "DNS zone already exists."), + 9610 => new Code(code, "DNS_ERROR_AUTOZONE_ALREADY_EXISTS", "DNS automatic zone already exists."), + 9611 => new Code(code, "DNS_ERROR_INVALID_ZONE_TYPE", "Invalid DNS zone type."), + 9612 => new Code(code, "DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP", "Secondary DNS zone requires master IP address."), + 9613 => new Code(code, "DNS_ERROR_ZONE_NOT_SECONDARY", "DNS zone not secondary."), + 9614 => new Code(code, "DNS_ERROR_NEED_SECONDARY_ADDRESSES", "Need secondary IP address."), + 9615 => new Code(code, "DNS_ERROR_WINS_INIT_FAILED", "WINS initialization failed."), + 9616 => new Code(code, "DNS_ERROR_NEED_WINS_SERVERS", "Need WINS servers."), + 9617 => new Code(code, "DNS_ERROR_NBSTAT_INIT_FAILED", "NBTSTAT initialization call failed."), + 9618 => new Code(code, "DNS_ERROR_SOA_DELETE_INVALID", "Invalid delete of SOA."), + 9619 => new Code(code, "DNS_ERROR_FORWARDER_ALREADY_EXISTS", "A conditional forwarding zone already exists for that name."), + 9620 => new Code(code, "DNS_ERROR_ZONE_REQUIRES_MASTER_IP", "This zone must be configured with one or more master DNS server IP addresses."), + 9621 => new Code(code, "DNS_ERROR_ZONE_IS_SHUTDOWN", "The operation cannot be performed because this zone is shut down."), + 9651 => new Code(code, "DNS_ERROR_PRIMARY_REQUIRES_DATAFILE", "The primary DNS zone requires a data file."), + 9652 => new Code(code, "DNS_ERROR_INVALID_DATAFILE_NAME", "Invalid data file name for the DNS zone."), + 9653 => new Code(code, "DNS_ERROR_DATAFILE_OPEN_FAILURE", "Failed to open the data file for the DNS zone."), + 9654 => new Code(code, "DNS_ERROR_FILE_WRITEBACK_FAILED", "Failed to write the data file for the DNS zone."), + 9655 => new Code(code, "DNS_ERROR_DATAFILE_PARSING", "Failure while reading datafile for DNS zone."), + 9701 => new Code(code, "DNS_ERROR_RECORD_DOES_NOT_EXIST", "DNS record does not exist."), + 9702 => new Code(code, "DNS_ERROR_RECORD_FORMAT", "DNS record format error."), + 9703 => new Code(code, "DNS_ERROR_NODE_CREATION_FAILED", "Node creation failure in DNS."), + 9704 => new Code(code, "DNS_ERROR_UNKNOWN_RECORD_TYPE", "Unknown DNS record type."), + 9705 => new Code(code, "DNS_ERROR_RECORD_TIMED_OUT", "DNS record timed out."), + 9706 => new Code(code, "DNS_ERROR_NAME_NOT_IN_ZONE", "Name not in DNS zone."), + 9707 => new Code(code, "DNS_ERROR_CNAME_LOOP", "CNAME loop detected."), + 9708 => new Code(code, "DNS_ERROR_NODE_IS_CNAME", "Node is a CNAME DNS record."), + 9709 => new Code(code, "DNS_ERROR_CNAME_COLLISION", "A CNAME record already exists for the given name."), + 9710 => new Code(code, "DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT", "Record is only at DNS zone root."), + 9711 => new Code(code, "DNS_ERROR_RECORD_ALREADY_EXISTS", "DNS record already exists."), + 9712 => new Code(code, "DNS_ERROR_SECONDARY_DATA", "Secondary DNS zone data error."), + 9713 => new Code(code, "DNS_ERROR_NO_CREATE_CACHE_DATA", "Could not create DNS cache data."), + 9714 => new Code(code, "DNS_ERROR_NAME_DOES_NOT_EXIST", "DNS name does not exist."), + 9715 => new Code(code, "DNS_WARNING_PTR_CREATE_FAILED", "Could not create pointer (PTR) record."), + 9716 => new Code(code, "DNS_WARNING_DOMAIN_UNDELETED", "DNS domain was undeleted."), + 9717 => new Code(code, "DNS_ERROR_DS_UNAVAILABLE", "The directory service is unavailable."), + 9718 => new Code(code, "DNS_ERROR_DS_ZONE_ALREADY_EXISTS", "DNS zone already exists in the directory service."), + 9719 => new Code(code, "DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE", "DNS server not creating or reading the boot file for the directory service integrated DNS zone."), + 9751 => new Code(code, "DNS_INFO_AXFR_COMPLETE", "DNS AXFR (zone transfer) complete."), + 9752 => new Code(code, "DNS_ERROR_AXFR", "DNS zone transfer failed."), + 9753 => new Code(code, "DNS_INFO_ADDED_LOCAL_WINS", "Added local WINS server."), + 9801 => new Code(code, "DNS_STATUS_CONTINUE_NEEDED", "Secure update call needs to continue update request."), + 9851 => new Code(code, "DNS_ERROR_NO_TCPIP", "TCP/IP network protocol not installed."), + 9852 => new Code(code, "DNS_ERROR_NO_DNS_SERVERS", "No DNS servers configured for local system."), + 9901 => new Code(code, "DNS_ERROR_DP_DOES_NOT_EXIST", "The specified directory partition does not exist."), + 9902 => new Code(code, "DNS_ERROR_DP_ALREADY_EXISTS", "The specified directory partition already exists."), + 9903 => new Code(code, "DNS_ERROR_DP_NOT_ENLISTED", "This DNS server is not enlisted in the specified directory partition."), + 9904 => new Code(code, "DNS_ERROR_DP_ALREADY_ENLISTED", "This DNS server is already enlisted in the specified directory partition."), + 9905 => new Code(code, "DNS_ERROR_DP_NOT_AVAILABLE", "The directory partition is not available at this time. Wait a few minutes and try again."), + 9906 => new Code(code, "DNS_ERROR_DP_FSMO_ERROR", "The application directory partition operation failed. The domain controller holding the domain naming master role is down or unable to service the request or is not running Windows Server 2003."), + 10004 => new Code(code, "WSAEINTR", "A blocking operation was interrupted by a call to WSACancelBlockingCall."), + 10009 => new Code(code, "WSAEBADF", "The file handle supplied is not valid."), + 10013 => new Code(code, "WSAEACCES", "An attempt was made to access a socket in a way forbidden by its access permissions."), + 10014 => new Code(code, "WSAEFAULT", "The system detected an invalid pointer address in attempting to use a pointer argument in a call."), + 10022 => new Code(code, "WSAEINVAL", "An invalid argument was supplied."), + 10024 => new Code(code, "WSAEMFILE", "Too many open sockets."), + 10035 => new Code(code, "WSAEWOULDBLOCK", "A nonblocking socket operation could not be completed immediately."), + 10036 => new Code(code, "WSAEINPROGRESS", "A blocking operation is currently executing."), + 10037 => new Code(code, "WSAEALREADY", "An operation was attempted on a nonblocking socket that already had an operation in progress."), + 10038 => new Code(code, "WSAENOTSOCK", "An operation was attempted on something that is not a socket."), + 10039 => new Code(code, "WSAEDESTADDRREQ", "A required address was omitted from an operation on a socket."), + 10040 => new Code(code, "WSAEMSGSIZE", "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."), + 10041 => new Code(code, "WSAEPROTOTYPE", "A protocol was specified in the socket function call that does not support the semantics of the socket type requested."), + 10042 => new Code(code, "WSAENOPROTOOPT", "An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call."), + 10043 => new Code(code, "WSAEPROTONOSUPPORT", "The requested protocol has not been configured into the system, or no implementation for it exists."), + 10044 => new Code(code, "WSAESOCKTNOSUPPORT", "The support for the specified socket type does not exist in this address family."), + 10045 => new Code(code, "WSAEOPNOTSUPP", "The attempted operation is not supported for the type of object referenced."), + 10046 => new Code(code, "WSAEPFNOSUPPORT", "The protocol family has not been configured into the system or no implementation for it exists."), + 10047 => new Code(code, "WSAEAFNOSUPPORT", "An address incompatible with the requested protocol was used."), + 10048 => new Code(code, "WSAEADDRINUSE", "Only one usage of each socket address (protocol/network address/port) is normally permitted."), + 10049 => new Code(code, "WSAEADDRNOTAVAIL", "The requested address is not valid in its context."), + 10050 => new Code(code, "WSAENETDOWN", "A socket operation encountered a dead network."), + 10051 => new Code(code, "WSAENETUNREACH", "A socket operation was attempted to an unreachable network."), + 10052 => new Code(code, "WSAENETRESET", "The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress."), + 10053 => new Code(code, "WSAECONNABORTED", "An established connection was aborted by the software in your host machine."), + 10054 => new Code(code, "WSAECONNRESET", "An existing connection was forcibly closed by the remote host."), + 10055 => new Code(code, "WSAENOBUFS", "An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full."), + 10056 => new Code(code, "WSAEISCONN", "A connect request was made on an already connected socket."), + 10057 => new Code(code, "WSAENOTCONN", "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."), + 10058 => new Code(code, "WSAESHUTDOWN", "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."), + 10059 => new Code(code, "WSAETOOMANYREFS", "Too many references to a kernel object."), + 10060 => new Code(code, "WSAETIMEDOUT", "A connection attempt failed because the connected party did not properly respond after a period of time, or the established connection failed because the connected host failed to respond."), + 10061 => new Code(code, "WSAECONNREFUSED", "No connection could be made because the target machine actively refused it."), + 10062 => new Code(code, "WSAELOOP", "Cannot translate name."), + 10063 => new Code(code, "WSAENAMETOOLONG", "Name or name component was too long."), + 10064 => new Code(code, "WSAEHOSTDOWN", "A socket operation failed because the destination host was down."), + 10065 => new Code(code, "WSAEHOSTUNREACH", "A socket operation was attempted to an unreachable host."), + 10066 => new Code(code, "WSAENOTEMPTY", "Cannot remove a directory that is not empty."), + 10067 => new Code(code, "WSAEPROCLIM", "A Windows Sockets implementation might have a limit on the number of applications that can use it simultaneously."), + 10068 => new Code(code, "WSAEUSERS", "Ran out of quota."), + 10069 => new Code(code, "WSAEDQUOT", "Ran out of disk quota."), + 10070 => new Code(code, "WSAESTALE", "File handle reference is no longer available."), + 10071 => new Code(code, "WSAEREMOTE", "Item is not available locally."), + 10091 => new Code(code, "WSASYSNOTREADY", "WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable."), + 10092 => new Code(code, "WSAVERNOTSUPPORTED", "The Windows Sockets version requested is not supported."), + 10093 => new Code(code, "WSANOTINITIALISED", "Either the application has not called WSAStartup, or WSAStartup failed."), + 10101 => new Code(code, "WSAEDISCON", "Returned by WSARecv or WSARecvFrom to indicate that the remote party has initiated a graceful shutdown sequence."), + 10102 => new Code(code, "WSAENOMORE", "No more results can be returned by WSALookupServiceNext."), + 10103 => new Code(code, "WSAECANCELLED", "A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled."), + 10104 => new Code(code, "WSAEINVALIDPROCTABLE", "The procedure call table is invalid."), + 10105 => new Code(code, "WSAEINVALIDPROVIDER", "The requested service provider is invalid."), + 10106 => new Code(code, "WSAEPROVIDERFAILEDINIT", "The requested service provider could not be loaded or initialized."), + 10107 => new Code(code, "WSASYSCALLFAILURE", "A system call that should never fail has failed."), + 10108 => new Code(code, "WSASERVICE_NOT_FOUND", "No such service is known. The service cannot be found in the specified namespace."), + 10109 => new Code(code, "WSATYPE_NOT_FOUND", "The specified class was not found."), + 10110 => new Code(code, "WSA_E_NO_MORE", "No more results can be returned by WSALookupServiceNext."), + 10111 => new Code(code, "WSA_E_CANCELLED", "A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled."), + 10112 => new Code(code, "WSAEREFUSED", "A database query failed because it was actively refused."), + 11001 => new Code(code, "WSAHOST_NOT_FOUND", "No such host is known."), + 11002 => new Code(code, "WSATRY_AGAIN", "This is usually a temporary error during host name resolution and means that the local server did not receive a response from an authoritative server."), + 11003 => new Code(code, "WSANO_RECOVERY", "A nonrecoverable error occurred during a database lookup."), + 11004 => new Code(code, "WSANO_DATA", "The requested name is valid, but no data of the requested type was found."), + 11005 => new Code(code, "WSA_QOS_RECEIVERS", "At least one reserve has arrived."), + 11006 => new Code(code, "WSA_QOS_SENDERS", "At least one path has arrived."), + 11007 => new Code(code, "WSA_QOS_NO_SENDERS", "There are no senders."), + 11008 => new Code(code, "WSA_QOS_NO_RECEIVERS", "There are no receivers."), + 11009 => new Code(code, "WSA_QOS_REQUEST_CONFIRMED", "Reserve has been confirmed."), + 11010 => new Code(code, "WSA_QOS_ADMISSION_FAILURE", "Error due to lack of resources."), + 11011 => new Code(code, "WSA_QOS_POLICY_FAILURE", "Rejected for administrative reasons—bad credentials."), + 11012 => new Code(code, "WSA_QOS_BAD_STYLE", "Unknown or conflicting style."), + 11013 => new Code(code, "WSA_QOS_BAD_OBJECT", "There is a problem with some part of the filterspec or provider-specific buffer in general."), + 11014 => new Code(code, "WSA_QOS_TRAFFIC_CTRL_ERROR", "There is a problem with some part of the flowspec."), + 11015 => new Code(code, "WSA_QOS_GENERIC_ERROR", "General quality of serve (QOS) error."), + 11016 => new Code(code, "WSA_QOS_ESERVICETYPE", "An invalid or unrecognized service type was found in the flowspec."), + 11017 => new Code(code, "WSA_QOS_EFLOWSPEC", "An invalid or inconsistent flowspec was found in the QOS structure."), + 11018 => new Code(code, "WSA_QOS_EPROVSPECBUF", "Invalid QOS provider-specific buffer."), + 11019 => new Code(code, "WSA_QOS_EFILTERSTYLE", "An invalid QOS filter style was used."), + 11020 => new Code(code, "WSA_QOS_EFILTERTYPE", "An invalid QOS filter type was used."), + 11021 => new Code(code, "WSA_QOS_EFILTERCOUNT", "An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR."), + 11022 => new Code(code, "WSA_QOS_EOBJLENGTH", "An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer."), + 11023 => new Code(code, "WSA_QOS_EFLOWCOUNT", "An incorrect number of flow descriptors was specified in the QOS structure."), + 11024 => new Code(code, "WSA_QOS_EUNKOWNPSOBJ", "An unrecognized object was found in the QOS provider-specific buffer."), + 11025 => new Code(code, "WSA_QOS_EPOLICYOBJ", "An invalid policy object was found in the QOS provider-specific buffer."), + 11026 => new Code(code, "WSA_QOS_EFLOWDESC", "An invalid QOS flow descriptor was found in the flow descriptor list."), + 11027 => new Code(code, "WSA_QOS_EPSFLOWSPEC", "An invalid or inconsistent flowspec was found in the QOS provider-specific buffer."), + 11028 => new Code(code, "WSA_QOS_EPSFILTERSPEC", "An invalid FILTERSPEC was found in the QOS provider-specific buffer."), + 11029 => new Code(code, "WSA_QOS_ESDMODEOBJ", "An invalid shape discard mode object was found in the QOS provider-specific buffer."), + 11030 => new Code(code, "WSA_QOS_ESHAPERATEOBJ", "An invalid shaping rate object was found in the QOS provider-specific buffer."), + 11031 => new Code(code, "WSA_QOS_RESERVED_PETYPE", "A reserved policy element was found in the QOS provider-specific buffer."), + 13000 => new Code(code, "ERROR_IPSEC_QM_POLICY_EXISTS", "The specified quick mode policy already exists."), + 13001 => new Code(code, "ERROR_IPSEC_QM_POLICY_NOT_FOUND", "The specified quick mode policy was not found."), + 13002 => new Code(code, "ERROR_IPSEC_QM_POLICY_IN_USE", "The specified quick mode policy is being used."), + 13003 => new Code(code, "ERROR_IPSEC_MM_POLICY_EXISTS", "The specified main mode policy already exists."), + 13004 => new Code(code, "ERROR_IPSEC_MM_POLICY_NOT_FOUND", "The specified main mode policy was not found."), + 13005 => new Code(code, "ERROR_IPSEC_MM_POLICY_IN_USE", "The specified main mode policy is being used."), + 13006 => new Code(code, "ERROR_IPSEC_MM_FILTER_EXISTS", "The specified main mode filter already exists."), + 13007 => new Code(code, "ERROR_IPSEC_MM_FILTER_NOT_FOUND", "The specified main mode filter was not found."), + 13008 => new Code(code, "ERROR_IPSEC_TRANSPORT_FILTER_EXISTS", "The specified transport mode filter already exists."), + 13009 => new Code(code, "ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND", "The specified transport mode filter does not exist."), + 13010 => new Code(code, "ERROR_IPSEC_MM_AUTH_EXISTS", "The specified main mode authentication list exists."), + 13011 => new Code(code, "ERROR_IPSEC_MM_AUTH_NOT_FOUND", "The specified main mode authentication list was not found."), + 13012 => new Code(code, "ERROR_IPSEC_MM_AUTH_IN_USE", "The specified main mode authentication list is being used."), + 13013 => new Code(code, "ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND", "The specified default main mode policy was not found."), + 13014 => new Code(code, "ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND", "The specified default main mode authentication list was not found."), + 13015 => new Code(code, "ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND", "The specified default quick mode policy was not found."), + 13016 => new Code(code, "ERROR_IPSEC_TUNNEL_FILTER_EXISTS", "The specified tunnel mode filter exists."), + 13017 => new Code(code, "ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND", "The specified tunnel mode filter was not found."), + 13018 => new Code(code, "ERROR_IPSEC_MM_FILTER_PENDING_DELETION", "The main mode filter is pending deletion."), + 13019 => new Code(code, "ERROR_IPSEC_TRANSPORT_FILTER_ENDING_DELETION", "The transport filter is pending deletion."), + 13020 => new Code(code, "ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION", "The tunnel filter is pending deletion."), + 13021 => new Code(code, "ERROR_IPSEC_MM_POLICY_PENDING_ELETION", "The main mode policy is pending deletion."), + 13022 => new Code(code, "ERROR_IPSEC_MM_AUTH_PENDING_DELETION", "The main mode authentication bundle is pending deletion."), + 13023 => new Code(code, "ERROR_IPSEC_QM_POLICY_PENDING_DELETION", "The quick mode policy is pending deletion."), + 13024 => new Code(code, "WARNING_IPSEC_MM_POLICY_PRUNED", "The main mode policy was successfully added, but some of the requested offers are not supported."), + 13025 => new Code(code, "WARNING_IPSEC_QM_POLICY_PRUNED", "The quick mode policy was successfully added, but some of the requested offers are not supported."), + 13800 => new Code(code, "ERROR_IPSEC_IKE_NEG_STATUS_BEGIN", "Starts the list of frequencies of various IKE Win32 error codes encountered during negotiations."), + 13801 => new Code(code, "ERROR_IPSEC_IKE_AUTH_FAIL", "The IKE authentication credentials are unacceptable."), + 13802 => new Code(code, "ERROR_IPSEC_IKE_ATTRIB_FAIL", "The IKE security attributes are unacceptable."), + 13803 => new Code(code, "ERROR_IPSEC_IKE_NEGOTIATION_PENDING", "The IKE negotiation is in progress."), + 13804 => new Code(code, "ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR", "General processing error."), + 13805 => new Code(code, "ERROR_IPSEC_IKE_TIMED_OUT", "Negotiation timed out."), + 13806 => new Code(code, "ERROR_IPSEC_IKE_NO_CERT", "The IKE failed to find a valid machine certificate. Contact your network security administrator about installing a valid certificate in the appropriate certificate store."), + 13807 => new Code(code, "ERROR_IPSEC_IKE_SA_DELETED", "The IKE security association (SA) was deleted by a peer before it was completely established."), + 13808 => new Code(code, "ERROR_IPSEC_IKE_SA_REAPED", "The IKE SA was deleted before it was completely established."), + 13809 => new Code(code, "ERROR_IPSEC_IKE_MM_ACQUIRE_DROP", "The negotiation request sat in the queue too long."), + 13810 => new Code(code, "ERROR_IPSEC_IKE_QM_ACQUIRE_DROP", "The negotiation request sat in the queue too long."), + 13811 => new Code(code, "ERROR_IPSEC_IKE_QUEUE_DROP_MM", "The negotiation request sat in the queue too long."), + 13812 => new Code(code, "ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM", "The negotiation request sat in the queue too long."), + 13813 => new Code(code, "ERROR_IPSEC_IKE_DROP_NO_RESPONSE", "There was no response from a peer."), + 13814 => new Code(code, "ERROR_IPSEC_IKE_MM_DELAY_DROP", "The negotiation took too long."), + 13815 => new Code(code, "ERROR_IPSEC_IKE_QM_DELAY_DROP", "The negotiation took too long."), + 13816 => new Code(code, "ERROR_IPSEC_IKE_ERROR", "An unknown error occurred."), + 13817 => new Code(code, "ERROR_IPSEC_IKE_CRL_FAILED", "The certificate revocation check failed."), + 13818 => new Code(code, "ERROR_IPSEC_IKE_INVALID_KEY_USAGE", "Invalid certificate key usage."), + 13819 => new Code(code, "ERROR_IPSEC_IKE_INVALID_CERT_TYPE", "Invalid certificate type."), + 13820 => new Code(code, "ERROR_IPSEC_IKE_NO_PRIVATE_KEY", "The 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 a certificate that has a private key."), + 13822 => new Code(code, "ERROR_IPSEC_IKE_DH_FAIL", "There was a failure in the Diffie-Hellman computation."), + 13824 => new Code(code, "ERROR_IPSEC_IKE_INVALID_HEADER", "Invalid header."), + 13825 => new Code(code, "ERROR_IPSEC_IKE_NO_POLICY", "No policy configured."), + 13826 => new Code(code, "ERROR_IPSEC_IKE_INVALID_SIGNATURE", "Failed to verify signature."), + 13827 => new Code(code, "ERROR_IPSEC_IKE_KERBEROS_ERROR", "Failed to authenticate using Kerberos."), + 13828 => new Code(code, "ERROR_IPSEC_IKE_NO_PUBLIC_KEY", "The peer's certificate did not have a public key."), + 13829 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR", "Error processing the error payload."), + 13830 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR_SA", "Error processing the SA payload."), + 13831 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR_PROP", "Error processing the proposal payload."), + 13832 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR_TRANS", "Error processing the transform payload."), + 13833 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR_KE", "Error processing the key exchange payload."), + 13834 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR_ID", "Error processing the ID payload."), + 13835 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR_CERT", "Error processing the certification payload."), + 13836 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ", "Error processing the certificate request payload."), + 13837 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR_HASH", "Error processing the hash payload."), + 13838 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR_SIG", "Error processing the signature payload."), + 13839 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR_NONCE", "Error processing the nonce payload."), + 13840 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY", "Error processing the notify payload."), + 13841 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR_DELETE", "Error processing the delete payload."), + 13842 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR", "Error processing the VendorId payload."), + 13843 => new Code(code, "ERROR_IPSEC_IKE_INVALID_PAYLOAD", "Invalid payload received."), + 13844 => new Code(code, "ERROR_IPSEC_IKE_LOAD_SOFT_SA", "Soft SA loaded."), + 13845 => new Code(code, "ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN", "Soft SA torn down."), + 13846 => new Code(code, "ERROR_IPSEC_IKE_INVALID_COOKIE", "Invalid cookie received."), + 13847 => new Code(code, "ERROR_IPSEC_IKE_NO_PEER_CERT", "Peer failed to send valid machine certificate."), + 13848 => new Code(code, "ERROR_IPSEC_IKE_PEER_CRL_FAILED", "Certification revocation check of peer's certificate failed."), + 13849 => new Code(code, "ERROR_IPSEC_IKE_POLICY_CHANGE", "New policy invalidated SAs formed with the old policy."), + 13850 => new Code(code, "ERROR_IPSEC_IKE_NO_MM_POLICY", "There is no available main mode IKE policy."), + 13851 => new Code(code, "ERROR_IPSEC_IKE_NOTCBPRIV", "Failed to enabled trusted computer base (TCB) privilege."), + 13852 => new Code(code, "ERROR_IPSEC_IKE_SECLOADFAIL", "Failed to load SECURITY.DLL."), + 13853 => new Code(code, "ERROR_IPSEC_IKE_FAILSSPINIT", "Failed to obtain the security function table dispatch address from the SSPI."), + 13854 => new Code(code, "ERROR_IPSEC_IKE_FAILQUERYSSP", "Failed to query the Kerberos package to obtain the max token size."), + 13855 => new Code(code, "ERROR_IPSEC_IKE_SRVACQFAIL", "Failed to obtain the Kerberos server credentials for the Internet Security Association and Key Management Protocol (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."), + 13856 => new Code(code, "ERROR_IPSEC_IKE_SRVQUERYCRED", "Failed to determine the SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes)."), + 13857 => new Code(code, "ERROR_IPSEC_IKE_GETSPIFAIL", "Failed to obtain a new service provider interface (SPI) for the inbound SA from the 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."), + 13858 => new Code(code, "ERROR_IPSEC_IKE_INVALID_FILTER", "Given filter is invalid."), + 13859 => new Code(code, "ERROR_IPSEC_IKE_OUT_OF_MEMORY", "Memory allocation failed."), + 13860 => new Code(code, "ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED", "Failed to add an SA to the 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."), + 13861 => new Code(code, "ERROR_IPSEC_IKE_INVALID_POLICY", "Invalid policy."), + 13862 => new Code(code, "ERROR_IPSEC_IKE_UNKNOWN_DOI", "Invalid digital object identifier (DOI)."), + 13863 => new Code(code, "ERROR_IPSEC_IKE_INVALID_SITUATION", "Invalid situation."), + 13864 => new Code(code, "ERROR_IPSEC_IKE_DH_FAILURE", "Diffie-Hellman failure."), + 13865 => new Code(code, "ERROR_IPSEC_IKE_INVALID_GROUP", "Invalid Diffie-Hellman group."), + 13866 => new Code(code, "ERROR_IPSEC_IKE_ENCRYPT", "Error encrypting payload."), + 13867 => new Code(code, "ERROR_IPSEC_IKE_DECRYPT", "Error decrypting payload."), + 13868 => new Code(code, "ERROR_IPSEC_IKE_POLICY_MATCH", "Policy match error."), + 13869 => new Code(code, "ERROR_IPSEC_IKE_UNSUPPORTED_ID", "Unsupported ID."), + 13870 => new Code(code, "ERROR_IPSEC_IKE_INVALID_HASH", "Hash verification failed."), + 13871 => new Code(code, "ERROR_IPSEC_IKE_INVALID_HASH_ALG", "Invalid hash algorithm."), + 13872 => new Code(code, "ERROR_IPSEC_IKE_INVALID_HASH_SIZE", "Invalid hash size."), + 13873 => new Code(code, "ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG", "Invalid encryption algorithm."), + 13874 => new Code(code, "ERROR_IPSEC_IKE_INVALID_AUTH_ALG", "Invalid authentication algorithm."), + 13875 => new Code(code, "ERROR_IPSEC_IKE_INVALID_SIG", "Invalid certificate signature."), + 13876 => new Code(code, "ERROR_IPSEC_IKE_LOAD_FAILED", "Load failed."), + 13877 => new Code(code, "ERROR_IPSEC_IKE_RPC_DELETE", "Deleted by using an RPC call."), + 13878 => new Code(code, "ERROR_IPSEC_IKE_BENIGN_REINIT", "A temporary state was created to perform reinitialization. This is not a real failure."), + 13879 => new Code(code, "ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY", "The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value. Fix the policy on the peer machine."), + 13881 => new Code(code, "ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN", "Key length in the certificate is too small for configured security requirements."), + 13882 => new Code(code, "ERROR_IPSEC_IKE_MM_LIMIT", "Maximum number of established MM SAs to peer exceeded."), + 13883 => new Code(code, "ERROR_IPSEC_IKE_NEGOTIATION_DISABLED", "The IKE received a policy that disables negotiation."), + 13884 => new Code(code, "ERROR_IPSEC_IKE_QM_LIMIT", "Reached maximum quick mode limit for the main mode. New main mode will be started."), + 13885 => new Code(code, "ERROR_IPSEC_IKE_MM_EXPIRED", "Main mode SA lifetime expired or the peer sent a main mode delete."), + 13886 => new Code(code, "ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID", "Main mode SA assumed to be invalid because peer stopped responding."), + 13887 => new Code(code, "ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH", "Certificate does not chain to a trusted root in IPsec policy."), + 13888 => new Code(code, "ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID", "Received unexpected message ID."), + 13889 => new Code(code, "ERROR_IPSEC_IKE_INVALID_UMATTS", "Received invalid AuthIP user mode attributes."), + 13890 => new Code(code, "ERROR_IPSEC_IKE_DOS_COOKIE_SENT", "Sent DOS cookie notify to initiator."), + 13891 => new Code(code, "ERROR_IPSEC_IKE_SHUTTING_DOWN", "The IKE service is shutting down."), + 13892 => new Code(code, "ERROR_IPSEC_IKE_CGA_AUTH_FAILED", "Could not verify the binding between the color graphics adapter (CGA) address and the certificate."), + 13893 => new Code(code, "ERROR_IPSEC_IKE_PROCESS_ERR_NATOA", "Error processing the NatOA payload."), + 13894 => new Code(code, "ERROR_IPSEC_IKE_INVALID_MM_FOR_QM", "The parameters of the main mode are invalid for this quick mode."), + 13895 => new Code(code, "ERROR_IPSEC_IKE_QM_EXPIRED", "The quick mode SA was expired by the IPsec driver."), + 13896 => new Code(code, "ERROR_IPSEC_IKE_TOO_MANY_FILTERS", "Too many dynamically added IKEEXT filters were detected."), + 13897 => new Code(code, "ERROR_IPSEC_IKE_NEG_STATUS_END", "Ends the list of frequencies of various IKE Win32 error codes encountered during negotiations."), + 14000 => new Code(code, "ERROR_SXS_SECTION_NOT_FOUND", "The requested section was not present in the activation context."), + 14001 => new Code(code, "ERROR_SXS_CANT_GEN_ACTCTX", "The application has failed to start because its side-by-side configuration is incorrect. See the application event log for more detail."), + 14002 => new Code(code, "ERROR_SXS_INVALID_ACTCTXDATA_FORMAT", "The application binding data format is invalid."), + 14003 => new Code(code, "ERROR_SXS_ASSEMBLY_NOT_FOUND", "The referenced assembly is not installed on your system."), + 14004 => new Code(code, "ERROR_SXS_MANIFEST_FORMAT_ERROR", "The manifest file does not begin with the required tag and format information."), + 14005 => new Code(code, "ERROR_SXS_MANIFEST_PARSE_ERROR", "The manifest file contains one or more syntax errors."), + 14006 => new Code(code, "ERROR_SXS_ACTIVATION_CONTEXT_DISABLED", "The application attempted to activate a disabled activation context."), + 14007 => new Code(code, "ERROR_SXS_KEY_NOT_FOUND", "The requested lookup key was not found in any active activation context."), + 14008 => new Code(code, "ERROR_SXS_VERSION_CONFLICT", "A component version required by the application conflicts with another active component version."), + 14009 => new Code(code, "ERROR_SXS_WRONG_SECTION_TYPE", "The type requested activation context section does not match the query API used."), + 14010 => new Code(code, "ERROR_SXS_THREAD_QUERIES_DISABLED", "Lack of system resources has required isolated activation to be disabled for the current thread of execution."), + 14011 => new Code(code, "ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET", "An attempt to set the process default activation context failed because the process default activation context was already set."), + 14012 => new Code(code, "ERROR_SXS_UNKNOWN_ENCODING_GROUP", "The encoding group identifier specified is not recognized."), + 14013 => new Code(code, "ERROR_SXS_UNKNOWN_ENCODING", "The encoding requested is not recognized."), + 14014 => new Code(code, "ERROR_SXS_INVALID_XML_NAMESPACE_URI", "The manifest contains a reference to an invalid URI."), + 14015 => new Code(code, "ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_OT_INSTALLED", "The application manifest contains a reference to a dependent assembly that is not installed."), + 14016 => new Code(code, "ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED", "The manifest for an assembly used by the application has a reference to a dependent assembly that is not installed."), + 14017 => new Code(code, "ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE", "The manifest contains an attribute for the assembly identity that is not valid."), + 14018 => new Code(code, "ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE", "The manifest is missing the required default namespace specification on the assembly element."), + 14019 => new Code(code, "ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE", "The manifest has a default namespace specified on the assembly element but its value is not urn:schemas-microsoft-com:asm.v1\".\""), + 14020 => new Code(code, "ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT", "The private manifest probed has crossed the reparse-point-associated path."), + 14021 => new Code(code, "ERROR_SXS_DUPLICATE_DLL_NAME", "Two or more components referenced directly or indirectly by the application manifest have files by the same name."), + 14022 => new Code(code, "ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME", "Two or more components referenced directly or indirectly by the application manifest have window classes with the same name."), + 14023 => new Code(code, "ERROR_SXS_DUPLICATE_CLSID", "Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs."), + 14024 => new Code(code, "ERROR_SXS_DUPLICATE_IID", "Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs."), + 14025 => new Code(code, "ERROR_SXS_DUPLICATE_TLBID", "Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs."), + 14026 => new Code(code, "ERROR_SXS_DUPLICATE_PROGID", "Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs."), + 14027 => new Code(code, "ERROR_SXS_DUPLICATE_ASSEMBLY_NAME", "Two or more components referenced directly or indirectly by the application manifest are different versions of the same component, which is not permitted."), + 14028 => new Code(code, "ERROR_SXS_FILE_HASH_MISMATCH", "A component's file does not match the verification information present in the component manifest."), + 14029 => new Code(code, "ERROR_SXS_POLICY_PARSE_ERROR", "The policy manifest contains one or more syntax errors."), + 14030 => new Code(code, "ERROR_SXS_XML_E_MISSINGQUOTE", "Manifest Parse Error: A string literal was expected, but no opening quotation mark was found."), + 14031 => new Code(code, "ERROR_SXS_XML_E_COMMENTSYNTAX", "Manifest Parse Error: Incorrect syntax was used in a comment."), + 14032 => new Code(code, "ERROR_SXS_XML_E_BADSTARTNAMECHAR", "Manifest Parse Error: A name started with an invalid character."), + 14033 => new Code(code, "ERROR_SXS_XML_E_BADNAMECHAR", "Manifest Parse Error: A name contained an invalid character."), + 14034 => new Code(code, "ERROR_SXS_XML_E_BADCHARINSTRING", "Manifest Parse Error: A string literal contained an invalid character."), + 14035 => new Code(code, "ERROR_SXS_XML_E_XMLDECLSYNTAX", "Manifest Parse Error: Invalid syntax for an XML declaration."), + 14036 => new Code(code, "ERROR_SXS_XML_E_BADCHARDATA", "Manifest Parse Error: An Invalid character was found in text content."), + 14037 => new Code(code, "ERROR_SXS_XML_E_MISSINGWHITESPACE", "Manifest Parse Error: Required white space was missing."), + 14038 => new Code(code, "ERROR_SXS_XML_E_EXPECTINGTAGEND", "Manifest Parse Error: The angle bracket (>) character was expected."), + 14039 => new Code(code, "ERROR_SXS_XML_E_MISSINGSEMICOLON", "Manifest Parse Error: A semicolon (;) was expected."), + 14040 => new Code(code, "ERROR_SXS_XML_E_UNBALANCEDPAREN", "Manifest Parse Error: Unbalanced parentheses."), + 14041 => new Code(code, "ERROR_SXS_XML_E_INTERNALERROR", "Manifest Parse Error: Internal error."), + 14042 => new Code(code, "ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE", "Manifest Parse Error: Whitespace is not allowed at this location."), + 14043 => new Code(code, "ERROR_SXS_XML_E_INCOMPLETE_ENCODING", "Manifest Parse Error: End of file reached in invalid state for current encoding."), + 14044 => new Code(code, "ERROR_SXS_XML_E_MISSING_PAREN", "Manifest Parse Error: Missing parenthesis."), + 14045 => new Code(code, "ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE", "Manifest Parse Error: A single (') or double (\") quotation mark is missing."), + 14046 => new Code(code, "ERROR_SXS_XML_E_MULTIPLE_COLONS", "Manifest Parse Error: Multiple colons are not allowed in a name."), + 14047 => new Code(code, "ERROR_SXS_XML_E_INVALID_DECIMAL", "Manifest Parse Error: Invalid character for decimal digit."), + 14048 => new Code(code, "ERROR_SXS_XML_E_INVALID_HEXIDECIMAL", "Manifest Parse Error: Invalid character for hexadecimal digit."), + 14049 => new Code(code, "ERROR_SXS_XML_E_INVALID_UNICODE", "Manifest Parse Error: Invalid Unicode character value for this platform."), + 14050 => new Code(code, "ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK", "Manifest Parse Error: Expecting whitespace or question mark (?)."), + 14051 => new Code(code, "ERROR_SXS_XML_E_UNEXPECTEDENDTAG", "Manifest Parse Error: End tag was not expected at this location."), + 14052 => new Code(code, "ERROR_SXS_XML_E_UNCLOSEDTAG", "Manifest Parse Error: The following tags were not closed: %1."), + 14053 => new Code(code, "ERROR_SXS_XML_E_DUPLICATEATTRIBUTE", "Manifest Parse Error: Duplicate attribute."), + 14054 => new Code(code, "ERROR_SXS_XML_E_MULTIPLEROOTS", "Manifest Parse Error: Only one top-level element is allowed in an XML document."), + 14055 => new Code(code, "ERROR_SXS_XML_E_INVALIDATROOTLEVEL", "Manifest Parse Error: Invalid at the top level of the document."), + 14056 => new Code(code, "ERROR_SXS_XML_E_BADXMLDECL", "Manifest Parse Error: Invalid XML declaration."), + 14057 => new Code(code, "ERROR_SXS_XML_E_MISSINGROOT", "Manifest Parse Error: XML document must have a top-level element."), + 14058 => new Code(code, "ERROR_SXS_XML_E_UNEXPECTEDEOF", "Manifest Parse Error: Unexpected end of file."), + 14059 => new Code(code, "ERROR_SXS_XML_E_BADPEREFINSUBSET", "Manifest Parse Error: Parameter entities cannot be used inside markup declarations in an internal subset."), + 14060 => new Code(code, "ERROR_SXS_XML_E_UNCLOSEDSTARTTAG", "Manifest Parse Error: Element was not closed."), + 14061 => new Code(code, "ERROR_SXS_XML_E_UNCLOSEDENDTAG", "Manifest Parse Error: End element was missing the angle bracket (>) character."), + 14062 => new Code(code, "ERROR_SXS_XML_E_UNCLOSEDSTRING", "Manifest Parse Error: A string literal was not closed."), + 14063 => new Code(code, "ERROR_SXS_XML_E_UNCLOSEDCOMMENT", "Manifest Parse Error: A comment was not closed."), + 14064 => new Code(code, "ERROR_SXS_XML_E_UNCLOSEDDECL", "Manifest Parse Error: A declaration was not closed."), + 14065 => new Code(code, "ERROR_SXS_XML_E_UNCLOSEDCDATA", "Manifest Parse Error: A CDATA section was not closed."), + 14066 => new Code(code, "ERROR_SXS_XML_E_RESERVEDNAMESPACE", "Manifest Parse Error: The namespace prefix is not allowed to start with the reserved string xml\".\""), + 14067 => new Code(code, "ERROR_SXS_XML_E_INVALIDENCODING", "Manifest Parse Error: System does not support the specified encoding."), + 14068 => new Code(code, "ERROR_SXS_XML_E_INVALIDSWITCH", "Manifest Parse Error: Switch from current encoding to specified encoding not supported."), + 14069 => new Code(code, "ERROR_SXS_XML_E_BADXMLCASE", "Manifest Parse Error: The name \"xml\" is reserved and must be lowercase."), + 14070 => new Code(code, "ERROR_SXS_XML_E_INVALID_STANDALONE", "Manifest Parse Error: The stand-alone attribute must have the value \"yes\" or \"no\"."), + 14071 => new Code(code, "ERROR_SXS_XML_E_UNEXPECTED_STANDALONE", "Manifest Parse Error: The stand-alone attribute cannot be used in external entities."), + 14072 => new Code(code, "ERROR_SXS_XML_E_INVALID_VERSION", "Manifest Parse Error: Invalid version number."), + 14073 => new Code(code, "ERROR_SXS_XML_E_MISSINGEQUALS", "Manifest Parse Error: Missing equal sign (=) between the attribute and the attribute value."), + 14074 => new Code(code, "ERROR_SXS_PROTECTION_RECOVERY_FAILED", "Assembly Protection Error: Unable to recover the specified assembly."), + 14075 => new Code(code, "ERROR_SXS_PROTECTION_PUBLIC_KEY_OO_SHORT", "Assembly Protection Error: The public key for an assembly was too short to be allowed."), + 14076 => new Code(code, "ERROR_SXS_PROTECTION_CATALOG_NOT_VALID", "Assembly Protection Error: The catalog for an assembly is not valid, or does not match the assembly's manifest."), + 14077 => new Code(code, "ERROR_SXS_UNTRANSLATABLE_HRESULT", "An HRESULT could not be translated to a corresponding Win32 error code."), + 14078 => new Code(code, "ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING", "Assembly Protection Error: The catalog for an assembly is missing."), + 14079 => new Code(code, "ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE", "The supplied assembly identity is missing one or more attributes that must be present in this context."), + 14080 => new Code(code, "ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME", "The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names."), + 14081 => new Code(code, "ERROR_SXS_ASSEMBLY_MISSING", "The referenced assembly could not be found."), + 14082 => new Code(code, "ERROR_SXS_CORRUPT_ACTIVATION_STACK", "The activation context activation stack for the running thread of execution is corrupt."), + 14083 => new Code(code, "ERROR_SXS_CORRUPTION", "The application isolation metadata for this process or thread has become corrupt."), + 14084 => new Code(code, "ERROR_SXS_EARLY_DEACTIVATION", "The activation context being deactivated is not the most recently activated one."), + 14085 => new Code(code, "ERROR_SXS_INVALID_DEACTIVATION", "The activation context being deactivated is not active for the current thread of execution."), + 14086 => new Code(code, "ERROR_SXS_MULTIPLE_DEACTIVATION", "The activation context being deactivated has already been deactivated."), + 14087 => new Code(code, "ERROR_SXS_PROCESS_TERMINATION_REQUESTED", "A component used by the isolation facility has requested to terminate the process."), + 14088 => new Code(code, "ERROR_SXS_RELEASE_ACTIVATION_ONTEXT", "A kernel mode component is releasing a reference on an activation context."), + 14089 => new Code(code, "ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY", "The activation context of the system default assembly could not be generated."), + 14090 => new Code(code, "ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE", "The value of an attribute in an identity is not within the legal range."), + 14091 => new Code(code, "ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME", "The name of an attribute in an identity is not within the legal range."), + 14092 => new Code(code, "ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE", "An identity contains two definitions for the same attribute."), + 14093 => new Code(code, "ERROR_SXS_IDENTITY_PARSE_ERROR", "The identity string is malformed. This might be due to a trailing comma, more than two unnamed attributes, a missing attribute name, or a missing attribute value."), + 14094 => new Code(code, "ERROR_MALFORMED_SUBSTITUTION_STRING", "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 a substitution's right parenthesis was not found."), + 14095 => new Code(code, "ERROR_SXS_INCORRECT_PUBLIC_KEY_OKEN", "The public key token does not correspond to the public key specified."), + 14096 => new Code(code, "ERROR_UNMAPPED_SUBSTITUTION_STRING", "A substitution string had no mapping."), + 14097 => new Code(code, "ERROR_SXS_ASSEMBLY_NOT_LOCKED", "The component must be locked before making the request."), + 14098 => new Code(code, "ERROR_SXS_COMPONENT_STORE_CORRUPT", "The component store has been corrupted."), + 14099 => new Code(code, "ERROR_ADVANCED_INSTALLER_FAILED", "An advanced installer failed during setup or servicing."), + 14100 => new Code(code, "ERROR_XML_ENCODING_MISMATCH", "The character encoding in the XML declaration did not match the encoding used in the document."), + 14101 => new Code(code, "ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT", "The identities of the manifests are identical, but the contents are different."), + 14102 => new Code(code, "ERROR_SXS_IDENTITIES_DIFFERENT", "The component identities are different."), + 14103 => new Code(code, "ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT", "The assembly is not a deployment."), + 14104 => new Code(code, "ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY", "The file is not a part of the assembly."), + 14105 => new Code(code, "ERROR_SXS_MANIFEST_TOO_BIG", "The size of the manifest exceeds the maximum allowed."), + 14106 => new Code(code, "ERROR_SXS_SETTING_NOT_REGISTERED", "The setting is not registered."), + 14107 => new Code(code, "ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE", "One or more required members of the transaction are not present."), + 15000 => new Code(code, "ERROR_EVT_INVALID_CHANNEL_PATH", "The specified channel path is invalid."), + 15001 => new Code(code, "ERROR_EVT_INVALID_QUERY", "The specified query is invalid."), + 15002 => new Code(code, "ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND", "The publisher metadata cannot be found in the resource."), + 15003 => new Code(code, "ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND", "The template for an event definition cannot be found in the resource (error = %1)."), + 15004 => new Code(code, "ERROR_EVT_INVALID_PUBLISHER_NAME", "The specified publisher name is invalid."), + 15005 => new Code(code, "ERROR_EVT_INVALID_EVENT_DATA", "The event data raised by the publisher is not compatible with the event template definition in the publisher's manifest."), + 15007 => new Code(code, "ERROR_EVT_CHANNEL_NOT_FOUND", "The specified channel could not be found. Check channel configuration."), + 15008 => new Code(code, "ERROR_EVT_MALFORMED_XML_TEXT", "The specified XML text was not well-formed. See extended error for more details."), + 15009 => new Code(code, "ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL", "The caller is trying to subscribe to a direct channel which is not allowed. The events for a direct channel go directly to a log file and cannot be subscribed to."), + 15010 => new Code(code, "ERROR_EVT_CONFIGURATION_ERROR", "Configuration error."), + 15011 => new Code(code, "ERROR_EVT_QUERY_RESULT_STALE", "The query result is stale or invalid. This might 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."), + 15012 => new Code(code, "ERROR_EVT_QUERY_RESULT_INVALID_POSITION", "Query result is currently at an invalid position."), + 15013 => new Code(code, "ERROR_EVT_NON_VALIDATING_MSXML", "Registered Microsoft XML (MSXML) does not support validation."), + 15014 => new Code(code, "ERROR_EVT_FILTER_ALREADYSCOPED", "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."), + 15015 => new Code(code, "ERROR_EVT_FILTER_NOTELTSET", "Cannot perform a step operation from a term that does not represent an element set."), + 15016 => new Code(code, "ERROR_EVT_FILTER_INVARG", "Left side arguments to binary operators must be either attributes, nodes, or variables and right side arguments must be constants."), + 15017 => new Code(code, "ERROR_EVT_FILTER_INVTEST", "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 preceding node set can be evaluated."), + 15018 => new Code(code, "ERROR_EVT_FILTER_INVTYPE", "This data type is currently unsupported."), + 15019 => new Code(code, "ERROR_EVT_FILTER_PARSEERR", "A syntax error occurred at position %1!d!"), + 15020 => new Code(code, "ERROR_EVT_FILTER_UNSUPPORTEDOP", "This operator is unsupported by this implementation of the filter."), + 15021 => new Code(code, "ERROR_EVT_FILTER_UNEXPECTEDTOKEN", "The token encountered was unexpected."), + 15022 => new Code(code, "ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL", "The requested operation cannot be performed over an enabled direct channel. The channel must first be disabled before performing the requested operation."), + 15023 => new Code(code, "ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE", "Channel property %1!s! contains an invalid value. The value has an invalid type, is outside the valid range, cannot be updated, or is not supported by this type of channel."), + 15024 => new Code(code, "ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE", "Publisher property %1!s! contains an invalid value. The value has an invalid type, is outside the valid range, cannot be updated, or is not supported by this type of publisher."), + 15025 => new Code(code, "ERROR_EVT_CHANNEL_CANNOT_ACTIVATE", "The channel fails to activate."), + 15026 => new Code(code, "ERROR_EVT_FILTER_TOO_COMPLEX", "The xpath expression exceeded supported complexity. Simplify it or split it into two or more simple expressions."), + 15027 => new Code(code, "ERROR_EVT_MESSAGE_NOT_FOUND", "The message resource is present but the message is not found in the string or message table."), + 15028 => new Code(code, "ERROR_EVT_MESSAGE_ID_NOT_FOUND", "The message ID for the desired message could not be found."), + 15029 => new Code(code, "ERROR_EVT_UNRESOLVED_VALUE_INSERT", "The substitution string for the insert index (%1) could not be found."), + 15030 => new Code(code, "ERROR_EVT_UNRESOLVED_PARAMETER_INSERT", "The description string for the parameter reference (%1) could not be found."), + 15031 => new Code(code, "ERROR_EVT_MAX_INSERTS_REACHED", "The maximum number of replacements has been reached."), + 15032 => new Code(code, "ERROR_EVT_EVENT_DEFINITION_NOT_OUND", "The event definition could not be found for the event ID (%1)."), + 15033 => new Code(code, "ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND", "The locale-specific resource for the desired message is not present."), + 15034 => new Code(code, "ERROR_EVT_VERSION_TOO_OLD", "The resource is too old to be compatible."), + 15035 => new Code(code, "ERROR_EVT_VERSION_TOO_NEW", "The resource is too new to be compatible."), + 15036 => new Code(code, "ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY", "The channel at index %1 of the query cannot be opened."), + 15037 => new Code(code, "ERROR_EVT_PUBLISHER_DISABLED", "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."), + 15080 => new Code(code, "ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE", "The subscription fails to activate."), + 15081 => new Code(code, "ERROR_EC_LOG_DISABLED", "The log of the subscription is in a disabled state and events cannot be forwarded to it. The log must first be enabled before the subscription can be activated."), + 15100 => new Code(code, "ERROR_MUI_FILE_NOT_FOUND", "The resource loader failed to find the Multilingual User Interface (MUI) file."), + 15101 => new Code(code, "ERROR_MUI_INVALID_FILE", "The resource loader failed to load the MUI file because the file failed to pass validation."), + 15102 => new Code(code, "ERROR_MUI_INVALID_RC_CONFIG", "The release candidate (RC) manifest is corrupted with garbage data, is an unsupported version, or is missing a required item."), + 15103 => new Code(code, "ERROR_MUI_INVALID_LOCALE_NAME", "The RC manifest has an invalid culture name."), + 15104 => new Code(code, "ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME", "The RC Manifest has an invalid ultimate fallback name."), + 15105 => new Code(code, "ERROR_MUI_FILE_NOT_LOADED", "The resource loader cache does not have a loaded MUI entry."), + 15106 => new Code(code, "ERROR_RESOURCE_ENUM_USER_STOP", "The user stopped resource enumeration."), + 15107 => new Code(code, "ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED", "User interface language installation failed."), + 15108 => new Code(code, "ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME", "Locale installation failed."), + 15200 => new Code(code, "ERROR_MCA_INVALID_CAPABILITIES_STRING", "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."), + 15201 => new Code(code, "ERROR_MCA_INVALID_VCP_VERSION", "The monitor's VCP version (0xDF) VCP code returned an invalid version value."), + 15202 => new Code(code, "ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION", "The monitor does not comply with the MCCS specification it claims to support."), + 15203 => new Code(code, "ERROR_MCA_MCCS_VERSION_MISMATCH", "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."), + 15204 => new Code(code, "ERROR_MCA_UNSUPPORTED_MCCS_VERSION", "The monitor configuration API works only with monitors that support the MCCS 1.0, MCCS 2.0, or MCCS 2.0 Revision 1 specifications."), + 15205 => new Code(code, "ERROR_MCA_INTERNAL_ERROR", "An internal monitor configuration API error occurred."), + 15206 => new Code(code, "ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED", "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."), + 15207 => new Code(code, "ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE", "The SetMonitorColorTemperature() caller passed a color temperature to it that the current monitor did not support. 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."), + 15250 => new Code(code, "ERROR_AMBIGUOUS_SYSTEM_DEVICE", "The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria."), + 15299 => new Code(code, "ERROR_SYSTEM_DEVICE_NOT_FOUND", "The requested system device cannot be found."), _ => Unknown(code), }; }