Skip to content

Instantly share code, notes, and snippets.

@michel-pi
Created April 5, 2019 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save michel-pi/d94cfbce4c7ac0b45edafa477e765adf to your computer and use it in GitHub Desktop.
Save michel-pi/d94cfbce4c7ac0b45edafa477e765adf to your computer and use it in GitHub Desktop.
Contains "all" system error codes
// use System.ComponentModel.Win32Exception instead
using System;
namespace Microsoft.Win32
{
/// <summary>
/// Contains all system error codes.
/// </summary>
public enum SystemError : uint
{
/// <summary>
/// The operation completed successfully.
/// </summary>
SUCCESS = 0u,
/// <summary>
/// Incorrect function.
/// </summary>
INVALID_FUNCTION = 1u,
/// <summary>
/// The system cannot find the file specified.
/// </summary>
FILE_NOT_FOUND = 2u,
/// <summary>
/// The system cannot find the path specified.
/// </summary>
PATH_NOT_FOUND = 3u,
/// <summary>
/// The system cannot open the file.
/// </summary>
TOO_MANY_OPEN_FILES = 4u,
/// <summary>
/// Access is denied.
/// </summary>
ACCESS_DENIED = 5u,
/// <summary>
/// The handle is invalid.
/// </summary>
INVALID_HANDLE = 6u,
/// <summary>
/// The storage control blocks were destroyed.
/// </summary>
ARENA_TRASHED = 7u,
/// <summary>
/// Not enough memory resources are available to process this command.
/// </summary>
NOT_ENOUGH_MEMORY = 8u,
/// <summary>
/// The storage control block address is invalid.
/// </summary>
INVALID_BLOCK = 9u,
/// <summary>
/// The environment is incorrect.
/// </summary>
BAD_ENVIRONMENT = 10u,
/// <summary>
/// An attempt was made to load a program with an incorrect format.
/// </summary>
BAD_FORMAT = 11u,
/// <summary>
/// The access code is invalid.
/// </summary>
INVALID_ACCESS = 12u,
/// <summary>
/// The data is invalid.
/// </summary>
INVALID_DATA = 13u,
/// <summary>
/// Not enough memory resources are available to complete this operation.
/// </summary>
OUTOFMEMORY = 14u,
/// <summary>
/// The system cannot find the drive specified.
/// </summary>
INVALID_DRIVE = 15u,
/// <summary>
/// The directory cannot be removed.
/// </summary>
CURRENT_DIRECTORY = 16u,
/// <summary>
/// The system cannot move the file to a different disk drive.
/// </summary>
NOT_SAME_DEVICE = 17u,
/// <summary>
/// There are no more files.
/// </summary>
NO_MORE_FILES = 18u,
/// <summary>
/// The media is write protected.
/// </summary>
WRITE_PROTECT = 19u,
/// <summary>
/// The system cannot find the device specified.
/// </summary>
BAD_UNIT = 20u,
/// <summary>
/// The device is not ready.
/// </summary>
NOT_READY = 21u,
/// <summary>
/// The device does not recognize the command.
/// </summary>
BAD_COMMAND = 22u,
/// <summary>
/// Data error (cyclic redundancy check).
/// </summary>
CRC = 23u,
/// <summary>
/// The program issued a command but the command length is incorrect.
/// </summary>
BAD_LENGTH = 24u,
/// <summary>
/// The drive cannot locate a specific area or track on the disk.
/// </summary>
SEEK = 25u,
/// <summary>
/// The specified disk or diskette cannot be accessed.
/// </summary>
NOT_DOS_DISK = 26u,
/// <summary>
/// The drive cannot find the sector requested.
/// </summary>
SECTOR_NOT_FOUND = 27u,
/// <summary>
/// The printer is out of paper.
/// </summary>
OUT_OF_PAPER = 28u,
/// <summary>
/// The system cannot write to the specified device.
/// </summary>
WRITE_FAULT = 29u,
/// <summary>
/// The system cannot read from the specified device.
/// </summary>
READ_FAULT = 30u,
/// <summary>
/// A device attached to the system is not functioning.
/// </summary>
GEN_FAILURE = 31u,
/// <summary>
/// The process cannot access the file because it is being used by another process.
/// </summary>
SHARING_VIOLATION = 32u,
/// <summary>
/// The process cannot access the file because another process has locked a portion of the file.
/// </summary>
LOCK_VIOLATION = 33u,
/// <summary>
/// Insert %2 (Volume Serial Number: %3) into drive %1.
/// </summary>
WRONG_DISK = 34u,
/// <summary>
/// Too many files opened for sharing.
/// </summary>
SHARING_BUFFER_EXCEEDED = 36u,
/// <summary>
/// Reached the end of the file.
/// </summary>
HANDLE_EOF = 38u,
/// <summary>
/// The disk is full.
/// </summary>
HANDLE_DISK_FULL = 39u,
/// <summary>
/// The request is not supported.
/// </summary>
NOT_SUPPORTED = 50u,
/// <summary>
/// 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.
/// </summary>
REM_NOT_LIST = 51u,
/// <summary>
/// You were not connected because a duplicate name exists on the network. If joining a domain, go to System in Control Panel to change the computer name and try again. If joining a workgroup, choose another workgroup name.
/// </summary>
DUP_NAME = 52u,
/// <summary>
/// The network path was not found.
/// </summary>
BAD_NETPATH = 53u,
/// <summary>
/// The network is busy.
/// </summary>
NETWORK_BUSY = 54u,
/// <summary>
/// The specified network resource or device is no longer available.
/// </summary>
DEV_NOT_EXIST = 55u,
/// <summary>
/// The network BIOS command limit has been reached.
/// </summary>
TOO_MANY_CMDS = 56u,
/// <summary>
/// A network adapter hardware error occurred.
/// </summary>
ADAP_HDW_ERR = 57u,
/// <summary>
/// The specified server cannot perform the requested operation.
/// </summary>
BAD_NET_RESP = 58u,
/// <summary>
/// An unexpected network error occurred.
/// </summary>
UNEXP_NET_ERR = 59u,
/// <summary>
/// The remote adapter is not compatible.
/// </summary>
BAD_REM_ADAP = 60u,
/// <summary>
/// The printer queue is full.
/// </summary>
PRINTQ_FULL = 61u,
/// <summary>
/// Space to store the file waiting to be printed is not available on the server.
/// </summary>
NO_SPOOL_SPACE = 62u,
/// <summary>
/// Your file waiting to be printed was deleted.
/// </summary>
PRINT_CANCELLED = 63u,
/// <summary>
/// The specified network name is no longer available.
/// </summary>
NETNAME_DELETED = 64u,
/// <summary>
/// Network access is denied.
/// </summary>
NETWORK_ACCESS_DENIED = 65u,
/// <summary>
/// The network resource type is not correct.
/// </summary>
BAD_DEV_TYPE = 66u,
/// <summary>
/// The network name cannot be found.
/// </summary>
BAD_NET_NAME = 67u,
/// <summary>
/// The name limit for the local computer network adapter card was exceeded.
/// </summary>
TOO_MANY_NAMES = 68u,
/// <summary>
/// The network BIOS session limit was exceeded.
/// </summary>
TOO_MANY_SESS = 69u,
/// <summary>
/// The remote server has been paused or is in the process of being started.
/// </summary>
SHARING_PAUSED = 70u,
/// <summary>
/// No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.
/// </summary>
REQ_NOT_ACCEP = 71u,
/// <summary>
/// The specified printer or disk device has been paused.
/// </summary>
REDIR_PAUSED = 72u,
/// <summary>
/// The file exists.
/// </summary>
FILE_EXISTS = 80u,
/// <summary>
/// The directory or file cannot be created.
/// </summary>
CANNOT_MAKE = 82u,
/// <summary>
/// Fail on INT 24.
/// </summary>
FAIL_I24 = 83u,
/// <summary>
/// Storage to process this request is not available.
/// </summary>
OUT_OF_STRUCTURES = 84u,
/// <summary>
/// The local device name is already in use.
/// </summary>
ALREADY_ASSIGNED = 85u,
/// <summary>
/// The specified network password is not correct.
/// </summary>
INVALID_PASSWORD = 86u,
/// <summary>
/// The parameter is incorrect.
/// </summary>
INVALID_PARAMETER = 87u,
/// <summary>
/// A write fault occurred on the network.
/// </summary>
NET_WRITE_FAULT = 88u,
/// <summary>
/// The system cannot start another process at this time.
/// </summary>
NO_PROC_SLOTS = 89u,
/// <summary>
/// Cannot create another system semaphore.
/// </summary>
TOO_MANY_SEMAPHORES = 100u,
/// <summary>
/// The exclusive semaphore is owned by another process.
/// </summary>
EXCL_SEM_ALREADY_OWNED = 101u,
/// <summary>
/// The semaphore is set and cannot be closed.
/// </summary>
SEM_IS_SET = 102u,
/// <summary>
/// The semaphore cannot be set again.
/// </summary>
TOO_MANY_SEM_REQUESTS = 103u,
/// <summary>
/// Cannot request exclusive semaphores at interrupt time.
/// </summary>
INVALID_AT_INTERRUPT_TIME = 104u,
/// <summary>
/// The previous ownership of this semaphore has ended.
/// </summary>
SEM_OWNER_DIED = 105u,
/// <summary>
/// Insert the diskette for drive %1.
/// </summary>
SEM_USER_LIMIT = 106u,
/// <summary>
/// The program stopped because an alternate diskette was not inserted.
/// </summary>
DISK_CHANGE = 107u,
/// <summary>
/// The disk is in use or locked by another process.
/// </summary>
DRIVE_LOCKED = 108u,
/// <summary>
/// The pipe has been ended.
/// </summary>
BROKEN_PIPE = 109u,
/// <summary>
/// The system cannot open the device or file specified.
/// </summary>
OPEN_FAILED = 110u,
/// <summary>
/// The file name is too long.
/// </summary>
BUFFER_OVERFLOW = 111u,
/// <summary>
/// There is not enough space on the disk.
/// </summary>
DISK_FULL = 112u,
/// <summary>
/// No more internal file identifiers available.
/// </summary>
NO_MORE_SEARCH_HANDLES = 113u,
/// <summary>
/// The target internal file identifier is incorrect.
/// </summary>
INVALID_TARGET_HANDLE = 114u,
/// <summary>
/// The IOCTL call made by the application program is not correct.
/// </summary>
INVALID_CATEGORY = 117u,
/// <summary>
/// The verify-on-write switch parameter value is not correct.
/// </summary>
INVALID_VERIFY_SWITCH = 118u,
/// <summary>
/// The system does not support the command requested.
/// </summary>
BAD_DRIVER_LEVEL = 119u,
/// <summary>
/// This function is not supported on this system.
/// </summary>
CALL_NOT_IMPLEMENTED = 120u,
/// <summary>
/// The semaphore timeout period has expired.
/// </summary>
SEM_TIMEOUT = 121u,
/// <summary>
/// The data area passed to a system call is too small.
/// </summary>
INSUFFICIENT_BUFFER = 122u,
/// <summary>
/// The filename, directory name, or volume label syntax is incorrect.
/// </summary>
INVALID_NAME = 123u,
/// <summary>
/// The system call level is not correct.
/// </summary>
INVALID_LEVEL = 124u,
/// <summary>
/// The disk has no volume label.
/// </summary>
NO_VOLUME_LABEL = 125u,
/// <summary>
/// The specified module could not be found.
/// </summary>
MOD_NOT_FOUND = 126u,
/// <summary>
/// The specified procedure could not be found.
/// </summary>
PROC_NOT_FOUND = 127u,
/// <summary>
/// There are no child processes to wait for.
/// </summary>
WAIT_NO_CHILDREN = 128u,
/// <summary>
/// The %1 application cannot be run in Win32 mode.
/// </summary>
CHILD_NOT_COMPLETE = 129u,
/// <summary>
/// Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.
/// </summary>
DIRECT_ACCESS_HANDLE = 130u,
/// <summary>
/// An attempt was made to move the file pointer before the beginning of the file.
/// </summary>
NEGATIVE_SEEK = 131u,
/// <summary>
/// The file pointer cannot be set on the specified device or file.
/// </summary>
SEEK_ON_DEVICE = 132u,
/// <summary>
/// A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.
/// </summary>
IS_JOIN_TARGET = 133u,
/// <summary>
/// An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.
/// </summary>
IS_JOINED = 134u,
/// <summary>
/// An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.
/// </summary>
IS_SUBSTED = 135u,
/// <summary>
/// The system tried to delete the JOIN of a drive that is not joined.
/// </summary>
NOT_JOINED = 136u,
/// <summary>
/// The system tried to delete the substitution of a drive that is not substituted.
/// </summary>
NOT_SUBSTED = 137u,
/// <summary>
/// The system tried to join a drive to a directory on a joined drive.
/// </summary>
JOIN_TO_JOIN = 138u,
/// <summary>
/// The system tried to substitute a drive to a directory on a substituted drive.
/// </summary>
SUBST_TO_SUBST = 139u,
/// <summary>
/// The system tried to join a drive to a directory on a substituted drive.
/// </summary>
JOIN_TO_SUBST = 140u,
/// <summary>
/// The system tried to SUBST a drive to a directory on a joined drive.
/// </summary>
SUBST_TO_JOIN = 141u,
/// <summary>
/// The system cannot perform a JOIN or SUBST at this time.
/// </summary>
BUSY_DRIVE = 142u,
/// <summary>
/// The system cannot join or substitute a drive to or for a directory on the same drive.
/// </summary>
SAME_DRIVE = 143u,
/// <summary>
/// The directory is not a subdirectory of the root directory.
/// </summary>
DIR_NOT_ROOT = 144u,
/// <summary>
/// The directory is not empty.
/// </summary>
DIR_NOT_EMPTY = 145u,
/// <summary>
/// The path specified is being used in a substitute.
/// </summary>
IS_SUBST_PATH = 146u,
/// <summary>
/// Not enough resources are available to process this command.
/// </summary>
IS_JOIN_PATH = 147u,
/// <summary>
/// The path specified cannot be used at this time.
/// </summary>
PATH_BUSY = 148u,
/// <summary>
/// An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.
/// </summary>
IS_SUBST_TARGET = 149u,
/// <summary>
/// System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.
/// </summary>
SYSTEM_TRACE = 150u,
/// <summary>
/// The number of specified semaphore events for DosMuxSemWait is not correct.
/// </summary>
INVALID_EVENT_COUNT = 151u,
/// <summary>
/// DosMuxSemWait did not execute; too many semaphores are already set.
/// </summary>
TOO_MANY_MUXWAITERS = 152u,
/// <summary>
/// The DosMuxSemWait list is not correct.
/// </summary>
INVALID_LIST_FORMAT = 153u,
/// <summary>
/// The volume label you entered exceeds the label character limit of the target file system.
/// </summary>
LABEL_TOO_LONG = 154u,
/// <summary>
/// Cannot create another thread.
/// </summary>
TOO_MANY_TCBS = 155u,
/// <summary>
/// The recipient process has refused the signal.
/// </summary>
SIGNAL_REFUSED = 156u,
/// <summary>
/// The segment is already discarded and cannot be locked.
/// </summary>
DISCARDED = 157u,
/// <summary>
/// The segment is already unlocked.
/// </summary>
NOT_LOCKED = 158u,
/// <summary>
/// The address for the thread ID is not correct.
/// </summary>
BAD_THREADID_ADDR = 159u,
/// <summary>
/// One or more arguments are not correct.
/// </summary>
BAD_ARGUMENTS = 160u,
/// <summary>
/// The specified path is invalid.
/// </summary>
BAD_PATHNAME = 161u,
/// <summary>
/// A signal is already pending.
/// </summary>
SIGNAL_PENDING = 162u,
/// <summary>
/// No more threads can be created in the system.
/// </summary>
MAX_THRDS_REACHED = 164u,
/// <summary>
/// Unable to lock a region of a file.
/// </summary>
LOCK_FAILED = 167u,
/// <summary>
/// The requested resource is in use.
/// </summary>
BUSY = 170u,
/// <summary>
/// Device's command support detection is in progress.
/// </summary>
DEVICE_SUPPORT_IN_PROGRESS = 171u,
/// <summary>
/// A lock request was not outstanding for the supplied cancel region.
/// </summary>
CANCEL_VIOLATION = 173u,
/// <summary>
/// The file system does not support atomic changes to the lock type.
/// </summary>
ATOMIC_LOCKS_NOT_SUPPORTED = 174u,
/// <summary>
/// The system detected a segment number that was not correct.
/// </summary>
INVALID_SEGMENT_NUMBER = 180u,
/// <summary>
/// The operating system cannot run %1.
/// </summary>
INVALID_ORDINAL = 182u,
/// <summary>
/// Cannot create a file when that file already exists.
/// </summary>
ALREADY_EXISTS = 183u,
/// <summary>
/// The flag passed is not correct.
/// </summary>
INVALID_FLAG_NUMBER = 186u,
/// <summary>
/// The specified system semaphore name was not found.
/// </summary>
SEM_NOT_FOUND = 187u,
/// <summary>
/// The operating system cannot run %1.
/// </summary>
INVALID_STARTING_CODESEG = 188u,
/// <summary>
/// The operating system cannot run %1.
/// </summary>
INVALID_STACKSEG = 189u,
/// <summary>
/// The operating system cannot run %1.
/// </summary>
INVALID_MODULETYPE = 190u,
/// <summary>
/// Cannot run %1 in Win32 mode.
/// </summary>
INVALID_EXE_SIGNATURE = 191u,
/// <summary>
/// The operating system cannot run %1.
/// </summary>
EXE_MARKED_INVALID = 192u,
/// <summary>
/// %1 is not a valid Win32 application.
/// </summary>
BAD_EXE_FORMAT = 193u,
/// <summary>
/// The operating system cannot run %1.
/// </summary>
ITERATED_DATA_EXCEEDS_64k = 194u,
/// <summary>
/// The operating system cannot run %1.
/// </summary>
INVALID_MINALLOCSIZE = 195u,
/// <summary>
/// The operating system cannot run this application program.
/// </summary>
DYNLINK_FROM_INVALID_RING = 196u,
/// <summary>
/// The operating system is not presently configured to run this application.
/// </summary>
IOPL_NOT_ENABLED = 197u,
/// <summary>
/// The operating system cannot run %1.
/// </summary>
INVALID_SEGDPL = 198u,
/// <summary>
/// The operating system cannot run this application program.
/// </summary>
AUTODATASEG_EXCEEDS_64k = 199u,
/// <summary>
/// The code segment cannot be greater than or equal to 64K.
/// </summary>
RING2SEG_MUST_BE_MOVABLE = 200u,
/// <summary>
/// The operating system cannot run %1.
/// </summary>
RELOC_CHAIN_XEEDS_SEGLIM = 201u,
/// <summary>
/// The operating system cannot run %1.
/// </summary>
INFLOOP_IN_RELOC_CHAIN = 202u,
/// <summary>
/// The system could not find the environment option that was entered.
/// </summary>
ENVVAR_NOT_FOUND = 203u,
/// <summary>
/// No process in the command subtree has a signal handler.
/// </summary>
NO_SIGNAL_SENT = 205u,
/// <summary>
/// The filename or extension is too long.
/// </summary>
FILENAME_EXCED_RANGE = 206u,
/// <summary>
/// The ring 2 stack is in use.
/// </summary>
RING2_STACK_IN_USE = 207u,
/// <summary>
/// The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified.
/// </summary>
META_EXPANSION_TOO_LONG = 208u,
/// <summary>
/// The signal being posted is not correct.
/// </summary>
INVALID_SIGNAL_NUMBER = 209u,
/// <summary>
/// The signal handler cannot be set.
/// </summary>
THREAD_1_INACTIVE = 210u,
/// <summary>
/// The segment is locked and cannot be reallocated.
/// </summary>
LOCKED = 212u,
/// <summary>
/// Too many dynamic-link modules are attached to this program or dynamic-link module.
/// </summary>
TOO_MANY_MODULES = 214u,
/// <summary>
/// Cannot nest calls to LoadModule.
/// </summary>
NESTING_NOT_ALLOWED = 215u,
/// <summary>
/// This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher.
/// </summary>
EXE_MACHINE_TYPE_MISMATCH = 216u,
/// <summary>
/// The image file %1 is signed, unable to modify.
/// </summary>
EXE_CANNOT_MODIFY_SIGNED_BINARY = 217u,
/// <summary>
/// The image file %1 is strong signed, unable to modify.
/// </summary>
EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY = 218u,
/// <summary>
/// This file is checked out or locked for editing by another user.
/// </summary>
FILE_CHECKED_OUT = 220u,
/// <summary>
/// The file must be checked out before saving changes.
/// </summary>
CHECKOUT_REQUIRED = 221u,
/// <summary>
/// The file type being saved or retrieved has been blocked.
/// </summary>
BAD_FILE_TYPE = 222u,
/// <summary>
/// The file size exceeds the limit allowed and cannot be saved.
/// </summary>
FILE_TOO_LARGE = 223u,
/// <summary>
/// Access Denied. Before opening files in this location, you must first add the web site to your trusted sites list, browse to the web site, and select the option to login automatically.
/// </summary>
FORMS_AUTH_REQUIRED = 224u,
/// <summary>
/// Operation did not complete successfully because the file contains a virus or potentially unwanted software.
/// </summary>
VIRUS_INFECTED = 225u,
/// <summary>
/// This file contains a virus or potentially unwanted software and cannot be opened. Due to the nature of this virus or potentially unwanted software, the file has been removed from this location.
/// </summary>
VIRUS_DELETED = 226u,
/// <summary>
/// The pipe is local.
/// </summary>
PIPE_LOCAL = 229u,
/// <summary>
/// The pipe state is invalid.
/// </summary>
BAD_PIPE = 230u,
/// <summary>
/// All pipe instances are busy.
/// </summary>
PIPE_BUSY = 231u,
/// <summary>
/// The pipe is being closed.
/// </summary>
NO_DATA = 232u,
/// <summary>
/// No process is on the other end of the pipe.
/// </summary>
PIPE_NOT_CONNECTED = 233u,
/// <summary>
/// More data is available.
/// </summary>
MORE_DATA = 234u,
/// <summary>
/// The action requested resulted in no work being done. Error-style clean-up has been performed.
/// </summary>
NO_WORK_DONE = 235u,
/// <summary>
/// The session was canceled.
/// </summary>
VC_DISCONNECTED = 240u,
/// <summary>
/// The specified extended attribute name was invalid.
/// </summary>
INVALID_EA_NAME = 254u,
/// <summary>
/// The extended attributes are inconsistent.
/// </summary>
EA_LIST_INCONSISTENT = 255u,
/// <summary>
/// The wait operation timed out.
/// </summary>
WAIT_TIMEOUT = 258u,
/// <summary>
/// No more data is available.
/// </summary>
NO_MORE_ITEMS = 259u,
/// <summary>
/// The copy functions cannot be used.
/// </summary>
CANNOT_COPY = 266u,
/// <summary>
/// The directory name is invalid.
/// </summary>
DIRECTORY = 267u,
/// <summary>
/// The extended attributes did not fit in the buffer.
/// </summary>
EAS_DIDNT_FIT = 275u,
/// <summary>
/// The extended attribute file on the mounted file system is corrupt.
/// </summary>
EA_FILE_CORRUPT = 276u,
/// <summary>
/// The extended attribute table file is full.
/// </summary>
EA_TABLE_FULL = 277u,
/// <summary>
/// The specified extended attribute handle is invalid.
/// </summary>
INVALID_EA_HANDLE = 278u,
/// <summary>
/// The mounted file system does not support extended attributes.
/// </summary>
EAS_NOT_SUPPORTED = 282u,
/// <summary>
/// Attempt to release mutex not owned by caller.
/// </summary>
NOT_OWNER = 288u,
/// <summary>
/// Too many posts were made to a semaphore.
/// </summary>
TOO_MANY_POSTS = 298u,
/// <summary>
/// Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
/// </summary>
PARTIAL_COPY = 299u,
/// <summary>
/// The oplock request is denied.
/// </summary>
OPLOCK_NOT_GRANTED = 300u,
/// <summary>
/// An invalid oplock acknowledgment was received by the system.
/// </summary>
INVALID_OPLOCK_PROTOCOL = 301u,
/// <summary>
/// The volume is too fragmented to complete this operation.
/// </summary>
DISK_TOO_FRAGMENTED = 302u,
/// <summary>
/// The file cannot be opened because it is in the process of being deleted.
/// </summary>
DELETE_PENDING = 303u,
/// <summary>
/// Short name settings may not be changed on this volume due to the global registry setting.
/// </summary>
INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING = 304u,
/// <summary>
/// Short names are not enabled on this volume.
/// </summary>
SHORT_NAMES_NOT_ENABLED_ON_VOLUME = 305u,
/// <summary>
/// Please run CHKDSK on the volume.
/// </summary>
SECURITY_STREAM_IS_INCONSISTENT = 306u,
/// <summary>
/// A requested file lock operation cannot be processed due to an invalid byte range.
/// </summary>
INVALID_LOCK_RANGE = 307u,
/// <summary>
/// The subsystem needed to support the image type is not present.
/// </summary>
IMAGE_SUBSYSTEM_NOT_PRESENT = 308u,
/// <summary>
/// The specified file already has a notification GUID associated with it.
/// </summary>
NOTIFICATION_GUID_ALREADY_DEFINED = 309u,
/// <summary>
/// An invalid exception handler routine has been detected.
/// </summary>
INVALID_EXCEPTION_HANDLER = 310u,
/// <summary>
/// Duplicate privileges were specified for the token.
/// </summary>
DUPLICATE_PRIVILEGES = 311u,
/// <summary>
/// No ranges for the specified operation were able to be processed.
/// </summary>
NO_RANGES_PROCESSED = 312u,
/// <summary>
/// Operation is not allowed on a file system internal file.
/// </summary>
NOT_ALLOWED_ON_SYSTEM_FILE = 313u,
/// <summary>
/// The physical resources of this disk have been exhausted.
/// </summary>
DISK_RESOURCES_EXHAUSTED = 314u,
/// <summary>
/// The token representing the data is invalid.
/// </summary>
INVALID_TOKEN = 315u,
/// <summary>
/// The device does not support the command feature.
/// </summary>
DEVICE_FEATURE_NOT_SUPPORTED = 316u,
/// <summary>
/// The system cannot find message text for message number 0x%1 in the message file for %2.
/// </summary>
MR_MID_NOT_FOUND = 317u,
/// <summary>
/// The scope specified was not found.
/// </summary>
SCOPE_NOT_FOUND = 318u,
/// <summary>
/// The Central Access Policy specified is not defined on the target machine.
/// </summary>
UNDEFINED_SCOPE = 319u,
/// <summary>
/// The Central Access Policy obtained from Active Directory is invalid.
/// </summary>
INVALID_CAP = 320u,
/// <summary>
/// The device is unreachable.
/// </summary>
DEVICE_UNREACHABLE = 321u,
/// <summary>
/// The target device has insufficient resources to complete the operation.
/// </summary>
DEVICE_NO_RESOURCES = 322u,
/// <summary>
/// A data integrity checksum error occurred. Data in the file stream is corrupt.
/// </summary>
DATA_CHECKSUM_ERROR = 323u,
/// <summary>
/// An attempt was made to modify both a KERNEL and normal Extended Attribute (EA) in the same operation.
/// </summary>
INTERMIXED_KERNEL_EA_OPERATION = 324u,
/// <summary>
/// Device does not support file-level TRIM.
/// </summary>
FILE_LEVEL_TRIM_NOT_SUPPORTED = 326u,
/// <summary>
/// The command specified a data offset that does not align to the device's granularity/alignment.
/// </summary>
OFFSET_ALIGNMENT_VIOLATION = 327u,
/// <summary>
/// The command specified an invalid field in its parameter list.
/// </summary>
INVALID_FIELD_IN_PARAMETER_LIST = 328u,
/// <summary>
/// An operation is currently in progress with the device.
/// </summary>
OPERATION_IN_PROGRESS = 329u,
/// <summary>
/// An attempt was made to send down the command via an invalid path to the target device.
/// </summary>
BAD_DEVICE_PATH = 330u,
/// <summary>
/// The command specified a number of descriptors that exceeded the maximum supported by the device.
/// </summary>
TOO_MANY_DESCRIPTORS = 331u,
/// <summary>
/// Scrub is disabled on the specified file.
/// </summary>
SCRUB_DATA_DISABLED = 332u,
/// <summary>
/// The storage device does not provide redundancy.
/// </summary>
NOT_REDUNDANT_STORAGE = 333u,
/// <summary>
/// An operation is not supported on a resident file.
/// </summary>
RESIDENT_FILE_NOT_SUPPORTED = 334u,
/// <summary>
/// An operation is not supported on a compressed file.
/// </summary>
COMPRESSED_FILE_NOT_SUPPORTED = 335u,
/// <summary>
/// An operation is not supported on a directory.
/// </summary>
DIRECTORY_NOT_SUPPORTED = 336u,
/// <summary>
/// The specified copy of the requested data could not be read.
/// </summary>
NOT_READ_FROM_COPY = 337u,
/// <summary>
/// The specified data could not be written to any of the copies.
/// </summary>
FT_WRITE_FAILURE = 338u,
/// <summary>
/// One or more copies of data on this device may be out of sync. No writes may be performed until a data integrity scan is completed.
/// </summary>
FT_DI_SCAN_REQUIRED = 339u,
/// <summary>
/// The supplied kernel information version is invalid.
/// </summary>
INVALID_KERNEL_INFO_VERSION = 340u,
/// <summary>
/// The supplied PEP information version is invalid.
/// </summary>
INVALID_PEP_INFO_VERSION = 341u,
/// <summary>
/// This object is not externally backed by any provider.
/// </summary>
OBJECT_NOT_EXTERNALLY_BACKED = 342u,
/// <summary>
/// The external backing provider is not recognized.
/// </summary>
EXTERNAL_BACKING_PROVIDER_UNKNOWN = 343u,
/// <summary>
/// Compressing this object would not save space.
/// </summary>
COMPRESSION_NOT_BENEFICIAL = 344u,
/// <summary>
/// The request failed due to a storage topology ID mismatch.
/// </summary>
STORAGE_TOPOLOGY_ID_MISMATCH = 345u,
/// <summary>
/// The operation was blocked by parental controls.
/// </summary>
BLOCKED_BY_PARENTAL_CONTROLS = 346u,
/// <summary>
/// A file system block being referenced has already reached the maximum reference count and can't be referenced any further.
/// </summary>
BLOCK_TOO_MANY_REFERENCES = 347u,
/// <summary>
/// The requested operation failed because the file stream is marked to disallow writes.
/// </summary>
MARKED_TO_DISALLOW_WRITES = 348u,
/// <summary>
/// The requested operation failed with an architecture-specific failure code.
/// </summary>
ENCLAVE_FAILURE = 349u,
/// <summary>
/// No action was taken as a system reboot is required.
/// </summary>
FAIL_NOACTION_REBOOT = 350u,
/// <summary>
/// The shutdown operation failed.
/// </summary>
FAIL_SHUTDOWN = 351u,
/// <summary>
/// The restart operation failed.
/// </summary>
FAIL_RESTART = 352u,
/// <summary>
/// The maximum number of sessions has been reached.
/// </summary>
MAX_SESSIONS_REACHED = 353u,
/// <summary>
/// Windows Information Protection policy does not allow access to this network resource.
/// </summary>
NETWORK_ACCESS_DENIED_EDP = 354u,
/// <summary>
/// The device hint name buffer is too small to receive the remaining name.
/// </summary>
DEVICE_HINT_NAME_BUFFER_TOO_SMALL = 355u,
/// <summary>
/// The requested operation was blocked by Windows Information Protection policy. For more information, contact your system administrator.
/// </summary>
EDP_POLICY_DENIES_OPERATION = 356u,
/// <summary>
/// The requested operation cannot be performed because hardware or software configuration of the device does not comply with Windows Information Protection under Lock policy. Please, verify that user PIN has been created. For more information, contact your system administrator.
/// </summary>
EDP_DPL_POLICY_CANT_BE_SATISFIED = 357u,
/// <summary>
/// The cloud sync root metadata is corrupted.
/// </summary>
CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT = 358u,
/// <summary>
/// The device is in maintenance mode.
/// </summary>
DEVICE_IN_MAINTENANCE = 359u,
/// <summary>
/// This operation is not supported on a DAX volume.
/// </summary>
NOT_SUPPORTED_ON_DAX = 360u,
/// <summary>
/// The volume has active DAX mappings.
/// </summary>
DAX_MAPPING_EXISTS = 361u,
/// <summary>
/// The cloud file provider is not running.
/// </summary>
CLOUD_FILE_PROVIDER_NOT_RUNNING = 362u,
/// <summary>
/// The cloud file metadata is corrupt and unreadable.
/// </summary>
CLOUD_FILE_METADATA_CORRUPT = 363u,
/// <summary>
/// The cloud file metadata is too large.
/// </summary>
CLOUD_FILE_METADATA_TOO_LARGE = 364u,
/// <summary>
/// The cloud file property is too large.
/// </summary>
CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE = 365u,
/// <summary>
/// The cloud file property is possibly corrupt. The on-disk checksum does not match the computed checksum.
/// </summary>
CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH = 366u,
/// <summary>
/// The process creation has been blocked.
/// </summary>
CHILD_PROCESS_BLOCKED = 367u,
/// <summary>
/// The storage device has lost data or persistence.
/// </summary>
STORAGE_LOST_DATA_PERSISTENCE = 368u,
/// <summary>
/// The provider that supports file system virtualization is temporarily unavailable.
/// </summary>
FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE = 369u,
/// <summary>
/// The metadata for file system virtualization is corrupt and unreadable.
/// </summary>
FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT = 370u,
/// <summary>
/// The provider that supports file system virtualization is too busy to complete this operation.
/// </summary>
FILE_SYSTEM_VIRTUALIZATION_BUSY = 371u,
/// <summary>
/// The provider that supports file system virtualization is unknown.
/// </summary>
FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN = 372u,
/// <summary>
/// GDI handles were potentially leaked by the application.
/// </summary>
GDI_HANDLE_LEAK = 373u,
/// <summary>
/// The maximum number of cloud file properties has been reached.
/// </summary>
CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS = 374u,
/// <summary>
/// The version of the cloud file property store is not supported.
/// </summary>
CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED = 375u,
/// <summary>
/// The file is not a cloud file.
/// </summary>
NOT_A_CLOUD_FILE = 376u,
/// <summary>
/// The file is not in sync with the cloud.
/// </summary>
CLOUD_FILE_NOT_IN_SYNC = 377u,
/// <summary>
/// The cloud sync root is already connected with another cloud sync provider.
/// </summary>
CLOUD_FILE_ALREADY_CONNECTED = 378u,
/// <summary>
/// The operation is not supported by the cloud sync provider.
/// </summary>
CLOUD_FILE_NOT_SUPPORTED = 379u,
/// <summary>
/// The cloud operation is invalid.
/// </summary>
CLOUD_FILE_INVALID_REQUEST = 380u,
/// <summary>
/// The cloud operation is not supported on a read-only volume.
/// </summary>
CLOUD_FILE_READ_ONLY_VOLUME = 381u,
/// <summary>
/// The operation is reserved for a connected cloud sync provider.
/// </summary>
CLOUD_FILE_CONNECTED_PROVIDER_ONLY = 382u,
/// <summary>
/// The cloud sync provider failed to validate the downloaded data.
/// </summary>
CLOUD_FILE_VALIDATION_FAILED = 383u,
/// <summary>
/// Your system requires SMB2 or higher. For more info on resolving this issue, see: https://go.microsoft.com/fwlink/?linkid=852747
/// </summary>
SMB1_NOT_AVAILABLE = 384u,
/// <summary>
/// The virtualization operation is not allowed on the file in its current state.
/// </summary>
FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION = 385u,
/// <summary>
/// The cloud sync provider failed user authentication.
/// </summary>
CLOUD_FILE_AUTHENTICATION_FAILED = 386u,
/// <summary>
/// The cloud sync provider failed to perform the operation due to low system resources.
/// </summary>
CLOUD_FILE_INSUFFICIENT_RESOURCES = 387u,
/// <summary>
/// The cloud sync provider failed to perform the operation due to network being unavailable.
/// </summary>
CLOUD_FILE_NETWORK_UNAVAILABLE = 388u,
/// <summary>
/// The cloud operation was unsuccessful.
/// </summary>
CLOUD_FILE_UNSUCCESSFUL = 389u,
/// <summary>
/// The operation is only supported on files under a cloud sync root.
/// </summary>
CLOUD_FILE_NOT_UNDER_SYNC_ROOT = 390u,
/// <summary>
/// The operation cannot be performed on cloud files in use.
/// </summary>
CLOUD_FILE_IN_USE = 391u,
/// <summary>
/// The operation cannot be performed on pinned cloud files.
/// </summary>
CLOUD_FILE_PINNED = 392u,
/// <summary>
/// The cloud operation was aborted.
/// </summary>
CLOUD_FILE_REQUEST_ABORTED = 393u,
/// <summary>
/// The cloud file's property store is corrupt.
/// </summary>
CLOUD_FILE_PROPERTY_CORRUPT = 394u,
/// <summary>
/// Access to the cloud file is denied.
/// </summary>
CLOUD_FILE_ACCESS_DENIED = 395u,
/// <summary>
/// The cloud operation cannot be performed on a file with incompatible hardlinks.
/// </summary>
CLOUD_FILE_INCOMPATIBLE_HARDLINKS = 396u,
/// <summary>
/// The operation failed due to a conflicting cloud file property lock.
/// </summary>
CLOUD_FILE_PROPERTY_LOCK_CONFLICT = 397u,
/// <summary>
/// The cloud operation was canceled by user.
/// </summary>
CLOUD_FILE_REQUEST_CANCELED = 398u,
/// <summary>
/// An externally encrypted syskey has been configured, but the system no longer supports this feature. Please see https://go.microsoft.com/fwlink/?linkid=851152 for more information.
/// </summary>
EXTERNAL_SYSKEY_NOT_SUPPORTED = 399u,
/// <summary>
/// The thread is already in background processing mode.
/// </summary>
THREAD_MODE_ALREADY_BACKGROUND = 400u,
/// <summary>
/// The thread is not in background processing mode.
/// </summary>
THREAD_MODE_NOT_BACKGROUND = 401u,
/// <summary>
/// The process is already in background processing mode.
/// </summary>
PROCESS_MODE_ALREADY_BACKGROUND = 402u,
/// <summary>
/// The process is not in background processing mode.
/// </summary>
PROCESS_MODE_NOT_BACKGROUND = 403u,
/// <summary>
/// The cloud file provider exited unexpectedly.
/// </summary>
CLOUD_FILE_PROVIDER_TERMINATED = 404u,
/// <summary>
/// The file is not a cloud sync root.
/// </summary>
NOT_A_CLOUD_SYNC_ROOT = 405u,
/// <summary>
/// The read or write operation to an encrypted file could not be completed because the file can only be accessed when the device is unlocked.
/// </summary>
FILE_PROTECTED_UNDER_DPL = 406u,
/// <summary>
/// The volume is not cluster aligned on the disk.
/// </summary>
VOLUME_NOT_CLUSTER_ALIGNED = 407u,
/// <summary>
/// No physically aligned free space was found on the volume.
/// </summary>
NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND = 408u,
/// <summary>
/// The APPX file can not be accessed because it is not encrypted as expected.
/// </summary>
APPX_FILE_NOT_ENCRYPTED = 409u,
/// <summary>
/// A read or write of raw encrypted data cannot be performed because the file is not encrypted.
/// </summary>
RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED = 410u,
/// <summary>
/// An invalid file offset in the encrypted data info block was passed for read or write operation of file's raw encrypted data.
/// </summary>
RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET = 411u,
/// <summary>
/// An invalid offset and length combination in the encrypted data info block was passed for read or write operation of file's raw encrypted data.
/// </summary>
RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE = 412u,
/// <summary>
/// An invalid parameter in the encrypted data info block was passed for read or write operation of file's raw encrypted data.
/// </summary>
RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER = 413u,
/// <summary>
/// The Windows Subsystem for Linux has not been enabled.
/// </summary>
LINUX_SUBSYSTEM_NOT_PRESENT = 414u,
/// <summary>
/// The specified data could not be read from any of the copies.
/// </summary>
FT_READ_FAILURE = 415u,
/// <summary>
/// The specified storage reserve ID is invalid.
/// </summary>
STORAGE_RESERVE_ID_INVALID = 416u,
/// <summary>
/// The specified storage reserve does not exist.
/// </summary>
STORAGE_RESERVE_DOES_NOT_EXIST = 417u,
/// <summary>
/// The specified storage reserve already exists.
/// </summary>
STORAGE_RESERVE_ALREADY_EXISTS = 418u,
/// <summary>
/// The specified storage reserve is not empty.
/// </summary>
STORAGE_RESERVE_NOT_EMPTY = 419u,
/// <summary>
/// This operation requires a DAX volume.
/// </summary>
NOT_A_DAX_VOLUME = 420u,
/// <summary>
/// This stream is not DAX mappable.
/// </summary>
NOT_DAX_MAPPABLE = 421u,
/// <summary>
/// Operation cannot be performed on a time critical thread.
/// </summary>
TIME_CRITICAL_THREAD = 422u,
/// <summary>
/// User data protection is not supported for the current or provided user.
/// </summary>
DPL_NOT_SUPPORTED_FOR_USER = 423u,
/// <summary>
/// This directory contains entries whose names differ only in case.
/// </summary>
CASE_DIFFERING_NAMES_IN_DIR = 424u,
/// <summary>
/// Neither developer unlocked mode nor side loading mode is enabled on the device.
/// </summary>
CAPAUTHZ_NOT_DEVUNLOCKED = 450u,
/// <summary>
/// Can not change application type during upgrade or re-provision.
/// </summary>
CAPAUTHZ_CHANGE_TYPE = 451u,
/// <summary>
/// The application has not been provisioned.
/// </summary>
CAPAUTHZ_NOT_PROVISIONED = 452u,
/// <summary>
/// The requested capability can not be authorized for this application.
/// </summary>
CAPAUTHZ_NOT_AUTHORIZED = 453u,
/// <summary>
/// There is no capability authorization policy on the device.
/// </summary>
CAPAUTHZ_NO_POLICY = 454u,
/// <summary>
/// The capability authorization database has been corrupted.
/// </summary>
CAPAUTHZ_DB_CORRUPTED = 455u,
/// <summary>
/// The custom capability's SCCD has an invalid catalog.
/// </summary>
CAPAUTHZ_SCCD_INVALID_CATALOG = 456u,
/// <summary>
/// None of the authorized entity elements in the SCCD matched the app being installed; either the PFNs don't match, or the element's signature hash doesn't validate.
/// </summary>
CAPAUTHZ_SCCD_NO_AUTH_ENTITY = 457u,
/// <summary>
/// The custom capability's SCCD failed to parse.
/// </summary>
CAPAUTHZ_SCCD_PARSE_ERROR = 458u,
/// <summary>
/// The custom capability's SCCD requires developer mode.
/// </summary>
CAPAUTHZ_SCCD_DEV_MODE_REQUIRED = 459u,
/// <summary>
/// There not all declared custom capabilities are found in the SCCD.
/// </summary>
CAPAUTHZ_SCCD_NO_CAPABILITY_MATCH = 460u,
/// <summary>
/// The operation timed out waiting for this device to complete a PnP query-remove request due to a potential hang in its device stack. The system may need to be rebooted to complete the request.
/// </summary>
PNP_QUERY_REMOVE_DEVICE_TIMEOUT = 480u,
/// <summary>
/// The operation timed out waiting for this device to complete a PnP query-remove request due to a potential hang in the device stack of a related device. The system may need to be rebooted to complete the operation.
/// </summary>
PNP_QUERY_REMOVE_RELATED_DEVICE_TIMEOUT = 481u,
/// <summary>
/// The operation timed out waiting for this device to complete a PnP query-remove request due to a potential hang in the device stack of an unrelated device. The system may need to be rebooted to complete the operation.
/// </summary>
PNP_QUERY_REMOVE_UNRELATED_DEVICE_TIMEOUT = 482u,
/// <summary>
/// The request failed due to a fatal device hardware error.
/// </summary>
DEVICE_HARDWARE_ERROR = 483u,
/// <summary>
/// Attempt to access invalid address.
/// </summary>
INVALID_ADDRESS = 487u,
/// <summary>
/// Driver Verifier Volatile settings cannot be set when CFG is enabled.
/// </summary>
VRF_CFG_ENABLED = 1183u,
/// <summary>
/// An attempt was made to access a partition that has begun termination.
/// </summary>
PARTITION_TERMINATING = 1184u,
/// <summary>
/// User profile cannot be loaded.
/// </summary>
USER_PROFILE_LOAD = 500u,
/// <summary>
/// Arithmetic result exceeded 32 bits.
/// </summary>
ARITHMETIC_OVERFLOW = 534u,
/// <summary>
/// There is a process on other end of the pipe.
/// </summary>
PIPE_CONNECTED = 535u,
/// <summary>
/// Waiting for a process to open the other end of the pipe.
/// </summary>
PIPE_LISTENING = 536u,
/// <summary>
/// Application verifier has found an error in the current process.
/// </summary>
VERIFIER_STOP = 537u,
/// <summary>
/// An error occurred in the ABIOS subsystem.
/// </summary>
ABIOS_ERROR = 538u,
/// <summary>
/// A warning occurred in the WX86 subsystem.
/// </summary>
WX86_WARNING = 539u,
/// <summary>
/// An error occurred in the WX86 subsystem.
/// </summary>
WX86_ERROR = 540u,
/// <summary>
/// An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine.
/// </summary>
TIMER_NOT_CANCELED = 541u,
/// <summary>
/// Unwind exception code.
/// </summary>
UNWIND = 542u,
/// <summary>
/// An invalid or unaligned stack was encountered during an unwind operation.
/// </summary>
BAD_STACK = 543u,
/// <summary>
/// An invalid unwind target was encountered during an unwind operation.
/// </summary>
INVALID_UNWIND_TARGET = 544u,
/// <summary>
/// Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort
/// </summary>
INVALID_PORT_ATTRIBUTES = 545u,
/// <summary>
/// Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.
/// </summary>
PORT_MESSAGE_TOO_LONG = 546u,
/// <summary>
/// An attempt was made to lower a quota limit below the current usage.
/// </summary>
INVALID_QUOTA_LOWER = 547u,
/// <summary>
/// An attempt was made to attach to a device that was already attached to another device.
/// </summary>
DEVICE_ALREADY_ATTACHED = 548u,
/// <summary>
/// An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references.
/// </summary>
INSTRUCTION_MISALIGNMENT = 549u,
/// <summary>
/// Profiling not started.
/// </summary>
PROFILING_NOT_STARTED = 550u,
/// <summary>
/// Profiling not stopped.
/// </summary>
PROFILING_NOT_STOPPED = 551u,
/// <summary>
/// The passed ACL did not contain the minimum required information.
/// </summary>
COULD_NOT_INTERPRET = 552u,
/// <summary>
/// The number of active profiling objects is at the maximum and no more may be started.
/// </summary>
PROFILING_AT_LIMIT = 553u,
/// <summary>
/// Used to indicate that an operation cannot continue without blocking for I/O.
/// </summary>
CANT_WAIT = 554u,
/// <summary>
/// Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.
/// </summary>
CANT_TERMINATE_SELF = 555u,
/// <summary>
/// In this case information is lost, however, the filter correctly handles the exception.
/// </summary>
UNEXPECTED_MM_CREATE_ERR = 556u,
/// <summary>
/// In this case information is lost, however, the filter correctly handles the exception.
/// </summary>
UNEXPECTED_MM_MAP_ERROR = 557u,
/// <summary>
/// In this case information is lost, however, the filter correctly handles the exception.
/// </summary>
UNEXPECTED_MM_EXTEND_ERR = 558u,
/// <summary>
/// A malformed function table was encountered during an unwind operation.
/// </summary>
BAD_FUNCTION_TABLE = 559u,
/// <summary>
/// This causes the protection attempt to fail, which may cause a file creation attempt to fail.
/// </summary>
NO_GUID_TRANSLATION = 560u,
/// <summary>
/// Indicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors.
/// </summary>
INVALID_LDT_SIZE = 561u,
/// <summary>
/// Indicates that the starting value for the LDT information was not an integral multiple of the selector size.
/// </summary>
INVALID_LDT_OFFSET = 563u,
/// <summary>
/// Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors.
/// </summary>
INVALID_LDT_DESCRIPTOR = 564u,
/// <summary>
/// Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token may only be performed when a process has zero or one threads.
/// </summary>
TOO_MANY_THREADS = 565u,
/// <summary>
/// An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified.
/// </summary>
THREAD_NOT_IN_PROCESS = 566u,
/// <summary>
/// Page file quota was exceeded.
/// </summary>
PAGEFILE_QUOTA_EXCEEDED = 567u,
/// <summary>
/// The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.
/// </summary>
LOGON_SERVER_CONFLICT = 568u,
/// <summary>
/// The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required.
/// </summary>
SYNCHRONIZATION_REQUIRED = 569u,
/// <summary>
/// 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.
/// </summary>
NET_OPEN_FAILED = 570u,
/// <summary>
/// The I/O permissions for the process could not be changed.
/// </summary>
IO_PRIVILEGE_FAILED = 571u,
/// <summary>
/// The application terminated as a result of a CTRL+C.
/// </summary>
CONTROL_C_EXIT = 572u,
/// <summary>
/// The required system file %hs is bad or missing.
/// </summary>
MISSING_SYSTEMFILE = 573u,
/// <summary>
/// The exception %s (0x%08lx) occurred in the application at location 0x%08lx.
/// </summary>
UNHANDLED_EXCEPTION = 574u,
/// <summary>
/// The application was unable to start correctly (0x%lx). Click OK to close the application.
/// </summary>
APP_INIT_FAILURE = 575u,
/// <summary>
/// The creation of the paging file %hs failed (%lx). The requested size was %ld.
/// </summary>
PAGEFILE_CREATE_FAILED = 576u,
/// <summary>
/// Windows cannot verify the digital signature for this file. A recent hardware or software change might have installed a file that is signed incorrectly or damaged, or that might be malicious software from an unknown source.
/// </summary>
INVALID_IMAGE_HASH = 577u,
/// <summary>
/// No paging file was specified in the system configuration.
/// </summary>
NO_PAGEFILE = 578u,
/// <summary>
/// A real-mode application issued a floating-point instruction and floating-point hardware is not present.
/// </summary>
ILLEGAL_FLOAT_CONTEXT = 579u,
/// <summary>
/// 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.
/// </summary>
NO_EVENT_PAIR = 580u,
/// <summary>
/// A Windows Server has an incorrect configuration.
/// </summary>
DOMAIN_CTRLR_CONFIG_ERROR = 581u,
/// <summary>
/// An illegal character was encountered. For a multi-byte character set this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE.
/// </summary>
ILLEGAL_CHARACTER = 582u,
/// <summary>
/// The Unicode character is not defined in the Unicode character set installed on the system.
/// </summary>
UNDEFINED_CHARACTER = 583u,
/// <summary>
/// The paging file cannot be created on a floppy diskette.
/// </summary>
FLOPPY_VOLUME = 584u,
/// <summary>
/// The system BIOS failed to connect a system interrupt to the device or bus for which the device is connected.
/// </summary>
BIOS_FAILED_TO_CONNECT_INTERRUPT = 585u,
/// <summary>
/// This operation is only allowed for the Primary Domain Controller of the domain.
/// </summary>
BACKUP_CONTROLLER = 586u,
/// <summary>
/// An attempt was made to acquire a mutant such that its maximum count would have been exceeded.
/// </summary>
MUTANT_LIMIT_EXCEEDED = 587u,
/// <summary>
/// A volume has been accessed for which a file system driver is required that has not yet been loaded.
/// </summary>
FS_DRIVER_REQUIRED = 588u,
/// <summary>
/// It is corrupt, absent, or not writable.
/// </summary>
CANNOT_LOAD_REGISTRY_FILE = 589u,
/// <summary>
/// An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error.
/// </summary>
DEBUG_ATTACH_FAILED = 590u,
/// <summary>
/// The system has been shut down.
/// </summary>
SYSTEM_PROCESS_TERMINATED = 591u,
/// <summary>
/// The TDI client could not handle the data received during an indication.
/// </summary>
DATA_NOT_ACCEPTED = 592u,
/// <summary>
/// NTVDM encountered a hard error.
/// </summary>
VDM_HARD_ERROR = 593u,
/// <summary>
/// The driver %hs failed to complete a cancelled I/O request in the allotted time.
/// </summary>
DRIVER_CANCEL_TIMEOUT = 594u,
/// <summary>
/// An attempt was made to reply to an LPC message, but the thread specified by the client ID in the message was not waiting on that message.
/// </summary>
REPLY_MESSAGE_MISMATCH = 595u,
/// <summary>
/// This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere.
/// </summary>
LOST_WRITEBEHIND_DATA = 596u,
/// <summary>
/// The parameter(s) passed to the server in the client/server shared memory window were invalid. Too much data may have been put in the shared memory window.
/// </summary>
CLIENT_SERVER_PARAMETERS_INVALID = 597u,
/// <summary>
/// The stream is not a tiny stream.
/// </summary>
NOT_TINY_STREAM = 598u,
/// <summary>
/// The request must be handled by the stack overflow code.
/// </summary>
STACK_OVERFLOW_READ = 599u,
/// <summary>
/// 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.
/// </summary>
CONVERT_TO_LARGE = 600u,
/// <summary>
/// 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.
/// </summary>
FOUND_OUT_OF_SCOPE = 601u,
/// <summary>
/// The bucket array must be grown. Retry transaction after doing so.
/// </summary>
ALLOCATE_BUCKET = 602u,
/// <summary>
/// The user/kernel marshalling buffer has overflowed.
/// </summary>
MARSHALL_OVERFLOW = 603u,
/// <summary>
/// The supplied variant structure contains invalid data.
/// </summary>
INVALID_VARIANT = 604u,
/// <summary>
/// The specified buffer contains ill-formed data.
/// </summary>
BAD_COMPRESSION_BUFFER = 605u,
/// <summary>
/// An attempt to generate a security audit failed.
/// </summary>
AUDIT_FAILED = 606u,
/// <summary>
/// The timer resolution was not previously set by the current process.
/// </summary>
TIMER_RESOLUTION_NOT_SET = 607u,
/// <summary>
/// There is insufficient account information to log you on.
/// </summary>
INSUFFICIENT_LOGON_INFO = 608u,
/// <summary>
/// The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO may cause the application to operate incorrectly.
/// </summary>
BAD_DLL_ENTRYPOINT = 609u,
/// <summary>
/// The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process may operate incorrectly.
/// </summary>
BAD_SERVICE_ENTRYPOINT = 610u,
/// <summary>
/// There is an IP address conflict with another system on the network
/// </summary>
IP_ADDRESS_CONFLICT1 = 611u,
/// <summary>
/// There is an IP address conflict with another system on the network
/// </summary>
IP_ADDRESS_CONFLICT2 = 612u,
/// <summary>
/// The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored.
/// </summary>
REGISTRY_QUOTA_LIMIT = 613u,
/// <summary>
/// A callback return system service cannot be executed when no callback is active.
/// </summary>
NO_CALLBACK_ACTIVE = 614u,
/// <summary>
/// Please choose a longer password.
/// </summary>
PWD_TOO_SHORT = 615u,
/// <summary>
/// If you feel your password has been compromised then please contact your administrator immediately to have a new one assigned.
/// </summary>
PWD_TOO_RECENT = 616u,
/// <summary>
/// The policy of your user account does not allow this. Please select a password that you have not previously used.
/// </summary>
PWD_HISTORY_CONFLICT = 617u,
/// <summary>
/// The specified compression format is unsupported.
/// </summary>
UNSUPPORTED_COMPRESSION = 618u,
/// <summary>
/// The specified hardware profile configuration is invalid.
/// </summary>
INVALID_HW_PROFILE = 619u,
/// <summary>
/// The specified Plug and Play registry device path is invalid.
/// </summary>
INVALID_PLUGPLAY_DEVICE_PATH = 620u,
/// <summary>
/// The specified quota list is internally inconsistent with its descriptor.
/// </summary>
QUOTA_LIST_INCONSISTENT = 621u,
/// <summary>
/// The evaluation period for this installation of Windows has expired. This system will shutdown in 1 hour. To restore access to this installation of Windows, please upgrade this installation using a licensed distribution of this product.
/// </summary>
EVALUATION_EXPIRATION = 622u,
/// <summary>
/// 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.
/// </summary>
ILLEGAL_DLL_RELOCATION = 623u,
/// <summary>
/// The application failed to initialize because the window station is shutting down.
/// </summary>
DLL_INIT_FAILED_LOGOFF = 624u,
/// <summary>
/// The validation process needs to continue on to the next step.
/// </summary>
VALIDATE_CONTINUE = 625u,
/// <summary>
/// There are no more matches for the current index enumeration.
/// </summary>
NO_MORE_MATCHES = 626u,
/// <summary>
/// The range could not be added to the range list because of a conflict.
/// </summary>
RANGE_LIST_CONFLICT = 627u,
/// <summary>
/// The server process is running under a SID different than that required by client.
/// </summary>
SERVER_SID_MISMATCH = 628u,
/// <summary>
/// A group marked use for deny only cannot be enabled.
/// </summary>
CANT_ENABLE_DENY_ONLY = 629u,
/// <summary>
/// Multiple floating point faults.
/// </summary>
FLOAT_MULTIPLE_FAULTS = 630u,
/// <summary>
/// Multiple floating point traps.
/// </summary>
FLOAT_MULTIPLE_TRAPS = 631u,
/// <summary>
/// The requested interface is not supported.
/// </summary>
NOINTERFACE = 632u,
/// <summary>
/// The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode.
/// </summary>
DRIVER_FAILED_SLEEP = 633u,
/// <summary>
/// The system file %1 has become corrupt and has been replaced.
/// </summary>
CORRUPT_SYSTEM_FILE = 634u,
/// <summary>
/// During this process, memory requests for some applications may be denied. For more information, see Help.
/// </summary>
COMMITMENT_MINIMUM = 635u,
/// <summary>
/// A device was removed so enumeration must be restarted.
/// </summary>
PNP_RESTART_ENUMERATION = 636u,
/// <summary>
/// The system has been shut down.
/// </summary>
SYSTEM_IMAGE_BAD_SIGNATURE = 637u,
/// <summary>
/// Device will not start without a reboot.
/// </summary>
PNP_REBOOT_REQUIRED = 638u,
/// <summary>
/// There is not enough power to complete the requested operation.
/// </summary>
INSUFFICIENT_POWER = 639u,
/// <summary>
/// ERROR_MULTIPLE_FAULT_VIOLATION
/// </summary>
MULTIPLE_FAULT_VIOLATION = 640u,
/// <summary>
/// The system is in the process of shutting down.
/// </summary>
SYSTEM_SHUTDOWN = 641u,
/// <summary>
/// An attempt to remove a processes DebugPort was made, but a port was not already associated with the process.
/// </summary>
PORT_NOT_SET = 642u,
/// <summary>
/// This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller.
/// </summary>
DS_VERSION_CHECK_FAILURE = 643u,
/// <summary>
/// The specified range could not be found in the range list.
/// </summary>
RANGE_NOT_FOUND = 644u,
/// <summary>
/// The driver was not loaded because the system is booting into safe mode.
/// </summary>
NOT_SAFE_MODE_DRIVER = 646u,
/// <summary>
/// The driver was not loaded because it failed its initialization call.
/// </summary>
FAILED_DRIVER_ENTRY = 647u,
/// <summary>
/// This may be caused by a failure of your hardware or by a poor connection.
/// </summary>
DEVICE_ENUMERATION_ERROR = 648u,
/// <summary>
/// The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached.
/// </summary>
MOUNT_POINT_NOT_RESOLVED = 649u,
/// <summary>
/// The device object parameter is either not a valid device object or is not attached to the volume specified by the file name.
/// </summary>
INVALID_DEVICE_OBJECT_PARAMETER = 650u,
/// <summary>
/// A Machine Check Error has occurred. Please check the system eventlog for additional information.
/// </summary>
MCA_OCCURED = 651u,
/// <summary>
/// There was error [%2] processing the driver database.
/// </summary>
DRIVER_DATABASE_ERROR = 652u,
/// <summary>
/// System hive size has exceeded its limit.
/// </summary>
SYSTEM_HIVE_TOO_LARGE = 653u,
/// <summary>
/// The driver could not be loaded because a previous version of the driver is still in memory.
/// </summary>
DRIVER_FAILED_PRIOR_UNLOAD = 654u,
/// <summary>
/// Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.
/// </summary>
VOLSNAP_PREPARE_HIBERNATE = 655u,
/// <summary>
/// The system has failed to hibernate (The error code is %hs). Hibernation will be disabled until the system is restarted.
/// </summary>
HIBERNATION_FAILURE = 656u,
/// <summary>
/// Please choose a shorter password.
/// </summary>
PWD_TOO_LONG = 657u,
/// <summary>
/// The requested operation could not be completed due to a file system limitation
/// </summary>
FILE_SYSTEM_LIMITATION = 665u,
/// <summary>
/// An assertion failure has occurred.
/// </summary>
ASSERTION_FAILURE = 668u,
/// <summary>
/// An error occurred in the ACPI subsystem.
/// </summary>
ACPI_ERROR = 669u,
/// <summary>
/// WOW Assertion Error.
/// </summary>
WOW_ASSERTION = 670u,
/// <summary>
/// Please contact your system vendor for system BIOS update.
/// </summary>
PNP_BAD_MPS_TABLE = 671u,
/// <summary>
/// A translator failed to translate resources.
/// </summary>
PNP_TRANSLATION_FAILED = 672u,
/// <summary>
/// A IRQ translator failed to translate resources.
/// </summary>
PNP_IRQ_TRANSLATION_FAILED = 673u,
/// <summary>
/// Driver %2 returned invalid ID for a child device (%3).
/// </summary>
PNP_INVALID_ID = 674u,
/// <summary>
/// the system debugger was awakened by an interrupt.
/// </summary>
WAKE_SYSTEM_DEBUGGER = 675u,
/// <summary>
/// Handles to objects have been automatically closed as a result of the requested operation.
/// </summary>
HANDLES_CLOSED = 676u,
/// <summary>
/// The specified access control list (ACL) contained more information than was expected.
/// </summary>
EXTRANEOUS_INFORMATION = 677u,
/// <summary>
/// The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired).
/// </summary>
RXACT_COMMIT_NECESSARY = 678u,
/// <summary>
/// The media may have changed.
/// </summary>
MEDIA_CHECK = 679u,
/// <summary>
/// A substitute prefix was used, which will not compromise system security. However, this may provide a more restrictive access than intended.
/// </summary>
GUID_SUBSTITUTION_MADE = 680u,
/// <summary>
/// The create operation stopped after reaching a symbolic link
/// </summary>
STOPPED_ON_SYMLINK = 681u,
/// <summary>
/// A long jump has been executed.
/// </summary>
LONGJUMP = 682u,
/// <summary>
/// The Plug and Play query operation was not successful.
/// </summary>
PLUGPLAY_QUERY_VETOED = 683u,
/// <summary>
/// A frame consolidation has been executed.
/// </summary>
UNWIND_CONSOLIDATE = 684u,
/// <summary>
/// was corrupted and it has been recovered. Some data might have been lost.
/// </summary>
REGISTRY_HIVE_RECOVERED = 685u,
/// <summary>
/// The application is attempting to run executable code from the module %hs. This may be insecure. An alternative, %hs, is available. Should the application use the secure module %hs?
/// </summary>
DLL_MIGHT_BE_INSECURE = 686u,
/// <summary>
/// The application is loading executable code from the module %hs. This is secure, but may be incompatible with previous releases of the operating system. An alternative, %hs, is available. Should the application use the secure module %hs?
/// </summary>
DLL_MIGHT_BE_INCOMPATIBLE = 687u,
/// <summary>
/// Debugger did not handle the exception.
/// </summary>
DBG_EXCEPTION_NOT_HANDLED = 688u,
/// <summary>
/// Debugger will reply later.
/// </summary>
DBG_REPLY_LATER = 689u,
/// <summary>
/// Debugger cannot provide handle.
/// </summary>
DBG_UNABLE_TO_PROVIDE_HANDLE = 690u,
/// <summary>
/// Debugger terminated thread.
/// </summary>
DBG_TERMINATE_THREAD = 691u,
/// <summary>
/// Debugger terminated process.
/// </summary>
DBG_TERMINATE_PROCESS = 692u,
/// <summary>
/// Debugger got control C.
/// </summary>
DBG_CONTROL_C = 693u,
/// <summary>
/// Debugger printed exception on control C.
/// </summary>
DBG_PRINTEXCEPTION_C = 694u,
/// <summary>
/// Debugger received RIP exception.
/// </summary>
DBG_RIPEXCEPTION = 695u,
/// <summary>
/// Debugger received control break.
/// </summary>
DBG_CONTROL_BREAK = 696u,
/// <summary>
/// Debugger command communication exception.
/// </summary>
DBG_COMMAND_EXCEPTION = 697u,
/// <summary>
/// An attempt was made to create an object and the object name already existed.
/// </summary>
OBJECT_NAME_EXISTS = 698u,
/// <summary>
/// A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded.
/// </summary>
THREAD_WAS_SUSPENDED = 699u,
/// <summary>
/// An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image.
/// </summary>
IMAGE_NOT_AT_BASE = 700u,
/// <summary>
/// This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created.
/// </summary>
RXACT_STATE_CREATED = 701u,
/// <summary>
/// An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments.
/// </summary>
SEGMENT_NOTIFICATION = 702u,
/// <summary>
/// Select OK to set current directory to %hs, or select CANCEL to exit.
/// </summary>
BAD_CURRENT_DIRECTORY = 703u,
/// <summary>
/// This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was unable to reassign the failing area of the device.
/// </summary>
FT_READ_RECOVERY_FROM_BACKUP = 704u,
/// <summary>
/// This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was not able to reassign the failing area of the device.
/// </summary>
FT_WRITE_RECOVERY = 705u,
/// <summary>
/// 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.
/// </summary>
IMAGE_MACHINE_TYPE_MISMATCH = 706u,
/// <summary>
/// The network transport returned partial data to its client. The remaining data will be sent later.
/// </summary>
RECEIVE_PARTIAL = 707u,
/// <summary>
/// The network transport returned data to its client that was marked as expedited by the remote system.
/// </summary>
RECEIVE_EXPEDITED = 708u,
/// <summary>
/// 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.
/// </summary>
RECEIVE_PARTIAL_EXPEDITED = 709u,
/// <summary>
/// The TDI indication has completed successfully.
/// </summary>
EVENT_DONE = 710u,
/// <summary>
/// The TDI indication has entered the pending state.
/// </summary>
EVENT_PENDING = 711u,
/// <summary>
/// Checking file system on %wZ
/// </summary>
CHECKING_FILE_SYSTEM = 712u,
/// <summary>
/// %hs
/// </summary>
FATAL_APP_EXIT = 713u,
/// <summary>
/// The specified registry key is referenced by a predefined handle.
/// </summary>
PREDEFINED_HANDLE = 714u,
/// <summary>
/// The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process.
/// </summary>
WAS_UNLOCKED = 715u,
/// <summary>
/// %hs
/// </summary>
SERVICE_NOTIFICATION = 716u,
/// <summary>
/// One of the pages to lock was already locked.
/// </summary>
WAS_LOCKED = 717u,
/// <summary>
/// Application popup: %1 : %2
/// </summary>
LOG_HARD_ERROR = 718u,
/// <summary>
/// ERROR_ALREADY_WIN32
/// </summary>
ALREADY_WIN32 = 719u,
/// <summary>
/// The image file %hs is valid, but is for a machine type other than the current machine.
/// </summary>
IMAGE_MACHINE_TYPE_MISMATCH_EXE = 720u,
/// <summary>
/// A yield execution was performed and no thread was available to run.
/// </summary>
NO_YIELD_PERFORMED = 721u,
/// <summary>
/// The resumable flag to a timer API was ignored.
/// </summary>
TIMER_RESUME_IGNORED = 722u,
/// <summary>
/// The arbiter has deferred arbitration of these resources to its parent
/// </summary>
ARBITRATION_UNHANDLED = 723u,
/// <summary>
/// The inserted CardBus device cannot be started because of a configuration error on "%hs".
/// </summary>
CARDBUS_NOT_SUPPORTED = 724u,
/// <summary>
/// The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. Should problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported.
/// </summary>
MP_PROCESSOR_MISMATCH = 725u,
/// <summary>
/// The system was put into hibernation.
/// </summary>
HIBERNATED = 726u,
/// <summary>
/// The system was resumed from hibernation.
/// </summary>
RESUME_HIBERNATION = 727u,
/// <summary>
/// Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3].
/// </summary>
FIRMWARE_UPDATED = 728u,
/// <summary>
/// A device driver is leaking locked I/O pages causing system degradation. The system has automatically enabled tracking code in order to try and catch the culprit.
/// </summary>
DRIVERS_LEAKING_LOCKED_PAGES = 729u,
/// <summary>
/// The system has awoken
/// </summary>
WAKE_SYSTEM = 730u,
/// <summary>
/// ERROR_WAIT_1
/// </summary>
WAIT_1 = 731u,
/// <summary>
/// ERROR_WAIT_2
/// </summary>
WAIT_2 = 732u,
/// <summary>
/// ERROR_WAIT_3
/// </summary>
WAIT_3 = 733u,
/// <summary>
/// ERROR_WAIT_63
/// </summary>
WAIT_63 = 734u,
/// <summary>
/// ERROR_ABANDONED_WAIT_0
/// </summary>
ABANDONED_WAIT_0 = 735u,
/// <summary>
/// ERROR_ABANDONED_WAIT_63
/// </summary>
ABANDONED_WAIT_63 = 736u,
/// <summary>
/// ERROR_USER_APC
/// </summary>
USER_APC = 737u,
/// <summary>
/// ERROR_KERNEL_APC
/// </summary>
KERNEL_APC = 738u,
/// <summary>
/// ERROR_ALERTED
/// </summary>
ALERTED = 739u,
/// <summary>
/// The requested operation requires elevation.
/// </summary>
ELEVATION_REQUIRED = 740u,
/// <summary>
/// A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
/// </summary>
REPARSE = 741u,
/// <summary>
/// An open/create operation completed while an oplock break is underway.
/// </summary>
OPLOCK_BREAK_IN_PROGRESS = 742u,
/// <summary>
/// A new volume has been mounted by a file system.
/// </summary>
VOLUME_MOUNTED = 743u,
/// <summary>
/// The commit has now been completed.
/// </summary>
RXACT_COMMITTED = 744u,
/// <summary>
/// This indicates that a notify change request has been completed due to closing the handle which made the notify change request.
/// </summary>
NOTIFY_CLEANUP = 745u,
/// <summary>
/// The computer WAS able to connect on a secondary transport.
/// </summary>
PRIMARY_TRANSPORT_CONNECT_FAILED = 746u,
/// <summary>
/// Page fault was a transition fault.
/// </summary>
PAGE_FAULT_TRANSITION = 747u,
/// <summary>
/// Page fault was a demand zero fault.
/// </summary>
PAGE_FAULT_DEMAND_ZERO = 748u,
/// <summary>
/// Page fault was a demand zero fault.
/// </summary>
PAGE_FAULT_COPY_ON_WRITE = 749u,
/// <summary>
/// Page fault was a demand zero fault.
/// </summary>
PAGE_FAULT_GUARD_PAGE = 750u,
/// <summary>
/// Page fault was satisfied by reading from a secondary storage device.
/// </summary>
PAGE_FAULT_PAGING_FILE = 751u,
/// <summary>
/// Cached page was locked during operation.
/// </summary>
CACHE_PAGE_LOCKED = 752u,
/// <summary>
/// Crash dump exists in paging file.
/// </summary>
CRASH_DUMP = 753u,
/// <summary>
/// Specified buffer contains all zeros.
/// </summary>
BUFFER_ALL_ZEROS = 754u,
/// <summary>
/// A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
/// </summary>
REPARSE_OBJECT = 755u,
/// <summary>
/// The device has succeeded a query-stop and its resource requirements have changed.
/// </summary>
RESOURCE_REQUIREMENTS_CHANGED = 756u,
/// <summary>
/// The translator has translated these resources into the global space and no further translations should be performed.
/// </summary>
TRANSLATION_COMPLETE = 757u,
/// <summary>
/// A process being terminated has no threads to terminate.
/// </summary>
NOTHING_TO_TERMINATE = 758u,
/// <summary>
/// The specified process is not part of a job.
/// </summary>
PROCESS_NOT_IN_JOB = 759u,
/// <summary>
/// The specified process is part of a job.
/// </summary>
PROCESS_IN_JOB = 760u,
/// <summary>
/// The system is now ready for hibernation.
/// </summary>
VOLSNAP_HIBERNATE_READY = 761u,
/// <summary>
/// A file system or file system filter driver has successfully completed an FsFilter operation.
/// </summary>
FSFILTER_OP_COMPLETED_SUCCESSFULLY = 762u,
/// <summary>
/// The specified interrupt vector was already connected.
/// </summary>
INTERRUPT_VECTOR_ALREADY_CONNECTED = 763u,
/// <summary>
/// The specified interrupt vector is still connected.
/// </summary>
INTERRUPT_STILL_CONNECTED = 764u,
/// <summary>
/// An operation is blocked waiting for an oplock.
/// </summary>
WAIT_FOR_OPLOCK = 765u,
/// <summary>
/// Debugger handled exception
/// </summary>
DBG_EXCEPTION_HANDLED = 766u,
/// <summary>
/// Debugger continued
/// </summary>
DBG_CONTINUE = 767u,
/// <summary>
/// An exception occurred in a user mode callback and the kernel callback frame should be removed.
/// </summary>
CALLBACK_POP_STACK = 768u,
/// <summary>
/// Compression is disabled for this volume.
/// </summary>
COMPRESSION_DISABLED = 769u,
/// <summary>
/// The data provider cannot fetch backwards through a result set.
/// </summary>
CANTFETCHBACKWARDS = 770u,
/// <summary>
/// The data provider cannot scroll backwards through a result set.
/// </summary>
CANTSCROLLBACKWARDS = 771u,
/// <summary>
/// The data provider requires that previously fetched data is released before asking for more data.
/// </summary>
ROWSNOTRELEASED = 772u,
/// <summary>
/// The data provider was not able to interpret the flags set for a column binding in an accessor.
/// </summary>
BAD_ACCESSOR_FLAGS = 773u,
/// <summary>
/// One or more errors occurred while processing the request.
/// </summary>
ERRORS_ENCOUNTERED = 774u,
/// <summary>
/// The implementation is not capable of performing the request.
/// </summary>
NOT_CAPABLE = 775u,
/// <summary>
/// The client of a component requested an operation which is not valid given the state of the component instance.
/// </summary>
REQUEST_OUT_OF_SEQUENCE = 776u,
/// <summary>
/// A version number could not be parsed.
/// </summary>
VERSION_PARSE_ERROR = 777u,
/// <summary>
/// The iterator's start position is invalid.
/// </summary>
BADSTARTPOSITION = 778u,
/// <summary>
/// The hardware has reported an uncorrectable memory error.
/// </summary>
MEMORY_HARDWARE = 779u,
/// <summary>
/// The attempted operation required self healing to be enabled.
/// </summary>
DISK_REPAIR_DISABLED = 780u,
/// <summary>
/// The Desktop heap encountered an error while allocating session memory. There is more information in the system event log.
/// </summary>
INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE = 781u,
/// <summary>
/// The system power state is transitioning from %2 to %3.
/// </summary>
SYSTEM_POWERSTATE_TRANSITION = 782u,
/// <summary>
/// The system power state is transitioning from %2 to %3 but could enter %4.
/// </summary>
SYSTEM_POWERSTATE_COMPLEX_TRANSITION = 783u,
/// <summary>
/// A thread is getting dispatched with MCA EXCEPTION because of MCA.
/// </summary>
MCA_EXCEPTION = 784u,
/// <summary>
/// Access to %1 is monitored by policy rule %2.
/// </summary>
ACCESS_AUDIT_BY_POLICY = 785u,
/// <summary>
/// Access to %1 has been restricted by your Administrator by policy rule %2.
/// </summary>
ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY = 786u,
/// <summary>
/// A valid hibernation file has been invalidated and should be abandoned.
/// </summary>
ABANDON_HIBERFILE = 787u,
/// <summary>
/// This error may be caused by network connectivity issues. Please try to save this file elsewhere.
/// </summary>
LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED = 788u,
/// <summary>
/// This error was returned by the server on which the file exists. Please try to save this file elsewhere.
/// </summary>
LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR = 789u,
/// <summary>
/// This error may be caused if the device has been removed or the media is write-protected.
/// </summary>
LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR = 790u,
/// <summary>
/// The resources required for this device conflict with the MCFG table.
/// </summary>
BAD_MCFG_TABLE = 791u,
/// <summary>
/// Please schedule to take the volume offline so that it can be repaired.
/// </summary>
DISK_REPAIR_REDIRECTED = 792u,
/// <summary>
/// The volume repair was not successful.
/// </summary>
DISK_REPAIR_UNSUCCESSFUL = 793u,
/// <summary>
/// One of the volume corruption logs is full. Further corruptions that may be detected won't be logged.
/// </summary>
CORRUPT_LOG_OVERFULL = 794u,
/// <summary>
/// One of the volume corruption logs is internally corrupted and needs to be recreated. The volume may contain undetected corruptions and must be scanned.
/// </summary>
CORRUPT_LOG_CORRUPTED = 795u,
/// <summary>
/// One of the volume corruption logs is unavailable for being operated on.
/// </summary>
CORRUPT_LOG_UNAVAILABLE = 796u,
/// <summary>
/// One of the volume corruption logs was deleted while still having corruption records in them. The volume contains detected corruptions and must be scanned.
/// </summary>
CORRUPT_LOG_DELETED_FULL = 797u,
/// <summary>
/// One of the volume corruption logs was cleared by chkdsk and no longer contains real corruptions.
/// </summary>
CORRUPT_LOG_CLEARED = 798u,
/// <summary>
/// Orphaned files exist on the volume but could not be recovered because no more new names could be created in the recovery directory. Files must be moved from the recovery directory.
/// </summary>
ORPHAN_NAME_EXHAUSTED = 799u,
/// <summary>
/// The oplock that was associated with this handle is now associated with a different handle.
/// </summary>
OPLOCK_SWITCHED_TO_NEW_HANDLE = 800u,
/// <summary>
/// An oplock of the requested level cannot be granted. An oplock of a lower level may be available.
/// </summary>
CANNOT_GRANT_REQUESTED_OPLOCK = 801u,
/// <summary>
/// The operation did not complete successfully because it would cause an oplock to be broken. The caller has requested that existing oplocks not be broken.
/// </summary>
CANNOT_BREAK_OPLOCK = 802u,
/// <summary>
/// The handle with which this oplock was associated has been closed. The oplock is now broken.
/// </summary>
OPLOCK_HANDLE_CLOSED = 803u,
/// <summary>
/// The specified access control entry (ACE) does not contain a condition.
/// </summary>
NO_ACE_CONDITION = 804u,
/// <summary>
/// The specified access control entry (ACE) contains an invalid condition.
/// </summary>
INVALID_ACE_CONDITION = 805u,
/// <summary>
/// Access to the specified file handle has been revoked.
/// </summary>
FILE_HANDLE_REVOKED = 806u,
/// <summary>
/// An image file was mapped at a different address from the one specified in the image file but fixups will still be automatically performed on the image.
/// </summary>
IMAGE_AT_DIFFERENT_BASE = 807u,
/// <summary>
/// The read or write operation to an encrypted file could not be completed because the file has not been opened for data access.
/// </summary>
ENCRYPTED_IO_NOT_POSSIBLE = 808u,
/// <summary>
/// File metadata optimization is already in progress.
/// </summary>
FILE_METADATA_OPTIMIZATION_IN_PROGRESS = 809u,
/// <summary>
/// The requested operation failed due to quota operation is still in progress.
/// </summary>
QUOTA_ACTIVITY = 810u,
/// <summary>
/// Access to the specified handle has been revoked.
/// </summary>
HANDLE_REVOKED = 811u,
/// <summary>
/// The callback function must be invoked inline.
/// </summary>
CALLBACK_INVOKE_INLINE = 812u,
/// <summary>
/// The specified CPU Set IDs are invalid.
/// </summary>
CPU_SET_INVALID = 813u,
/// <summary>
/// The specified enclave has not yet been terminated.
/// </summary>
ENCLAVE_NOT_TERMINATED = 814u,
/// <summary>
/// An attempt was made to access protected memory in violation of its secure access policy.
/// </summary>
ENCLAVE_VIOLATION = 815u,
/// <summary>
/// Access to the extended attribute was denied.
/// </summary>
EA_ACCESS_DENIED = 994u,
/// <summary>
/// The I/O operation has been aborted because of either a thread exit or an application request.
/// </summary>
OPERATION_ABORTED = 995u,
/// <summary>
/// Overlapped I/O event is not in a signaled state.
/// </summary>
IO_INCOMPLETE = 996u,
/// <summary>
/// Overlapped I/O operation is in progress.
/// </summary>
IO_PENDING = 997u,
/// <summary>
/// Invalid access to memory location.
/// </summary>
NOACCESS = 998u,
/// <summary>
/// Error performing inpage operation.
/// </summary>
SWAPERROR = 999u,
/// <summary>
/// Recursion too deep; the stack overflowed.
/// </summary>
STACK_OVERFLOW = 1001u,
/// <summary>
/// The window cannot act on the sent message.
/// </summary>
INVALID_MESSAGE = 1002u,
/// <summary>
/// Cannot complete this function.
/// </summary>
CAN_NOT_COMPLETE = 1003u,
/// <summary>
/// Invalid flags.
/// </summary>
INVALID_FLAGS = 1004u,
/// <summary>
/// Please make sure that all required file system drivers are loaded and that the volume is not corrupted.
/// </summary>
UNRECOGNIZED_VOLUME = 1005u,
/// <summary>
/// The volume for a file has been externally altered so that the opened file is no longer valid.
/// </summary>
FILE_INVALID = 1006u,
/// <summary>
/// The requested operation cannot be performed in full-screen mode.
/// </summary>
FULLSCREEN_MODE = 1007u,
/// <summary>
/// An attempt was made to reference a token that does not exist.
/// </summary>
NO_TOKEN = 1008u,
/// <summary>
/// The configuration registry database is corrupt.
/// </summary>
BADDB = 1009u,
/// <summary>
/// The configuration registry key is invalid.
/// </summary>
BADKEY = 1010u,
/// <summary>
/// The configuration registry key could not be opened.
/// </summary>
CANTOPEN = 1011u,
/// <summary>
/// The configuration registry key could not be read.
/// </summary>
CANTREAD = 1012u,
/// <summary>
/// The configuration registry key could not be written.
/// </summary>
CANTWRITE = 1013u,
/// <summary>
/// One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.
/// </summary>
REGISTRY_RECOVERED = 1014u,
/// <summary>
/// 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.
/// </summary>
REGISTRY_CORRUPT = 1015u,
/// <summary>
/// An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry.
/// </summary>
REGISTRY_IO_FAILED = 1016u,
/// <summary>
/// The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format.
/// </summary>
NOT_REGISTRY_FILE = 1017u,
/// <summary>
/// Illegal operation attempted on a registry key that has been marked for deletion.
/// </summary>
KEY_DELETED = 1018u,
/// <summary>
/// System could not allocate the required space in a registry log.
/// </summary>
NO_LOG_SPACE = 1019u,
/// <summary>
/// Cannot create a symbolic link in a registry key that already has subkeys or values.
/// </summary>
KEY_HAS_CHILDREN = 1020u,
/// <summary>
/// Cannot create a stable subkey under a volatile parent key.
/// </summary>
CHILD_MUST_BE_VOLATILE = 1021u,
/// <summary>
/// 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.
/// </summary>
NOTIFY_ENUM_DIR = 1022u,
/// <summary>
/// A stop control has been sent to a service that other running services are dependent on.
/// </summary>
DEPENDENT_SERVICES_RUNNING = 1051u,
/// <summary>
/// The requested control is not valid for this service.
/// </summary>
INVALID_SERVICE_CONTROL = 1052u,
/// <summary>
/// The service did not respond to the start or control request in a timely fashion.
/// </summary>
SERVICE_REQUEST_TIMEOUT = 1053u,
/// <summary>
/// A thread could not be created for the service.
/// </summary>
SERVICE_NO_THREAD = 1054u,
/// <summary>
/// The service database is locked.
/// </summary>
SERVICE_DATABASE_LOCKED = 1055u,
/// <summary>
/// An instance of the service is already running.
/// </summary>
SERVICE_ALREADY_RUNNING = 1056u,
/// <summary>
/// The account name is invalid or does not exist, or the password is invalid for the account name specified.
/// </summary>
INVALID_SERVICE_ACCOUNT = 1057u,
/// <summary>
/// The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.
/// </summary>
SERVICE_DISABLED = 1058u,
/// <summary>
/// Circular service dependency was specified.
/// </summary>
CIRCULAR_DEPENDENCY = 1059u,
/// <summary>
/// The specified service does not exist as an installed service.
/// </summary>
SERVICE_DOES_NOT_EXIST = 1060u,
/// <summary>
/// The service cannot accept control messages at this time.
/// </summary>
SERVICE_CANNOT_ACCEPT_CTRL = 1061u,
/// <summary>
/// The service has not been started.
/// </summary>
SERVICE_NOT_ACTIVE = 1062u,
/// <summary>
/// The service process could not connect to the service controller.
/// </summary>
FAILED_SERVICE_CONTROLLER_CONNECT = 1063u,
/// <summary>
/// An exception occurred in the service when handling the control request.
/// </summary>
EXCEPTION_IN_SERVICE = 1064u,
/// <summary>
/// The database specified does not exist.
/// </summary>
DATABASE_DOES_NOT_EXIST = 1065u,
/// <summary>
/// The service has returned a service-specific error code.
/// </summary>
SERVICE_SPECIFIC_ERROR = 1066u,
/// <summary>
/// The process terminated unexpectedly.
/// </summary>
PROCESS_ABORTED = 1067u,
/// <summary>
/// The dependency service or group failed to start.
/// </summary>
SERVICE_DEPENDENCY_FAIL = 1068u,
/// <summary>
/// The service did not start due to a logon failure.
/// </summary>
SERVICE_LOGON_FAILED = 1069u,
/// <summary>
/// After starting, the service hung in a start-pending state.
/// </summary>
SERVICE_START_HANG = 1070u,
/// <summary>
/// The specified service database lock is invalid.
/// </summary>
INVALID_SERVICE_LOCK = 1071u,
/// <summary>
/// The specified service has been marked for deletion.
/// </summary>
SERVICE_MARKED_FOR_DELETE = 1072u,
/// <summary>
/// The specified service already exists.
/// </summary>
SERVICE_EXISTS = 1073u,
/// <summary>
/// The system is currently running with the last-known-good configuration.
/// </summary>
ALREADY_RUNNING_LKG = 1074u,
/// <summary>
/// The dependency service does not exist or has been marked for deletion.
/// </summary>
SERVICE_DEPENDENCY_DELETED = 1075u,
/// <summary>
/// The current boot has already been accepted for use as the last-known-good control set.
/// </summary>
BOOT_ALREADY_ACCEPTED = 1076u,
/// <summary>
/// No attempts to start the service have been made since the last boot.
/// </summary>
SERVICE_NEVER_STARTED = 1077u,
/// <summary>
/// The name is already in use as either a service name or a service display name.
/// </summary>
DUPLICATE_SERVICE_NAME = 1078u,
/// <summary>
/// The account specified for this service is different from the account specified for other services running in the same process.
/// </summary>
DIFFERENT_SERVICE_ACCOUNT = 1079u,
/// <summary>
/// Failure actions can only be set for Win32 services, not for drivers.
/// </summary>
CANNOT_DETECT_DRIVER_FAILURE = 1080u,
/// <summary>
/// Therefore, the service control manager cannot take action if this service's process terminates unexpectedly.
/// </summary>
CANNOT_DETECT_PROCESS_ABORT = 1081u,
/// <summary>
/// No recovery program has been configured for this service.
/// </summary>
NO_RECOVERY_PROGRAM = 1082u,
/// <summary>
/// The executable program that this service is configured to run in does not implement the service.
/// </summary>
SERVICE_NOT_IN_EXE = 1083u,
/// <summary>
/// This service cannot be started in Safe Mode
/// </summary>
NOT_SAFEBOOT_SERVICE = 1084u,
/// <summary>
/// The physical end of the tape has been reached.
/// </summary>
END_OF_MEDIA = 1100u,
/// <summary>
/// A tape access reached a filemark.
/// </summary>
FILEMARK_DETECTED = 1101u,
/// <summary>
/// The beginning of the tape or a partition was encountered.
/// </summary>
BEGINNING_OF_MEDIA = 1102u,
/// <summary>
/// A tape access reached the end of a set of files.
/// </summary>
SETMARK_DETECTED = 1103u,
/// <summary>
/// No more data is on the tape.
/// </summary>
NO_DATA_DETECTED = 1104u,
/// <summary>
/// Tape could not be partitioned.
/// </summary>
PARTITION_FAILURE = 1105u,
/// <summary>
/// When accessing a new tape of a multivolume partition, the current block size is incorrect.
/// </summary>
INVALID_BLOCK_LENGTH = 1106u,
/// <summary>
/// Tape partition information could not be found when loading a tape.
/// </summary>
DEVICE_NOT_PARTITIONED = 1107u,
/// <summary>
/// Unable to lock the media eject mechanism.
/// </summary>
UNABLE_TO_LOCK_MEDIA = 1108u,
/// <summary>
/// Unable to unload the media.
/// </summary>
UNABLE_TO_UNLOAD_MEDIA = 1109u,
/// <summary>
/// The media in the drive may have changed.
/// </summary>
MEDIA_CHANGED = 1110u,
/// <summary>
/// The I/O bus was reset.
/// </summary>
BUS_RESET = 1111u,
/// <summary>
/// No media in drive.
/// </summary>
NO_MEDIA_IN_DRIVE = 1112u,
/// <summary>
/// No mapping for the Unicode character exists in the target multi-byte code page.
/// </summary>
NO_UNICODE_TRANSLATION = 1113u,
/// <summary>
/// A dynamic link library (DLL) initialization routine failed.
/// </summary>
DLL_INIT_FAILED = 1114u,
/// <summary>
/// A system shutdown is in progress.
/// </summary>
SHUTDOWN_IN_PROGRESS = 1115u,
/// <summary>
/// Unable to abort the system shutdown because no shutdown was in progress.
/// </summary>
NO_SHUTDOWN_IN_PROGRESS = 1116u,
/// <summary>
/// The request could not be performed because of an I/O device error.
/// </summary>
IO_DEVICE = 1117u,
/// <summary>
/// No serial device was successfully initialized. The serial driver will unload.
/// </summary>
SERIAL_NO_DEVICE = 1118u,
/// <summary>
/// Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened.
/// </summary>
IRQ_BUSY = 1119u,
/// <summary>
/// (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
/// </summary>
MORE_WRITES = 1120u,
/// <summary>
/// (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)
/// </summary>
COUNTER_TIMEOUT = 1121u,
/// <summary>
/// No ID address mark was found on the floppy disk.
/// </summary>
FLOPPY_ID_MARK_NOT_FOUND = 1122u,
/// <summary>
/// Mismatch between the floppy disk sector ID field and the floppy disk controller track address.
/// </summary>
FLOPPY_WRONG_CYLINDER = 1123u,
/// <summary>
/// The floppy disk controller reported an error that is not recognized by the floppy disk driver.
/// </summary>
FLOPPY_UNKNOWN_ERROR = 1124u,
/// <summary>
/// The floppy disk controller returned inconsistent results in its registers.
/// </summary>
FLOPPY_BAD_REGISTERS = 1125u,
/// <summary>
/// While accessing the hard disk, a recalibrate operation failed, even after retries.
/// </summary>
DISK_RECALIBRATE_FAILED = 1126u,
/// <summary>
/// While accessing the hard disk, a disk operation failed even after retries.
/// </summary>
DISK_OPERATION_FAILED = 1127u,
/// <summary>
/// While accessing the hard disk, a disk controller reset was needed, but even that failed.
/// </summary>
DISK_RESET_FAILED = 1128u,
/// <summary>
/// Physical end of tape encountered.
/// </summary>
EOM_OVERFLOW = 1129u,
/// <summary>
/// Not enough server memory resources are available to process this command.
/// </summary>
NOT_ENOUGH_SERVER_MEMORY = 1130u,
/// <summary>
/// A potential deadlock condition has been detected.
/// </summary>
POSSIBLE_DEADLOCK = 1131u,
/// <summary>
/// The base address or the file offset specified does not have the proper alignment.
/// </summary>
MAPPED_ALIGNMENT = 1132u,
/// <summary>
/// An attempt to change the system power state was vetoed by another application or driver.
/// </summary>
SET_POWER_STATE_VETOED = 1140u,
/// <summary>
/// The system BIOS failed an attempt to change the system power state.
/// </summary>
SET_POWER_STATE_FAILED = 1141u,
/// <summary>
/// An attempt was made to create more links on a file than the file system supports.
/// </summary>
TOO_MANY_LINKS = 1142u,
/// <summary>
/// The specified program requires a newer version of Windows.
/// </summary>
OLD_WIN_VERSION = 1150u,
/// <summary>
/// The specified program is not a Windows or MS-DOS program.
/// </summary>
APP_WRONG_OS = 1151u,
/// <summary>
/// Cannot start more than one instance of the specified program.
/// </summary>
SINGLE_INSTANCE_APP = 1152u,
/// <summary>
/// The specified program was written for an earlier version of Windows.
/// </summary>
RMODE_APP = 1153u,
/// <summary>
/// One of the library files needed to run this application is damaged.
/// </summary>
INVALID_DLL = 1154u,
/// <summary>
/// No application is associated with the specified file for this operation.
/// </summary>
NO_ASSOCIATION = 1155u,
/// <summary>
/// An error occurred in sending the command to the application.
/// </summary>
DDE_FAIL = 1156u,
/// <summary>
/// One of the library files needed to run this application cannot be found.
/// </summary>
DLL_NOT_FOUND = 1157u,
/// <summary>
/// The current process has used all of its system allowance of handles for Window Manager objects.
/// </summary>
NO_MORE_USER_HANDLES = 1158u,
/// <summary>
/// The message can be used only with synchronous operations.
/// </summary>
MESSAGE_SYNC_ONLY = 1159u,
/// <summary>
/// The indicated source element has no media.
/// </summary>
SOURCE_ELEMENT_EMPTY = 1160u,
/// <summary>
/// The indicated destination element already contains media.
/// </summary>
DESTINATION_ELEMENT_FULL = 1161u,
/// <summary>
/// The indicated element does not exist.
/// </summary>
ILLEGAL_ELEMENT_ADDRESS = 1162u,
/// <summary>
/// The indicated element is part of a magazine that is not present.
/// </summary>
MAGAZINE_NOT_PRESENT = 1163u,
/// <summary>
/// The indicated device requires reinitialization due to hardware errors.
/// </summary>
DEVICE_REINITIALIZATION_NEEDED = 1164u,
/// <summary>
/// The device has indicated that cleaning is required before further operations are attempted.
/// </summary>
DEVICE_REQUIRES_CLEANING = 1165u,
/// <summary>
/// The device has indicated that its door is open.
/// </summary>
DEVICE_DOOR_OPEN = 1166u,
/// <summary>
/// The device is not connected.
/// </summary>
DEVICE_NOT_CONNECTED = 1167u,
/// <summary>
/// Element not found.
/// </summary>
NOT_FOUND = 1168u,
/// <summary>
/// There was no match for the specified key in the index.
/// </summary>
NO_MATCH = 1169u,
/// <summary>
/// The property set specified does not exist on the object.
/// </summary>
SET_NOT_FOUND = 1170u,
/// <summary>
/// The point passed to GetMouseMovePoints is not in the buffer.
/// </summary>
POINT_NOT_FOUND = 1171u,
/// <summary>
/// The tracking (workstation) service is not running.
/// </summary>
NO_TRACKING_SERVICE = 1172u,
/// <summary>
/// The Volume ID could not be found.
/// </summary>
NO_VOLUME_ID = 1173u,
/// <summary>
/// Unable to remove the file to be replaced.
/// </summary>
UNABLE_TO_REMOVE_REPLACED = 1175u,
/// <summary>
/// Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name.
/// </summary>
UNABLE_TO_MOVE_REPLACEMENT = 1176u,
/// <summary>
/// Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name.
/// </summary>
UNABLE_TO_MOVE_REPLACEMENT_2 = 1177u,
/// <summary>
/// The volume change journal is being deleted.
/// </summary>
JOURNAL_DELETE_IN_PROGRESS = 1178u,
/// <summary>
/// The volume change journal is not active.
/// </summary>
JOURNAL_NOT_ACTIVE = 1179u,
/// <summary>
/// A file was found, but it may not be the correct file.
/// </summary>
POTENTIAL_FILE_FOUND = 1180u,
/// <summary>
/// The journal entry has been deleted from the journal.
/// </summary>
JOURNAL_ENTRY_DELETED = 1181u,
/// <summary>
/// A system shutdown has already been scheduled.
/// </summary>
SHUTDOWN_IS_SCHEDULED = 1190u,
/// <summary>
/// The system shutdown cannot be initiated because there are other users logged on to the computer.
/// </summary>
SHUTDOWN_USERS_LOGGED_ON = 1191u,
/// <summary>
/// The specified device name is invalid.
/// </summary>
BAD_DEVICE = 1200u,
/// <summary>
/// The device is not currently connected but it is a remembered connection.
/// </summary>
CONNECTION_UNAVAIL = 1201u,
/// <summary>
/// The local device name has a remembered connection to another network resource.
/// </summary>
DEVICE_ALREADY_REMEMBERED = 1202u,
/// <summary>
/// The network path was either typed incorrectly, does not exist, or the network provider is not currently available. Please try retyping the path or contact your network administrator.
/// </summary>
NO_NET_OR_BAD_PATH = 1203u,
/// <summary>
/// The specified network provider name is invalid.
/// </summary>
BAD_PROVIDER = 1204u,
/// <summary>
/// Unable to open the network connection profile.
/// </summary>
CANNOT_OPEN_PROFILE = 1205u,
/// <summary>
/// The network connection profile is corrupted.
/// </summary>
BAD_PROFILE = 1206u,
/// <summary>
/// Cannot enumerate a noncontainer.
/// </summary>
NOT_CONTAINER = 1207u,
/// <summary>
/// An extended error has occurred.
/// </summary>
EXTENDED_ERROR = 1208u,
/// <summary>
/// The format of the specified group name is invalid.
/// </summary>
INVALID_GROUPNAME = 1209u,
/// <summary>
/// The format of the specified computer name is invalid.
/// </summary>
INVALID_COMPUTERNAME = 1210u,
/// <summary>
/// The format of the specified event name is invalid.
/// </summary>
INVALID_EVENTNAME = 1211u,
/// <summary>
/// The format of the specified domain name is invalid.
/// </summary>
INVALID_DOMAINNAME = 1212u,
/// <summary>
/// The format of the specified service name is invalid.
/// </summary>
INVALID_SERVICENAME = 1213u,
/// <summary>
/// The format of the specified network name is invalid.
/// </summary>
INVALID_NETNAME = 1214u,
/// <summary>
/// The format of the specified share name is invalid.
/// </summary>
INVALID_SHARENAME = 1215u,
/// <summary>
/// The format of the specified password is invalid.
/// </summary>
INVALID_PASSWORDNAME = 1216u,
/// <summary>
/// The format of the specified message name is invalid.
/// </summary>
INVALID_MESSAGENAME = 1217u,
/// <summary>
/// The format of the specified message destination is invalid.
/// </summary>
INVALID_MESSAGEDEST = 1218u,
/// <summary>
/// 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.
/// </summary>
SESSION_CREDENTIAL_CONFLICT = 1219u,
/// <summary>
/// An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.
/// </summary>
REMOTE_SESSION_LIMIT_EXCEEDED = 1220u,
/// <summary>
/// The workgroup or domain name is already in use by another computer on the network.
/// </summary>
DUP_DOMAINNAME = 1221u,
/// <summary>
/// The network is not present or not started.
/// </summary>
NO_NETWORK = 1222u,
/// <summary>
/// The operation was canceled by the user.
/// </summary>
CANCELLED = 1223u,
/// <summary>
/// The requested operation cannot be performed on a file with a user-mapped section open.
/// </summary>
USER_MAPPED_FILE = 1224u,
/// <summary>
/// The remote computer refused the network connection.
/// </summary>
CONNECTION_REFUSED = 1225u,
/// <summary>
/// The network connection was gracefully closed.
/// </summary>
GRACEFUL_DISCONNECT = 1226u,
/// <summary>
/// The network transport endpoint already has an address associated with it.
/// </summary>
ADDRESS_ALREADY_ASSOCIATED = 1227u,
/// <summary>
/// An address has not yet been associated with the network endpoint.
/// </summary>
ADDRESS_NOT_ASSOCIATED = 1228u,
/// <summary>
/// An operation was attempted on a nonexistent network connection.
/// </summary>
CONNECTION_INVALID = 1229u,
/// <summary>
/// An invalid operation was attempted on an active network connection.
/// </summary>
CONNECTION_ACTIVE = 1230u,
/// <summary>
/// The network location cannot be reached. For information about network troubleshooting, see Windows Help.
/// </summary>
NETWORK_UNREACHABLE = 1231u,
/// <summary>
/// The network location cannot be reached. For information about network troubleshooting, see Windows Help.
/// </summary>
HOST_UNREACHABLE = 1232u,
/// <summary>
/// The network location cannot be reached. For information about network troubleshooting, see Windows Help.
/// </summary>
PROTOCOL_UNREACHABLE = 1233u,
/// <summary>
/// No service is operating at the destination network endpoint on the remote system.
/// </summary>
PORT_UNREACHABLE = 1234u,
/// <summary>
/// The request was aborted.
/// </summary>
REQUEST_ABORTED = 1235u,
/// <summary>
/// The network connection was aborted by the local system.
/// </summary>
CONNECTION_ABORTED = 1236u,
/// <summary>
/// The operation could not be completed. A retry should be performed.
/// </summary>
RETRY = 1237u,
/// <summary>
/// A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.
/// </summary>
CONNECTION_COUNT_LIMIT = 1238u,
/// <summary>
/// Attempting to log in during an unauthorized time of day for this account.
/// </summary>
LOGIN_TIME_RESTRICTION = 1239u,
/// <summary>
/// The account is not authorized to log in from this station.
/// </summary>
LOGIN_WKSTA_RESTRICTION = 1240u,
/// <summary>
/// The network address could not be used for the operation requested.
/// </summary>
INCORRECT_ADDRESS = 1241u,
/// <summary>
/// The service is already registered.
/// </summary>
ALREADY_REGISTERED = 1242u,
/// <summary>
/// The specified service does not exist.
/// </summary>
SERVICE_NOT_FOUND = 1243u,
/// <summary>
/// The operation being requested was not performed because the user has not been authenticated.
/// </summary>
NOT_AUTHENTICATED = 1244u,
/// <summary>
/// The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist.
/// </summary>
NOT_LOGGED_ON = 1245u,
/// <summary>
/// Continue with work in progress.
/// </summary>
CONTINUE = 1246u,
/// <summary>
/// An attempt was made to perform an initialization operation when initialization has already been completed.
/// </summary>
ALREADY_INITIALIZED = 1247u,
/// <summary>
/// No more local devices.
/// </summary>
NO_MORE_DEVICES = 1248u,
/// <summary>
/// The specified site does not exist.
/// </summary>
NO_SUCH_SITE = 1249u,
/// <summary>
/// A domain controller with the specified name already exists.
/// </summary>
DOMAIN_CONTROLLER_EXISTS = 1250u,
/// <summary>
/// This operation is supported only when you are connected to the server.
/// </summary>
ONLY_IF_CONNECTED = 1251u,
/// <summary>
/// The group policy framework should call the extension even if there are no changes.
/// </summary>
OVERRIDE_NOCHANGES = 1252u,
/// <summary>
/// The specified user does not have a valid profile.
/// </summary>
BAD_USER_PROFILE = 1253u,
/// <summary>
/// This operation is not supported on a computer running Windows Server 2003 for Small Business Server
/// </summary>
NOT_SUPPORTED_ON_SBS = 1254u,
/// <summary>
/// The server machine is shutting down.
/// </summary>
SERVER_SHUTDOWN_IN_PROGRESS = 1255u,
/// <summary>
/// The remote system is not available. For information about network troubleshooting, see Windows Help.
/// </summary>
HOST_DOWN = 1256u,
/// <summary>
/// The security identifier provided is not from an account domain.
/// </summary>
NON_ACCOUNT_SID = 1257u,
/// <summary>
/// The security identifier provided does not have a domain component.
/// </summary>
NON_DOMAIN_SID = 1258u,
/// <summary>
/// AppHelp dialog canceled thus preventing the application from starting.
/// </summary>
APPHELP_BLOCK = 1259u,
/// <summary>
/// This program is blocked by group policy. For more information, contact your system administrator.
/// </summary>
ACCESS_DISABLED_BY_POLICY = 1260u,
/// <summary>
/// A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific.
/// </summary>
REG_NAT_CONSUMPTION = 1261u,
/// <summary>
/// The share is currently offline or does not exist.
/// </summary>
CSCSHARE_OFFLINE = 1262u,
/// <summary>
/// The Kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. There is more information in the system event log.
/// </summary>
PKINIT_FAILURE = 1263u,
/// <summary>
/// The Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem.
/// </summary>
SMARTCARD_SUBSYSTEM_FAILURE = 1264u,
/// <summary>
/// The system cannot contact a domain controller to service the authentication request. Please try again later.
/// </summary>
DOWNGRADE_DETECTED = 1265u,
/// <summary>
/// The machine is locked and cannot be shut down without the force option.
/// </summary>
MACHINE_LOCKED = 1271u,
/// <summary>
/// You can't access this shared folder because your organization's security policies block unauthenticated guest access. These policies help protect your PC from unsafe or malicious devices on the network.
/// </summary>
SMB_GUEST_LOGON_BLOCKED = 1272u,
/// <summary>
/// An application-defined callback gave invalid data when called.
/// </summary>
CALLBACK_SUPPLIED_INVALID_DATA = 1273u,
/// <summary>
/// The group policy framework should call the extension in the synchronous foreground policy refresh.
/// </summary>
SYNC_FOREGROUND_REFRESH_REQUIRED = 1274u,
/// <summary>
/// This driver has been blocked from loading
/// </summary>
DRIVER_BLOCKED = 1275u,
/// <summary>
/// A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.
/// </summary>
INVALID_IMPORT_OF_NON_DLL = 1276u,
/// <summary>
/// Windows cannot open this program since it has been disabled.
/// </summary>
ACCESS_DISABLED_WEBBLADE = 1277u,
/// <summary>
/// Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.
/// </summary>
ACCESS_DISABLED_WEBBLADE_TAMPER = 1278u,
/// <summary>
/// A transaction recover failed.
/// </summary>
RECOVERY_FAILURE = 1279u,
/// <summary>
/// The current thread has already been converted to a fiber.
/// </summary>
ALREADY_FIBER = 1280u,
/// <summary>
/// The current thread has already been converted from a fiber.
/// </summary>
ALREADY_THREAD = 1281u,
/// <summary>
/// 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.
/// </summary>
STACK_BUFFER_OVERRUN = 1282u,
/// <summary>
/// Data present in one of the parameters is more than the function can operate on.
/// </summary>
PARAMETER_QUOTA_EXCEEDED = 1283u,
/// <summary>
/// An attempt to do an operation on a debug object failed because the object is in the process of being deleted.
/// </summary>
DEBUGGER_INACTIVE = 1284u,
/// <summary>
/// An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.
/// </summary>
DELAY_LOAD_FAILED = 1285u,
/// <summary>
/// %1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator.
/// </summary>
VDM_DISALLOWED = 1286u,
/// <summary>
/// Insufficient information exists to identify the cause of failure.
/// </summary>
UNIDENTIFIED_ERROR = 1287u,
/// <summary>
/// The parameter passed to a C runtime function is incorrect.
/// </summary>
INVALID_CRUNTIME_PARAMETER = 1288u,
/// <summary>
/// The operation occurred beyond the valid data length of the file.
/// </summary>
BEYOND_VDL = 1289u,
/// <summary>
/// The service start failed since one or more services in the same process have an incompatible service SID type setting. A service with restricted service SID type can only coexist in the same process with other services with a restricted SID type. If the service SID type for this service was just configured, the hosting process must be restarted in order to start this service.
/// </summary>
INCOMPATIBLE_SERVICE_SID_TYPE = 1290u,
/// <summary>
/// The process hosting the driver for this device has been terminated.
/// </summary>
DRIVER_PROCESS_TERMINATED = 1291u,
/// <summary>
/// An operation attempted to exceed an implementation-defined limit.
/// </summary>
IMPLEMENTATION_LIMIT = 1292u,
/// <summary>
/// Either the target process, or the target thread's containing process, is a protected process.
/// </summary>
PROCESS_IS_PROTECTED = 1293u,
/// <summary>
/// The service notification client is lagging too far behind the current state of services in the machine.
/// </summary>
SERVICE_NOTIFY_CLIENT_LAGGING = 1294u,
/// <summary>
/// To free up disk space, move files to a different location or delete unnecessary files. For more information, contact your system administrator.
/// </summary>
DISK_QUOTA_EXCEEDED = 1295u,
/// <summary>
/// The requested file operation failed because the storage policy blocks that type of file. For more information, contact your system administrator.
/// </summary>
CONTENT_BLOCKED = 1296u,
/// <summary>
/// You may use the Services Microsoft Management Console (MMC) snap-in (services.msc) and the Local Security Settings MMC snap-in (secpol.msc) to view the service configuration and the account configuration.
/// </summary>
INCOMPATIBLE_SERVICE_PRIVILEGE = 1297u,
/// <summary>
/// A thread involved in this operation appears to be unresponsive.
/// </summary>
APP_HANG = 1298u,
/// <summary>
/// Indicates a particular Security ID may not be assigned as the label of an object.
/// </summary>
INVALID_LABEL = 1299u,
/// <summary>
/// Not all privileges or groups referenced are assigned to the caller.
/// </summary>
NOT_ALL_ASSIGNED = 1300u,
/// <summary>
/// Some mapping between account names and security IDs was not done.
/// </summary>
SOME_NOT_MAPPED = 1301u,
/// <summary>
/// No system quota limits are specifically set for this account.
/// </summary>
NO_QUOTAS_FOR_ACCOUNT = 1302u,
/// <summary>
/// No encryption key is available. A well-known encryption key was returned.
/// </summary>
LOCAL_USER_SESSION_KEY = 1303u,
/// <summary>
/// The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string.
/// </summary>
NULL_LM_PASSWORD = 1304u,
/// <summary>
/// The revision level is unknown.
/// </summary>
UNKNOWN_REVISION = 1305u,
/// <summary>
/// Indicates two revision levels are incompatible.
/// </summary>
REVISION_MISMATCH = 1306u,
/// <summary>
/// This security ID may not be assigned as the owner of this object.
/// </summary>
INVALID_OWNER = 1307u,
/// <summary>
/// This security ID may not be assigned as the primary group of an object.
/// </summary>
INVALID_PRIMARY_GROUP = 1308u,
/// <summary>
/// An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.
/// </summary>
NO_IMPERSONATION_TOKEN = 1309u,
/// <summary>
/// The group may not be disabled.
/// </summary>
CANT_DISABLE_MANDATORY = 1310u,
/// <summary>
/// We can't sign you in with this credential because your domain isn't available. Make sure your device is connected to your organization's network and try again. If you previously signed in on this device with another credential, you can sign in with that credential.
/// </summary>
NO_LOGON_SERVERS = 1311u,
/// <summary>
/// A specified logon session does not exist. It may already have been terminated.
/// </summary>
NO_SUCH_LOGON_SESSION = 1312u,
/// <summary>
/// A specified privilege does not exist.
/// </summary>
NO_SUCH_PRIVILEGE = 1313u,
/// <summary>
/// A required privilege is not held by the client.
/// </summary>
PRIVILEGE_NOT_HELD = 1314u,
/// <summary>
/// The name provided is not a properly formed account name.
/// </summary>
INVALID_ACCOUNT_NAME = 1315u,
/// <summary>
/// The specified account already exists.
/// </summary>
USER_EXISTS = 1316u,
/// <summary>
/// The specified account does not exist.
/// </summary>
NO_SUCH_USER = 1317u,
/// <summary>
/// The specified group already exists.
/// </summary>
GROUP_EXISTS = 1318u,
/// <summary>
/// The specified group does not exist.
/// </summary>
NO_SUCH_GROUP = 1319u,
/// <summary>
/// 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.
/// </summary>
MEMBER_IN_GROUP = 1320u,
/// <summary>
/// The specified user account is not a member of the specified group account.
/// </summary>
MEMBER_NOT_IN_GROUP = 1321u,
/// <summary>
/// This operation is disallowed as it could result in an administration account being disabled, deleted or unable to logon.
/// </summary>
LAST_ADMIN = 1322u,
/// <summary>
/// Unable to update the password. The value provided as the current password is incorrect.
/// </summary>
WRONG_PASSWORD = 1323u,
/// <summary>
/// Unable to update the password. The value provided for the new password contains values that are not allowed in passwords.
/// </summary>
ILL_FORMED_PASSWORD = 1324u,
/// <summary>
/// Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirements of the domain.
/// </summary>
PASSWORD_RESTRICTION = 1325u,
/// <summary>
/// The user name or password is incorrect.
/// </summary>
LOGON_FAILURE = 1326u,
/// <summary>
/// Account restrictions are preventing this user from signing in. For example: blank passwords aren't allowed, sign-in times are limited, or a policy restriction has been enforced.
/// </summary>
ACCOUNT_RESTRICTION = 1327u,
/// <summary>
/// Your account has time restrictions that keep you from signing in right now.
/// </summary>
INVALID_LOGON_HOURS = 1328u,
/// <summary>
/// This user isn't allowed to sign in to this computer.
/// </summary>
INVALID_WORKSTATION = 1329u,
/// <summary>
/// The password for this account has expired.
/// </summary>
PASSWORD_EXPIRED = 1330u,
/// <summary>
/// This user can't sign in because this account is currently disabled.
/// </summary>
ACCOUNT_DISABLED = 1331u,
/// <summary>
/// No mapping between account names and security IDs was done.
/// </summary>
NONE_MAPPED = 1332u,
/// <summary>
/// Too many local user identifiers (LUIDs) were requested at one time.
/// </summary>
TOO_MANY_LUIDS_REQUESTED = 1333u,
/// <summary>
/// No more local user identifiers (LUIDs) are available.
/// </summary>
LUIDS_EXHAUSTED = 1334u,
/// <summary>
/// The subauthority part of a security ID is invalid for this particular use.
/// </summary>
INVALID_SUB_AUTHORITY = 1335u,
/// <summary>
/// The access control list (ACL) structure is invalid.
/// </summary>
INVALID_ACL = 1336u,
/// <summary>
/// The security ID structure is invalid.
/// </summary>
INVALID_SID = 1337u,
/// <summary>
/// The security descriptor structure is invalid.
/// </summary>
INVALID_SECURITY_DESCR = 1338u,
/// <summary>
/// The inherited access control list (ACL) or access control entry (ACE) could not be built.
/// </summary>
BAD_INHERITANCE_ACL = 1340u,
/// <summary>
/// The server is currently disabled.
/// </summary>
SERVER_DISABLED = 1341u,
/// <summary>
/// The server is currently enabled.
/// </summary>
SERVER_NOT_DISABLED = 1342u,
/// <summary>
/// The value provided was an invalid value for an identifier authority.
/// </summary>
INVALID_ID_AUTHORITY = 1343u,
/// <summary>
/// No more memory is available for security information updates.
/// </summary>
ALLOTTED_SPACE_EXCEEDED = 1344u,
/// <summary>
/// The specified attributes are invalid, or incompatible with the attributes for the group as a whole.
/// </summary>
INVALID_GROUP_ATTRIBUTES = 1345u,
/// <summary>
/// Either a required impersonation level was not provided, or the provided impersonation level is invalid.
/// </summary>
BAD_IMPERSONATION_LEVEL = 1346u,
/// <summary>
/// Cannot open an anonymous level security token.
/// </summary>
CANT_OPEN_ANONYMOUS = 1347u,
/// <summary>
/// The validation information class requested was invalid.
/// </summary>
BAD_VALIDATION_CLASS = 1348u,
/// <summary>
/// The type of the token is inappropriate for its attempted use.
/// </summary>
BAD_TOKEN_TYPE = 1349u,
/// <summary>
/// Unable to perform a security operation on an object that has no associated security.
/// </summary>
NO_SECURITY_ON_OBJECT = 1350u,
/// <summary>
/// Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.
/// </summary>
CANT_ACCESS_DOMAIN_INFO = 1351u,
/// <summary>
/// The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation.
/// </summary>
INVALID_SERVER_STATE = 1352u,
/// <summary>
/// The domain was in the wrong state to perform the security operation.
/// </summary>
INVALID_DOMAIN_STATE = 1353u,
/// <summary>
/// This operation is only allowed for the Primary Domain Controller of the domain.
/// </summary>
INVALID_DOMAIN_ROLE = 1354u,
/// <summary>
/// The specified domain either does not exist or could not be contacted.
/// </summary>
NO_SUCH_DOMAIN = 1355u,
/// <summary>
/// The specified domain already exists.
/// </summary>
DOMAIN_EXISTS = 1356u,
/// <summary>
/// An attempt was made to exceed the limit on the number of domains per server.
/// </summary>
DOMAIN_LIMIT_EXCEEDED = 1357u,
/// <summary>
/// Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.
/// </summary>
INTERNAL_DB_CORRUPTION = 1358u,
/// <summary>
/// An internal error occurred.
/// </summary>
INTERNAL_ERROR = 1359u,
/// <summary>
/// Generic access types were contained in an access mask which should already be mapped to nongeneric types.
/// </summary>
GENERIC_NOT_MAPPED = 1360u,
/// <summary>
/// A security descriptor is not in the right format (absolute or self-relative).
/// </summary>
BAD_DESCRIPTOR_FORMAT = 1361u,
/// <summary>
/// The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.
/// </summary>
NOT_LOGON_PROCESS = 1362u,
/// <summary>
/// Cannot start a new logon session with an ID that is already in use.
/// </summary>
LOGON_SESSION_EXISTS = 1363u,
/// <summary>
/// A specified authentication package is unknown.
/// </summary>
NO_SUCH_PACKAGE = 1364u,
/// <summary>
/// The logon session is not in a state that is consistent with the requested operation.
/// </summary>
BAD_LOGON_SESSION_STATE = 1365u,
/// <summary>
/// The logon session ID is already in use.
/// </summary>
LOGON_SESSION_COLLISION = 1366u,
/// <summary>
/// A logon request contained an invalid logon type value.
/// </summary>
INVALID_LOGON_TYPE = 1367u,
/// <summary>
/// Unable to impersonate using a named pipe until data has been read from that pipe.
/// </summary>
CANNOT_IMPERSONATE = 1368u,
/// <summary>
/// The transaction state of a registry subtree is incompatible with the requested operation.
/// </summary>
RXACT_INVALID_STATE = 1369u,
/// <summary>
/// An internal security database corruption has been encountered.
/// </summary>
RXACT_COMMIT_FAILURE = 1370u,
/// <summary>
/// Cannot perform this operation on built-in accounts.
/// </summary>
SPECIAL_ACCOUNT = 1371u,
/// <summary>
/// Cannot perform this operation on this built-in special group.
/// </summary>
SPECIAL_GROUP = 1372u,
/// <summary>
/// Cannot perform this operation on this built-in special user.
/// </summary>
SPECIAL_USER = 1373u,
/// <summary>
/// The user cannot be removed from a group because the group is currently the user's primary group.
/// </summary>
MEMBERS_PRIMARY_GROUP = 1374u,
/// <summary>
/// The token is already in use as a primary token.
/// </summary>
TOKEN_ALREADY_IN_USE = 1375u,
/// <summary>
/// The specified local group does not exist.
/// </summary>
NO_SUCH_ALIAS = 1376u,
/// <summary>
/// The specified account name is not a member of the group.
/// </summary>
MEMBER_NOT_IN_ALIAS = 1377u,
/// <summary>
/// The specified account name is already a member of the group.
/// </summary>
MEMBER_IN_ALIAS = 1378u,
/// <summary>
/// The specified local group already exists.
/// </summary>
ALIAS_EXISTS = 1379u,
/// <summary>
/// Logon failure: the user has not been granted the requested logon type at this computer.
/// </summary>
LOGON_NOT_GRANTED = 1380u,
/// <summary>
/// The maximum number of secrets that may be stored in a single system has been exceeded.
/// </summary>
TOO_MANY_SECRETS = 1381u,
/// <summary>
/// The length of a secret exceeds the maximum length allowed.
/// </summary>
SECRET_TOO_LONG = 1382u,
/// <summary>
/// The local security authority database contains an internal inconsistency.
/// </summary>
INTERNAL_DB_ERROR = 1383u,
/// <summary>
/// During a logon attempt, the user's security context accumulated too many security IDs.
/// </summary>
TOO_MANY_CONTEXT_IDS = 1384u,
/// <summary>
/// Logon failure: the user has not been granted the requested logon type at this computer.
/// </summary>
LOGON_TYPE_NOT_GRANTED = 1385u,
/// <summary>
/// A cross-encrypted password is necessary to change a user password.
/// </summary>
NT_CROSS_ENCRYPTION_REQUIRED = 1386u,
/// <summary>
/// A member could not be added to or removed from the local group because the member does not exist.
/// </summary>
NO_SUCH_MEMBER = 1387u,
/// <summary>
/// A new member could not be added to a local group because the member has the wrong account type.
/// </summary>
INVALID_MEMBER = 1388u,
/// <summary>
/// Too many security IDs have been specified.
/// </summary>
TOO_MANY_SIDS = 1389u,
/// <summary>
/// A cross-encrypted password is necessary to change this user password.
/// </summary>
LM_CROSS_ENCRYPTION_REQUIRED = 1390u,
/// <summary>
/// Indicates an ACL contains no inheritable components.
/// </summary>
NO_INHERITANCE = 1391u,
/// <summary>
/// The file or directory is corrupted and unreadable.
/// </summary>
FILE_CORRUPT = 1392u,
/// <summary>
/// The disk structure is corrupted and unreadable.
/// </summary>
DISK_CORRUPT = 1393u,
/// <summary>
/// There is no user session key for the specified logon session.
/// </summary>
NO_USER_SESSION_KEY = 1394u,
/// <summary>
/// The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because there are already as many connections as the service can accept.
/// </summary>
LICENSE_QUOTA_EXCEEDED = 1395u,
/// <summary>
/// The target account name is incorrect.
/// </summary>
WRONG_TARGET_NAME = 1396u,
/// <summary>
/// Mutual Authentication failed. The server's password is out of date at the domain controller.
/// </summary>
MUTUAL_AUTH_FAILED = 1397u,
/// <summary>
/// There is a time and/or date difference between the client and server.
/// </summary>
TIME_SKEW = 1398u,
/// <summary>
/// This operation cannot be performed on the current domain.
/// </summary>
CURRENT_DOMAIN_NOT_ALLOWED = 1399u,
/// <summary>
/// Invalid window handle.
/// </summary>
INVALID_WINDOW_HANDLE = 1400u,
/// <summary>
/// Invalid menu handle.
/// </summary>
INVALID_MENU_HANDLE = 1401u,
/// <summary>
/// Invalid cursor handle.
/// </summary>
INVALID_CURSOR_HANDLE = 1402u,
/// <summary>
/// Invalid accelerator table handle.
/// </summary>
INVALID_ACCEL_HANDLE = 1403u,
/// <summary>
/// Invalid hook handle.
/// </summary>
INVALID_HOOK_HANDLE = 1404u,
/// <summary>
/// Invalid handle to a multiple-window position structure.
/// </summary>
INVALID_DWP_HANDLE = 1405u,
/// <summary>
/// Cannot create a top-level child window.
/// </summary>
TLW_WITH_WSCHILD = 1406u,
/// <summary>
/// Cannot find window class.
/// </summary>
CANNOT_FIND_WND_CLASS = 1407u,
/// <summary>
/// Invalid window; it belongs to other thread.
/// </summary>
WINDOW_OF_OTHER_THREAD = 1408u,
/// <summary>
/// Hot key is already registered.
/// </summary>
HOTKEY_ALREADY_REGISTERED = 1409u,
/// <summary>
/// Class already exists.
/// </summary>
CLASS_ALREADY_EXISTS = 1410u,
/// <summary>
/// Class does not exist.
/// </summary>
CLASS_DOES_NOT_EXIST = 1411u,
/// <summary>
/// Class still has open windows.
/// </summary>
CLASS_HAS_WINDOWS = 1412u,
/// <summary>
/// Invalid index.
/// </summary>
INVALID_INDEX = 1413u,
/// <summary>
/// Invalid icon handle.
/// </summary>
INVALID_ICON_HANDLE = 1414u,
/// <summary>
/// Using private DIALOG window words.
/// </summary>
PRIVATE_DIALOG_INDEX = 1415u,
/// <summary>
/// The list box identifier was not found.
/// </summary>
LISTBOX_ID_NOT_FOUND = 1416u,
/// <summary>
/// No wildcards were found.
/// </summary>
NO_WILDCARD_CHARACTERS = 1417u,
/// <summary>
/// Thread does not have a clipboard open.
/// </summary>
CLIPBOARD_NOT_OPEN = 1418u,
/// <summary>
/// Hot key is not registered.
/// </summary>
HOTKEY_NOT_REGISTERED = 1419u,
/// <summary>
/// The window is not a valid dialog window.
/// </summary>
WINDOW_NOT_DIALOG = 1420u,
/// <summary>
/// Control ID not found.
/// </summary>
CONTROL_ID_NOT_FOUND = 1421u,
/// <summary>
/// Invalid message for a combo box because it does not have an edit control.
/// </summary>
INVALID_COMBOBOX_MESSAGE = 1422u,
/// <summary>
/// The window is not a combo box.
/// </summary>
WINDOW_NOT_COMBOBOX = 1423u,
/// <summary>
/// Height must be less than 256.
/// </summary>
INVALID_EDIT_HEIGHT = 1424u,
/// <summary>
/// Invalid device context (DC) handle.
/// </summary>
DC_NOT_FOUND = 1425u,
/// <summary>
/// Invalid hook procedure type.
/// </summary>
INVALID_HOOK_FILTER = 1426u,
/// <summary>
/// Invalid hook procedure.
/// </summary>
INVALID_FILTER_PROC = 1427u,
/// <summary>
/// Cannot set nonlocal hook without a module handle.
/// </summary>
HOOK_NEEDS_HMOD = 1428u,
/// <summary>
/// This hook procedure can only be set globally.
/// </summary>
GLOBAL_ONLY_HOOK = 1429u,
/// <summary>
/// The journal hook procedure is already installed.
/// </summary>
JOURNAL_HOOK_SET = 1430u,
/// <summary>
/// The hook procedure is not installed.
/// </summary>
HOOK_NOT_INSTALLED = 1431u,
/// <summary>
/// Invalid message for single-selection list box.
/// </summary>
INVALID_LB_MESSAGE = 1432u,
/// <summary>
/// LB_SETCOUNT sent to non-lazy list box.
/// </summary>
SETCOUNT_ON_BAD_LB = 1433u,
/// <summary>
/// This list box does not support tab stops.
/// </summary>
LB_WITHOUT_TABSTOPS = 1434u,
/// <summary>
/// Cannot destroy object created by another thread.
/// </summary>
DESTROY_OBJECT_OF_OTHER_THREAD = 1435u,
/// <summary>
/// Child windows cannot have menus.
/// </summary>
CHILD_WINDOW_MENU = 1436u,
/// <summary>
/// The window does not have a system menu.
/// </summary>
NO_SYSTEM_MENU = 1437u,
/// <summary>
/// Invalid message box style.
/// </summary>
INVALID_MSGBOX_STYLE = 1438u,
/// <summary>
/// Invalid system-wide (SPI_*) parameter.
/// </summary>
INVALID_SPI_VALUE = 1439u,
/// <summary>
/// Screen already locked.
/// </summary>
SCREEN_ALREADY_LOCKED = 1440u,
/// <summary>
/// All handles to windows in a multiple-window position structure must have the same parent.
/// </summary>
HWNDS_HAVE_DIFF_PARENT = 1441u,
/// <summary>
/// The window is not a child window.
/// </summary>
NOT_CHILD_WINDOW = 1442u,
/// <summary>
/// Invalid GW_* command.
/// </summary>
INVALID_GW_COMMAND = 1443u,
/// <summary>
/// Invalid thread identifier.
/// </summary>
INVALID_THREAD_ID = 1444u,
/// <summary>
/// Cannot process a message from a window that is not a multiple document interface (MDI) window.
/// </summary>
NON_MDICHILD_WINDOW = 1445u,
/// <summary>
/// Popup menu already active.
/// </summary>
POPUP_ALREADY_ACTIVE = 1446u,
/// <summary>
/// The window does not have scroll bars.
/// </summary>
NO_SCROLLBARS = 1447u,
/// <summary>
/// Scroll bar range cannot be greater than MAXLONG.
/// </summary>
INVALID_SCROLLBAR_RANGE = 1448u,
/// <summary>
/// Cannot show or remove the window in the way specified.
/// </summary>
INVALID_SHOWWIN_COMMAND = 1449u,
/// <summary>
/// Insufficient system resources exist to complete the requested service.
/// </summary>
NO_SYSTEM_RESOURCES = 1450u,
/// <summary>
/// Insufficient system resources exist to complete the requested service.
/// </summary>
NONPAGED_SYSTEM_RESOURCES = 1451u,
/// <summary>
/// Insufficient system resources exist to complete the requested service.
/// </summary>
PAGED_SYSTEM_RESOURCES = 1452u,
/// <summary>
/// Insufficient quota to complete the requested service.
/// </summary>
WORKING_SET_QUOTA = 1453u,
/// <summary>
/// Insufficient quota to complete the requested service.
/// </summary>
PAGEFILE_QUOTA = 1454u,
/// <summary>
/// The paging file is too small for this operation to complete.
/// </summary>
COMMITMENT_LIMIT = 1455u,
/// <summary>
/// A menu item was not found.
/// </summary>
MENU_ITEM_NOT_FOUND = 1456u,
/// <summary>
/// Invalid keyboard layout handle.
/// </summary>
INVALID_KEYBOARD_HANDLE = 1457u,
/// <summary>
/// Hook type not allowed.
/// </summary>
HOOK_TYPE_NOT_ALLOWED = 1458u,
/// <summary>
/// This operation requires an interactive window station.
/// </summary>
REQUIRES_INTERACTIVE_WINDOWSTATION = 1459u,
/// <summary>
/// This operation returned because the timeout period expired.
/// </summary>
TIMEOUT = 1460u,
/// <summary>
/// Invalid monitor handle.
/// </summary>
INVALID_MONITOR_HANDLE = 1461u,
/// <summary>
/// Incorrect size argument.
/// </summary>
INCORRECT_SIZE = 1462u,
/// <summary>
/// The symbolic link cannot be followed because its type is disabled.
/// </summary>
SYMLINK_CLASS_DISABLED = 1463u,
/// <summary>
/// This application does not support the current operation on symbolic links.
/// </summary>
SYMLINK_NOT_SUPPORTED = 1464u,
/// <summary>
/// Windows was unable to parse the requested XML data.
/// </summary>
XML_PARSE_ERROR = 1465u,
/// <summary>
/// An error was encountered while processing an XML digital signature.
/// </summary>
XMLDSIG_ERROR = 1466u,
/// <summary>
/// This application must be restarted.
/// </summary>
RESTART_APPLICATION = 1467u,
/// <summary>
/// The caller made the connection request in the wrong routing compartment.
/// </summary>
WRONG_COMPARTMENT = 1468u,
/// <summary>
/// There was an AuthIP failure when attempting to connect to the remote host.
/// </summary>
AUTHIP_FAILURE = 1469u,
/// <summary>
/// Insufficient NVRAM resources exist to complete the requested service. A reboot might be required.
/// </summary>
NO_NVRAM_RESOURCES = 1470u,
/// <summary>
/// Unable to finish the requested operation because the specified process is not a GUI process.
/// </summary>
NOT_GUI_PROCESS = 1471u,
/// <summary>
/// The event log file is corrupted.
/// </summary>
EVENTLOG_FILE_CORRUPT = 1500u,
/// <summary>
/// No event log file could be opened, so the event logging service did not start.
/// </summary>
EVENTLOG_CANT_START = 1501u,
/// <summary>
/// The event log file is full.
/// </summary>
LOG_FILE_FULL = 1502u,
/// <summary>
/// The event log file has changed between read operations.
/// </summary>
EVENTLOG_FILE_CHANGED = 1503u,
/// <summary>
/// The specified Job already has a container assigned to it.
/// </summary>
CONTAINER_ASSIGNED = 1504u,
/// <summary>
/// The specified Job does not have a container assigned to it.
/// </summary>
JOB_NO_CONTAINER = 1505u,
/// <summary>
/// The specified task name is invalid.
/// </summary>
INVALID_TASK_NAME = 1550u,
/// <summary>
/// The specified task index is invalid.
/// </summary>
INVALID_TASK_INDEX = 1551u,
/// <summary>
/// The specified thread is already joining a task.
/// </summary>
THREAD_ALREADY_IN_TASK = 1552u,
/// <summary>
/// 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.
/// </summary>
INSTALL_SERVICE_FAILURE = 1601u,
/// <summary>
/// User cancelled installation.
/// </summary>
INSTALL_USEREXIT = 1602u,
/// <summary>
/// Fatal error during installation.
/// </summary>
INSTALL_FAILURE = 1603u,
/// <summary>
/// Installation suspended, incomplete.
/// </summary>
INSTALL_SUSPEND = 1604u,
/// <summary>
/// This action is only valid for products that are currently installed.
/// </summary>
UNKNOWN_PRODUCT = 1605u,
/// <summary>
/// Feature ID not registered.
/// </summary>
UNKNOWN_FEATURE = 1606u,
/// <summary>
/// Component ID not registered.
/// </summary>
UNKNOWN_COMPONENT = 1607u,
/// <summary>
/// Unknown property.
/// </summary>
UNKNOWN_PROPERTY = 1608u,
/// <summary>
/// Handle is in an invalid state.
/// </summary>
INVALID_HANDLE_STATE = 1609u,
/// <summary>
/// The configuration data for this product is corrupt. Contact your support personnel.
/// </summary>
BAD_CONFIGURATION = 1610u,
/// <summary>
/// Component qualifier not present.
/// </summary>
INDEX_ABSENT = 1611u,
/// <summary>
/// The installation source for this product is not available. Verify that the source exists and that you can access it.
/// </summary>
INSTALL_SOURCE_ABSENT = 1612u,
/// <summary>
/// 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.
/// </summary>
INSTALL_PACKAGE_VERSION = 1613u,
/// <summary>
/// Product is uninstalled.
/// </summary>
PRODUCT_UNINSTALLED = 1614u,
/// <summary>
/// SQL query syntax invalid or unsupported.
/// </summary>
BAD_QUERY_SYNTAX = 1615u,
/// <summary>
/// Record field does not exist.
/// </summary>
INVALID_FIELD = 1616u,
/// <summary>
/// The device has been removed.
/// </summary>
DEVICE_REMOVED = 1617u,
/// <summary>
/// Another installation is already in progress. Complete that installation before proceeding with this install.
/// </summary>
INSTALL_ALREADY_RUNNING = 1618u,
/// <summary>
/// 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.
/// </summary>
INSTALL_PACKAGE_OPEN_FAILED = 1619u,
/// <summary>
/// This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package.
/// </summary>
INSTALL_PACKAGE_INVALID = 1620u,
/// <summary>
/// There was an error starting the Windows Installer service user interface. Contact your support personnel.
/// </summary>
INSTALL_UI_FAILURE = 1621u,
/// <summary>
/// Error opening installation log file. Verify that the specified log file location exists and that you can write to it.
/// </summary>
INSTALL_LOG_FAILURE = 1622u,
/// <summary>
/// The language of this installation package is not supported by your system.
/// </summary>
INSTALL_LANGUAGE_UNSUPPORTED = 1623u,
/// <summary>
/// Error applying transforms. Verify that the specified transform paths are valid.
/// </summary>
INSTALL_TRANSFORM_FAILURE = 1624u,
/// <summary>
/// This installation is forbidden by system policy. Contact your system administrator.
/// </summary>
INSTALL_PACKAGE_REJECTED = 1625u,
/// <summary>
/// Function could not be executed.
/// </summary>
FUNCTION_NOT_CALLED = 1626u,
/// <summary>
/// Function failed during execution.
/// </summary>
FUNCTION_FAILED = 1627u,
/// <summary>
/// Invalid or unknown table specified.
/// </summary>
INVALID_TABLE = 1628u,
/// <summary>
/// Data supplied is of wrong type.
/// </summary>
DATATYPE_MISMATCH = 1629u,
/// <summary>
/// Data of this type is not supported.
/// </summary>
UNSUPPORTED_TYPE = 1630u,
/// <summary>
/// The Windows Installer service failed to start. Contact your support personnel.
/// </summary>
CREATE_FAILED = 1631u,
/// <summary>
/// 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.
/// </summary>
INSTALL_TEMP_UNWRITABLE = 1632u,
/// <summary>
/// This installation package is not supported by this processor type. Contact your product vendor.
/// </summary>
INSTALL_PLATFORM_UNSUPPORTED = 1633u,
/// <summary>
/// Component not used on this computer.
/// </summary>
INSTALL_NOTUSED = 1634u,
/// <summary>
/// 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.
/// </summary>
PATCH_PACKAGE_OPEN_FAILED = 1635u,
/// <summary>
/// This update package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer update package.
/// </summary>
PATCH_PACKAGE_INVALID = 1636u,
/// <summary>
/// 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.
/// </summary>
PATCH_PACKAGE_UNSUPPORTED = 1637u,
/// <summary>
/// Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel.
/// </summary>
PRODUCT_VERSION = 1638u,
/// <summary>
/// Invalid command line argument. Consult the Windows Installer SDK for detailed command line help.
/// </summary>
INVALID_COMMAND_LINE = 1639u,
/// <summary>
/// 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.
/// </summary>
INSTALL_REMOTE_DISALLOWED = 1640u,
/// <summary>
/// The requested operation completed successfully. The system will be restarted so the changes can take effect.
/// </summary>
SUCCESS_REBOOT_INITIATED = 1641u,
/// <summary>
/// The upgrade cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade.
/// </summary>
PATCH_TARGET_NOT_FOUND = 1642u,
/// <summary>
/// The update package is not permitted by software restriction policy.
/// </summary>
PATCH_PACKAGE_REJECTED = 1643u,
/// <summary>
/// One or more customizations are not permitted by software restriction policy.
/// </summary>
INSTALL_TRANSFORM_REJECTED = 1644u,
/// <summary>
/// The Windows Installer does not permit installation from a Remote Desktop Connection.
/// </summary>
INSTALL_REMOTE_PROHIBITED = 1645u,
/// <summary>
/// Uninstallation of the update package is not supported.
/// </summary>
PATCH_REMOVAL_UNSUPPORTED = 1646u,
/// <summary>
/// The update is not applied to this product.
/// </summary>
UNKNOWN_PATCH = 1647u,
/// <summary>
/// No valid sequence could be found for the set of updates.
/// </summary>
PATCH_NO_SEQUENCE = 1648u,
/// <summary>
/// Update removal was disallowed by policy.
/// </summary>
PATCH_REMOVAL_DISALLOWED = 1649u,
/// <summary>
/// The XML update data is invalid.
/// </summary>
INVALID_PATCH_XML = 1650u,
/// <summary>
/// Windows Installer does not permit updating of managed advertised products. At least one feature of the product must be installed before applying the update.
/// </summary>
PATCH_MANAGED_ADVERTISED_PRODUCT = 1651u,
/// <summary>
/// The Windows Installer service is not accessible in Safe Mode. Please try again when your computer is not in Safe Mode or you can use System Restore to return your machine to a previous good state.
/// </summary>
INSTALL_SERVICE_SAFEBOOT = 1652u,
/// <summary>
/// A fail fast exception occurred. Exception handlers will not be invoked and the process will be terminated immediately.
/// </summary>
FAIL_FAST_EXCEPTION = 1653u,
/// <summary>
/// The app that you are trying to run is not supported on this version of Windows.
/// </summary>
INSTALL_REJECTED = 1654u,
/// <summary>
/// The operation was blocked as the process prohibits dynamic code generation.
/// </summary>
DYNAMIC_CODE_BLOCKED = 1655u,
/// <summary>
/// The objects are not identical.
/// </summary>
NOT_SAME_OBJECT = 1656u,
/// <summary>
/// The specified image file was blocked from loading because it does not enable a feature required by the process: Control Flow Guard.
/// </summary>
STRICT_CFG_VIOLATION = 1657u,
/// <summary>
/// The thread context could not be updated because this has been restricted for the process.
/// </summary>
SET_CONTEXT_DENIED = 1660u,
/// <summary>
/// An invalid cross-partition private file/section access was attempted.
/// </summary>
CROSS_PARTITION_VIOLATION = 1661u,
/// <summary>
/// The string binding is invalid.
/// </summary>
RPC_S_INVALID_STRING_BINDING = 1700u,
/// <summary>
/// The binding handle is not the correct type.
/// </summary>
RPC_S_WRONG_KIND_OF_BINDING = 1701u,
/// <summary>
/// The binding handle is invalid.
/// </summary>
RPC_S_INVALID_BINDING = 1702u,
/// <summary>
/// The RPC protocol sequence is not supported.
/// </summary>
RPC_S_PROTSEQ_NOT_SUPPORTED = 1703u,
/// <summary>
/// The RPC protocol sequence is invalid.
/// </summary>
RPC_S_INVALID_RPC_PROTSEQ = 1704u,
/// <summary>
/// The string universal unique identifier (UUID) is invalid.
/// </summary>
RPC_S_INVALID_STRING_UUID = 1705u,
/// <summary>
/// The endpoint format is invalid.
/// </summary>
RPC_S_INVALID_ENDPOINT_FORMAT = 1706u,
/// <summary>
/// The network address is invalid.
/// </summary>
RPC_S_INVALID_NET_ADDR = 1707u,
/// <summary>
/// No endpoint was found.
/// </summary>
RPC_S_NO_ENDPOINT_FOUND = 1708u,
/// <summary>
/// The timeout value is invalid.
/// </summary>
RPC_S_INVALID_TIMEOUT = 1709u,
/// <summary>
/// The object universal unique identifier (UUID) was not found.
/// </summary>
RPC_S_OBJECT_NOT_FOUND = 1710u,
/// <summary>
/// The object universal unique identifier (UUID) has already been registered.
/// </summary>
RPC_S_ALREADY_REGISTERED = 1711u,
/// <summary>
/// The type universal unique identifier (UUID) has already been registered.
/// </summary>
RPC_S_TYPE_ALREADY_REGISTERED = 1712u,
/// <summary>
/// The RPC server is already listening.
/// </summary>
RPC_S_ALREADY_LISTENING = 1713u,
/// <summary>
/// No protocol sequences have been registered.
/// </summary>
RPC_S_NO_PROTSEQS_REGISTERED = 1714u,
/// <summary>
/// The RPC server is not listening.
/// </summary>
RPC_S_NOT_LISTENING = 1715u,
/// <summary>
/// The manager type is unknown.
/// </summary>
RPC_S_UNKNOWN_MGR_TYPE = 1716u,
/// <summary>
/// The interface is unknown.
/// </summary>
RPC_S_UNKNOWN_IF = 1717u,
/// <summary>
/// There are no bindings.
/// </summary>
RPC_S_NO_BINDINGS = 1718u,
/// <summary>
/// There are no protocol sequences.
/// </summary>
RPC_S_NO_PROTSEQS = 1719u,
/// <summary>
/// The endpoint cannot be created.
/// </summary>
RPC_S_CANT_CREATE_ENDPOINT = 1720u,
/// <summary>
/// Not enough resources are available to complete this operation.
/// </summary>
RPC_S_OUT_OF_RESOURCES = 1721u,
/// <summary>
/// The RPC server is unavailable.
/// </summary>
RPC_S_SERVER_UNAVAILABLE = 1722u,
/// <summary>
/// The RPC server is too busy to complete this operation.
/// </summary>
RPC_S_SERVER_TOO_BUSY = 1723u,
/// <summary>
/// The network options are invalid.
/// </summary>
RPC_S_INVALID_NETWORK_OPTIONS = 1724u,
/// <summary>
/// There are no remote procedure calls active on this thread.
/// </summary>
RPC_S_NO_CALL_ACTIVE = 1725u,
/// <summary>
/// The remote procedure call failed.
/// </summary>
RPC_S_CALL_FAILED = 1726u,
/// <summary>
/// The remote procedure call failed and did not execute.
/// </summary>
RPC_S_CALL_FAILED_DNE = 1727u,
/// <summary>
/// A remote procedure call (RPC) protocol error occurred.
/// </summary>
RPC_S_PROTOCOL_ERROR = 1728u,
/// <summary>
/// Access to the HTTP proxy is denied.
/// </summary>
RPC_S_PROXY_ACCESS_DENIED = 1729u,
/// <summary>
/// The transfer syntax is not supported by the RPC server.
/// </summary>
RPC_S_UNSUPPORTED_TRANS_SYN = 1730u,
/// <summary>
/// The universal unique identifier (UUID) type is not supported.
/// </summary>
RPC_S_UNSUPPORTED_TYPE = 1732u,
/// <summary>
/// The tag is invalid.
/// </summary>
RPC_S_INVALID_TAG = 1733u,
/// <summary>
/// The array bounds are invalid.
/// </summary>
RPC_S_INVALID_BOUND = 1734u,
/// <summary>
/// The binding does not contain an entry name.
/// </summary>
RPC_S_NO_ENTRY_NAME = 1735u,
/// <summary>
/// The name syntax is invalid.
/// </summary>
RPC_S_INVALID_NAME_SYNTAX = 1736u,
/// <summary>
/// The name syntax is not supported.
/// </summary>
RPC_S_UNSUPPORTED_NAME_SYNTAX = 1737u,
/// <summary>
/// No network address is available to use to construct a universal unique identifier (UUID).
/// </summary>
RPC_S_UUID_NO_ADDRESS = 1739u,
/// <summary>
/// The endpoint is a duplicate.
/// </summary>
RPC_S_DUPLICATE_ENDPOINT = 1740u,
/// <summary>
/// The authentication type is unknown.
/// </summary>
RPC_S_UNKNOWN_AUTHN_TYPE = 1741u,
/// <summary>
/// The maximum number of calls is too small.
/// </summary>
RPC_S_MAX_CALLS_TOO_SMALL = 1742u,
/// <summary>
/// The string is too long.
/// </summary>
RPC_S_STRING_TOO_LONG = 1743u,
/// <summary>
/// The RPC protocol sequence was not found.
/// </summary>
RPC_S_PROTSEQ_NOT_FOUND = 1744u,
/// <summary>
/// The procedure number is out of range.
/// </summary>
RPC_S_PROCNUM_OUT_OF_RANGE = 1745u,
/// <summary>
/// The binding does not contain any authentication information.
/// </summary>
RPC_S_BINDING_HAS_NO_AUTH = 1746u,
/// <summary>
/// The authentication service is unknown.
/// </summary>
RPC_S_UNKNOWN_AUTHN_SERVICE = 1747u,
/// <summary>
/// The authentication level is unknown.
/// </summary>
RPC_S_UNKNOWN_AUTHN_LEVEL = 1748u,
/// <summary>
/// The security context is invalid.
/// </summary>
RPC_S_INVALID_AUTH_IDENTITY = 1749u,
/// <summary>
/// The authorization service is unknown.
/// </summary>
RPC_S_UNKNOWN_AUTHZ_SERVICE = 1750u,
/// <summary>
/// The entry is invalid.
/// </summary>
EPT_S_INVALID_ENTRY = 1751u,
/// <summary>
/// The server endpoint cannot perform the operation.
/// </summary>
EPT_S_CANT_PERFORM_OP = 1752u,
/// <summary>
/// There are no more endpoints available from the endpoint mapper.
/// </summary>
EPT_S_NOT_REGISTERED = 1753u,
/// <summary>
/// No interfaces have been exported.
/// </summary>
RPC_S_NOTHING_TO_EXPORT = 1754u,
/// <summary>
/// The entry name is incomplete.
/// </summary>
RPC_S_INCOMPLETE_NAME = 1755u,
/// <summary>
/// The version option is invalid.
/// </summary>
RPC_S_INVALID_VERS_OPTION = 1756u,
/// <summary>
/// There are no more members.
/// </summary>
RPC_S_NO_MORE_MEMBERS = 1757u,
/// <summary>
/// There is nothing to unexport.
/// </summary>
RPC_S_NOT_ALL_OBJS_UNEXPORTED = 1758u,
/// <summary>
/// The interface was not found.
/// </summary>
RPC_S_INTERFACE_NOT_FOUND = 1759u,
/// <summary>
/// The entry already exists.
/// </summary>
RPC_S_ENTRY_ALREADY_EXISTS = 1760u,
/// <summary>
/// The entry is not found.
/// </summary>
RPC_S_ENTRY_NOT_FOUND = 1761u,
/// <summary>
/// The name service is unavailable.
/// </summary>
RPC_S_NAME_SERVICE_UNAVAILABLE = 1762u,
/// <summary>
/// The network address family is invalid.
/// </summary>
RPC_S_INVALID_NAF_ID = 1763u,
/// <summary>
/// The requested operation is not supported.
/// </summary>
RPC_S_CANNOT_SUPPORT = 1764u,
/// <summary>
/// No security context is available to allow impersonation.
/// </summary>
RPC_S_NO_CONTEXT_AVAILABLE = 1765u,
/// <summary>
/// An internal error occurred in a remote procedure call (RPC).
/// </summary>
RPC_S_INTERNAL_ERROR = 1766u,
/// <summary>
/// The RPC server attempted an integer division by zero.
/// </summary>
RPC_S_ZERO_DIVIDE = 1767u,
/// <summary>
/// An addressing error occurred in the RPC server.
/// </summary>
RPC_S_ADDRESS_ERROR = 1768u,
/// <summary>
/// A floating-point operation at the RPC server caused a division by zero.
/// </summary>
RPC_S_FP_DIV_ZERO = 1769u,
/// <summary>
/// A floating-point underflow occurred at the RPC server.
/// </summary>
RPC_S_FP_UNDERFLOW = 1770u,
/// <summary>
/// A floating-point overflow occurred at the RPC server.
/// </summary>
RPC_S_FP_OVERFLOW = 1771u,
/// <summary>
/// The list of RPC servers available for the binding of auto handles has been exhausted.
/// </summary>
RPC_X_NO_MORE_ENTRIES = 1772u,
/// <summary>
/// Unable to open the character translation table file.
/// </summary>
RPC_X_SS_CHAR_TRANS_OPEN_FAIL = 1773u,
/// <summary>
/// The file containing the character translation table has fewer than 512 bytes.
/// </summary>
RPC_X_SS_CHAR_TRANS_SHORT_FILE = 1774u,
/// <summary>
/// A null context handle was passed from the client to the host during a remote procedure call.
/// </summary>
RPC_X_SS_IN_NULL_CONTEXT = 1775u,
/// <summary>
/// The context handle changed during a remote procedure call.
/// </summary>
RPC_X_SS_CONTEXT_DAMAGED = 1777u,
/// <summary>
/// The binding handles passed to a remote procedure call do not match.
/// </summary>
RPC_X_SS_HANDLES_MISMATCH = 1778u,
/// <summary>
/// The stub is unable to get the remote procedure call handle.
/// </summary>
RPC_X_SS_CANNOT_GET_CALL_HANDLE = 1779u,
/// <summary>
/// A null reference pointer was passed to the stub.
/// </summary>
RPC_X_NULL_REF_POINTER = 1780u,
/// <summary>
/// The enumeration value is out of range.
/// </summary>
RPC_X_ENUM_VALUE_OUT_OF_RANGE = 1781u,
/// <summary>
/// The byte count is too small.
/// </summary>
RPC_X_BYTE_COUNT_TOO_SMALL = 1782u,
/// <summary>
/// The stub received bad data.
/// </summary>
RPC_X_BAD_STUB_DATA = 1783u,
/// <summary>
/// The supplied user buffer is not valid for the requested operation.
/// </summary>
INVALID_USER_BUFFER = 1784u,
/// <summary>
/// The disk media is not recognized. It may not be formatted.
/// </summary>
UNRECOGNIZED_MEDIA = 1785u,
/// <summary>
/// The workstation does not have a trust secret.
/// </summary>
NO_TRUST_LSA_SECRET = 1786u,
/// <summary>
/// The security database on the server does not have a computer account for this workstation trust relationship.
/// </summary>
NO_TRUST_SAM_ACCOUNT = 1787u,
/// <summary>
/// The trust relationship between the primary domain and the trusted domain failed.
/// </summary>
TRUSTED_DOMAIN_FAILURE = 1788u,
/// <summary>
/// The trust relationship between this workstation and the primary domain failed.
/// </summary>
TRUSTED_RELATIONSHIP_FAILURE = 1789u,
/// <summary>
/// The network logon failed.
/// </summary>
TRUST_FAILURE = 1790u,
/// <summary>
/// A remote procedure call is already in progress for this thread.
/// </summary>
RPC_S_CALL_IN_PROGRESS = 1791u,
/// <summary>
/// An attempt was made to logon, but the network logon service was not started.
/// </summary>
NETLOGON_NOT_STARTED = 1792u,
/// <summary>
/// The user's account has expired.
/// </summary>
ACCOUNT_EXPIRED = 1793u,
/// <summary>
/// The redirector is in use and cannot be unloaded.
/// </summary>
REDIRECTOR_HAS_OPEN_HANDLES = 1794u,
/// <summary>
/// The specified printer driver is already installed.
/// </summary>
PRINTER_DRIVER_ALREADY_INSTALLED = 1795u,
/// <summary>
/// The specified port is unknown.
/// </summary>
UNKNOWN_PORT = 1796u,
/// <summary>
/// The printer driver is unknown.
/// </summary>
UNKNOWN_PRINTER_DRIVER = 1797u,
/// <summary>
/// The print processor is unknown.
/// </summary>
UNKNOWN_PRINTPROCESSOR = 1798u,
/// <summary>
/// The specified separator file is invalid.
/// </summary>
INVALID_SEPARATOR_FILE = 1799u,
/// <summary>
/// The specified priority is invalid.
/// </summary>
INVALID_PRIORITY = 1800u,
/// <summary>
/// The printer name is invalid.
/// </summary>
INVALID_PRINTER_NAME = 1801u,
/// <summary>
/// The printer already exists.
/// </summary>
PRINTER_ALREADY_EXISTS = 1802u,
/// <summary>
/// The printer command is invalid.
/// </summary>
INVALID_PRINTER_COMMAND = 1803u,
/// <summary>
/// The specified datatype is invalid.
/// </summary>
INVALID_DATATYPE = 1804u,
/// <summary>
/// The environment specified is invalid.
/// </summary>
INVALID_ENVIRONMENT = 1805u,
/// <summary>
/// There are no more bindings.
/// </summary>
RPC_S_NO_MORE_BINDINGS = 1806u,
/// <summary>
/// The account used is an interdomain trust account. Use your global user account or local user account to access this server.
/// </summary>
NOLOGON_INTERDOMAIN_TRUST_ACCOUNT = 1807u,
/// <summary>
/// The account used is a computer account. Use your global user account or local user account to access this server.
/// </summary>
NOLOGON_WORKSTATION_TRUST_ACCOUNT = 1808u,
/// <summary>
/// The account used is a server trust account. Use your global user account or local user account to access this server.
/// </summary>
NOLOGON_SERVER_TRUST_ACCOUNT = 1809u,
/// <summary>
/// The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain.
/// </summary>
DOMAIN_TRUST_INCONSISTENT = 1810u,
/// <summary>
/// The server is in use and cannot be unloaded.
/// </summary>
SERVER_HAS_OPEN_HANDLES = 1811u,
/// <summary>
/// The specified image file did not contain a resource section.
/// </summary>
RESOURCE_DATA_NOT_FOUND = 1812u,
/// <summary>
/// The specified resource type cannot be found in the image file.
/// </summary>
RESOURCE_TYPE_NOT_FOUND = 1813u,
/// <summary>
/// The specified resource name cannot be found in the image file.
/// </summary>
RESOURCE_NAME_NOT_FOUND = 1814u,
/// <summary>
/// The specified resource language ID cannot be found in the image file.
/// </summary>
RESOURCE_LANG_NOT_FOUND = 1815u,
/// <summary>
/// Not enough quota is available to process this command.
/// </summary>
NOT_ENOUGH_QUOTA = 1816u,
/// <summary>
/// No interfaces have been registered.
/// </summary>
RPC_S_NO_INTERFACES = 1817u,
/// <summary>
/// The remote procedure call was cancelled.
/// </summary>
RPC_S_CALL_CANCELLED = 1818u,
/// <summary>
/// The binding handle does not contain all required information.
/// </summary>
RPC_S_BINDING_INCOMPLETE = 1819u,
/// <summary>
/// A communications failure occurred during a remote procedure call.
/// </summary>
RPC_S_COMM_FAILURE = 1820u,
/// <summary>
/// The requested authentication level is not supported.
/// </summary>
RPC_S_UNSUPPORTED_AUTHN_LEVEL = 1821u,
/// <summary>
/// No principal name registered.
/// </summary>
RPC_S_NO_PRINC_NAME = 1822u,
/// <summary>
/// The error specified is not a valid Windows RPC error code.
/// </summary>
RPC_S_NOT_RPC_ERROR = 1823u,
/// <summary>
/// A UUID that is valid only on this computer has been allocated.
/// </summary>
RPC_S_UUID_LOCAL_ONLY = 1824u,
/// <summary>
/// A security package specific error occurred.
/// </summary>
RPC_S_SEC_PKG_ERROR = 1825u,
/// <summary>
/// Thread is not canceled.
/// </summary>
RPC_S_NOT_CANCELLED = 1826u,
/// <summary>
/// Invalid operation on the encoding/decoding handle.
/// </summary>
RPC_X_INVALID_ES_ACTION = 1827u,
/// <summary>
/// Incompatible version of the serializing package.
/// </summary>
RPC_X_WRONG_ES_VERSION = 1828u,
/// <summary>
/// Incompatible version of the RPC stub.
/// </summary>
RPC_X_WRONG_STUB_VERSION = 1829u,
/// <summary>
/// The RPC pipe object is invalid or corrupted.
/// </summary>
RPC_X_INVALID_PIPE_OBJECT = 1830u,
/// <summary>
/// An invalid operation was attempted on an RPC pipe object.
/// </summary>
RPC_X_WRONG_PIPE_ORDER = 1831u,
/// <summary>
/// Unsupported RPC pipe version.
/// </summary>
RPC_X_WRONG_PIPE_VERSION = 1832u,
/// <summary>
/// HTTP proxy server rejected the connection because the cookie authentication failed.
/// </summary>
RPC_S_COOKIE_AUTH_FAILED = 1833u,
/// <summary>
/// The RPC server is suspended, and could not be resumed for this request. The call did not execute.
/// </summary>
RPC_S_DO_NOT_DISTURB = 1834u,
/// <summary>
/// The RPC call contains too many handles to be transmitted in a single request.
/// </summary>
RPC_S_SYSTEM_HANDLE_COUNT_EXCEEDED = 1835u,
/// <summary>
/// The RPC call contains a handle that differs from the declared handle type.
/// </summary>
RPC_S_SYSTEM_HANDLE_TYPE_MISMATCH = 1836u,
/// <summary>
/// The group member was not found.
/// </summary>
RPC_S_GROUP_MEMBER_NOT_FOUND = 1898u,
/// <summary>
/// The endpoint mapper database entry could not be created.
/// </summary>
EPT_S_CANT_CREATE = 1899u,
/// <summary>
/// The object universal unique identifier (UUID) is the nil UUID.
/// </summary>
RPC_S_INVALID_OBJECT = 1900u,
/// <summary>
/// The specified time is invalid.
/// </summary>
INVALID_TIME = 1901u,
/// <summary>
/// The specified form name is invalid.
/// </summary>
INVALID_FORM_NAME = 1902u,
/// <summary>
/// The specified form size is invalid.
/// </summary>
INVALID_FORM_SIZE = 1903u,
/// <summary>
/// The specified printer handle is already being waited on
/// </summary>
ALREADY_WAITING = 1904u,
/// <summary>
/// The specified printer has been deleted.
/// </summary>
PRINTER_DELETED = 1905u,
/// <summary>
/// The state of the printer is invalid.
/// </summary>
INVALID_PRINTER_STATE = 1906u,
/// <summary>
/// The user's password must be changed before signing in.
/// </summary>
PASSWORD_MUST_CHANGE = 1907u,
/// <summary>
/// Could not find the domain controller for this domain.
/// </summary>
DOMAIN_CONTROLLER_NOT_FOUND = 1908u,
/// <summary>
/// The referenced account is currently locked out and may not be logged on to.
/// </summary>
ACCOUNT_LOCKED_OUT = 1909u,
/// <summary>
/// The object exporter specified was not found.
/// </summary>
OR_INVALID_OXID = 1910u,
/// <summary>
/// The object specified was not found.
/// </summary>
OR_INVALID_OID = 1911u,
/// <summary>
/// The object resolver set specified was not found.
/// </summary>
OR_INVALID_SET = 1912u,
/// <summary>
/// Some data remains to be sent in the request buffer.
/// </summary>
RPC_S_SEND_INCOMPLETE = 1913u,
/// <summary>
/// Invalid asynchronous remote procedure call handle.
/// </summary>
RPC_S_INVALID_ASYNC_HANDLE = 1914u,
/// <summary>
/// Invalid asynchronous RPC call handle for this operation.
/// </summary>
RPC_S_INVALID_ASYNC_CALL = 1915u,
/// <summary>
/// The RPC pipe object has already been closed.
/// </summary>
RPC_X_PIPE_CLOSED = 1916u,
/// <summary>
/// The RPC call completed before all pipes were processed.
/// </summary>
RPC_X_PIPE_DISCIPLINE_ERROR = 1917u,
/// <summary>
/// No more data is available from the RPC pipe.
/// </summary>
RPC_X_PIPE_EMPTY = 1918u,
/// <summary>
/// No site name is available for this machine.
/// </summary>
NO_SITENAME = 1919u,
/// <summary>
/// The file cannot be accessed by the system.
/// </summary>
CANT_ACCESS_FILE = 1920u,
/// <summary>
/// The name of the file cannot be resolved by the system.
/// </summary>
CANT_RESOLVE_FILENAME = 1921u,
/// <summary>
/// The entry is not of the expected type.
/// </summary>
RPC_S_ENTRY_TYPE_MISMATCH = 1922u,
/// <summary>
/// Not all object UUIDs could be exported to the specified entry.
/// </summary>
RPC_S_NOT_ALL_OBJS_EXPORTED = 1923u,
/// <summary>
/// Interface could not be exported to the specified entry.
/// </summary>
RPC_S_INTERFACE_NOT_EXPORTED = 1924u,
/// <summary>
/// The specified profile entry could not be added.
/// </summary>
RPC_S_PROFILE_NOT_ADDED = 1925u,
/// <summary>
/// The specified profile element could not be added.
/// </summary>
RPC_S_PRF_ELT_NOT_ADDED = 1926u,
/// <summary>
/// The specified profile element could not be removed.
/// </summary>
RPC_S_PRF_ELT_NOT_REMOVED = 1927u,
/// <summary>
/// The group element could not be added.
/// </summary>
RPC_S_GRP_ELT_NOT_ADDED = 1928u,
/// <summary>
/// The group element could not be removed.
/// </summary>
RPC_S_GRP_ELT_NOT_REMOVED = 1929u,
/// <summary>
/// The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers.
/// </summary>
KM_DRIVER_BLOCKED = 1930u,
/// <summary>
/// The context has expired and can no longer be used.
/// </summary>
CONTEXT_EXPIRED = 1931u,
/// <summary>
/// The current user's delegated trust creation quota has been exceeded.
/// </summary>
PER_USER_TRUST_QUOTA_EXCEEDED = 1932u,
/// <summary>
/// The total delegated trust creation quota has been exceeded.
/// </summary>
ALL_USER_TRUST_QUOTA_EXCEEDED = 1933u,
/// <summary>
/// The current user's delegated trust deletion quota has been exceeded.
/// </summary>
USER_DELETE_TRUST_QUOTA_EXCEEDED = 1934u,
/// <summary>
/// The computer you are signing into is protected by an authentication firewall. The specified account is not allowed to authenticate to the computer.
/// </summary>
AUTHENTICATION_FIREWALL_FAILED = 1935u,
/// <summary>
/// Remote connections to the Print Spooler are blocked by a policy set on your machine.
/// </summary>
REMOTE_PRINT_CONNECTIONS_BLOCKED = 1936u,
/// <summary>
/// Authentication failed because NTLM authentication has been disabled.
/// </summary>
NTLM_BLOCKED = 1937u,
/// <summary>
/// Logon Failure: EAS policy requires that the user change their password before this operation can be performed.
/// </summary>
PASSWORD_CHANGE_REQUIRED = 1938u,
/// <summary>
/// An administrator has restricted sign in. To sign in, make sure your device is connected to the Internet, and have your administrator sign in first.
/// </summary>
LOST_MODE_LOGON_RESTRICTION = 1939u,
/// <summary>
/// The pixel format is invalid.
/// </summary>
INVALID_PIXEL_FORMAT = 2000u,
/// <summary>
/// The specified driver is invalid.
/// </summary>
BAD_DRIVER = 2001u,
/// <summary>
/// The window style or class attribute is invalid for this operation.
/// </summary>
INVALID_WINDOW_STYLE = 2002u,
/// <summary>
/// The requested metafile operation is not supported.
/// </summary>
METAFILE_NOT_SUPPORTED = 2003u,
/// <summary>
/// The requested transformation operation is not supported.
/// </summary>
TRANSFORM_NOT_SUPPORTED = 2004u,
/// <summary>
/// The requested clipping operation is not supported.
/// </summary>
CLIPPING_NOT_SUPPORTED = 2005u,
/// <summary>
/// The specified color management module is invalid.
/// </summary>
INVALID_CMM = 2010u,
/// <summary>
/// The specified color profile is invalid.
/// </summary>
INVALID_PROFILE = 2011u,
/// <summary>
/// The specified tag was not found.
/// </summary>
TAG_NOT_FOUND = 2012u,
/// <summary>
/// A required tag is not present.
/// </summary>
TAG_NOT_PRESENT = 2013u,
/// <summary>
/// The specified tag is already present.
/// </summary>
DUPLICATE_TAG = 2014u,
/// <summary>
/// The specified color profile is not associated with the specified device.
/// </summary>
PROFILE_NOT_ASSOCIATED_WITH_DEVICE = 2015u,
/// <summary>
/// The specified color profile was not found.
/// </summary>
PROFILE_NOT_FOUND = 2016u,
/// <summary>
/// The specified color space is invalid.
/// </summary>
INVALID_COLORSPACE = 2017u,
/// <summary>
/// Image Color Management is not enabled.
/// </summary>
ICM_NOT_ENABLED = 2018u,
/// <summary>
/// There was an error while deleting the color transform.
/// </summary>
DELETING_ICM_XFORM = 2019u,
/// <summary>
/// The specified color transform is invalid.
/// </summary>
INVALID_TRANSFORM = 2020u,
/// <summary>
/// The specified transform does not match the bitmap's color space.
/// </summary>
COLORSPACE_MISMATCH = 2021u,
/// <summary>
/// The specified named color index is not present in the profile.
/// </summary>
INVALID_COLORINDEX = 2022u,
/// <summary>
/// The specified profile is intended for a device of a different type than the specified device.
/// </summary>
PROFILE_DOES_NOT_MATCH_DEVICE = 2023u,
/// <summary>
/// The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified.
/// </summary>
CONNECTED_OTHER_PASSWORD = 2108u,
/// <summary>
/// The network connection was made successfully using default credentials.
/// </summary>
CONNECTED_OTHER_PASSWORD_DEFAULT = 2109u,
/// <summary>
/// The specified username is invalid.
/// </summary>
BAD_USERNAME = 2202u,
/// <summary>
/// This network connection does not exist.
/// </summary>
NOT_CONNECTED = 2250u,
/// <summary>
/// This network connection has files open or requests pending.
/// </summary>
OPEN_FILES = 2401u,
/// <summary>
/// Active connections still exist.
/// </summary>
ACTIVE_CONNECTIONS = 2402u,
/// <summary>
/// The device is in use by an active process and cannot be disconnected.
/// </summary>
DEVICE_IN_USE = 2404u,
/// <summary>
/// The specified print monitor is unknown.
/// </summary>
UNKNOWN_PRINT_MONITOR = 3000u,
/// <summary>
/// The specified printer driver is currently in use.
/// </summary>
PRINTER_DRIVER_IN_USE = 3001u,
/// <summary>
/// The spool file was not found.
/// </summary>
SPOOL_FILE_NOT_FOUND = 3002u,
/// <summary>
/// A StartDocPrinter call was not issued.
/// </summary>
SPL_NO_STARTDOC = 3003u,
/// <summary>
/// An AddJob call was not issued.
/// </summary>
SPL_NO_ADDJOB = 3004u,
/// <summary>
/// The specified print processor has already been installed.
/// </summary>
PRINT_PROCESSOR_ALREADY_INSTALLED = 3005u,
/// <summary>
/// The specified print monitor has already been installed.
/// </summary>
PRINT_MONITOR_ALREADY_INSTALLED = 3006u,
/// <summary>
/// The specified print monitor does not have the required functions.
/// </summary>
INVALID_PRINT_MONITOR = 3007u,
/// <summary>
/// The specified print monitor is currently in use.
/// </summary>
PRINT_MONITOR_IN_USE = 3008u,
/// <summary>
/// The requested operation is not allowed when there are jobs queued to the printer.
/// </summary>
PRINTER_HAS_JOBS_QUEUED = 3009u,
/// <summary>
/// The requested operation is successful. Changes will not be effective until the system is rebooted.
/// </summary>
SUCCESS_REBOOT_REQUIRED = 3010u,
/// <summary>
/// The requested operation is successful. Changes will not be effective until the service is restarted.
/// </summary>
SUCCESS_RESTART_REQUIRED = 3011u,
/// <summary>
/// No printers were found.
/// </summary>
PRINTER_NOT_FOUND = 3012u,
/// <summary>
/// The printer driver is known to be unreliable.
/// </summary>
PRINTER_DRIVER_WARNED = 3013u,
/// <summary>
/// The printer driver is known to harm the system.
/// </summary>
PRINTER_DRIVER_BLOCKED = 3014u,
/// <summary>
/// The specified printer driver package is currently in use.
/// </summary>
PRINTER_DRIVER_PACKAGE_IN_USE = 3015u,
/// <summary>
/// Unable to find a core driver package that is required by the printer driver package.
/// </summary>
CORE_DRIVER_PACKAGE_NOT_FOUND = 3016u,
/// <summary>
/// The requested operation failed. A system reboot is required to roll back changes made.
/// </summary>
FAIL_REBOOT_REQUIRED = 3017u,
/// <summary>
/// The requested operation failed. A system reboot has been initiated to roll back changes made.
/// </summary>
FAIL_REBOOT_INITIATED = 3018u,
/// <summary>
/// The specified printer driver was not found on the system and needs to be downloaded.
/// </summary>
PRINTER_DRIVER_DOWNLOAD_NEEDED = 3019u,
/// <summary>
/// The requested print job has failed to print. A print system update requires the job to be resubmitted.
/// </summary>
PRINT_JOB_RESTART_REQUIRED = 3020u,
/// <summary>
/// The printer driver does not contain a valid manifest, or contains too many manifests.
/// </summary>
INVALID_PRINTER_DRIVER_MANIFEST = 3021u,
/// <summary>
/// The specified printer cannot be shared.
/// </summary>
PRINTER_NOT_SHAREABLE = 3022u,
/// <summary>
/// The operation was paused.
/// </summary>
REQUEST_PAUSED = 3050u,
/// <summary>
/// The condition supplied for the app execution request was not satisfied, so the request was not performed.
/// </summary>
APPEXEC_CONDITION_NOT_SATISFIED = 3060u,
/// <summary>
/// The supplied handle has been invalidated and may not be used for the requested operation.
/// </summary>
APPEXEC_HANDLE_INVALIDATED = 3061u,
/// <summary>
/// The supplied host generation has been invalidated and may not be used for the requested operation.
/// </summary>
APPEXEC_INVALID_HOST_GENERATION = 3062u,
/// <summary>
/// An attempt to register a process failed because the target host was not in a valid state to receive process registrations.
/// </summary>
APPEXEC_UNEXPECTED_PROCESS_REGISTRATION = 3063u,
/// <summary>
/// The host is not in a valid state to support the execution request.
/// </summary>
APPEXEC_INVALID_HOST_STATE = 3064u,
/// <summary>
/// The operation was not completed because a required resource donor was not found for the host.
/// </summary>
APPEXEC_NO_DONOR = 3065u,
/// <summary>
/// The operation was not completed because an unexpected host ID was encountered.
/// </summary>
APPEXEC_HOST_ID_MISMATCH = 3066u,
/// <summary>
/// The operation was not completed because the specified user was not known to the service.
/// </summary>
APPEXEC_UNKNOWN_USER = 3067u,
/// <summary>
/// Reissue the given operation as a cached IO operation
/// </summary>
IO_REISSUE_AS_CACHED = 3950u,
/// <summary>
/// WINS encountered an error while processing the command.
/// </summary>
WINS_INTERNAL = 4000u,
/// <summary>
/// The local WINS cannot be deleted.
/// </summary>
CAN_NOT_DEL_LOCAL_WINS = 4001u,
/// <summary>
/// The importation from the file failed.
/// </summary>
STATIC_INIT = 4002u,
/// <summary>
/// The backup failed. Was a full backup done before?
/// </summary>
INC_BACKUP = 4003u,
/// <summary>
/// The backup failed. Check the directory to which you are backing the database.
/// </summary>
FULL_BACKUP = 4004u,
/// <summary>
/// The name does not exist in the WINS database.
/// </summary>
REC_NON_EXISTENT = 4005u,
/// <summary>
/// Replication with a nonconfigured partner is not allowed.
/// </summary>
RPL_NOT_ALLOWED = 4006u,
/// <summary>
/// The version of the supplied content information is not supported.
/// </summary>
PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED = 4050u,
/// <summary>
/// The supplied content information is malformed.
/// </summary>
PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO = 4051u,
/// <summary>
/// The requested data cannot be found in local or peer caches.
/// </summary>
PEERDIST_ERROR_MISSING_DATA = 4052u,
/// <summary>
/// No more data is available or required.
/// </summary>
PEERDIST_ERROR_NO_MORE = 4053u,
/// <summary>
/// The supplied object has not been initialized.
/// </summary>
PEERDIST_ERROR_NOT_INITIALIZED = 4054u,
/// <summary>
/// The supplied object has already been initialized.
/// </summary>
PEERDIST_ERROR_ALREADY_INITIALIZED = 4055u,
/// <summary>
/// A shutdown operation is already in progress.
/// </summary>
PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS = 4056u,
/// <summary>
/// The supplied object has already been invalidated.
/// </summary>
PEERDIST_ERROR_INVALIDATED = 4057u,
/// <summary>
/// An element already exists and was not replaced.
/// </summary>
PEERDIST_ERROR_ALREADY_EXISTS = 4058u,
/// <summary>
/// Can not cancel the requested operation as it has already been completed.
/// </summary>
PEERDIST_ERROR_OPERATION_NOTFOUND = 4059u,
/// <summary>
/// Can not perform the requested operation because it has already been carried out.
/// </summary>
PEERDIST_ERROR_ALREADY_COMPLETED = 4060u,
/// <summary>
/// An operation accessed data beyond the bounds of valid data.
/// </summary>
PEERDIST_ERROR_OUT_OF_BOUNDS = 4061u,
/// <summary>
/// The requested version is not supported.
/// </summary>
PEERDIST_ERROR_VERSION_UNSUPPORTED = 4062u,
/// <summary>
/// A configuration value is invalid.
/// </summary>
PEERDIST_ERROR_INVALID_CONFIGURATION = 4063u,
/// <summary>
/// The SKU is not licensed.
/// </summary>
PEERDIST_ERROR_NOT_LICENSED = 4064u,
/// <summary>
/// PeerDist Service is still initializing and will be available shortly.
/// </summary>
PEERDIST_ERROR_SERVICE_UNAVAILABLE = 4065u,
/// <summary>
/// Communication with one or more computers will be temporarily blocked due to recent errors.
/// </summary>
PEERDIST_ERROR_TRUST_FAILURE = 4066u,
/// <summary>
/// The DHCP client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address.
/// </summary>
DHCP_ADDRESS_CONFLICT = 4100u,
/// <summary>
/// The GUID passed was not recognized as valid by a WMI data provider.
/// </summary>
WMI_GUID_NOT_FOUND = 4200u,
/// <summary>
/// The instance name passed was not recognized as valid by a WMI data provider.
/// </summary>
WMI_INSTANCE_NOT_FOUND = 4201u,
/// <summary>
/// The data item ID passed was not recognized as valid by a WMI data provider.
/// </summary>
WMI_ITEMID_NOT_FOUND = 4202u,
/// <summary>
/// The WMI request could not be completed and should be retried.
/// </summary>
WMI_TRY_AGAIN = 4203u,
/// <summary>
/// The WMI data provider could not be located.
/// </summary>
WMI_DP_NOT_FOUND = 4204u,
/// <summary>
/// The WMI data provider references an instance set that has not been registered.
/// </summary>
WMI_UNRESOLVED_INSTANCE_REF = 4205u,
/// <summary>
/// The WMI data block or event notification has already been enabled.
/// </summary>
WMI_ALREADY_ENABLED = 4206u,
/// <summary>
/// The WMI data block is no longer available.
/// </summary>
WMI_GUID_DISCONNECTED = 4207u,
/// <summary>
/// The WMI data service is not available.
/// </summary>
WMI_SERVER_UNAVAILABLE = 4208u,
/// <summary>
/// The WMI data provider failed to carry out the request.
/// </summary>
WMI_DP_FAILED = 4209u,
/// <summary>
/// The WMI MOF information is not valid.
/// </summary>
WMI_INVALID_MOF = 4210u,
/// <summary>
/// The WMI registration information is not valid.
/// </summary>
WMI_INVALID_REGINFO = 4211u,
/// <summary>
/// The WMI data block or event notification has already been disabled.
/// </summary>
WMI_ALREADY_DISABLED = 4212u,
/// <summary>
/// The WMI data item or data block is read only.
/// </summary>
WMI_READ_ONLY = 4213u,
/// <summary>
/// The WMI data item or data block could not be changed.
/// </summary>
WMI_SET_FAILURE = 4214u,
/// <summary>
/// This operation is only valid in the context of an app container.
/// </summary>
NOT_APPCONTAINER = 4250u,
/// <summary>
/// This application can only run in the context of an app container.
/// </summary>
APPCONTAINER_REQUIRED = 4251u,
/// <summary>
/// This functionality is not supported in the context of an app container.
/// </summary>
NOT_SUPPORTED_IN_APPCONTAINER = 4252u,
/// <summary>
/// The length of the SID supplied is not a valid length for app container SIDs.
/// </summary>
INVALID_PACKAGE_SID_LENGTH = 4253u,
/// <summary>
/// The media identifier does not represent a valid medium.
/// </summary>
INVALID_MEDIA = 4300u,
/// <summary>
/// The library identifier does not represent a valid library.
/// </summary>
INVALID_LIBRARY = 4301u,
/// <summary>
/// The media pool identifier does not represent a valid media pool.
/// </summary>
INVALID_MEDIA_POOL = 4302u,
/// <summary>
/// The drive and medium are not compatible or exist in different libraries.
/// </summary>
DRIVE_MEDIA_MISMATCH = 4303u,
/// <summary>
/// The medium currently exists in an offline library and must be online to perform this operation.
/// </summary>
MEDIA_OFFLINE = 4304u,
/// <summary>
/// The operation cannot be performed on an offline library.
/// </summary>
LIBRARY_OFFLINE = 4305u,
/// <summary>
/// The library, drive, or media pool is empty.
/// </summary>
EMPTY = 4306u,
/// <summary>
/// The library, drive, or media pool must be empty to perform this operation.
/// </summary>
NOT_EMPTY = 4307u,
/// <summary>
/// No media is currently available in this media pool or library.
/// </summary>
MEDIA_UNAVAILABLE = 4308u,
/// <summary>
/// A resource required for this operation is disabled.
/// </summary>
RESOURCE_DISABLED = 4309u,
/// <summary>
/// The media identifier does not represent a valid cleaner.
/// </summary>
INVALID_CLEANER = 4310u,
/// <summary>
/// The drive cannot be cleaned or does not support cleaning.
/// </summary>
UNABLE_TO_CLEAN = 4311u,
/// <summary>
/// The object identifier does not represent a valid object.
/// </summary>
OBJECT_NOT_FOUND = 4312u,
/// <summary>
/// Unable to read from or write to the database.
/// </summary>
DATABASE_FAILURE = 4313u,
/// <summary>
/// The database is full.
/// </summary>
DATABASE_FULL = 4314u,
/// <summary>
/// The medium is not compatible with the device or media pool.
/// </summary>
MEDIA_INCOMPATIBLE = 4315u,
/// <summary>
/// The resource required for this operation does not exist.
/// </summary>
RESOURCE_NOT_PRESENT = 4316u,
/// <summary>
/// The operation identifier is not valid.
/// </summary>
INVALID_OPERATION = 4317u,
/// <summary>
/// The media is not mounted or ready for use.
/// </summary>
MEDIA_NOT_AVAILABLE = 4318u,
/// <summary>
/// The device is not ready for use.
/// </summary>
DEVICE_NOT_AVAILABLE = 4319u,
/// <summary>
/// The operator or administrator has refused the request.
/// </summary>
REQUEST_REFUSED = 4320u,
/// <summary>
/// The drive identifier does not represent a valid drive.
/// </summary>
INVALID_DRIVE_OBJECT = 4321u,
/// <summary>
/// Library is full. No slot is available for use.
/// </summary>
LIBRARY_FULL = 4322u,
/// <summary>
/// The transport cannot access the medium.
/// </summary>
MEDIUM_NOT_ACCESSIBLE = 4323u,
/// <summary>
/// Unable to load the medium into the drive.
/// </summary>
UNABLE_TO_LOAD_MEDIUM = 4324u,
/// <summary>
/// Unable to retrieve the drive status.
/// </summary>
UNABLE_TO_INVENTORY_DRIVE = 4325u,
/// <summary>
/// Unable to retrieve the slot status.
/// </summary>
UNABLE_TO_INVENTORY_SLOT = 4326u,
/// <summary>
/// Unable to retrieve status about the transport.
/// </summary>
UNABLE_TO_INVENTORY_TRANSPORT = 4327u,
/// <summary>
/// Cannot use the transport because it is already in use.
/// </summary>
TRANSPORT_FULL = 4328u,
/// <summary>
/// Unable to open or close the inject/eject port.
/// </summary>
CONTROLLING_IEPORT = 4329u,
/// <summary>
/// Unable to eject the medium because it is in a drive.
/// </summary>
UNABLE_TO_EJECT_MOUNTED_MEDIA = 4330u,
/// <summary>
/// A cleaner slot is already reserved.
/// </summary>
CLEANER_SLOT_SET = 4331u,
/// <summary>
/// A cleaner slot is not reserved.
/// </summary>
CLEANER_SLOT_NOT_SET = 4332u,
/// <summary>
/// The cleaner cartridge has performed the maximum number of drive cleanings.
/// </summary>
CLEANER_CARTRIDGE_SPENT = 4333u,
/// <summary>
/// Unexpected on-medium identifier.
/// </summary>
UNEXPECTED_OMID = 4334u,
/// <summary>
/// The last remaining item in this group or resource cannot be deleted.
/// </summary>
CANT_DELETE_LAST_ITEM = 4335u,
/// <summary>
/// The message provided exceeds the maximum size allowed for this parameter.
/// </summary>
MESSAGE_EXCEEDS_MAX_SIZE = 4336u,
/// <summary>
/// The volume contains system or paging files.
/// </summary>
VOLUME_CONTAINS_SYS_FILES = 4337u,
/// <summary>
/// The media type cannot be removed from this library since at least one drive in the library reports it can support this media type.
/// </summary>
INDIGENOUS_TYPE = 4338u,
/// <summary>
/// This offline media cannot be mounted on this system since no enabled drives are present which can be used.
/// </summary>
NO_SUPPORTING_DRIVES = 4339u,
/// <summary>
/// A cleaner cartridge is present in the tape library.
/// </summary>
CLEANER_CARTRIDGE_INSTALLED = 4340u,
/// <summary>
/// Cannot use the inject/eject port because it is not empty.
/// </summary>
IEPORT_FULL = 4341u,
/// <summary>
/// This file is currently not available for use on this computer.
/// </summary>
FILE_OFFLINE = 4350u,
/// <summary>
/// The remote storage service is not operational at this time.
/// </summary>
REMOTE_STORAGE_NOT_ACTIVE = 4351u,
/// <summary>
/// The remote storage service encountered a media error.
/// </summary>
REMOTE_STORAGE_MEDIA_ERROR = 4352u,
/// <summary>
/// The file or directory is not a reparse point.
/// </summary>
NOT_A_REPARSE_POINT = 4390u,
/// <summary>
/// The reparse point attribute cannot be set because it conflicts with an existing attribute.
/// </summary>
REPARSE_ATTRIBUTE_CONFLICT = 4391u,
/// <summary>
/// The data present in the reparse point buffer is invalid.
/// </summary>
INVALID_REPARSE_DATA = 4392u,
/// <summary>
/// The tag present in the reparse point buffer is invalid.
/// </summary>
REPARSE_TAG_INVALID = 4393u,
/// <summary>
/// There is a mismatch between the tag specified in the request and the tag present in the reparse point.
/// </summary>
REPARSE_TAG_MISMATCH = 4394u,
/// <summary>
/// The object manager encountered a reparse point while retrieving an object.
/// </summary>
REPARSE_POINT_ENCOUNTERED = 4395u,
/// <summary>
/// Fast Cache data not found.
/// </summary>
APP_DATA_NOT_FOUND = 4400u,
/// <summary>
/// Fast Cache data expired.
/// </summary>
APP_DATA_EXPIRED = 4401u,
/// <summary>
/// Fast Cache data corrupt.
/// </summary>
APP_DATA_CORRUPT = 4402u,
/// <summary>
/// Fast Cache data has exceeded its max size and cannot be updated.
/// </summary>
APP_DATA_LIMIT_EXCEEDED = 4403u,
/// <summary>
/// Fast Cache has been ReArmed and requires a reboot until it can be updated.
/// </summary>
APP_DATA_REBOOT_REQUIRED = 4404u,
/// <summary>
/// Secure Boot detected that rollback of protected data has been attempted.
/// </summary>
SECUREBOOT_ROLLBACK_DETECTED = 4420u,
/// <summary>
/// The value is protected by Secure Boot policy and cannot be modified or deleted.
/// </summary>
SECUREBOOT_POLICY_VIOLATION = 4421u,
/// <summary>
/// The Secure Boot policy is invalid.
/// </summary>
SECUREBOOT_INVALID_POLICY = 4422u,
/// <summary>
/// A new Secure Boot policy did not contain the current publisher on its update list.
/// </summary>
SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND = 4423u,
/// <summary>
/// The Secure Boot policy is either not signed or is signed by a non-trusted signer.
/// </summary>
SECUREBOOT_POLICY_NOT_SIGNED = 4424u,
/// <summary>
/// Secure Boot is not enabled on this machine.
/// </summary>
SECUREBOOT_NOT_ENABLED = 4425u,
/// <summary>
/// Secure Boot requires that certain files and drivers are not replaced by other files or drivers.
/// </summary>
SECUREBOOT_FILE_REPLACED = 4426u,
/// <summary>
/// The Secure Boot Supplemental Policy file was not authorized on this machine.
/// </summary>
SECUREBOOT_POLICY_NOT_AUTHORIZED = 4427u,
/// <summary>
/// The Supplemental Policy is not recognized on this device.
/// </summary>
SECUREBOOT_POLICY_UNKNOWN = 4428u,
/// <summary>
/// The Antirollback version was not found in the Secure Boot Policy.
/// </summary>
SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION = 4429u,
/// <summary>
/// The Platform ID specified in the Secure Boot policy does not match the Platform ID on this device.
/// </summary>
SECUREBOOT_PLATFORM_ID_MISMATCH = 4430u,
/// <summary>
/// The Secure Boot policy file has an older Antirollback Version than this device.
/// </summary>
SECUREBOOT_POLICY_ROLLBACK_DETECTED = 4431u,
/// <summary>
/// The Secure Boot policy file does not match the upgraded legacy policy.
/// </summary>
SECUREBOOT_POLICY_UPGRADE_MISMATCH = 4432u,
/// <summary>
/// The Secure Boot policy file is required but could not be found.
/// </summary>
SECUREBOOT_REQUIRED_POLICY_FILE_MISSING = 4433u,
/// <summary>
/// Supplemental Secure Boot policy file can not be loaded as a base Secure Boot policy.
/// </summary>
SECUREBOOT_NOT_BASE_POLICY = 4434u,
/// <summary>
/// Base Secure Boot policy file can not be loaded as a Supplemental Secure Boot policy.
/// </summary>
SECUREBOOT_NOT_SUPPLEMENTAL_POLICY = 4435u,
/// <summary>
/// The copy offload read operation is not supported by a filter.
/// </summary>
OFFLOAD_READ_FLT_NOT_SUPPORTED = 4440u,
/// <summary>
/// The copy offload write operation is not supported by a filter.
/// </summary>
OFFLOAD_WRITE_FLT_NOT_SUPPORTED = 4441u,
/// <summary>
/// The copy offload read operation is not supported for the file.
/// </summary>
OFFLOAD_READ_FILE_NOT_SUPPORTED = 4442u,
/// <summary>
/// The copy offload write operation is not supported for the file.
/// </summary>
OFFLOAD_WRITE_FILE_NOT_SUPPORTED = 4443u,
/// <summary>
/// This file is currently associated with a different stream id.
/// </summary>
ALREADY_HAS_STREAM_ID = 4444u,
/// <summary>
/// The volume must undergo garbage collection.
/// </summary>
SMR_GARBAGE_COLLECTION_REQUIRED = 4445u,
/// <summary>
/// The WOF driver encountered a corruption in WIM image's Header.
/// </summary>
WOF_WIM_HEADER_CORRUPT = 4446u,
/// <summary>
/// The WOF driver encountered a corruption in WIM image's Resource Table.
/// </summary>
WOF_WIM_RESOURCE_TABLE_CORRUPT = 4447u,
/// <summary>
/// The WOF driver encountered a corruption in the compressed file's Resource Table.
/// </summary>
WOF_FILE_RESOURCE_TABLE_CORRUPT = 4448u,
/// <summary>
/// Single Instance Storage is not available on this volume.
/// </summary>
VOLUME_NOT_SIS_ENABLED = 4500u,
/// <summary>
/// System Integrity detected that policy rollback has been attempted.
/// </summary>
SYSTEM_INTEGRITY_ROLLBACK_DETECTED = 4550u,
/// <summary>
/// Your organization used Device Guard to block this app. Contact your support person for more info.
/// </summary>
SYSTEM_INTEGRITY_POLICY_VIOLATION = 4551u,
/// <summary>
/// The System Integrity policy is invalid.
/// </summary>
SYSTEM_INTEGRITY_INVALID_POLICY = 4552u,
/// <summary>
/// The System Integrity policy is either not signed or is signed by a non-trusted signer.
/// </summary>
SYSTEM_INTEGRITY_POLICY_NOT_SIGNED = 4553u,
/// <summary>
/// Virtual Secure Mode (VSM) is not initialized. The hypervisor or VSM may not be present or enabled.
/// </summary>
VSM_NOT_INITIALIZED = 4560u,
/// <summary>
/// The hypervisor is not protecting DMA because an IOMMU is not present or not enabled in the BIOS.
/// </summary>
VSM_DMA_PROTECTION_NOT_IN_USE = 4561u,
/// <summary>
/// The Platform Manifest file was not authorized on this machine.
/// </summary>
PLATFORM_MANIFEST_NOT_AUTHORIZED = 4570u,
/// <summary>
/// The Platform Manifest file was not valid.
/// </summary>
PLATFORM_MANIFEST_INVALID = 4571u,
/// <summary>
/// The file is not authorized on this platform because an entry was not found in the Platform Manifest.
/// </summary>
PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED = 4572u,
/// <summary>
/// The catalog is not authorized on this platform because an entry was not found in the Platform Manifest.
/// </summary>
PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED = 4573u,
/// <summary>
/// The file is not authorized on this platform because a Binary ID was not found in the embedded signature.
/// </summary>
PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND = 4574u,
/// <summary>
/// No active Platform Manifest exists on this system.
/// </summary>
PLATFORM_MANIFEST_NOT_ACTIVE = 4575u,
/// <summary>
/// The Platform Manifest file was not properly signed.
/// </summary>
PLATFORM_MANIFEST_NOT_SIGNED = 4576u,
/// <summary>
/// The operation cannot be completed because other resources are dependent on this resource.
/// </summary>
DEPENDENT_RESOURCE_EXISTS = 5001u,
/// <summary>
/// The cluster resource dependency cannot be found.
/// </summary>
DEPENDENCY_NOT_FOUND = 5002u,
/// <summary>
/// The cluster resource cannot be made dependent on the specified resource because it is already dependent.
/// </summary>
DEPENDENCY_ALREADY_EXISTS = 5003u,
/// <summary>
/// The cluster resource is not online.
/// </summary>
RESOURCE_NOT_ONLINE = 5004u,
/// <summary>
/// A cluster node is not available for this operation.
/// </summary>
HOST_NODE_NOT_AVAILABLE = 5005u,
/// <summary>
/// The cluster resource is not available.
/// </summary>
RESOURCE_NOT_AVAILABLE = 5006u,
/// <summary>
/// The cluster resource could not be found.
/// </summary>
RESOURCE_NOT_FOUND = 5007u,
/// <summary>
/// The cluster is being shut down.
/// </summary>
SHUTDOWN_CLUSTER = 5008u,
/// <summary>
/// A cluster node cannot be evicted from the cluster unless the node is down or it is the last node.
/// </summary>
CANT_EVICT_ACTIVE_NODE = 5009u,
/// <summary>
/// The object already exists.
/// </summary>
OBJECT_ALREADY_EXISTS = 5010u,
/// <summary>
/// The object is already in the list.
/// </summary>
OBJECT_IN_LIST = 5011u,
/// <summary>
/// The cluster group is not available for any new requests.
/// </summary>
GROUP_NOT_AVAILABLE = 5012u,
/// <summary>
/// The cluster group could not be found.
/// </summary>
GROUP_NOT_FOUND = 5013u,
/// <summary>
/// The operation could not be completed because the cluster group is not online.
/// </summary>
GROUP_NOT_ONLINE = 5014u,
/// <summary>
/// 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.
/// </summary>
HOST_NODE_NOT_RESOURCE_OWNER = 5015u,
/// <summary>
/// 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.
/// </summary>
HOST_NODE_NOT_GROUP_OWNER = 5016u,
/// <summary>
/// The cluster resource could not be created in the specified resource monitor.
/// </summary>
RESMON_CREATE_FAILED = 5017u,
/// <summary>
/// The cluster resource could not be brought online by the resource monitor.
/// </summary>
RESMON_ONLINE_FAILED = 5018u,
/// <summary>
/// The operation could not be completed because the cluster resource is online.
/// </summary>
RESOURCE_ONLINE = 5019u,
/// <summary>
/// The cluster resource could not be deleted or brought offline because it is the quorum resource.
/// </summary>
QUORUM_RESOURCE = 5020u,
/// <summary>
/// The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource.
/// </summary>
NOT_QUORUM_CAPABLE = 5021u,
/// <summary>
/// The cluster software is shutting down.
/// </summary>
CLUSTER_SHUTTING_DOWN = 5022u,
/// <summary>
/// The group or resource is not in the correct state to perform the requested operation.
/// </summary>
INVALID_STATE = 5023u,
/// <summary>
/// The properties were stored but not all changes will take effect until the next time the resource is brought online.
/// </summary>
RESOURCE_PROPERTIES_STORED = 5024u,
/// <summary>
/// The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class.
/// </summary>
NOT_QUORUM_CLASS = 5025u,
/// <summary>
/// The cluster resource could not be deleted since it is a core resource.
/// </summary>
CORE_RESOURCE = 5026u,
/// <summary>
/// The quorum resource failed to come online.
/// </summary>
QUORUM_RESOURCE_ONLINE_FAILED = 5027u,
/// <summary>
/// The quorum log could not be created or mounted successfully.
/// </summary>
QUORUMLOG_OPEN_FAILED = 5028u,
/// <summary>
/// The cluster log is corrupt.
/// </summary>
CLUSTERLOG_CORRUPT = 5029u,
/// <summary>
/// The record could not be written to the cluster log since it exceeds the maximum size.
/// </summary>
CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE = 5030u,
/// <summary>
/// The cluster log exceeds its maximum size.
/// </summary>
CLUSTERLOG_EXCEEDS_MAXSIZE = 5031u,
/// <summary>
/// No checkpoint record was found in the cluster log.
/// </summary>
CLUSTERLOG_CHKPOINT_NOT_FOUND = 5032u,
/// <summary>
/// The minimum required disk space needed for logging is not available.
/// </summary>
CLUSTERLOG_NOT_ENOUGH_SPACE = 5033u,
/// <summary>
/// The cluster node failed to take control of the quorum resource because the resource is owned by another active node.
/// </summary>
QUORUM_OWNER_ALIVE = 5034u,
/// <summary>
/// A cluster network is not available for this operation.
/// </summary>
NETWORK_NOT_AVAILABLE = 5035u,
/// <summary>
/// A cluster node is not available for this operation.
/// </summary>
NODE_NOT_AVAILABLE = 5036u,
/// <summary>
/// All cluster nodes must be running to perform this operation.
/// </summary>
ALL_NODES_NOT_AVAILABLE = 5037u,
/// <summary>
/// A cluster resource failed.
/// </summary>
RESOURCE_FAILED = 5038u,
/// <summary>
/// The cluster node is not valid.
/// </summary>
CLUSTER_INVALID_NODE = 5039u,
/// <summary>
/// The cluster node already exists.
/// </summary>
CLUSTER_NODE_EXISTS = 5040u,
/// <summary>
/// A node is in the process of joining the cluster.
/// </summary>
CLUSTER_JOIN_IN_PROGRESS = 5041u,
/// <summary>
/// The cluster node was not found.
/// </summary>
CLUSTER_NODE_NOT_FOUND = 5042u,
/// <summary>
/// The cluster local node information was not found.
/// </summary>
CLUSTER_LOCAL_NODE_NOT_FOUND = 5043u,
/// <summary>
/// The cluster network already exists.
/// </summary>
CLUSTER_NETWORK_EXISTS = 5044u,
/// <summary>
/// The cluster network was not found.
/// </summary>
CLUSTER_NETWORK_NOT_FOUND = 5045u,
/// <summary>
/// The cluster network interface already exists.
/// </summary>
CLUSTER_NETINTERFACE_EXISTS = 5046u,
/// <summary>
/// The cluster network interface was not found.
/// </summary>
CLUSTER_NETINTERFACE_NOT_FOUND = 5047u,
/// <summary>
/// The cluster request is not valid for this object.
/// </summary>
CLUSTER_INVALID_REQUEST = 5048u,
/// <summary>
/// The cluster network provider is not valid.
/// </summary>
CLUSTER_INVALID_NETWORK_PROVIDER = 5049u,
/// <summary>
/// The cluster node is down.
/// </summary>
CLUSTER_NODE_DOWN = 5050u,
/// <summary>
/// The cluster node is not reachable.
/// </summary>
CLUSTER_NODE_UNREACHABLE = 5051u,
/// <summary>
/// The cluster node is not a member of the cluster.
/// </summary>
CLUSTER_NODE_NOT_MEMBER = 5052u,
/// <summary>
/// A cluster join operation is not in progress.
/// </summary>
CLUSTER_JOIN_NOT_IN_PROGRESS = 5053u,
/// <summary>
/// The cluster network is not valid.
/// </summary>
CLUSTER_INVALID_NETWORK = 5054u,
/// <summary>
/// The cluster node is up.
/// </summary>
CLUSTER_NODE_UP = 5056u,
/// <summary>
/// The cluster IP address is already in use.
/// </summary>
CLUSTER_IPADDR_IN_USE = 5057u,
/// <summary>
/// The cluster node is not paused.
/// </summary>
CLUSTER_NODE_NOT_PAUSED = 5058u,
/// <summary>
/// No cluster security context is available.
/// </summary>
CLUSTER_NO_SECURITY_CONTEXT = 5059u,
/// <summary>
/// The cluster network is not configured for internal cluster communication.
/// </summary>
CLUSTER_NETWORK_NOT_INTERNAL = 5060u,
/// <summary>
/// The cluster node is already up.
/// </summary>
CLUSTER_NODE_ALREADY_UP = 5061u,
/// <summary>
/// The cluster node is already down.
/// </summary>
CLUSTER_NODE_ALREADY_DOWN = 5062u,
/// <summary>
/// The cluster network is already online.
/// </summary>
CLUSTER_NETWORK_ALREADY_ONLINE = 5063u,
/// <summary>
/// The cluster network is already offline.
/// </summary>
CLUSTER_NETWORK_ALREADY_OFFLINE = 5064u,
/// <summary>
/// The cluster node is already a member of the cluster.
/// </summary>
CLUSTER_NODE_ALREADY_MEMBER = 5065u,
/// <summary>
/// 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.
/// </summary>
CLUSTER_LAST_INTERNAL_NETWORK = 5066u,
/// <summary>
/// One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network.
/// </summary>
CLUSTER_NETWORK_HAS_DEPENDENTS = 5067u,
/// <summary>
/// This operation cannot currently be performed on the cluster group containing the quorum resource.
/// </summary>
INVALID_OPERATION_ON_QUORUM = 5068u,
/// <summary>
/// The cluster quorum resource is not allowed to have any dependencies.
/// </summary>
DEPENDENCY_NOT_ALLOWED = 5069u,
/// <summary>
/// The cluster node is paused.
/// </summary>
CLUSTER_NODE_PAUSED = 5070u,
/// <summary>
/// The cluster resource cannot be brought online. The owner node cannot run this resource.
/// </summary>
NODE_CANT_HOST_RESOURCE = 5071u,
/// <summary>
/// The cluster node is not ready to perform the requested operation.
/// </summary>
CLUSTER_NODE_NOT_READY = 5072u,
/// <summary>
/// The cluster node is shutting down.
/// </summary>
CLUSTER_NODE_SHUTTING_DOWN = 5073u,
/// <summary>
/// The cluster join operation was aborted.
/// </summary>
CLUSTER_JOIN_ABORTED = 5074u,
/// <summary>
/// The node failed to join the cluster because the joining node and other nodes in the cluster have incompatible operating system versions. To get more information about operating system versions of the cluster, run the Validate a Configuration Wizard or the Test-Cluster Windows PowerShell cmdlet.
/// </summary>
CLUSTER_INCOMPATIBLE_VERSIONS = 5075u,
/// <summary>
/// This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor.
/// </summary>
CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED = 5076u,
/// <summary>
/// The system configuration changed during the cluster join or form operation. The join or form operation was aborted.
/// </summary>
CLUSTER_SYSTEM_CONFIG_CHANGED = 5077u,
/// <summary>
/// The specified resource type was not found.
/// </summary>
CLUSTER_RESOURCE_TYPE_NOT_FOUND = 5078u,
/// <summary>
/// The specified node does not support a resource of this type. This may be due to version inconsistencies or due to the absence of the resource DLL on this node.
/// </summary>
CLUSTER_RESTYPE_NOT_SUPPORTED = 5079u,
/// <summary>
/// The specified resource name is not supported by this resource DLL. This may be due to a bad (or changed) name supplied to the resource DLL.
/// </summary>
CLUSTER_RESNAME_NOT_FOUND = 5080u,
/// <summary>
/// No authentication package could be registered with the RPC server.
/// </summary>
CLUSTER_NO_RPC_PACKAGES_REGISTERED = 5081u,
/// <summary>
/// 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.
/// </summary>
CLUSTER_OWNER_NOT_IN_PREFLIST = 5082u,
/// <summary>
/// The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This may happen during a join operation if the cluster database was changing during the join.
/// </summary>
CLUSTER_DATABASE_SEQMISMATCH = 5083u,
/// <summary>
/// The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This may happen if the resource is in a pending state.
/// </summary>
RESMON_INVALID_STATE = 5084u,
/// <summary>
/// A non locker code got a request to reserve the lock for making global updates.
/// </summary>
CLUSTER_GUM_NOT_LOCKER = 5085u,
/// <summary>
/// The quorum disk could not be located by the cluster service.
/// </summary>
QUORUM_DISK_NOT_FOUND = 5086u,
/// <summary>
/// The backed up cluster database is possibly corrupt.
/// </summary>
DATABASE_BACKUP_CORRUPT = 5087u,
/// <summary>
/// A DFS root already exists in this cluster node.
/// </summary>
CLUSTER_NODE_ALREADY_HAS_DFS_ROOT = 5088u,
/// <summary>
/// An attempt to modify a resource property failed because it conflicts with another existing property.
/// </summary>
RESOURCE_PROPERTY_UNCHANGEABLE = 5089u,
/// <summary>
/// This operation is not supported on a cluster without an Administrator Access Point.
/// </summary>
NO_ADMIN_ACCESS_POINT = 5090u,
/// <summary>
/// An operation was attempted that is incompatible with the current membership state of the node.
/// </summary>
CLUSTER_MEMBERSHIP_INVALID_STATE = 5890u,
/// <summary>
/// The quorum resource does not contain the quorum log.
/// </summary>
CLUSTER_QUORUMLOG_NOT_FOUND = 5891u,
/// <summary>
/// The membership engine requested shutdown of the cluster service on this node.
/// </summary>
CLUSTER_MEMBERSHIP_HALT = 5892u,
/// <summary>
/// The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node.
/// </summary>
CLUSTER_INSTANCE_ID_MISMATCH = 5893u,
/// <summary>
/// A matching cluster network for the specified IP address could not be found.
/// </summary>
CLUSTER_NETWORK_NOT_FOUND_FOR_IP = 5894u,
/// <summary>
/// The actual data type of the property did not match the expected data type of the property.
/// </summary>
CLUSTER_PROPERTY_DATA_TYPE_MISMATCH = 5895u,
/// <summary>
/// The cluster node was evicted from the cluster successfully, but the node was not cleaned up. To determine what cleanup steps failed and how to recover, see the Failover Clustering application event log using Event Viewer.
/// </summary>
CLUSTER_EVICT_WITHOUT_CLEANUP = 5896u,
/// <summary>
/// Two or more parameter values specified for a resource's properties are in conflict.
/// </summary>
CLUSTER_PARAMETER_MISMATCH = 5897u,
/// <summary>
/// This computer cannot be made a member of a cluster.
/// </summary>
NODE_CANNOT_BE_CLUSTERED = 5898u,
/// <summary>
/// This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed.
/// </summary>
CLUSTER_WRONG_OS_VERSION = 5899u,
/// <summary>
/// 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.
/// </summary>
CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME = 5900u,
/// <summary>
/// The cluster configuration action has already been committed.
/// </summary>
CLUSCFG_ALREADY_COMMITTED = 5901u,
/// <summary>
/// The cluster configuration action could not be rolled back.
/// </summary>
CLUSCFG_ROLLBACK_FAILED = 5902u,
/// <summary>
/// The drive letter assigned to a system disk on one node conflicted with the drive letter assigned to a disk on another node.
/// </summary>
CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT = 5903u,
/// <summary>
/// One or more nodes in the cluster are running a version of Windows that does not support this operation.
/// </summary>
CLUSTER_OLD_VERSION = 5904u,
/// <summary>
/// The name of the corresponding computer account doesn't match the Network Name for this resource.
/// </summary>
CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME = 5905u,
/// <summary>
/// No network adapters are available.
/// </summary>
CLUSTER_NO_NET_ADAPTERS = 5906u,
/// <summary>
/// The cluster node has been poisoned.
/// </summary>
CLUSTER_POISONED = 5907u,
/// <summary>
/// The group is unable to accept the request since it is moving to another node.
/// </summary>
CLUSTER_GROUP_MOVING = 5908u,
/// <summary>
/// The resource type cannot accept the request since is too busy performing another operation.
/// </summary>
CLUSTER_RESOURCE_TYPE_BUSY = 5909u,
/// <summary>
/// The call to the cluster resource DLL timed out.
/// </summary>
RESOURCE_CALL_TIMED_OUT = 5910u,
/// <summary>
/// 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.
/// </summary>
INVALID_CLUSTER_IPV6_ADDRESS = 5911u,
/// <summary>
/// An internal cluster error occurred. A call to an invalid function was attempted.
/// </summary>
CLUSTER_INTERNAL_INVALID_FUNCTION = 5912u,
/// <summary>
/// A parameter value is out of acceptable range.
/// </summary>
CLUSTER_PARAMETER_OUT_OF_BOUNDS = 5913u,
/// <summary>
/// A network error occurred while sending data to another node in the cluster. The number of bytes transmitted was less than required.
/// </summary>
CLUSTER_PARTIAL_SEND = 5914u,
/// <summary>
/// An invalid cluster registry operation was attempted.
/// </summary>
CLUSTER_REGISTRY_INVALID_FUNCTION = 5915u,
/// <summary>
/// An input string of characters is not properly terminated.
/// </summary>
CLUSTER_INVALID_STRING_TERMINATION = 5916u,
/// <summary>
/// An input string of characters is not in a valid format for the data it represents.
/// </summary>
CLUSTER_INVALID_STRING_FORMAT = 5917u,
/// <summary>
/// An internal cluster error occurred. A cluster database transaction was attempted while a transaction was already in progress.
/// </summary>
CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS = 5918u,
/// <summary>
/// An internal cluster error occurred. There was an attempt to commit a cluster database transaction while no transaction was in progress.
/// </summary>
CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS = 5919u,
/// <summary>
/// An internal cluster error occurred. Data was not properly initialized.
/// </summary>
CLUSTER_NULL_DATA = 5920u,
/// <summary>
/// An error occurred while reading from a stream of data. An unexpected number of bytes was returned.
/// </summary>
CLUSTER_PARTIAL_READ = 5921u,
/// <summary>
/// An error occurred while writing to a stream of data. The required number of bytes could not be written.
/// </summary>
CLUSTER_PARTIAL_WRITE = 5922u,
/// <summary>
/// An error occurred while deserializing a stream of cluster data.
/// </summary>
CLUSTER_CANT_DESERIALIZE_DATA = 5923u,
/// <summary>
/// One or more property values for this resource are in conflict with one or more property values associated with its dependent resource(s).
/// </summary>
DEPENDENT_RESOURCE_PROPERTY_CONFLICT = 5924u,
/// <summary>
/// A quorum of cluster nodes was not present to form a cluster.
/// </summary>
CLUSTER_NO_QUORUM = 5925u,
/// <summary>
/// The cluster network is not valid for an IPv6 Address resource, or it does not match the configured address.
/// </summary>
CLUSTER_INVALID_IPV6_NETWORK = 5926u,
/// <summary>
/// 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.
/// </summary>
CLUSTER_INVALID_IPV6_TUNNEL_NETWORK = 5927u,
/// <summary>
/// Quorum resource cannot reside in the Available Storage group.
/// </summary>
QUORUM_NOT_ALLOWED_IN_THIS_GROUP = 5928u,
/// <summary>
/// The dependencies for this resource are nested too deeply.
/// </summary>
DEPENDENCY_TREE_TOO_COMPLEX = 5929u,
/// <summary>
/// The call into the resource DLL raised an unhandled exception.
/// </summary>
EXCEPTION_IN_RESOURCE_CALL = 5930u,
/// <summary>
/// The RHS process failed to initialize.
/// </summary>
CLUSTER_RHS_FAILED_INITIALIZATION = 5931u,
/// <summary>
/// The Failover Clustering feature is not installed on this node.
/// </summary>
CLUSTER_NOT_INSTALLED = 5932u,
/// <summary>
/// The resources must be online on the same node for this operation
/// </summary>
CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE = 5933u,
/// <summary>
/// A new node can not be added since this cluster is already at its maximum number of nodes.
/// </summary>
CLUSTER_MAX_NODES_IN_CLUSTER = 5934u,
/// <summary>
/// This cluster can not be created since the specified number of nodes exceeds the maximum allowed limit.
/// </summary>
CLUSTER_TOO_MANY_NODES = 5935u,
/// <summary>
/// An attempt to use the specified cluster name failed because an enabled computer object with the given name already exists in the domain.
/// </summary>
CLUSTER_OBJECT_ALREADY_USED = 5936u,
/// <summary>
/// This cluster cannot be destroyed. It has non-core application groups which must be deleted before the cluster can be destroyed.
/// </summary>
NONCORE_GROUPS_FOUND = 5937u,
/// <summary>
/// File share associated with file share witness resource cannot be hosted by this cluster or any of its nodes.
/// </summary>
FILE_SHARE_RESOURCE_CONFLICT = 5938u,
/// <summary>
/// If it is the last node in the cluster, destroy cluster command should be used.
/// </summary>
CLUSTER_EVICT_INVALID_REQUEST = 5939u,
/// <summary>
/// Only one instance of this resource type is allowed in the cluster.
/// </summary>
CLUSTER_SINGLETON_RESOURCE = 5940u,
/// <summary>
/// Only one instance of this resource type is allowed per resource group.
/// </summary>
CLUSTER_GROUP_SINGLETON_RESOURCE = 5941u,
/// <summary>
/// The resource failed to come online due to the failure of one or more provider resources.
/// </summary>
CLUSTER_RESOURCE_PROVIDER_FAILED = 5942u,
/// <summary>
/// The resource has indicated that it cannot come online on any node.
/// </summary>
CLUSTER_RESOURCE_CONFIGURATION_ERROR = 5943u,
/// <summary>
/// The current operation cannot be performed on this group at this time.
/// </summary>
CLUSTER_GROUP_BUSY = 5944u,
/// <summary>
/// The directory or file is not located on a cluster shared volume.
/// </summary>
CLUSTER_NOT_SHARED_VOLUME = 5945u,
/// <summary>
/// The Security Descriptor does not meet the requirements for a cluster.
/// </summary>
CLUSTER_INVALID_SECURITY_DESCRIPTOR = 5946u,
/// <summary>
/// Those resources must be moved to available storage in order for operation to succeed.
/// </summary>
CLUSTER_SHARED_VOLUMES_IN_USE = 5947u,
/// <summary>
/// Use shared volume APIs to perform desired operation.
/// </summary>
CLUSTER_USE_SHARED_VOLUMES_API = 5948u,
/// <summary>
/// Back up is in progress. Please wait for backup completion before trying this operation again.
/// </summary>
CLUSTER_BACKUP_IN_PROGRESS = 5949u,
/// <summary>
/// The path does not belong to a cluster shared volume.
/// </summary>
NON_CSV_PATH = 5950u,
/// <summary>
/// The cluster shared volume is not locally mounted on this node.
/// </summary>
CSV_VOLUME_NOT_LOCAL = 5951u,
/// <summary>
/// The cluster watchdog is terminating.
/// </summary>
CLUSTER_WATCHDOG_TERMINATING = 5952u,
/// <summary>
/// A resource vetoed a move between two nodes because they are incompatible.
/// </summary>
CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES = 5953u,
/// <summary>
/// The request is invalid either because node weight cannot be changed while the cluster is in disk-only quorum mode, or because changing the node weight would violate the minimum cluster quorum requirements.
/// </summary>
CLUSTER_INVALID_NODE_WEIGHT = 5954u,
/// <summary>
/// The resource vetoed the call.
/// </summary>
CLUSTER_RESOURCE_VETOED_CALL = 5955u,
/// <summary>
/// Resource could not start or run because it could not reserve sufficient system resources.
/// </summary>
RESMON_SYSTEM_RESOURCES_LACKING = 5956u,
/// <summary>
/// A resource vetoed a move between two nodes because the destination currently does not have enough resources to complete the operation.
/// </summary>
CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION = 5957u,
/// <summary>
/// A resource vetoed a move between two nodes because the source currently does not have enough resources to complete the operation.
/// </summary>
CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE = 5958u,
/// <summary>
/// The requested operation can not be completed because the group is queued for an operation.
/// </summary>
CLUSTER_GROUP_QUEUED = 5959u,
/// <summary>
/// The requested operation can not be completed because a resource has locked status.
/// </summary>
CLUSTER_RESOURCE_LOCKED_STATUS = 5960u,
/// <summary>
/// The resource cannot move to another node because a cluster shared volume vetoed the operation.
/// </summary>
CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED = 5961u,
/// <summary>
/// A node drain is already in progress.
/// </summary>
CLUSTER_NODE_DRAIN_IN_PROGRESS = 5962u,
/// <summary>
/// Clustered storage is not connected to the node.
/// </summary>
CLUSTER_DISK_NOT_CONNECTED = 5963u,
/// <summary>
/// The disk is not configured in a way to be used with CSV. CSV disks must have at least one partition that is formatted with NTFS or REFS.
/// </summary>
DISK_NOT_CSV_CAPABLE = 5964u,
/// <summary>
/// The resource must be part of the Available Storage group to complete this action.
/// </summary>
RESOURCE_NOT_IN_AVAILABLE_STORAGE = 5965u,
/// <summary>
/// CSVFS failed operation as volume is in redirected mode.
/// </summary>
CLUSTER_SHARED_VOLUME_REDIRECTED = 5966u,
/// <summary>
/// CSVFS failed operation as volume is not in redirected mode.
/// </summary>
CLUSTER_SHARED_VOLUME_NOT_REDIRECTED = 5967u,
/// <summary>
/// Cluster properties cannot be returned at this time.
/// </summary>
CLUSTER_CANNOT_RETURN_PROPERTIES = 5968u,
/// <summary>
/// The clustered disk resource contains software snapshot diff area that are not supported for Cluster Shared Volumes.
/// </summary>
CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES = 5969u,
/// <summary>
/// The operation cannot be completed because the resource is in maintenance mode.
/// </summary>
CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE = 5970u,
/// <summary>
/// The operation cannot be completed because of cluster affinity conflicts
/// </summary>
CLUSTER_AFFINITY_CONFLICT = 5971u,
/// <summary>
/// The operation cannot be completed because the resource is a replica virtual machine.
/// </summary>
CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE = 5972u,
/// <summary>
/// The Cluster Functional Level could not be increased because not all nodes in the cluster support the updated version.
/// </summary>
CLUSTER_UPGRADE_INCOMPATIBLE_VERSIONS = 5973u,
/// <summary>
/// of fix quorum mode retry the Update-ClusterFunctionalLevel PowerShell cmdlet to update the cluster functional level.
/// </summary>
CLUSTER_UPGRADE_FIX_QUORUM_NOT_SUPPORTED = 5974u,
/// <summary>
/// be available.
/// </summary>
CLUSTER_UPGRADE_RESTART_REQUIRED = 5975u,
/// <summary>
/// The cluster is currently performing a version upgrade.
/// </summary>
CLUSTER_UPGRADE_IN_PROGRESS = 5976u,
/// <summary>
/// The cluster did not successfully complete the version upgrade.
/// </summary>
CLUSTER_UPGRADE_INCOMPLETE = 5977u,
/// <summary>
/// The cluster node is in grace period.
/// </summary>
CLUSTER_NODE_IN_GRACE_PERIOD = 5978u,
/// <summary>
/// The operation has failed because CSV volume was not able to recover in time specified on this file object.
/// </summary>
CLUSTER_CSV_IO_PAUSE_TIMEOUT = 5979u,
/// <summary>
/// The operation failed because the requested node is not currently part of active cluster membership.
/// </summary>
NODE_NOT_ACTIVE_CLUSTER_MEMBER = 5980u,
/// <summary>
/// The operation failed because the requested cluster resource is currently unmonitored.
/// </summary>
CLUSTER_RESOURCE_NOT_MONITORED = 5981u,
/// <summary>
/// The operation failed because a resource does not support running in an unmonitored state.
/// </summary>
CLUSTER_RESOURCE_DOES_NOT_SUPPORT_UNMONITORED = 5982u,
/// <summary>
/// The operation cannot be completed because a resource participates in replication.
/// </summary>
CLUSTER_RESOURCE_IS_REPLICATED = 5983u,
/// <summary>
/// The operation failed because the requested cluster node has been isolated
/// </summary>
CLUSTER_NODE_ISOLATED = 5984u,
/// <summary>
/// The operation failed because the requested cluster node has been quarantined
/// </summary>
CLUSTER_NODE_QUARANTINED = 5985u,
/// <summary>
/// The operation failed because the specified database update condition was not met
/// </summary>
CLUSTER_DATABASE_UPDATE_CONDITION_FAILED = 5986u,
/// <summary>
/// A clustered space is in a degraded condition and the requested action cannot be completed at this time.
/// </summary>
CLUSTER_SPACE_DEGRADED = 5987u,
/// <summary>
/// The operation failed because token delegation for this control is not supported.
/// </summary>
CLUSTER_TOKEN_DELEGATION_NOT_SUPPORTED = 5988u,
/// <summary>
/// The operation has failed because CSV has invalidated this file object.
/// </summary>
CLUSTER_CSV_INVALID_HANDLE = 5989u,
/// <summary>
/// This operation is supported only on the CSV coordinator node.
/// </summary>
CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR = 5990u,
/// <summary>
/// The cluster group set is not available for any further requests.
/// </summary>
GROUPSET_NOT_AVAILABLE = 5991u,
/// <summary>
/// The cluster group set could not be found.
/// </summary>
GROUPSET_NOT_FOUND = 5992u,
/// <summary>
/// The action cannot be completed at this time because the cluster group set would fall below quorum and not be able to act as a provider.
/// </summary>
GROUPSET_CANT_PROVIDE = 5993u,
/// <summary>
/// The specified parent fault domain is not found.
/// </summary>
CLUSTER_FAULT_DOMAIN_PARENT_NOT_FOUND = 5994u,
/// <summary>
/// The fault domain cannot be a child of the parent specified.
/// </summary>
CLUSTER_FAULT_DOMAIN_INVALID_HIERARCHY = 5995u,
/// <summary>
/// Storage Spaces Direct has rejected the proposed fault domain changes because it impacts the fault tolerance of the storage.
/// </summary>
CLUSTER_FAULT_DOMAIN_FAILED_S2D_VALIDATION = 5996u,
/// <summary>
/// Storage Spaces Direct has rejected the proposed fault domain changes because it reduces the storage connected to the system.
/// </summary>
CLUSTER_FAULT_DOMAIN_S2D_CONNECTIVITY_LOSS = 5997u,
/// <summary>
/// Cluster infrastructure file server creation failed because a valid non-empty file server name was not provided.
/// </summary>
CLUSTER_INVALID_INFRASTRUCTURE_FILESERVER_NAME = 5998u,
/// <summary>
/// The action cannot be completed because the cluster set management cluster is unreachable.
/// </summary>
CLUSTERSET_MANAGEMENT_CLUSTER_UNREACHABLE = 5999u,
/// <summary>
/// The specified file could not be encrypted.
/// </summary>
ENCRYPTION_FAILED = 6000u,
/// <summary>
/// The specified file could not be decrypted.
/// </summary>
DECRYPTION_FAILED = 6001u,
/// <summary>
/// The specified file is encrypted and the user does not have the ability to decrypt it.
/// </summary>
FILE_ENCRYPTED = 6002u,
/// <summary>
/// There is no valid encryption recovery policy configured for this system.
/// </summary>
NO_RECOVERY_POLICY = 6003u,
/// <summary>
/// The required encryption driver is not loaded for this system.
/// </summary>
NO_EFS = 6004u,
/// <summary>
/// The file was encrypted with a different encryption driver than is currently loaded.
/// </summary>
WRONG_EFS = 6005u,
/// <summary>
/// There are no EFS keys defined for the user.
/// </summary>
NO_USER_KEYS = 6006u,
/// <summary>
/// The specified file is not encrypted.
/// </summary>
FILE_NOT_ENCRYPTED = 6007u,
/// <summary>
/// The specified file is not in the defined EFS export format.
/// </summary>
NOT_EXPORT_FORMAT = 6008u,
/// <summary>
/// The specified file is read only.
/// </summary>
FILE_READ_ONLY = 6009u,
/// <summary>
/// The directory has been disabled for encryption.
/// </summary>
DIR_EFS_DISALLOWED = 6010u,
/// <summary>
/// The server is not trusted for remote encryption operation.
/// </summary>
EFS_SERVER_NOT_TRUSTED = 6011u,
/// <summary>
/// Recovery policy configured for this system contains invalid recovery certificate.
/// </summary>
BAD_RECOVERY_POLICY = 6012u,
/// <summary>
/// The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file.
/// </summary>
EFS_ALG_BLOB_TOO_BIG = 6013u,
/// <summary>
/// The disk partition does not support file encryption.
/// </summary>
VOLUME_NOT_SUPPORT_EFS = 6014u,
/// <summary>
/// This machine is disabled for file encryption.
/// </summary>
EFS_DISABLED = 6015u,
/// <summary>
/// A newer system is required to decrypt this encrypted file.
/// </summary>
EFS_VERSION_NOT_SUPPORT = 6016u,
/// <summary>
/// The remote server sent an invalid response for a file being opened with Client Side Encryption.
/// </summary>
CS_ENCRYPTION_INVALID_SERVER_RESPONSE = 6017u,
/// <summary>
/// Client Side Encryption is not supported by the remote server even though it claims to support it.
/// </summary>
CS_ENCRYPTION_UNSUPPORTED_SERVER = 6018u,
/// <summary>
/// File is encrypted and should be opened in Client Side Encryption mode.
/// </summary>
CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE = 6019u,
/// <summary>
/// A new encrypted file is being created and a $EFS needs to be provided.
/// </summary>
CS_ENCRYPTION_NEW_ENCRYPTED_FILE = 6020u,
/// <summary>
/// The SMB client requested a CSE FSCTL on a non-CSE file.
/// </summary>
CS_ENCRYPTION_FILE_NOT_CSE = 6021u,
/// <summary>
/// The requested operation was blocked by policy. For more information, contact your system administrator.
/// </summary>
ENCRYPTION_POLICY_DENIES_OPERATION = 6022u,
/// <summary>
/// The list of servers for this workgroup is not currently available
/// </summary>
NO_BROWSER_SERVERS_FOUND = 6118u,
/// <summary>
/// The Task Scheduler service must be configured to run in the System account to function properly. Individual tasks may be configured to run in other accounts.
/// </summary>
SCHED_E_SERVICE_NOT_LOCALSYSTEM = 6200u,
/// <summary>
/// Log service encountered an invalid log sector.
/// </summary>
LOG_SECTOR_INVALID = 6600u,
/// <summary>
/// Log service encountered a log sector with invalid block parity.
/// </summary>
LOG_SECTOR_PARITY_INVALID = 6601u,
/// <summary>
/// Log service encountered a remapped log sector.
/// </summary>
LOG_SECTOR_REMAPPED = 6602u,
/// <summary>
/// Log service encountered a partial or incomplete log block.
/// </summary>
LOG_BLOCK_INCOMPLETE = 6603u,
/// <summary>
/// Log service encountered an attempt access data outside the active log range.
/// </summary>
LOG_INVALID_RANGE = 6604u,
/// <summary>
/// Log service user marshalling buffers are exhausted.
/// </summary>
LOG_BLOCKS_EXHAUSTED = 6605u,
/// <summary>
/// Log service encountered an attempt read from a marshalling area with an invalid read context.
/// </summary>
LOG_READ_CONTEXT_INVALID = 6606u,
/// <summary>
/// Log service encountered an invalid log restart area.
/// </summary>
LOG_RESTART_INVALID = 6607u,
/// <summary>
/// Log service encountered an invalid log block version.
/// </summary>
LOG_BLOCK_VERSION = 6608u,
/// <summary>
/// Log service encountered an invalid log block.
/// </summary>
LOG_BLOCK_INVALID = 6609u,
/// <summary>
/// Log service encountered an attempt to read the log with an invalid read mode.
/// </summary>
LOG_READ_MODE_INVALID = 6610u,
/// <summary>
/// Log service encountered a log stream with no restart area.
/// </summary>
LOG_NO_RESTART = 6611u,
/// <summary>
/// Log service encountered a corrupted metadata file.
/// </summary>
LOG_METADATA_CORRUPT = 6612u,
/// <summary>
/// Log service encountered a metadata file that could not be created by the log file system.
/// </summary>
LOG_METADATA_INVALID = 6613u,
/// <summary>
/// Log service encountered a metadata file with inconsistent data.
/// </summary>
LOG_METADATA_INCONSISTENT = 6614u,
/// <summary>
/// Log service encountered an attempt to erroneous allocate or dispose reservation space.
/// </summary>
LOG_RESERVATION_INVALID = 6615u,
/// <summary>
/// Log service cannot delete log file or file system container.
/// </summary>
LOG_CANT_DELETE = 6616u,
/// <summary>
/// Log service has reached the maximum allowable containers allocated to a log file.
/// </summary>
LOG_CONTAINER_LIMIT_EXCEEDED = 6617u,
/// <summary>
/// Log service has attempted to read or write backward past the start of the log.
/// </summary>
LOG_START_OF_LOG = 6618u,
/// <summary>
/// Log policy could not be installed because a policy of the same type is already present.
/// </summary>
LOG_POLICY_ALREADY_INSTALLED = 6619u,
/// <summary>
/// Log policy in question was not installed at the time of the request.
/// </summary>
LOG_POLICY_NOT_INSTALLED = 6620u,
/// <summary>
/// The installed set of policies on the log is invalid.
/// </summary>
LOG_POLICY_INVALID = 6621u,
/// <summary>
/// A policy on the log in question prevented the operation from completing.
/// </summary>
LOG_POLICY_CONFLICT = 6622u,
/// <summary>
/// Log space cannot be reclaimed because the log is pinned by the archive tail.
/// </summary>
LOG_PINNED_ARCHIVE_TAIL = 6623u,
/// <summary>
/// Log record is not a record in the log file.
/// </summary>
LOG_RECORD_NONEXISTENT = 6624u,
/// <summary>
/// Number of reserved log records or the adjustment of the number of reserved log records is invalid.
/// </summary>
LOG_RECORDS_RESERVED_INVALID = 6625u,
/// <summary>
/// Reserved log space or the adjustment of the log space is invalid.
/// </summary>
LOG_SPACE_RESERVED_INVALID = 6626u,
/// <summary>
/// An new or existing archive tail or base of the active log is invalid.
/// </summary>
LOG_TAIL_INVALID = 6627u,
/// <summary>
/// Log space is exhausted.
/// </summary>
LOG_FULL = 6628u,
/// <summary>
/// The log could not be set to the requested size.
/// </summary>
COULD_NOT_RESIZE_LOG = 6629u,
/// <summary>
/// Log is multiplexed, no direct writes to the physical log is allowed.
/// </summary>
LOG_MULTIPLEXED = 6630u,
/// <summary>
/// The operation failed because the log is a dedicated log.
/// </summary>
LOG_DEDICATED = 6631u,
/// <summary>
/// The operation requires an archive context.
/// </summary>
LOG_ARCHIVE_NOT_IN_PROGRESS = 6632u,
/// <summary>
/// Log archival is in progress.
/// </summary>
LOG_ARCHIVE_IN_PROGRESS = 6633u,
/// <summary>
/// The operation requires a non-ephemeral log, but the log is ephemeral.
/// </summary>
LOG_EPHEMERAL = 6634u,
/// <summary>
/// The log must have at least two containers before it can be read from or written to.
/// </summary>
LOG_NOT_ENOUGH_CONTAINERS = 6635u,
/// <summary>
/// A log client has already registered on the stream.
/// </summary>
LOG_CLIENT_ALREADY_REGISTERED = 6636u,
/// <summary>
/// A log client has not been registered on the stream.
/// </summary>
LOG_CLIENT_NOT_REGISTERED = 6637u,
/// <summary>
/// A request has already been made to handle the log full condition.
/// </summary>
LOG_FULL_HANDLER_IN_PROGRESS = 6638u,
/// <summary>
/// Log service encountered an error when attempting to read from a log container.
/// </summary>
LOG_CONTAINER_READ_FAILED = 6639u,
/// <summary>
/// Log service encountered an error when attempting to write to a log container.
/// </summary>
LOG_CONTAINER_WRITE_FAILED = 6640u,
/// <summary>
/// Log service encountered an error when attempting open a log container.
/// </summary>
LOG_CONTAINER_OPEN_FAILED = 6641u,
/// <summary>
/// Log service encountered an invalid container state when attempting a requested action.
/// </summary>
LOG_CONTAINER_STATE_INVALID = 6642u,
/// <summary>
/// Log service is not in the correct state to perform a requested action.
/// </summary>
LOG_STATE_INVALID = 6643u,
/// <summary>
/// Log space cannot be reclaimed because the log is pinned.
/// </summary>
LOG_PINNED = 6644u,
/// <summary>
/// Log metadata flush failed.
/// </summary>
LOG_METADATA_FLUSH_FAILED = 6645u,
/// <summary>
/// Security on the log and its containers is inconsistent.
/// </summary>
LOG_INCONSISTENT_SECURITY = 6646u,
/// <summary>
/// Records were appended to the log or reservation changes were made, but the log could not be flushed.
/// </summary>
LOG_APPENDED_FLUSH_FAILED = 6647u,
/// <summary>
/// The log is pinned due to reservation consuming most of the log space. Free some reserved records to make space available.
/// </summary>
LOG_PINNED_RESERVATION = 6648u,
/// <summary>
/// The transaction handle associated with this operation is not valid.
/// </summary>
INVALID_TRANSACTION = 6700u,
/// <summary>
/// The requested operation was made in the context of a transaction that is no longer active.
/// </summary>
TRANSACTION_NOT_ACTIVE = 6701u,
/// <summary>
/// The requested operation is not valid on the Transaction object in its current state.
/// </summary>
TRANSACTION_REQUEST_NOT_VALID = 6702u,
/// <summary>
/// The caller has called a response API, but the response is not expected because the TM did not issue the corresponding request to the caller.
/// </summary>
TRANSACTION_NOT_REQUESTED = 6703u,
/// <summary>
/// It is too late to perform the requested operation, since the Transaction has already been aborted.
/// </summary>
TRANSACTION_ALREADY_ABORTED = 6704u,
/// <summary>
/// It is too late to perform the requested operation, since the Transaction has already been committed.
/// </summary>
TRANSACTION_ALREADY_COMMITTED = 6705u,
/// <summary>
/// The Transaction Manager was unable to be successfully initialized. Transacted operations are not supported.
/// </summary>
TM_INITIALIZATION_FAILED = 6706u,
/// <summary>
/// The specified ResourceManager made no changes or updates to the resource under this transaction.
/// </summary>
RESOURCEMANAGER_READ_ONLY = 6707u,
/// <summary>
/// The resource manager has attempted to prepare a transaction that it has not successfully joined.
/// </summary>
TRANSACTION_NOT_JOINED = 6708u,
/// <summary>
/// The Transaction object already has a superior enlistment, and the caller attempted an operation that would have created a new superior. Only a single superior enlistment is allow.
/// </summary>
TRANSACTION_SUPERIOR_EXISTS = 6709u,
/// <summary>
/// The RM tried to register a protocol that already exists.
/// </summary>
CRM_PROTOCOL_ALREADY_EXISTS = 6710u,
/// <summary>
/// The attempt to propagate the Transaction failed.
/// </summary>
TRANSACTION_PROPAGATION_FAILED = 6711u,
/// <summary>
/// The requested propagation protocol was not registered as a CRM.
/// </summary>
CRM_PROTOCOL_NOT_FOUND = 6712u,
/// <summary>
/// The buffer passed in to PushTransaction or PullTransaction is not in a valid format.
/// </summary>
TRANSACTION_INVALID_MARSHALL_BUFFER = 6713u,
/// <summary>
/// The current transaction context associated with the thread is not a valid handle to a transaction object.
/// </summary>
CURRENT_TRANSACTION_NOT_VALID = 6714u,
/// <summary>
/// The specified Transaction object could not be opened, because it was not found.
/// </summary>
TRANSACTION_NOT_FOUND = 6715u,
/// <summary>
/// The specified ResourceManager object could not be opened, because it was not found.
/// </summary>
RESOURCEMANAGER_NOT_FOUND = 6716u,
/// <summary>
/// The specified Enlistment object could not be opened, because it was not found.
/// </summary>
ENLISTMENT_NOT_FOUND = 6717u,
/// <summary>
/// The specified TransactionManager object could not be opened, because it was not found.
/// </summary>
TRANSACTIONMANAGER_NOT_FOUND = 6718u,
/// <summary>
/// The object specified could not be created or opened, because its associated TransactionManager is not online. The TransactionManager must be brought fully Online by calling RecoverTransactionManager to recover to the end of its LogFile before objects in its Transaction or ResourceManager namespaces can be opened. In addition, errors in writing records to its LogFile can cause a TransactionManager to go offline.
/// </summary>
TRANSACTIONMANAGER_NOT_ONLINE = 6719u,
/// <summary>
/// The specified TransactionManager was unable to create the objects contained in its logfile in the Ob namespace. Therefore, the TransactionManager was unable to recover.
/// </summary>
TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION = 6720u,
/// <summary>
/// The call to create a superior Enlistment on this Transaction object could not be completed, because the Transaction object specified for the enlistment is a subordinate branch of the Transaction. Only the root of the Transaction can be enlisted on as a superior.
/// </summary>
TRANSACTION_NOT_ROOT = 6721u,
/// <summary>
/// Because the associated transaction manager or resource manager has been closed, the handle is no longer valid.
/// </summary>
TRANSACTION_OBJECT_EXPIRED = 6722u,
/// <summary>
/// The specified operation could not be performed on this Superior enlistment, because the enlistment was not created with the corresponding completion response in the NotificationMask.
/// </summary>
TRANSACTION_RESPONSE_NOT_ENLISTED = 6723u,
/// <summary>
/// The specified operation could not be performed, because the record that would be logged was too long. This can occur because of two conditions: either there are too many Enlistments on this Transaction, or the combined RecoveryInformation being logged on behalf of those Enlistments is too long.
/// </summary>
TRANSACTION_RECORD_TOO_LONG = 6724u,
/// <summary>
/// Implicit transaction are not supported.
/// </summary>
IMPLICIT_TRANSACTION_NOT_SUPPORTED = 6725u,
/// <summary>
/// The kernel transaction manager had to abort or forget the transaction because it blocked forward progress.
/// </summary>
TRANSACTION_INTEGRITY_VIOLATED = 6726u,
/// <summary>
/// The TransactionManager identity that was supplied did not match the one recorded in the TransactionManager's log file.
/// </summary>
TRANSACTIONMANAGER_IDENTITY_MISMATCH = 6727u,
/// <summary>
/// This snapshot operation cannot continue because a transactional resource manager cannot be frozen in its current state. Please try again.
/// </summary>
RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT = 6728u,
/// <summary>
/// The transaction cannot be enlisted on with the specified EnlistmentMask, because the transaction has already completed the PrePrepare phase. In order to ensure correctness, the ResourceManager must switch to a write-through mode and cease caching data within this transaction. Enlisting for only subsequent transaction phases may still succeed.
/// </summary>
TRANSACTION_MUST_WRITETHROUGH = 6729u,
/// <summary>
/// The transaction does not have a superior enlistment.
/// </summary>
TRANSACTION_NO_SUPERIOR = 6730u,
/// <summary>
/// The attempt to commit the Transaction completed, but it is possible that some portion of the transaction tree did not commit successfully due to heuristics. Therefore it is possible that some data modified in the transaction may not have committed, resulting in transactional inconsistency. If possible, check the consistency of the associated data.
/// </summary>
HEURISTIC_DAMAGE_POSSIBLE = 6731u,
/// <summary>
/// The function attempted to use a name that is reserved for use by another transaction.
/// </summary>
TRANSACTIONAL_CONFLICT = 6800u,
/// <summary>
/// Transaction support within the specified resource manager is not started or was shut down due to an error.
/// </summary>
RM_NOT_ACTIVE = 6801u,
/// <summary>
/// The metadata of the RM has been corrupted. The RM will not function.
/// </summary>
RM_METADATA_CORRUPT = 6802u,
/// <summary>
/// The specified directory does not contain a resource manager.
/// </summary>
DIRECTORY_NOT_RM = 6803u,
/// <summary>
/// The remote server or share does not support transacted file operations.
/// </summary>
TRANSACTIONS_UNSUPPORTED_REMOTE = 6805u,
/// <summary>
/// The requested log size is invalid.
/// </summary>
LOG_RESIZE_INVALID_SIZE = 6806u,
/// <summary>
/// The object (file, stream, link) corresponding to the handle has been deleted by a Transaction Savepoint Rollback.
/// </summary>
OBJECT_NO_LONGER_EXISTS = 6807u,
/// <summary>
/// The specified file miniversion was not found for this transacted file open.
/// </summary>
STREAM_MINIVERSION_NOT_FOUND = 6808u,
/// <summary>
/// The specified file miniversion was found but has been invalidated. Most likely cause is a transaction savepoint rollback.
/// </summary>
STREAM_MINIVERSION_NOT_VALID = 6809u,
/// <summary>
/// A miniversion may only be opened in the context of the transaction that created it.
/// </summary>
MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION = 6810u,
/// <summary>
/// It is not possible to open a miniversion with modify access.
/// </summary>
CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT = 6811u,
/// <summary>
/// It is not possible to create any more miniversions for this stream.
/// </summary>
CANT_CREATE_MORE_STREAM_MINIVERSIONS = 6812u,
/// <summary>
/// The remote server sent mismatching version number or Fid for a file opened with transactions.
/// </summary>
REMOTE_FILE_VERSION_MISMATCH = 6814u,
/// <summary>
/// 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.
/// </summary>
HANDLE_NO_LONGER_VALID = 6815u,
/// <summary>
/// There is no transaction metadata on the file.
/// </summary>
NO_TXF_METADATA = 6816u,
/// <summary>
/// The log data is corrupt.
/// </summary>
LOG_CORRUPTION_DETECTED = 6817u,
/// <summary>
/// The file can't be recovered because there is a handle still open on it.
/// </summary>
CANT_RECOVER_WITH_HANDLE_OPEN = 6818u,
/// <summary>
/// The transaction outcome is unavailable because the resource manager responsible for it has disconnected.
/// </summary>
RM_DISCONNECTED = 6819u,
/// <summary>
/// The request was rejected because the enlistment in question is not a superior enlistment.
/// </summary>
ENLISTMENT_NOT_SUPERIOR = 6820u,
/// <summary>
/// The transactional resource manager is already consistent. Recovery is not needed.
/// </summary>
RECOVERY_NOT_NEEDED = 6821u,
/// <summary>
/// The transactional resource manager has already been started.
/// </summary>
RM_ALREADY_STARTED = 6822u,
/// <summary>
/// The file cannot be opened transactionally, because its identity depends on the outcome of an unresolved transaction.
/// </summary>
FILE_IDENTITY_NOT_PERSISTENT = 6823u,
/// <summary>
/// The operation cannot be performed because another transaction is depending on the fact that this property will not change.
/// </summary>
CANT_BREAK_TRANSACTIONAL_DEPENDENCY = 6824u,
/// <summary>
/// The operation would involve a single file with two transactional resource managers and is therefore not allowed.
/// </summary>
CANT_CROSS_RM_BOUNDARY = 6825u,
/// <summary>
/// The $Txf directory must be empty for this operation to succeed.
/// </summary>
TXF_DIR_NOT_EMPTY = 6826u,
/// <summary>
/// The operation would leave a transactional resource manager in an inconsistent state and is therefore not allowed.
/// </summary>
INDOUBT_TRANSACTIONS_EXIST = 6827u,
/// <summary>
/// The operation could not be completed because the transaction manager does not have a log.
/// </summary>
TM_VOLATILE = 6828u,
/// <summary>
/// A rollback could not be scheduled because a previously scheduled rollback has already executed or been queued for execution.
/// </summary>
ROLLBACK_TIMER_EXPIRED = 6829u,
/// <summary>
/// The transactional metadata attribute on the file or directory is corrupt and unreadable.
/// </summary>
TXF_ATTRIBUTE_CORRUPT = 6830u,
/// <summary>
/// The encryption operation could not be completed because a transaction is active.
/// </summary>
EFS_NOT_ALLOWED_IN_TRANSACTION = 6831u,
/// <summary>
/// This object is not allowed to be opened in a transaction.
/// </summary>
TRANSACTIONAL_OPEN_NOT_ALLOWED = 6832u,
/// <summary>
/// An attempt to create space in the transactional resource manager's log failed. The failure status has been recorded in the event log.
/// </summary>
LOG_GROWTH_FAILED = 6833u,
/// <summary>
/// Memory mapping (creating a mapped section) a remote file under a transaction is not supported.
/// </summary>
TRANSACTED_MAPPING_UNSUPPORTED_REMOTE = 6834u,
/// <summary>
/// Transaction metadata is already present on this file and cannot be superseded.
/// </summary>
TXF_METADATA_ALREADY_PRESENT = 6835u,
/// <summary>
/// A transaction scope could not be entered because the scope handler has not been initialized.
/// </summary>
TRANSACTION_SCOPE_CALLBACKS_NOT_SET = 6836u,
/// <summary>
/// Promotion was required in order to allow the resource manager to enlist, but the transaction was set to disallow it.
/// </summary>
TRANSACTION_REQUIRED_PROMOTION = 6837u,
/// <summary>
/// This file is open for modification in an unresolved transaction and may be opened for execute only by a transacted reader.
/// </summary>
CANNOT_EXECUTE_FILE_IN_TRANSACTION = 6838u,
/// <summary>
/// The request to thaw frozen transactions was ignored because transactions had not previously been frozen.
/// </summary>
TRANSACTIONS_NOT_FROZEN = 6839u,
/// <summary>
/// Transactions cannot be frozen because a freeze is already in progress.
/// </summary>
TRANSACTION_FREEZE_IN_PROGRESS = 6840u,
/// <summary>
/// The target volume is not a snapshot volume. This operation is only valid on a volume mounted as a snapshot.
/// </summary>
NOT_SNAPSHOT_VOLUME = 6841u,
/// <summary>
/// The savepoint operation failed because files are open on the transaction. This is not permitted.
/// </summary>
NO_SAVEPOINT_WITH_OPEN_FILES = 6842u,
/// <summary>
/// Windows has discovered corruption in a file, and that file has since been repaired. Data loss may have occurred.
/// </summary>
DATA_LOST_REPAIR = 6843u,
/// <summary>
/// The sparse operation could not be completed because a transaction is active on the file.
/// </summary>
SPARSE_NOT_ALLOWED_IN_TRANSACTION = 6844u,
/// <summary>
/// The call to create a TransactionManager object failed because the Tm Identity stored in the logfile does not match the Tm Identity that was passed in as an argument.
/// </summary>
TM_IDENTITY_MISMATCH = 6845u,
/// <summary>
/// I/O was attempted on a section object that has been floated as a result of a transaction ending. There is no valid data.
/// </summary>
FLOATED_SECTION = 6846u,
/// <summary>
/// The transactional resource manager cannot currently accept transacted work due to a transient condition such as low resources.
/// </summary>
CANNOT_ACCEPT_TRANSACTED_WORK = 6847u,
/// <summary>
/// The transactional resource manager had too many transactions outstanding that could not be aborted. The transactional resource manger has been shut down.
/// </summary>
CANNOT_ABORT_TRANSACTIONS = 6848u,
/// <summary>
/// The operation could not be completed due to bad clusters on disk.
/// </summary>
BAD_CLUSTERS = 6849u,
/// <summary>
/// The compression operation could not be completed because a transaction is active on the file.
/// </summary>
COMPRESSION_NOT_ALLOWED_IN_TRANSACTION = 6850u,
/// <summary>
/// The operation could not be completed because the volume is dirty. Please run chkdsk and try again.
/// </summary>
VOLUME_DIRTY = 6851u,
/// <summary>
/// The link tracking operation could not be completed because a transaction is active.
/// </summary>
NO_LINK_TRACKING_IN_TRANSACTION = 6852u,
/// <summary>
/// This operation cannot be performed in a transaction.
/// </summary>
OPERATION_NOT_SUPPORTED_IN_TRANSACTION = 6853u,
/// <summary>
/// The handle is no longer properly associated with its transaction. It may have been opened in a transactional resource manager that was subsequently forced to restart. Please close the handle and open a new one.
/// </summary>
EXPIRED_HANDLE = 6854u,
/// <summary>
/// The specified operation could not be performed because the resource manager is not enlisted in the transaction.
/// </summary>
TRANSACTION_NOT_ENLISTED = 6855u,
/// <summary>
/// The specified session name is invalid.
/// </summary>
CTX_WINSTATION_NAME_INVALID = 7001u,
/// <summary>
/// The specified protocol driver is invalid.
/// </summary>
CTX_INVALID_PD = 7002u,
/// <summary>
/// The specified protocol driver was not found in the system path.
/// </summary>
CTX_PD_NOT_FOUND = 7003u,
/// <summary>
/// The specified terminal connection driver was not found in the system path.
/// </summary>
CTX_WD_NOT_FOUND = 7004u,
/// <summary>
/// A registry key for event logging could not be created for this session.
/// </summary>
CTX_CANNOT_MAKE_EVENTLOG_ENTRY = 7005u,
/// <summary>
/// A service with the same name already exists on the system.
/// </summary>
CTX_SERVICE_NAME_COLLISION = 7006u,
/// <summary>
/// A close operation is pending on the session.
/// </summary>
CTX_CLOSE_PENDING = 7007u,
/// <summary>
/// There are no free output buffers available.
/// </summary>
CTX_NO_OUTBUF = 7008u,
/// <summary>
/// The MODEM.INF file was not found.
/// </summary>
CTX_MODEM_INF_NOT_FOUND = 7009u,
/// <summary>
/// The modem name was not found in MODEM.INF.
/// </summary>
CTX_INVALID_MODEMNAME = 7010u,
/// <summary>
/// The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem.
/// </summary>
CTX_MODEM_RESPONSE_ERROR = 7011u,
/// <summary>
/// The modem did not respond to the command sent to it. Verify that the modem is properly cabled and powered on.
/// </summary>
CTX_MODEM_RESPONSE_TIMEOUT = 7012u,
/// <summary>
/// Carrier detect has failed or carrier has been dropped due to disconnect.
/// </summary>
CTX_MODEM_RESPONSE_NO_CARRIER = 7013u,
/// <summary>
/// Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional.
/// </summary>
CTX_MODEM_RESPONSE_NO_DIALTONE = 7014u,
/// <summary>
/// Busy signal detected at remote site on callback.
/// </summary>
CTX_MODEM_RESPONSE_BUSY = 7015u,
/// <summary>
/// Voice detected at remote site on callback.
/// </summary>
CTX_MODEM_RESPONSE_VOICE = 7016u,
/// <summary>
/// Transport driver error
/// </summary>
CTX_TD_ERROR = 7017u,
/// <summary>
/// The specified session cannot be found.
/// </summary>
CTX_WINSTATION_NOT_FOUND = 7022u,
/// <summary>
/// The specified session name is already in use.
/// </summary>
CTX_WINSTATION_ALREADY_EXISTS = 7023u,
/// <summary>
/// The task you are trying to do can't be completed because Remote Desktop Services is currently busy. Please try again in a few minutes. Other users should still be able to log on.
/// </summary>
CTX_WINSTATION_BUSY = 7024u,
/// <summary>
/// An attempt has been made to connect to a session whose video mode is not supported by the current client.
/// </summary>
CTX_BAD_VIDEO_MODE = 7025u,
/// <summary>
/// The application attempted to enable DOS graphics mode. DOS graphics mode is not supported.
/// </summary>
CTX_GRAPHICS_INVALID = 7035u,
/// <summary>
/// Your interactive logon privilege has been disabled. Please contact your administrator.
/// </summary>
CTX_LOGON_DISABLED = 7037u,
/// <summary>
/// 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.
/// </summary>
CTX_NOT_CONSOLE = 7038u,
/// <summary>
/// The client failed to respond to the server connect message.
/// </summary>
CTX_CLIENT_QUERY_TIMEOUT = 7040u,
/// <summary>
/// Disconnecting the console session is not supported.
/// </summary>
CTX_CONSOLE_DISCONNECT = 7041u,
/// <summary>
/// Reconnecting a disconnected session to the console is not supported.
/// </summary>
CTX_CONSOLE_CONNECT = 7042u,
/// <summary>
/// The request to control another session remotely was denied.
/// </summary>
CTX_SHADOW_DENIED = 7044u,
/// <summary>
/// The requested session access is denied.
/// </summary>
CTX_WINSTATION_ACCESS_DENIED = 7045u,
/// <summary>
/// The specified terminal connection driver is invalid.
/// </summary>
CTX_INVALID_WD = 7049u,
/// <summary>
/// This may be because the session is disconnected or does not currently have a user logged on.
/// </summary>
CTX_SHADOW_INVALID = 7050u,
/// <summary>
/// The requested session is not configured to allow remote control.
/// </summary>
CTX_SHADOW_DISABLED = 7051u,
/// <summary>
/// Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number is currently being used by another user. Please call your system administrator to obtain a unique license number.
/// </summary>
CTX_CLIENT_LICENSE_IN_USE = 7052u,
/// <summary>
/// Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number has not been entered for this copy of the Terminal Server client. Please contact your system administrator.
/// </summary>
CTX_CLIENT_LICENSE_NOT_SET = 7053u,
/// <summary>
/// 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.
/// </summary>
CTX_LICENSE_NOT_AVAILABLE = 7054u,
/// <summary>
/// The client you are using is not licensed to use this system. Your logon request is denied.
/// </summary>
CTX_LICENSE_CLIENT_INVALID = 7055u,
/// <summary>
/// The system license has expired. Your logon request is denied.
/// </summary>
CTX_LICENSE_EXPIRED = 7056u,
/// <summary>
/// Remote control could not be terminated because the specified session is not currently being remotely controlled.
/// </summary>
CTX_SHADOW_NOT_RUNNING = 7057u,
/// <summary>
/// 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.
/// </summary>
CTX_SHADOW_ENDED_BY_MODE_CHANGE = 7058u,
/// <summary>
/// Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared.
/// </summary>
ACTIVATION_COUNT_EXCEEDED = 7059u,
/// <summary>
/// Remote logins are currently disabled.
/// </summary>
CTX_WINSTATIONS_DISABLED = 7060u,
/// <summary>
/// You do not have the proper encryption level to access this Session.
/// </summary>
CTX_ENCRYPTION_LEVEL_REQUIRED = 7061u,
/// <summary>
/// The user %s\\%s is currently logged on to this computer. Only the current user or an administrator can log on to this computer.
/// </summary>
CTX_SESSION_IN_USE = 7062u,
/// <summary>
/// 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.
/// </summary>
CTX_NO_FORCE_LOGOFF = 7063u,
/// <summary>
/// Unable to log you on because of an account restriction.
/// </summary>
CTX_ACCOUNT_RESTRICTION = 7064u,
/// <summary>
/// The RDP protocol component %2 detected an error in the protocol stream and has disconnected the client.
/// </summary>
RDP_PROTOCOL_ERROR = 7065u,
/// <summary>
/// The Client Drive Mapping Service Has Connected on Terminal Connection.
/// </summary>
CTX_CDM_CONNECT = 7066u,
/// <summary>
/// The Client Drive Mapping Service Has Disconnected on Terminal Connection.
/// </summary>
CTX_CDM_DISCONNECT = 7067u,
/// <summary>
/// The Terminal Server security layer detected an error in the protocol stream and has disconnected the client.
/// </summary>
CTX_SECURITY_LAYER_ERROR = 7068u,
/// <summary>
/// The target session is incompatible with the current session.
/// </summary>
TS_INCOMPATIBLE_SESSIONS = 7069u,
/// <summary>
/// Windows can't connect to your session because a problem occurred in the Windows video subsystem. Try connecting again later, or contact the server administrator for assistance.
/// </summary>
TS_VIDEO_SUBSYSTEM_ERROR = 7070u,
/// <summary>
/// The file replication service API was called incorrectly.
/// </summary>
FRS_ERR_INVALID_API_SEQUENCE = 8001u,
/// <summary>
/// The file replication service cannot be started.
/// </summary>
FRS_ERR_STARTING_SERVICE = 8002u,
/// <summary>
/// The file replication service cannot be stopped.
/// </summary>
FRS_ERR_STOPPING_SERVICE = 8003u,
/// <summary>
/// The file replication service API terminated the request. The event log may have more information.
/// </summary>
FRS_ERR_INTERNAL_API = 8004u,
/// <summary>
/// The file replication service terminated the request. The event log may have more information.
/// </summary>
FRS_ERR_INTERNAL = 8005u,
/// <summary>
/// The file replication service cannot be contacted. The event log may have more information.
/// </summary>
FRS_ERR_SERVICE_COMM = 8006u,
/// <summary>
/// The file replication service cannot satisfy the request because the user has insufficient privileges. The event log may have more information.
/// </summary>
FRS_ERR_INSUFFICIENT_PRIV = 8007u,
/// <summary>
/// The file replication service cannot satisfy the request because authenticated RPC is not available. The event log may have more information.
/// </summary>
FRS_ERR_AUTHENTICATION = 8008u,
/// <summary>
/// The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller. The event log may have more information.
/// </summary>
FRS_ERR_PARENT_INSUFFICIENT_PRIV = 8009u,
/// <summary>
/// The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller. The event log may have more information.
/// </summary>
FRS_ERR_PARENT_AUTHENTICATION = 8010u,
/// <summary>
/// The file replication service cannot communicate with the file replication service on the domain controller. The event log may have more information.
/// </summary>
FRS_ERR_CHILD_TO_PARENT_COMM = 8011u,
/// <summary>
/// The file replication service on the domain controller cannot communicate with the file replication service on this computer. The event log may have more information.
/// </summary>
FRS_ERR_PARENT_TO_CHILD_COMM = 8012u,
/// <summary>
/// The file replication service cannot populate the system volume because of an internal error. The event log may have more information.
/// </summary>
FRS_ERR_SYSVOL_POPULATE = 8013u,
/// <summary>
/// The file replication service cannot populate the system volume because of an internal timeout. The event log may have more information.
/// </summary>
FRS_ERR_SYSVOL_POPULATE_TIMEOUT = 8014u,
/// <summary>
/// The file replication service cannot process the request. The system volume is busy with a previous request.
/// </summary>
FRS_ERR_SYSVOL_IS_BUSY = 8015u,
/// <summary>
/// The file replication service cannot stop replicating the system volume because of an internal error. The event log may have more information.
/// </summary>
FRS_ERR_SYSVOL_DEMOTE = 8016u,
/// <summary>
/// The file replication service detected an invalid parameter.
/// </summary>
FRS_ERR_INVALID_SERVICE_PARAMETER = 8017u,
/// <summary>
/// An error occurred while installing the directory service. For more information, see the event log.
/// </summary>
DS_NOT_INSTALLED = 8200u,
/// <summary>
/// The directory service evaluated group memberships locally.
/// </summary>
DS_MEMBERSHIP_EVALUATED_LOCALLY = 8201u,
/// <summary>
/// The specified directory service attribute or value does not exist.
/// </summary>
DS_NO_ATTRIBUTE_OR_VALUE = 8202u,
/// <summary>
/// The attribute syntax specified to the directory service is invalid.
/// </summary>
DS_INVALID_ATTRIBUTE_SYNTAX = 8203u,
/// <summary>
/// The attribute type specified to the directory service is not defined.
/// </summary>
DS_ATTRIBUTE_TYPE_UNDEFINED = 8204u,
/// <summary>
/// The specified directory service attribute or value already exists.
/// </summary>
DS_ATTRIBUTE_OR_VALUE_EXISTS = 8205u,
/// <summary>
/// The directory service is busy.
/// </summary>
DS_BUSY = 8206u,
/// <summary>
/// The directory service is unavailable.
/// </summary>
DS_UNAVAILABLE = 8207u,
/// <summary>
/// The directory service was unable to allocate a relative identifier.
/// </summary>
DS_NO_RIDS_ALLOCATED = 8208u,
/// <summary>
/// The directory service has exhausted the pool of relative identifiers.
/// </summary>
DS_NO_MORE_RIDS = 8209u,
/// <summary>
/// The requested operation could not be performed because the directory service is not the master for that type of operation.
/// </summary>
DS_INCORRECT_ROLE_OWNER = 8210u,
/// <summary>
/// The directory service was unable to initialize the subsystem that allocates relative identifiers.
/// </summary>
DS_RIDMGR_INIT_ERROR = 8211u,
/// <summary>
/// The requested operation did not satisfy one or more constraints associated with the class of the object.
/// </summary>
DS_OBJ_CLASS_VIOLATION = 8212u,
/// <summary>
/// The directory service can perform the requested operation only on a leaf object.
/// </summary>
DS_CANT_ON_NON_LEAF = 8213u,
/// <summary>
/// The directory service cannot perform the requested operation on the RDN attribute of an object.
/// </summary>
DS_CANT_ON_RDN = 8214u,
/// <summary>
/// The directory service detected an attempt to modify the object class of an object.
/// </summary>
DS_CANT_MOD_OBJ_CLASS = 8215u,
/// <summary>
/// The requested cross-domain move operation could not be performed.
/// </summary>
DS_CROSS_DOM_MOVE_ERROR = 8216u,
/// <summary>
/// Unable to contact the global catalog server.
/// </summary>
DS_GC_NOT_AVAILABLE = 8217u,
/// <summary>
/// The policy object is shared and can only be modified at the root.
/// </summary>
SHARED_POLICY = 8218u,
/// <summary>
/// The policy object does not exist.
/// </summary>
POLICY_OBJECT_NOT_FOUND = 8219u,
/// <summary>
/// The requested policy information is only in the directory service.
/// </summary>
POLICY_ONLY_IN_DS = 8220u,
/// <summary>
/// A domain controller promotion is currently active.
/// </summary>
PROMOTION_ACTIVE = 8221u,
/// <summary>
/// A domain controller promotion is not currently active
/// </summary>
NO_PROMOTION_ACTIVE = 8222u,
/// <summary>
/// An operations error occurred.
/// </summary>
DS_OPERATIONS_ERROR = 8224u,
/// <summary>
/// A protocol error occurred.
/// </summary>
DS_PROTOCOL_ERROR = 8225u,
/// <summary>
/// The time limit for this request was exceeded.
/// </summary>
DS_TIMELIMIT_EXCEEDED = 8226u,
/// <summary>
/// The size limit for this request was exceeded.
/// </summary>
DS_SIZELIMIT_EXCEEDED = 8227u,
/// <summary>
/// The administrative limit for this request was exceeded.
/// </summary>
DS_ADMIN_LIMIT_EXCEEDED = 8228u,
/// <summary>
/// The compare response was false.
/// </summary>
DS_COMPARE_FALSE = 8229u,
/// <summary>
/// The compare response was true.
/// </summary>
DS_COMPARE_TRUE = 8230u,
/// <summary>
/// The requested authentication method is not supported by the server.
/// </summary>
DS_AUTH_METHOD_NOT_SUPPORTED = 8231u,
/// <summary>
/// A more secure authentication method is required for this server.
/// </summary>
DS_STRONG_AUTH_REQUIRED = 8232u,
/// <summary>
/// Inappropriate authentication.
/// </summary>
DS_INAPPROPRIATE_AUTH = 8233u,
/// <summary>
/// The authentication mechanism is unknown.
/// </summary>
DS_AUTH_UNKNOWN = 8234u,
/// <summary>
/// A referral was returned from the server.
/// </summary>
DS_REFERRAL = 8235u,
/// <summary>
/// The server does not support the requested critical extension.
/// </summary>
DS_UNAVAILABLE_CRIT_EXTENSION = 8236u,
/// <summary>
/// This request requires a secure connection.
/// </summary>
DS_CONFIDENTIALITY_REQUIRED = 8237u,
/// <summary>
/// Inappropriate matching.
/// </summary>
DS_INAPPROPRIATE_MATCHING = 8238u,
/// <summary>
/// A constraint violation occurred.
/// </summary>
DS_CONSTRAINT_VIOLATION = 8239u,
/// <summary>
/// There is no such object on the server.
/// </summary>
DS_NO_SUCH_OBJECT = 8240u,
/// <summary>
/// There is an alias problem.
/// </summary>
DS_ALIAS_PROBLEM = 8241u,
/// <summary>
/// An invalid dn syntax has been specified.
/// </summary>
DS_INVALID_DN_SYNTAX = 8242u,
/// <summary>
/// The object is a leaf object.
/// </summary>
DS_IS_LEAF = 8243u,
/// <summary>
/// There is an alias dereferencing problem.
/// </summary>
DS_ALIAS_DEREF_PROBLEM = 8244u,
/// <summary>
/// The server is unwilling to process the request.
/// </summary>
DS_UNWILLING_TO_PERFORM = 8245u,
/// <summary>
/// A loop has been detected.
/// </summary>
DS_LOOP_DETECT = 8246u,
/// <summary>
/// There is a naming violation.
/// </summary>
DS_NAMING_VIOLATION = 8247u,
/// <summary>
/// The result set is too large.
/// </summary>
DS_OBJECT_RESULTS_TOO_LARGE = 8248u,
/// <summary>
/// The operation affects multiple DSAs
/// </summary>
DS_AFFECTS_MULTIPLE_DSAS = 8249u,
/// <summary>
/// The server is not operational.
/// </summary>
DS_SERVER_DOWN = 8250u,
/// <summary>
/// A local error has occurred.
/// </summary>
DS_LOCAL_ERROR = 8251u,
/// <summary>
/// An encoding error has occurred.
/// </summary>
DS_ENCODING_ERROR = 8252u,
/// <summary>
/// A decoding error has occurred.
/// </summary>
DS_DECODING_ERROR = 8253u,
/// <summary>
/// The search filter cannot be recognized.
/// </summary>
DS_FILTER_UNKNOWN = 8254u,
/// <summary>
/// One or more parameters are illegal.
/// </summary>
DS_PARAM_ERROR = 8255u,
/// <summary>
/// The specified method is not supported.
/// </summary>
DS_NOT_SUPPORTED = 8256u,
/// <summary>
/// No results were returned.
/// </summary>
DS_NO_RESULTS_RETURNED = 8257u,
/// <summary>
/// The specified control is not supported by the server.
/// </summary>
DS_CONTROL_NOT_FOUND = 8258u,
/// <summary>
/// A referral loop was detected by the client.
/// </summary>
DS_CLIENT_LOOP = 8259u,
/// <summary>
/// The preset referral limit was exceeded.
/// </summary>
DS_REFERRAL_LIMIT_EXCEEDED = 8260u,
/// <summary>
/// The search requires a SORT control.
/// </summary>
DS_SORT_CONTROL_MISSING = 8261u,
/// <summary>
/// The search results exceed the offset range specified.
/// </summary>
DS_OFFSET_RANGE_ERROR = 8262u,
/// <summary>
/// The directory service detected the subsystem that allocates relative identifiers is disabled. This can occur as a protective mechanism when the system determines a significant portion of relative identifiers (RIDs) have been exhausted. Please see http://go.microsoft.com/fwlink/?LinkId=228610 for recommended diagnostic steps and the procedure to re-enable account creation.
/// </summary>
DS_RIDMGR_DISABLED = 8263u,
/// <summary>
/// The root object must be the head of a naming context. The root object cannot have an instantiated parent.
/// </summary>
DS_ROOT_MUST_BE_NC = 8301u,
/// <summary>
/// The add replica operation cannot be performed. The naming context must be writeable in order to create the replica.
/// </summary>
DS_ADD_REPLICA_INHIBITED = 8302u,
/// <summary>
/// A reference to an attribute that is not defined in the schema occurred.
/// </summary>
DS_ATT_NOT_DEF_IN_SCHEMA = 8303u,
/// <summary>
/// The maximum size of an object has been exceeded.
/// </summary>
DS_MAX_OBJ_SIZE_EXCEEDED = 8304u,
/// <summary>
/// An attempt was made to add an object to the directory with a name that is already in use.
/// </summary>
DS_OBJ_STRING_NAME_EXISTS = 8305u,
/// <summary>
/// An attempt was made to add an object of a class that does not have an RDN defined in the schema.
/// </summary>
DS_NO_RDN_DEFINED_IN_SCHEMA = 8306u,
/// <summary>
/// An attempt was made to add an object using an RDN that is not the RDN defined in the schema.
/// </summary>
DS_RDN_DOESNT_MATCH_SCHEMA = 8307u,
/// <summary>
/// None of the requested attributes were found on the objects.
/// </summary>
DS_NO_REQUESTED_ATTS_FOUND = 8308u,
/// <summary>
/// The user buffer is too small.
/// </summary>
DS_USER_BUFFER_TO_SMALL = 8309u,
/// <summary>
/// The attribute specified in the operation is not present on the object.
/// </summary>
DS_ATT_IS_NOT_ON_OBJ = 8310u,
/// <summary>
/// Illegal modify operation. Some aspect of the modification is not permitted.
/// </summary>
DS_ILLEGAL_MOD_OPERATION = 8311u,
/// <summary>
/// The specified object is too large.
/// </summary>
DS_OBJ_TOO_LARGE = 8312u,
/// <summary>
/// The specified instance type is not valid.
/// </summary>
DS_BAD_INSTANCE_TYPE = 8313u,
/// <summary>
/// The operation must be performed at a master DSA.
/// </summary>
DS_MASTERDSA_REQUIRED = 8314u,
/// <summary>
/// The object class attribute must be specified.
/// </summary>
DS_OBJECT_CLASS_REQUIRED = 8315u,
/// <summary>
/// A required attribute is missing.
/// </summary>
DS_MISSING_REQUIRED_ATT = 8316u,
/// <summary>
/// An attempt was made to modify an object to include an attribute that is not legal for its class.
/// </summary>
DS_ATT_NOT_DEF_FOR_CLASS = 8317u,
/// <summary>
/// The specified attribute is already present on the object.
/// </summary>
DS_ATT_ALREADY_EXISTS = 8318u,
/// <summary>
/// The specified attribute is not present, or has no values.
/// </summary>
DS_CANT_ADD_ATT_VALUES = 8320u,
/// <summary>
/// Multiple values were specified for an attribute that can have only one value.
/// </summary>
DS_SINGLE_VALUE_CONSTRAINT = 8321u,
/// <summary>
/// A value for the attribute was not in the acceptable range of values.
/// </summary>
DS_RANGE_CONSTRAINT = 8322u,
/// <summary>
/// The specified value already exists.
/// </summary>
DS_ATT_VAL_ALREADY_EXISTS = 8323u,
/// <summary>
/// The attribute cannot be removed because it is not present on the object.
/// </summary>
DS_CANT_REM_MISSING_ATT = 8324u,
/// <summary>
/// The attribute value cannot be removed because it is not present on the object.
/// </summary>
DS_CANT_REM_MISSING_ATT_VAL = 8325u,
/// <summary>
/// The specified root object cannot be a subref.
/// </summary>
DS_ROOT_CANT_BE_SUBREF = 8326u,
/// <summary>
/// Chaining is not permitted.
/// </summary>
DS_NO_CHAINING = 8327u,
/// <summary>
/// Chained evaluation is not permitted.
/// </summary>
DS_NO_CHAINED_EVAL = 8328u,
/// <summary>
/// The operation could not be performed because the object's parent is either uninstantiated or deleted.
/// </summary>
DS_NO_PARENT_OBJECT = 8329u,
/// <summary>
/// Having a parent that is an alias is not permitted. Aliases are leaf objects.
/// </summary>
DS_PARENT_IS_AN_ALIAS = 8330u,
/// <summary>
/// The object and parent must be of the same type, either both masters or both replicas.
/// </summary>
DS_CANT_MIX_MASTER_AND_REPS = 8331u,
/// <summary>
/// The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object.
/// </summary>
DS_CHILDREN_EXIST = 8332u,
/// <summary>
/// Directory object not found.
/// </summary>
DS_OBJ_NOT_FOUND = 8333u,
/// <summary>
/// The aliased object is missing.
/// </summary>
DS_ALIASED_OBJ_MISSING = 8334u,
/// <summary>
/// The object name has bad syntax.
/// </summary>
DS_BAD_NAME_SYNTAX = 8335u,
/// <summary>
/// It is not permitted for an alias to refer to another alias.
/// </summary>
DS_ALIAS_POINTS_TO_ALIAS = 8336u,
/// <summary>
/// The alias cannot be dereferenced.
/// </summary>
DS_CANT_DEREF_ALIAS = 8337u,
/// <summary>
/// The operation is out of scope.
/// </summary>
DS_OUT_OF_SCOPE = 8338u,
/// <summary>
/// The operation cannot continue because the object is in the process of being removed.
/// </summary>
DS_OBJECT_BEING_REMOVED = 8339u,
/// <summary>
/// The DSA object cannot be deleted.
/// </summary>
DS_CANT_DELETE_DSA_OBJ = 8340u,
/// <summary>
/// A directory service error has occurred.
/// </summary>
DS_GENERIC_ERROR = 8341u,
/// <summary>
/// The operation can only be performed on an internal master DSA object.
/// </summary>
DS_DSA_MUST_BE_INT_MASTER = 8342u,
/// <summary>
/// The object must be of class DSA.
/// </summary>
DS_CLASS_NOT_DSA = 8343u,
/// <summary>
/// Insufficient access rights to perform the operation.
/// </summary>
DS_INSUFF_ACCESS_RIGHTS = 8344u,
/// <summary>
/// The object cannot be added because the parent is not on the list of possible superiors.
/// </summary>
DS_ILLEGAL_SUPERIOR = 8345u,
/// <summary>
/// Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager (SAM).
/// </summary>
DS_ATTRIBUTE_OWNED_BY_SAM = 8346u,
/// <summary>
/// The name has too many parts.
/// </summary>
DS_NAME_TOO_MANY_PARTS = 8347u,
/// <summary>
/// The name is too long.
/// </summary>
DS_NAME_TOO_LONG = 8348u,
/// <summary>
/// The name value is too long.
/// </summary>
DS_NAME_VALUE_TOO_LONG = 8349u,
/// <summary>
/// The directory service encountered an error parsing a name.
/// </summary>
DS_NAME_UNPARSEABLE = 8350u,
/// <summary>
/// The directory service cannot get the attribute type for a name.
/// </summary>
DS_NAME_TYPE_UNKNOWN = 8351u,
/// <summary>
/// The name does not identify an object; the name identifies a phantom.
/// </summary>
DS_NOT_AN_OBJECT = 8352u,
/// <summary>
/// The security descriptor is too short.
/// </summary>
DS_SEC_DESC_TOO_SHORT = 8353u,
/// <summary>
/// The security descriptor is invalid.
/// </summary>
DS_SEC_DESC_INVALID = 8354u,
/// <summary>
/// Failed to create name for deleted object.
/// </summary>
DS_NO_DELETED_NAME = 8355u,
/// <summary>
/// The parent of a new subref must exist.
/// </summary>
DS_SUBREF_MUST_HAVE_PARENT = 8356u,
/// <summary>
/// The object must be a naming context.
/// </summary>
DS_NCNAME_MUST_BE_NC = 8357u,
/// <summary>
/// It is not permitted to add an attribute which is owned by the system.
/// </summary>
DS_CANT_ADD_SYSTEM_ONLY = 8358u,
/// <summary>
/// The class of the object must be structural; you cannot instantiate an abstract class.
/// </summary>
DS_CLASS_MUST_BE_CONCRETE = 8359u,
/// <summary>
/// The schema object could not be found.
/// </summary>
DS_INVALID_DMD = 8360u,
/// <summary>
/// A local object with this GUID (dead or alive) already exists.
/// </summary>
DS_OBJ_GUID_EXISTS = 8361u,
/// <summary>
/// The operation cannot be performed on a back link.
/// </summary>
DS_NOT_ON_BACKLINK = 8362u,
/// <summary>
/// The cross reference for the specified naming context could not be found.
/// </summary>
DS_NO_CROSSREF_FOR_NC = 8363u,
/// <summary>
/// The operation could not be performed because the directory service is shutting down.
/// </summary>
DS_SHUTTING_DOWN = 8364u,
/// <summary>
/// The directory service request is invalid.
/// </summary>
DS_UNKNOWN_OPERATION = 8365u,
/// <summary>
/// The role owner attribute could not be read.
/// </summary>
DS_INVALID_ROLE_OWNER = 8366u,
/// <summary>
/// The requested FSMO operation failed. The current FSMO holder could not be contacted.
/// </summary>
DS_COULDNT_CONTACT_FSMO = 8367u,
/// <summary>
/// Modification of a DN across a naming context is not permitted.
/// </summary>
DS_CROSS_NC_DN_RENAME = 8368u,
/// <summary>
/// The attribute cannot be modified because it is owned by the system.
/// </summary>
DS_CANT_MOD_SYSTEM_ONLY = 8369u,
/// <summary>
/// Only the replicator can perform this function.
/// </summary>
DS_REPLICATOR_ONLY = 8370u,
/// <summary>
/// The specified class is not defined.
/// </summary>
DS_OBJ_CLASS_NOT_DEFINED = 8371u,
/// <summary>
/// The specified class is not a subclass.
/// </summary>
DS_OBJ_CLASS_NOT_SUBCLASS = 8372u,
/// <summary>
/// The name reference is invalid.
/// </summary>
DS_NAME_REFERENCE_INVALID = 8373u,
/// <summary>
/// A cross reference already exists.
/// </summary>
DS_CROSS_REF_EXISTS = 8374u,
/// <summary>
/// It is not permitted to delete a master cross reference.
/// </summary>
DS_CANT_DEL_MASTER_CROSSREF = 8375u,
/// <summary>
/// Subtree notifications are only supported on NC heads.
/// </summary>
DS_SUBTREE_NOTIFY_NOT_NC_HEAD = 8376u,
/// <summary>
/// Notification filter is too complex.
/// </summary>
DS_NOTIFY_FILTER_TOO_COMPLEX = 8377u,
/// <summary>
/// Schema update failed: duplicate RDN.
/// </summary>
DS_DUP_RDN = 8378u,
/// <summary>
/// Schema update failed: duplicate OID.
/// </summary>
DS_DUP_OID = 8379u,
/// <summary>
/// Schema update failed: duplicate MAPI identifier.
/// </summary>
DS_DUP_MAPI_ID = 8380u,
/// <summary>
/// Schema update failed: duplicate schema-id GUID.
/// </summary>
DS_DUP_SCHEMA_ID_GUID = 8381u,
/// <summary>
/// Schema update failed: duplicate LDAP display name.
/// </summary>
DS_DUP_LDAP_DISPLAY_NAME = 8382u,
/// <summary>
/// Schema update failed: range-lower less than range upper.
/// </summary>
DS_SEMANTIC_ATT_TEST = 8383u,
/// <summary>
/// Schema update failed: syntax mismatch.
/// </summary>
DS_SYNTAX_MISMATCH = 8384u,
/// <summary>
/// Schema deletion failed: attribute is used in must-contain.
/// </summary>
DS_EXISTS_IN_MUST_HAVE = 8385u,
/// <summary>
/// Schema deletion failed: attribute is used in may-contain.
/// </summary>
DS_EXISTS_IN_MAY_HAVE = 8386u,
/// <summary>
/// Schema update failed: attribute in may-contain does not exist.
/// </summary>
DS_NONEXISTENT_MAY_HAVE = 8387u,
/// <summary>
/// Schema update failed: attribute in must-contain does not exist.
/// </summary>
DS_NONEXISTENT_MUST_HAVE = 8388u,
/// <summary>
/// Schema update failed: class in aux-class list does not exist or is not an auxiliary class.
/// </summary>
DS_AUX_CLS_TEST_FAIL = 8389u,
/// <summary>
/// Schema update failed: class in poss-superiors does not exist.
/// </summary>
DS_NONEXISTENT_POSS_SUP = 8390u,
/// <summary>
/// Schema update failed: class in subclassof list does not exist or does not satisfy hierarchy rules.
/// </summary>
DS_SUB_CLS_TEST_FAIL = 8391u,
/// <summary>
/// Schema update failed: Rdn-Att-Id has wrong syntax.
/// </summary>
DS_BAD_RDN_ATT_ID_SYNTAX = 8392u,
/// <summary>
/// Schema deletion failed: class is used as auxiliary class.
/// </summary>
DS_EXISTS_IN_AUX_CLS = 8393u,
/// <summary>
/// Schema deletion failed: class is used as sub class.
/// </summary>
DS_EXISTS_IN_SUB_CLS = 8394u,
/// <summary>
/// Schema deletion failed: class is used as poss superior.
/// </summary>
DS_EXISTS_IN_POSS_SUP = 8395u,
/// <summary>
/// Schema update failed in recalculating validation cache.
/// </summary>
DS_RECALCSCHEMA_FAILED = 8396u,
/// <summary>
/// The tree deletion is not finished. The request must be made again to continue deleting the tree.
/// </summary>
DS_TREE_DELETE_NOT_FINISHED = 8397u,
/// <summary>
/// The requested delete operation could not be performed.
/// </summary>
DS_CANT_DELETE = 8398u,
/// <summary>
/// Cannot read the governs class identifier for the schema record.
/// </summary>
DS_ATT_SCHEMA_REQ_ID = 8399u,
/// <summary>
/// The attribute schema has bad syntax.
/// </summary>
DS_BAD_ATT_SCHEMA_SYNTAX = 8400u,
/// <summary>
/// The attribute could not be cached.
/// </summary>
DS_CANT_CACHE_ATT = 8401u,
/// <summary>
/// The class could not be cached.
/// </summary>
DS_CANT_CACHE_CLASS = 8402u,
/// <summary>
/// The attribute could not be removed from the cache.
/// </summary>
DS_CANT_REMOVE_ATT_CACHE = 8403u,
/// <summary>
/// The class could not be removed from the cache.
/// </summary>
DS_CANT_REMOVE_CLASS_CACHE = 8404u,
/// <summary>
/// The distinguished name attribute could not be read.
/// </summary>
DS_CANT_RETRIEVE_DN = 8405u,
/// <summary>
/// No superior reference has been configured for the directory service. The directory service is therefore unable to issue referrals to objects outside this forest.
/// </summary>
DS_MISSING_SUPREF = 8406u,
/// <summary>
/// The instance type attribute could not be retrieved.
/// </summary>
DS_CANT_RETRIEVE_INSTANCE = 8407u,
/// <summary>
/// An internal error has occurred.
/// </summary>
DS_CODE_INCONSISTENCY = 8408u,
/// <summary>
/// A database error has occurred.
/// </summary>
DS_DATABASE_ERROR = 8409u,
/// <summary>
/// The attribute GOVERNSID is missing.
/// </summary>
DS_GOVERNSID_MISSING = 8410u,
/// <summary>
/// An expected attribute is missing.
/// </summary>
DS_MISSING_EXPECTED_ATT = 8411u,
/// <summary>
/// The specified naming context is missing a cross reference.
/// </summary>
DS_NCNAME_MISSING_CR_REF = 8412u,
/// <summary>
/// A security checking error has occurred.
/// </summary>
DS_SECURITY_CHECKING_ERROR = 8413u,
/// <summary>
/// The schema is not loaded.
/// </summary>
DS_SCHEMA_NOT_LOADED = 8414u,
/// <summary>
/// Schema allocation failed. Please check if the machine is running low on memory.
/// </summary>
DS_SCHEMA_ALLOC_FAILED = 8415u,
/// <summary>
/// Failed to obtain the required syntax for the attribute schema.
/// </summary>
DS_ATT_SCHEMA_REQ_SYNTAX = 8416u,
/// <summary>
/// The global catalog verification failed. The global catalog is not available or does not support the operation. Some part of the directory is currently not available.
/// </summary>
DS_GCVERIFY_ERROR = 8417u,
/// <summary>
/// The replication operation failed because of a schema mismatch between the servers involved.
/// </summary>
DS_DRA_SCHEMA_MISMATCH = 8418u,
/// <summary>
/// The DSA object could not be found.
/// </summary>
DS_CANT_FIND_DSA_OBJ = 8419u,
/// <summary>
/// The naming context could not be found.
/// </summary>
DS_CANT_FIND_EXPECTED_NC = 8420u,
/// <summary>
/// The naming context could not be found in the cache.
/// </summary>
DS_CANT_FIND_NC_IN_CACHE = 8421u,
/// <summary>
/// The child object could not be retrieved.
/// </summary>
DS_CANT_RETRIEVE_CHILD = 8422u,
/// <summary>
/// The modification was not permitted for security reasons.
/// </summary>
DS_SECURITY_ILLEGAL_MODIFY = 8423u,
/// <summary>
/// The operation cannot replace the hidden record.
/// </summary>
DS_CANT_REPLACE_HIDDEN_REC = 8424u,
/// <summary>
/// The hierarchy file is invalid.
/// </summary>
DS_BAD_HIERARCHY_FILE = 8425u,
/// <summary>
/// The attempt to build the hierarchy table failed.
/// </summary>
DS_BUILD_HIERARCHY_TABLE_FAILED = 8426u,
/// <summary>
/// The directory configuration parameter is missing from the registry.
/// </summary>
DS_CONFIG_PARAM_MISSING = 8427u,
/// <summary>
/// The attempt to count the address book indices failed.
/// </summary>
DS_COUNTING_AB_INDICES_FAILED = 8428u,
/// <summary>
/// The allocation of the hierarchy table failed.
/// </summary>
DS_HIERARCHY_TABLE_MALLOC_FAILED = 8429u,
/// <summary>
/// The directory service encountered an internal failure.
/// </summary>
DS_INTERNAL_FAILURE = 8430u,
/// <summary>
/// The directory service encountered an unknown failure.
/// </summary>
DS_UNKNOWN_ERROR = 8431u,
/// <summary>
/// A root object requires a class of 'top'.
/// </summary>
DS_ROOT_REQUIRES_CLASS_TOP = 8432u,
/// <summary>
/// This directory server is shutting down, and cannot take ownership of new floating single-master operation roles.
/// </summary>
DS_REFUSING_FSMO_ROLES = 8433u,
/// <summary>
/// The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles.
/// </summary>
DS_MISSING_FSMO_SETTINGS = 8434u,
/// <summary>
/// The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers.
/// </summary>
DS_UNABLE_TO_SURRENDER_ROLES = 8435u,
/// <summary>
/// The replication operation failed.
/// </summary>
DS_DRA_GENERIC = 8436u,
/// <summary>
/// An invalid parameter was specified for this replication operation.
/// </summary>
DS_DRA_INVALID_PARAMETER = 8437u,
/// <summary>
/// The directory service is too busy to complete the replication operation at this time.
/// </summary>
DS_DRA_BUSY = 8438u,
/// <summary>
/// The distinguished name specified for this replication operation is invalid.
/// </summary>
DS_DRA_BAD_DN = 8439u,
/// <summary>
/// The naming context specified for this replication operation is invalid.
/// </summary>
DS_DRA_BAD_NC = 8440u,
/// <summary>
/// The distinguished name specified for this replication operation already exists.
/// </summary>
DS_DRA_DN_EXISTS = 8441u,
/// <summary>
/// The replication system encountered an internal error.
/// </summary>
DS_DRA_INTERNAL_ERROR = 8442u,
/// <summary>
/// The replication operation encountered a database inconsistency.
/// </summary>
DS_DRA_INCONSISTENT_DIT = 8443u,
/// <summary>
/// The server specified for this replication operation could not be contacted.
/// </summary>
DS_DRA_CONNECTION_FAILED = 8444u,
/// <summary>
/// The replication operation encountered an object with an invalid instance type.
/// </summary>
DS_DRA_BAD_INSTANCE_TYPE = 8445u,
/// <summary>
/// The replication operation failed to allocate memory.
/// </summary>
DS_DRA_OUT_OF_MEM = 8446u,
/// <summary>
/// The replication operation encountered an error with the mail system.
/// </summary>
DS_DRA_MAIL_PROBLEM = 8447u,
/// <summary>
/// The replication reference information for the target server already exists.
/// </summary>
DS_DRA_REF_ALREADY_EXISTS = 8448u,
/// <summary>
/// The replication reference information for the target server does not exist.
/// </summary>
DS_DRA_REF_NOT_FOUND = 8449u,
/// <summary>
/// The naming context cannot be removed because it is replicated to another server.
/// </summary>
DS_DRA_OBJ_IS_REP_SOURCE = 8450u,
/// <summary>
/// The replication operation encountered a database error.
/// </summary>
DS_DRA_DB_ERROR = 8451u,
/// <summary>
/// The naming context is in the process of being removed or is not replicated from the specified server.
/// </summary>
DS_DRA_NO_REPLICA = 8452u,
/// <summary>
/// Replication access was denied.
/// </summary>
DS_DRA_ACCESS_DENIED = 8453u,
/// <summary>
/// The requested operation is not supported by this version of the directory service.
/// </summary>
DS_DRA_NOT_SUPPORTED = 8454u,
/// <summary>
/// The replication remote procedure call was cancelled.
/// </summary>
DS_DRA_RPC_CANCELLED = 8455u,
/// <summary>
/// The source server is currently rejecting replication requests.
/// </summary>
DS_DRA_SOURCE_DISABLED = 8456u,
/// <summary>
/// The destination server is currently rejecting replication requests.
/// </summary>
DS_DRA_SINK_DISABLED = 8457u,
/// <summary>
/// The replication operation failed due to a collision of object names.
/// </summary>
DS_DRA_NAME_COLLISION = 8458u,
/// <summary>
/// The replication source has been reinstalled.
/// </summary>
DS_DRA_SOURCE_REINSTALLED = 8459u,
/// <summary>
/// The replication operation failed because a required parent object is missing.
/// </summary>
DS_DRA_MISSING_PARENT = 8460u,
/// <summary>
/// The replication operation was preempted.
/// </summary>
DS_DRA_PREEMPTED = 8461u,
/// <summary>
/// The replication synchronization attempt was abandoned because of a lack of updates.
/// </summary>
DS_DRA_ABANDON_SYNC = 8462u,
/// <summary>
/// The replication operation was terminated because the system is shutting down.
/// </summary>
DS_DRA_SHUTDOWN = 8463u,
/// <summary>
/// Synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from source. This condition is normal if a recent schema change modified the partial attribute set. The destination partial attribute set is not a subset of source partial attribute set.
/// </summary>
DS_DRA_INCOMPATIBLE_PARTIAL_SET = 8464u,
/// <summary>
/// The replication synchronization attempt failed because a master replica attempted to sync from a partial replica.
/// </summary>
DS_DRA_SOURCE_IS_PARTIAL_REPLICA = 8465u,
/// <summary>
/// The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation.
/// </summary>
DS_DRA_EXTN_CONNECTION_FAILED = 8466u,
/// <summary>
/// The version of the directory service schema of the source forest is not compatible with the version of directory service on this computer.
/// </summary>
DS_INSTALL_SCHEMA_MISMATCH = 8467u,
/// <summary>
/// Schema update failed: An attribute with the same link identifier already exists.
/// </summary>
DS_DUP_LINK_ID = 8468u,
/// <summary>
/// Name translation: Generic processing error.
/// </summary>
DS_NAME_ERROR_RESOLVING = 8469u,
/// <summary>
/// Name translation: Could not find the name or insufficient right to see name.
/// </summary>
DS_NAME_ERROR_NOT_FOUND = 8470u,
/// <summary>
/// Name translation: Input name mapped to more than one output name.
/// </summary>
DS_NAME_ERROR_NOT_UNIQUE = 8471u,
/// <summary>
/// Name translation: Input name found, but not the associated output format.
/// </summary>
DS_NAME_ERROR_NO_MAPPING = 8472u,
/// <summary>
/// Name translation: Unable to resolve completely, only the domain was found.
/// </summary>
DS_NAME_ERROR_DOMAIN_ONLY = 8473u,
/// <summary>
/// Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire.
/// </summary>
DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 8474u,
/// <summary>
/// Modification of a constructed attribute is not allowed.
/// </summary>
DS_CONSTRUCTED_ATT_MOD = 8475u,
/// <summary>
/// The OM-Object-Class specified is incorrect for an attribute with the specified syntax.
/// </summary>
DS_WRONG_OM_OBJ_CLASS = 8476u,
/// <summary>
/// The replication request has been posted; waiting for reply.
/// </summary>
DS_DRA_REPL_PENDING = 8477u,
/// <summary>
/// The requested operation requires a directory service, and none was available.
/// </summary>
DS_DS_REQUIRED = 8478u,
/// <summary>
/// The LDAP display name of the class or attribute contains non-ASCII characters.
/// </summary>
DS_INVALID_LDAP_DISPLAY_NAME = 8479u,
/// <summary>
/// The requested search operation is only supported for base searches.
/// </summary>
DS_NON_BASE_SEARCH = 8480u,
/// <summary>
/// The search failed to retrieve attributes from the database.
/// </summary>
DS_CANT_RETRIEVE_ATTS = 8481u,
/// <summary>
/// The schema update operation tried to add a backward link attribute that has no corresponding forward link.
/// </summary>
DS_BACKLINK_WITHOUT_LINK = 8482u,
/// <summary>
/// Source and destination of a cross-domain move do not agree on the object's epoch number. Either source or destination does not have the latest version of the object.
/// </summary>
DS_EPOCH_MISMATCH = 8483u,
/// <summary>
/// Source and destination of a cross-domain move do not agree on the object's current name. Either source or destination does not have the latest version of the object.
/// </summary>
DS_SRC_NAME_MISMATCH = 8484u,
/// <summary>
/// Source and destination for the cross-domain move operation are identical. Caller should use local move operation instead of cross-domain move operation.
/// </summary>
DS_SRC_AND_DST_NC_IDENTICAL = 8485u,
/// <summary>
/// Source and destination for a cross-domain move are not in agreement on the naming contexts in the forest. Either source or destination does not have the latest version of the Partitions container.
/// </summary>
DS_DST_NC_MISMATCH = 8486u,
/// <summary>
/// Destination of a cross-domain move is not authoritative for the destination naming context.
/// </summary>
DS_NOT_AUTHORITIVE_FOR_DST_NC = 8487u,
/// <summary>
/// Source and destination of a cross-domain move do not agree on the identity of the source object. Either source or destination does not have the latest version of the source object.
/// </summary>
DS_SRC_GUID_MISMATCH = 8488u,
/// <summary>
/// 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.
/// </summary>
DS_CANT_MOVE_DELETED_OBJECT = 8489u,
/// <summary>
/// Another operation which requires exclusive access to the PDC FSMO is already in progress.
/// </summary>
DS_PDC_OPERATION_IN_PROGRESS = 8490u,
/// <summary>
/// A cross-domain move operation failed such that two versions of the moved object exist - one each in the source and destination domains. The destination object needs to be removed to restore the system to a consistent state.
/// </summary>
DS_CROSS_DOMAIN_CLEANUP_REQD = 8491u,
/// <summary>
/// This object may not be moved across domain boundaries either because cross-domain moves for this class are disallowed, or the object has some special characteristics, e.g.: trust account or restricted RID, which prevent its move.
/// </summary>
DS_ILLEGAL_XDOM_MOVE_OPERATION = 8492u,
/// <summary>
/// Can't move objects with memberships across domain boundaries as once moved, this would violate the membership conditions of the account group. Remove the object from any account group memberships and retry.
/// </summary>
DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS = 8493u,
/// <summary>
/// A naming context head must be the immediate child of another naming context head, not of an interior node.
/// </summary>
DS_NC_MUST_HAVE_NC_PARENT = 8494u,
/// <summary>
/// The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context. Please ensure that the domain naming master role is held by a server that is configured as a global catalog server, and that the server is up to date with its replication partners. (Applies only to Windows 2000 Domain Naming masters)
/// </summary>
DS_CR_IMPOSSIBLE_TO_VALIDATE = 8495u,
/// <summary>
/// Destination domain must be in native mode.
/// </summary>
DS_DST_DOMAIN_NOT_NATIVE = 8496u,
/// <summary>
/// The operation cannot be performed because the server does not have an infrastructure container in the domain of interest.
/// </summary>
DS_MISSING_INFRASTRUCTURE_CONTAINER = 8497u,
/// <summary>
/// Cross-domain move of non-empty account groups is not allowed.
/// </summary>
DS_CANT_MOVE_ACCOUNT_GROUP = 8498u,
/// <summary>
/// Cross-domain move of non-empty resource groups is not allowed.
/// </summary>
DS_CANT_MOVE_RESOURCE_GROUP = 8499u,
/// <summary>
/// The search flags for the attribute are invalid. The ANR bit is valid only on attributes of Unicode or Teletex strings.
/// </summary>
DS_INVALID_SEARCH_FLAG = 8500u,
/// <summary>
/// Tree deletions starting at an object which has an NC head as a descendant are not allowed.
/// </summary>
DS_NO_TREE_DELETE_ABOVE_NC = 8501u,
/// <summary>
/// The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use.
/// </summary>
DS_COULDNT_LOCK_TREE_FOR_DELETE = 8502u,
/// <summary>
/// The directory service failed to identify the list of objects to delete while attempting a tree deletion.
/// </summary>
DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE = 8503u,
/// <summary>
/// Error Status: 0x%2. Please shutdown this system and reboot into Directory Services Restore Mode, check the event log for more detailed information.
/// </summary>
DS_SAM_INIT_FAILURE = 8504u,
/// <summary>
/// Only an administrator can modify the membership list of an administrative group.
/// </summary>
DS_SENSITIVE_GROUP_VIOLATION = 8505u,
/// <summary>
/// Cannot change the primary group ID of a domain controller account.
/// </summary>
DS_CANT_MOD_PRIMARYGROUPID = 8506u,
/// <summary>
/// An attempt is made to modify the base schema.
/// </summary>
DS_ILLEGAL_BASE_SCHEMA_MOD = 8507u,
/// <summary>
/// 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.
/// </summary>
DS_NONSAFE_SCHEMA_CHANGE = 8508u,
/// <summary>
/// Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner.
/// </summary>
DS_SCHEMA_UPDATE_DISALLOWED = 8509u,
/// <summary>
/// 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.
/// </summary>
DS_CANT_CREATE_UNDER_SCHEMA = 8510u,
/// <summary>
/// The replica/child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it.
/// </summary>
DS_INSTALL_NO_SRC_SCH_VERSION = 8511u,
/// <summary>
/// The replica/child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the system32 directory.
/// </summary>
DS_INSTALL_NO_SCH_VERSION_IN_INIFILE = 8512u,
/// <summary>
/// The specified group type is invalid.
/// </summary>
DS_INVALID_GROUP_TYPE = 8513u,
/// <summary>
/// You cannot nest global groups in a mixed domain if the group is security-enabled.
/// </summary>
DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN = 8514u,
/// <summary>
/// You cannot nest local groups in a mixed domain if the group is security-enabled.
/// </summary>
DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN = 8515u,
/// <summary>
/// A global group cannot have a local group as a member.
/// </summary>
DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER = 8516u,
/// <summary>
/// A global group cannot have a universal group as a member.
/// </summary>
DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER = 8517u,
/// <summary>
/// A universal group cannot have a local group as a member.
/// </summary>
DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER = 8518u,
/// <summary>
/// A global group cannot have a cross-domain member.
/// </summary>
DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER = 8519u,
/// <summary>
/// A local group cannot have another cross domain local group as a member.
/// </summary>
DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER = 8520u,
/// <summary>
/// A group with primary members cannot change to a security-disabled group.
/// </summary>
DS_HAVE_PRIMARY_MEMBERS = 8521u,
/// <summary>
/// The schema cache load failed to convert the string default SD on a class-schema object.
/// </summary>
DS_STRING_SD_CONVERSION_FAILED = 8522u,
/// <summary>
/// Only DSAs configured to be Global Catalog servers should be allowed to hold the Domain Naming Master FSMO role. (Applies only to Windows 2000 servers)
/// </summary>
DS_NAMING_MASTER_GC = 8523u,
/// <summary>
/// The DSA operation is unable to proceed because of a DNS lookup failure.
/// </summary>
DS_DNS_LOOKUP_FAILURE = 8524u,
/// <summary>
/// While processing a change to the DNS Host Name for an object, the Service Principal Name values could not be kept in sync.
/// </summary>
DS_COULDNT_UPDATE_SPNS = 8525u,
/// <summary>
/// The Security Descriptor attribute could not be read.
/// </summary>
DS_CANT_RETRIEVE_SD = 8526u,
/// <summary>
/// The object requested was not found, but an object with that key was found.
/// </summary>
DS_KEY_NOT_UNIQUE = 8527u,
/// <summary>
/// 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
/// </summary>
DS_WRONG_LINKED_ATT_SYNTAX = 8528u,
/// <summary>
/// Security Account Manager needs to get the boot password.
/// </summary>
DS_SAM_NEED_BOOTKEY_PASSWORD = 8529u,
/// <summary>
/// Security Account Manager needs to get the boot key from floppy disk.
/// </summary>
DS_SAM_NEED_BOOTKEY_FLOPPY = 8530u,
/// <summary>
/// Directory Service cannot start.
/// </summary>
DS_CANT_START = 8531u,
/// <summary>
/// Directory Services could not start.
/// </summary>
DS_INIT_FAILURE = 8532u,
/// <summary>
/// The connection between client and server requires packet privacy or better.
/// </summary>
DS_NO_PKT_PRIVACY_ON_CONNECTION = 8533u,
/// <summary>
/// The source domain may not be in the same forest as destination.
/// </summary>
DS_SOURCE_DOMAIN_IN_FOREST = 8534u,
/// <summary>
/// The destination domain must be in the forest.
/// </summary>
DS_DESTINATION_DOMAIN_NOT_IN_FOREST = 8535u,
/// <summary>
/// The operation requires that destination domain auditing be enabled.
/// </summary>
DS_DESTINATION_AUDITING_NOT_ENABLED = 8536u,
/// <summary>
/// The operation couldn't locate a DC for the source domain.
/// </summary>
DS_CANT_FIND_DC_FOR_SRC_DOMAIN = 8537u,
/// <summary>
/// The source object must be a group or user.
/// </summary>
DS_SRC_OBJ_NOT_GROUP_OR_USER = 8538u,
/// <summary>
/// The source object's SID already exists in destination forest.
/// </summary>
DS_SRC_SID_EXISTS_IN_FOREST = 8539u,
/// <summary>
/// The source and destination object must be of the same type.
/// </summary>
DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH = 8540u,
/// <summary>
/// Error Status: 0x%2. Click OK to shut down the system and reboot into Safe Mode. Check the event log for detailed information.
/// </summary>
SAM_INIT_FAILURE = 8541u,
/// <summary>
/// Schema information could not be included in the replication request.
/// </summary>
DS_DRA_SCHEMA_INFO_SHIP = 8542u,
/// <summary>
/// The replication operation could not be completed due to a schema incompatibility.
/// </summary>
DS_DRA_SCHEMA_CONFLICT = 8543u,
/// <summary>
/// The replication operation could not be completed due to a previous schema incompatibility.
/// </summary>
DS_DRA_EARLIER_SCHEMA_CONFLICT = 8544u,
/// <summary>
/// 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.
/// </summary>
DS_DRA_OBJ_NC_MISMATCH = 8545u,
/// <summary>
/// The requested domain could not be deleted because there exist domain controllers that still host this domain.
/// </summary>
DS_NC_STILL_HAS_DSAS = 8546u,
/// <summary>
/// The requested operation can be performed only on a global catalog server.
/// </summary>
DS_GC_REQUIRED = 8547u,
/// <summary>
/// A local group can only be a member of other local groups in the same domain.
/// </summary>
DS_LOCAL_MEMBER_OF_LOCAL_ONLY = 8548u,
/// <summary>
/// Foreign security principals cannot be members of universal groups.
/// </summary>
DS_NO_FPO_IN_UNIVERSAL_GROUPS = 8549u,
/// <summary>
/// The attribute is not allowed to be replicated to the GC because of security reasons.
/// </summary>
DS_CANT_ADD_TO_GC = 8550u,
/// <summary>
/// The checkpoint with the PDC could not be taken because there too many modifications being processed currently.
/// </summary>
DS_NO_CHECKPOINT_WITH_PDC = 8551u,
/// <summary>
/// The operation requires that source domain auditing be enabled.
/// </summary>
DS_SOURCE_AUDITING_NOT_ENABLED = 8552u,
/// <summary>
/// Security principal objects can only be created inside domain naming contexts.
/// </summary>
DS_CANT_CREATE_IN_NONDOMAIN_NC = 8553u,
/// <summary>
/// A Service Principal Name (SPN) could not be constructed because the provided hostname is not in the necessary format.
/// </summary>
DS_INVALID_NAME_FOR_SPN = 8554u,
/// <summary>
/// A Filter was passed that uses constructed attributes.
/// </summary>
DS_FILTER_USES_CONTRUCTED_ATTRS = 8555u,
/// <summary>
/// The unicodePwd attribute value must be enclosed in double quotes.
/// </summary>
DS_UNICODEPWD_NOT_IN_QUOTES = 8556u,
/// <summary>
/// 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.
/// </summary>
DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED = 8557u,
/// <summary>
/// For security reasons, the operation must be run on the destination DC.
/// </summary>
DS_MUST_BE_RUN_ON_DST_DC = 8558u,
/// <summary>
/// For security reasons, the source DC must be NT4SP4 or greater.
/// </summary>
DS_SRC_DC_MUST_BE_SP4_OR_GREATER = 8559u,
/// <summary>
/// Critical Directory Service System objects cannot be deleted during tree delete operations. The tree delete may have been partially performed.
/// </summary>
DS_CANT_TREE_DELETE_CRITICAL_OBJ = 8560u,
/// <summary>
/// Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.
/// </summary>
DS_INIT_FAILURE_CONSOLE = 8561u,
/// <summary>
/// Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.
/// </summary>
DS_SAM_INIT_FAILURE_CONSOLE = 8562u,
/// <summary>
/// The version of the operating system is incompatible with the current AD DS forest functional level or AD LDS Configuration Set functional level. You must upgrade to a new version of the operating system before this server can become an AD DS Domain Controller or add an AD LDS Instance in this AD DS Forest or AD LDS Configuration Set.
/// </summary>
DS_FOREST_VERSION_TOO_HIGH = 8563u,
/// <summary>
/// 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.
/// </summary>
DS_DOMAIN_VERSION_TOO_HIGH = 8564u,
/// <summary>
/// The version of the operating system installed on this server no longer supports the current AD DS Forest functional level or AD LDS Configuration Set functional level. You must raise the AD DS Forest functional level or AD LDS Configuration Set functional level before this server can become an AD DS Domain Controller or an AD LDS Instance in this Forest or Configuration Set.
/// </summary>
DS_FOREST_VERSION_TOO_LOW = 8565u,
/// <summary>
/// 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.
/// </summary>
DS_DOMAIN_VERSION_TOO_LOW = 8566u,
/// <summary>
/// The version of the operating system installed on this server is incompatible with the functional level of the domain or forest.
/// </summary>
DS_INCOMPATIBLE_VERSION = 8567u,
/// <summary>
/// The functional level of the domain (or forest) cannot be raised to the requested value, because there exist one or more domain controllers in the domain (or forest) that are at a lower incompatible functional level.
/// </summary>
DS_LOW_DSA_VERSION = 8568u,
/// <summary>
/// The forest functional level cannot be raised to the requested value since one or more domains are still in mixed domain mode. All domains in the forest must be in native mode, for you to raise the forest functional level.
/// </summary>
DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN = 8569u,
/// <summary>
/// The sort order requested is not supported.
/// </summary>
DS_NOT_SUPPORTED_SORT_ORDER = 8570u,
/// <summary>
/// The requested name already exists as a unique identifier.
/// </summary>
DS_NAME_NOT_UNIQUE = 8571u,
/// <summary>
/// The machine account was created pre-NT4. The account needs to be recreated.
/// </summary>
DS_MACHINE_ACCOUNT_CREATED_PRENT4 = 8572u,
/// <summary>
/// The database is out of version store.
/// </summary>
DS_OUT_OF_VERSION_STORE = 8573u,
/// <summary>
/// Unable to continue operation because multiple conflicting controls were used.
/// </summary>
DS_INCOMPATIBLE_CONTROLS_USED = 8574u,
/// <summary>
/// Unable to find a valid security descriptor reference domain for this partition.
/// </summary>
DS_NO_REF_DOMAIN = 8575u,
/// <summary>
/// Schema update failed: The link identifier is reserved.
/// </summary>
DS_RESERVED_LINK_ID = 8576u,
/// <summary>
/// Schema update failed: There are no link identifiers available.
/// </summary>
DS_LINK_ID_NOT_AVAILABLE = 8577u,
/// <summary>
/// An account group cannot have a universal group as a member.
/// </summary>
DS_AG_CANT_HAVE_UNIVERSAL_MEMBER = 8578u,
/// <summary>
/// Rename or move operations on naming context heads or read-only objects are not allowed.
/// </summary>
DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE = 8579u,
/// <summary>
/// Move operations on objects in the schema naming context are not allowed.
/// </summary>
DS_NO_OBJECT_MOVE_IN_SCHEMA_NC = 8580u,
/// <summary>
/// A system flag has been set on the object and does not allow the object to be moved or renamed.
/// </summary>
DS_MODIFYDN_DISALLOWED_BY_FLAG = 8581u,
/// <summary>
/// This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers.
/// </summary>
DS_MODIFYDN_WRONG_GRANDPARENT = 8582u,
/// <summary>
/// Unable to resolve completely, a referral to another forest is generated.
/// </summary>
DS_NAME_ERROR_TRUST_REFERRAL = 8583u,
/// <summary>
/// The requested action is not supported on standard server.
/// </summary>
NOT_SUPPORTED_ON_STANDARD_SERVER = 8584u,
/// <summary>
/// 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.
/// </summary>
DS_CANT_ACCESS_REMOTE_PART_OF_AD = 8585u,
/// <summary>
/// The directory cannot validate the proposed naming context (or partition) name because it does not hold a replica nor can it contact a replica of the naming context above the proposed naming context. Please ensure that the parent naming context is properly registered in DNS, and at least one replica of this naming context is reachable by the Domain Naming master.
/// </summary>
DS_CR_IMPOSSIBLE_TO_VALIDATE_V2 = 8586u,
/// <summary>
/// The thread limit for this request was exceeded.
/// </summary>
DS_THREAD_LIMIT_EXCEEDED = 8587u,
/// <summary>
/// The Global catalog server is not in the closest site.
/// </summary>
DS_NOT_CLOSEST = 8588u,
/// <summary>
/// The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute.
/// </summary>
DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF = 8589u,
/// <summary>
/// The Directory Service failed to enter single user mode.
/// </summary>
DS_SINGLE_USER_MODE_FAILED = 8590u,
/// <summary>
/// The Directory Service cannot parse the script because of a syntax error.
/// </summary>
DS_NTDSCRIPT_SYNTAX_ERROR = 8591u,
/// <summary>
/// The Directory Service cannot process the script because of an error.
/// </summary>
DS_NTDSCRIPT_PROCESS_ERROR = 8592u,
/// <summary>
/// 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).
/// </summary>
DS_DIFFERENT_REPL_EPOCHS = 8593u,
/// <summary>
/// The directory service binding must be renegotiated due to a change in the server extensions information.
/// </summary>
DS_DRS_EXTENSIONS_CHANGED = 8594u,
/// <summary>
/// Operation not allowed on a disabled cross ref.
/// </summary>
DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR = 8595u,
/// <summary>
/// Schema update failed: No values for msDS-IntId are available.
/// </summary>
DS_NO_MSDS_INTID = 8596u,
/// <summary>
/// Schema update failed: Duplicate msDS-INtId. Retry the operation.
/// </summary>
DS_DUP_MSDS_INTID = 8597u,
/// <summary>
/// Schema deletion failed: attribute is used in rDNAttID.
/// </summary>
DS_EXISTS_IN_RDNATTID = 8598u,
/// <summary>
/// The directory service failed to authorize the request.
/// </summary>
DS_AUTHORIZATION_FAILED = 8599u,
/// <summary>
/// The Directory Service cannot process the script because it is invalid.
/// </summary>
DS_INVALID_SCRIPT = 8600u,
/// <summary>
/// The remote create cross reference operation failed on the Domain Naming Master FSMO. The operation's error is in the extended data.
/// </summary>
DS_REMOTE_CROSSREF_OP_FAILED = 8601u,
/// <summary>
/// A cross reference is in use locally with the same name.
/// </summary>
DS_CROSS_REF_BUSY = 8602u,
/// <summary>
/// The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the server's domain has been deleted from the forest.
/// </summary>
DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN = 8603u,
/// <summary>
/// Writeable NCs prevent this DC from demoting.
/// </summary>
DS_CANT_DEMOTE_WITH_WRITEABLE_NC = 8604u,
/// <summary>
/// The requested object has a non-unique identifier and cannot be retrieved.
/// </summary>
DS_DUPLICATE_ID_FOUND = 8605u,
/// <summary>
/// Insufficient attributes were given to create an object. This object may not exist because it may have been deleted and already garbage collected.
/// </summary>
DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT = 8606u,
/// <summary>
/// The group cannot be converted due to attribute restrictions on the requested group type.
/// </summary>
DS_GROUP_CONVERSION_ERROR = 8607u,
/// <summary>
/// Cross-domain move of non-empty basic application groups is not allowed.
/// </summary>
DS_CANT_MOVE_APP_BASIC_GROUP = 8608u,
/// <summary>
/// Cross-domain move of non-empty query based application groups is not allowed.
/// </summary>
DS_CANT_MOVE_APP_QUERY_GROUP = 8609u,
/// <summary>
/// The FSMO role ownership could not be verified because its directory partition has not replicated successfully with at least one replication partner.
/// </summary>
DS_ROLE_NOT_VERIFIED = 8610u,
/// <summary>
/// The target container for a redirection of a well known object container cannot already be a special container.
/// </summary>
DS_WKO_CONTAINER_CANNOT_BE_SPECIAL = 8611u,
/// <summary>
/// The Directory Service cannot perform the requested operation because a domain rename operation is in progress.
/// </summary>
DS_DOMAIN_RENAME_IN_PROGRESS = 8612u,
/// <summary>
/// The directory service detected a child partition below the requested partition name. The partition hierarchy must be created in a top down method.
/// </summary>
DS_EXISTING_AD_CHILD_NC = 8613u,
/// <summary>
/// The directory service cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime.
/// </summary>
DS_REPL_LIFETIME_EXCEEDED = 8614u,
/// <summary>
/// The requested operation is not allowed on an object under the system container.
/// </summary>
DS_DISALLOWED_IN_SYSTEM_CONTAINER = 8615u,
/// <summary>
/// The LDAP servers network send queue has filled up because the client is not processing the results of its requests fast enough. No more requests will be processed until the client catches up. If the client does not catch up then it will be disconnected.
/// </summary>
DS_LDAP_SEND_QUEUE_FULL = 8616u,
/// <summary>
/// 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.
/// </summary>
DS_DRA_OUT_SCHEDULE_WINDOW = 8617u,
/// <summary>
/// At this time, it cannot be determined if the branch replication policy is available on the hub domain controller. Please retry at a later time to account for replication latencies.
/// </summary>
DS_POLICY_NOT_KNOWN = 8618u,
/// <summary>
/// The site settings object for the specified site does not exist.
/// </summary>
NO_SITE_SETTINGS_OBJECT = 8619u,
/// <summary>
/// The local account store does not contain secret material for the specified account.
/// </summary>
NO_SECRETS = 8620u,
/// <summary>
/// Could not find a writable domain controller in the domain.
/// </summary>
NO_WRITABLE_DC_FOUND = 8621u,
/// <summary>
/// The server object for the domain controller does not exist.
/// </summary>
DS_NO_SERVER_OBJECT = 8622u,
/// <summary>
/// The NTDS Settings object for the domain controller does not exist.
/// </summary>
DS_NO_NTDSA_OBJECT = 8623u,
/// <summary>
/// The requested search operation is not supported for ASQ searches.
/// </summary>
DS_NON_ASQ_SEARCH = 8624u,
/// <summary>
/// A required audit event could not be generated for the operation.
/// </summary>
DS_AUDIT_FAILURE = 8625u,
/// <summary>
/// The search flags for the attribute are invalid. The subtree index bit is valid only on single valued attributes.
/// </summary>
DS_INVALID_SEARCH_FLAG_SUBTREE = 8626u,
/// <summary>
/// The search flags for the attribute are invalid. The tuple index bit is valid only on attributes of Unicode strings.
/// </summary>
DS_INVALID_SEARCH_FLAG_TUPLE = 8627u,
/// <summary>
/// The address books are nested too deeply. Failed to build the hierarchy table.
/// </summary>
DS_HIERARCHY_TABLE_TOO_DEEP = 8628u,
/// <summary>
/// The specified up-to-date-ness vector is corrupt.
/// </summary>
DS_DRA_CORRUPT_UTD_VECTOR = 8629u,
/// <summary>
/// The request to replicate secrets is denied.
/// </summary>
DS_DRA_SECRETS_DENIED = 8630u,
/// <summary>
/// Schema update failed: The MAPI identifier is reserved.
/// </summary>
DS_RESERVED_MAPI_ID = 8631u,
/// <summary>
/// Schema update failed: There are no MAPI identifiers available.
/// </summary>
DS_MAPI_ID_NOT_AVAILABLE = 8632u,
/// <summary>
/// The replication operation failed because the required attributes of the local krbtgt object are missing.
/// </summary>
DS_DRA_MISSING_KRBTGT_SECRET = 8633u,
/// <summary>
/// The domain name of the trusted domain already exists in the forest.
/// </summary>
DS_DOMAIN_NAME_EXISTS_IN_FOREST = 8634u,
/// <summary>
/// The flat name of the trusted domain already exists in the forest.
/// </summary>
DS_FLAT_NAME_EXISTS_IN_FOREST = 8635u,
/// <summary>
/// The User Principal Name (UPN) is invalid.
/// </summary>
INVALID_USER_PRINCIPAL_NAME = 8636u,
/// <summary>
/// OID mapped groups cannot have members.
/// </summary>
DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS = 8637u,
/// <summary>
/// The specified OID cannot be found.
/// </summary>
DS_OID_NOT_FOUND = 8638u,
/// <summary>
/// The replication operation failed because the target object referred by a link value is recycled.
/// </summary>
DS_DRA_RECYCLED_TARGET = 8639u,
/// <summary>
/// The redirect operation failed because the target object is in a NC different from the domain NC of the current domain controller.
/// </summary>
DS_DISALLOWED_NC_REDIRECT = 8640u,
/// <summary>
/// The functional level of the AD LDS configuration set cannot be lowered to the requested value.
/// </summary>
DS_HIGH_ADLDS_FFL = 8641u,
/// <summary>
/// The functional level of the domain (or forest) cannot be lowered to the requested value.
/// </summary>
DS_HIGH_DSA_VERSION = 8642u,
/// <summary>
/// The functional level of the AD LDS configuration set cannot be raised to the requested value, because there exist one or more ADLDS instances that are at a lower incompatible functional level.
/// </summary>
DS_LOW_ADLDS_FFL = 8643u,
/// <summary>
/// The domain join cannot be completed because the SID of the domain you attempted to join was identical to the SID of this machine. This is a symptom of an improperly cloned operating system install. You should run sysprep on this machine in order to generate a new machine SID. Please see http://go.microsoft.com/fwlink/?LinkId=168895 for more information.
/// </summary>
DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION = 8644u,
/// <summary>
/// The undelete operation failed because the Sam Account Name or Additional Sam Account Name of the object being undeleted conflicts with an existing live object.
/// </summary>
DS_UNDELETE_SAM_VALIDATION_FAILED = 8645u,
/// <summary>
/// The system is not authoritative for the specified account and therefore cannot complete the operation. Please retry the operation using the provider associated with this account. If this is an online provider please use the provider's online site.
/// </summary>
INCORRECT_ACCOUNT_TYPE = 8646u,
/// <summary>
/// The operation failed because SPN value provided for addition/modification is not unique forest-wide.
/// </summary>
DS_SPN_VALUE_NOT_UNIQUE_IN_FOREST = 8647u,
/// <summary>
/// The operation failed because UPN value provided for addition/modification is not unique forest-wide.
/// </summary>
DS_UPN_VALUE_NOT_UNIQUE_IN_FOREST = 8648u,
/// <summary>
/// The operation failed because the addition/modification referenced an inbound forest-wide trust that is not present.
/// </summary>
DS_MISSING_FOREST_TRUST = 8649u,
/// <summary>
/// The link value specified was not found, but a link value with that key was found.
/// </summary>
DS_VALUE_KEY_NOT_UNIQUE = 8650u,
/// <summary>
/// DNS server unable to interpret format.
/// </summary>
DNS_ERROR_RCODE_FORMAT_ERROR = 9001u,
/// <summary>
/// DNS server failure.
/// </summary>
DNS_ERROR_RCODE_SERVER_FAILURE = 9002u,
/// <summary>
/// DNS name does not exist.
/// </summary>
DNS_ERROR_RCODE_NAME_ERROR = 9003u,
/// <summary>
/// DNS request not supported by name server.
/// </summary>
DNS_ERROR_RCODE_NOT_IMPLEMENTED = 9004u,
/// <summary>
/// DNS operation refused.
/// </summary>
DNS_ERROR_RCODE_REFUSED = 9005u,
/// <summary>
/// DNS name that ought not exist, does exist.
/// </summary>
DNS_ERROR_RCODE_YXDOMAIN = 9006u,
/// <summary>
/// DNS RR set that ought not exist, does exist.
/// </summary>
DNS_ERROR_RCODE_YXRRSET = 9007u,
/// <summary>
/// DNS RR set that ought to exist, does not exist.
/// </summary>
DNS_ERROR_RCODE_NXRRSET = 9008u,
/// <summary>
/// DNS server not authoritative for zone.
/// </summary>
DNS_ERROR_RCODE_NOTAUTH = 9009u,
/// <summary>
/// DNS name in update or prereq is not in zone.
/// </summary>
DNS_ERROR_RCODE_NOTZONE = 9010u,
/// <summary>
/// DNS signature failed to verify.
/// </summary>
DNS_ERROR_RCODE_BADSIG = 9016u,
/// <summary>
/// DNS bad key.
/// </summary>
DNS_ERROR_RCODE_BADKEY = 9017u,
/// <summary>
/// DNS signature validity expired.
/// </summary>
DNS_ERROR_RCODE_BADTIME = 9018u,
/// <summary>
/// Only the DNS server acting as the key master for the zone may perform this operation.
/// </summary>
DNS_ERROR_KEYMASTER_REQUIRED = 9101u,
/// <summary>
/// This operation is not allowed on a zone that is signed or has signing keys.
/// </summary>
DNS_ERROR_NOT_ALLOWED_ON_SIGNED_ZONE = 9102u,
/// <summary>
/// NSEC3 is not compatible with the RSA-SHA-1 algorithm. Choose a different algorithm or use NSEC.
/// </summary>
DNS_ERROR_NSEC3_INCOMPATIBLE_WITH_RSA_SHA1 = 9103u,
/// <summary>
/// The zone does not have enough signing keys. There must be at least one key signing key (KSK) and at least one zone signing key (ZSK).
/// </summary>
DNS_ERROR_NOT_ENOUGH_SIGNING_KEY_DESCRIPTORS = 9104u,
/// <summary>
/// The specified algorithm is not supported.
/// </summary>
DNS_ERROR_UNSUPPORTED_ALGORITHM = 9105u,
/// <summary>
/// The specified key size is not supported.
/// </summary>
DNS_ERROR_INVALID_KEY_SIZE = 9106u,
/// <summary>
/// One or more of the signing keys for a zone are not accessible to the DNS server. Zone signing will not be operational until this error is resolved.
/// </summary>
DNS_ERROR_SIGNING_KEY_NOT_ACCESSIBLE = 9107u,
/// <summary>
/// The specified key storage provider does not support DPAPI++ data protection. Zone signing will not be operational until this error is resolved.
/// </summary>
DNS_ERROR_KSP_DOES_NOT_SUPPORT_PROTECTION = 9108u,
/// <summary>
/// An unexpected DPAPI++ error was encountered. Zone signing will not be operational until this error is resolved.
/// </summary>
DNS_ERROR_UNEXPECTED_DATA_PROTECTION_ERROR = 9109u,
/// <summary>
/// An unexpected crypto error was encountered. Zone signing may not be operational until this error is resolved.
/// </summary>
DNS_ERROR_UNEXPECTED_CNG_ERROR = 9110u,
/// <summary>
/// The DNS server encountered a signing key with an unknown version. Zone signing will not be operational until this error is resolved.
/// </summary>
DNS_ERROR_UNKNOWN_SIGNING_PARAMETER_VERSION = 9111u,
/// <summary>
/// The specified key service provider cannot be opened by the DNS server.
/// </summary>
DNS_ERROR_KSP_NOT_ACCESSIBLE = 9112u,
/// <summary>
/// The DNS server cannot accept any more signing keys with the specified algorithm and KSK flag value for this zone.
/// </summary>
DNS_ERROR_TOO_MANY_SKDS = 9113u,
/// <summary>
/// The specified rollover period is invalid.
/// </summary>
DNS_ERROR_INVALID_ROLLOVER_PERIOD = 9114u,
/// <summary>
/// The specified initial rollover offset is invalid.
/// </summary>
DNS_ERROR_INVALID_INITIAL_ROLLOVER_OFFSET = 9115u,
/// <summary>
/// The specified signing key is already in process of rolling over keys.
/// </summary>
DNS_ERROR_ROLLOVER_IN_PROGRESS = 9116u,
/// <summary>
/// The specified signing key does not have a standby key to revoke.
/// </summary>
DNS_ERROR_STANDBY_KEY_NOT_PRESENT = 9117u,
/// <summary>
/// This operation is not allowed on a zone signing key (ZSK).
/// </summary>
DNS_ERROR_NOT_ALLOWED_ON_ZSK = 9118u,
/// <summary>
/// This operation is not allowed on an active signing key.
/// </summary>
DNS_ERROR_NOT_ALLOWED_ON_ACTIVE_SKD = 9119u,
/// <summary>
/// The specified signing key is already queued for rollover.
/// </summary>
DNS_ERROR_ROLLOVER_ALREADY_QUEUED = 9120u,
/// <summary>
/// This operation is not allowed on an unsigned zone.
/// </summary>
DNS_ERROR_NOT_ALLOWED_ON_UNSIGNED_ZONE = 9121u,
/// <summary>
/// This operation could not be completed because the DNS server listed as the current key master for this zone is down or misconfigured. Resolve the problem on the current key master for this zone or use another DNS server to seize the key master role.
/// </summary>
DNS_ERROR_BAD_KEYMASTER = 9122u,
/// <summary>
/// The specified signature validity period is invalid.
/// </summary>
DNS_ERROR_INVALID_SIGNATURE_VALIDITY_PERIOD = 9123u,
/// <summary>
/// The specified NSEC3 iteration count is higher than allowed by the minimum key length used in the zone.
/// </summary>
DNS_ERROR_INVALID_NSEC3_ITERATION_COUNT = 9124u,
/// <summary>
/// This operation could not be completed because the DNS server has been configured with DNSSEC features disabled. Enable DNSSEC on the DNS server.
/// </summary>
DNS_ERROR_DNSSEC_IS_DISABLED = 9125u,
/// <summary>
/// This operation could not be completed because the XML stream received is empty or syntactically invalid.
/// </summary>
DNS_ERROR_INVALID_XML = 9126u,
/// <summary>
/// This operation completed, but no trust anchors were added because all of the trust anchors received were either invalid, unsupported, expired, or would not become valid in less than 30 days.
/// </summary>
DNS_ERROR_NO_VALID_TRUST_ANCHORS = 9127u,
/// <summary>
/// The specified signing key is not waiting for parental DS update.
/// </summary>
DNS_ERROR_ROLLOVER_NOT_POKEABLE = 9128u,
/// <summary>
/// Hash collision detected during NSEC3 signing. Specify a different user-provided salt, or use a randomly generated salt, and attempt to sign the zone again.
/// </summary>
DNS_ERROR_NSEC3_NAME_COLLISION = 9129u,
/// <summary>
/// NSEC is not compatible with the NSEC3-RSA-SHA-1 algorithm. Choose a different algorithm or use NSEC3.
/// </summary>
DNS_ERROR_NSEC_INCOMPATIBLE_WITH_NSEC3_RSA_SHA1 = 9130u,
/// <summary>
/// No records found for given DNS query.
/// </summary>
DNS_INFO_NO_RECORDS = 9501u,
/// <summary>
/// Bad DNS packet.
/// </summary>
DNS_ERROR_BAD_PACKET = 9502u,
/// <summary>
/// No DNS packet.
/// </summary>
DNS_ERROR_NO_PACKET = 9503u,
/// <summary>
/// DNS error, check rcode.
/// </summary>
DNS_ERROR_RCODE = 9504u,
/// <summary>
/// Unsecured DNS packet.
/// </summary>
DNS_ERROR_UNSECURE_PACKET = 9505u,
/// <summary>
/// DNS query request is pending.
/// </summary>
DNS_REQUEST_PENDING = 9506u,
/// <summary>
/// Invalid DNS type.
/// </summary>
DNS_ERROR_INVALID_TYPE = 9551u,
/// <summary>
/// Invalid IP address.
/// </summary>
DNS_ERROR_INVALID_IP_ADDRESS = 9552u,
/// <summary>
/// Invalid property.
/// </summary>
DNS_ERROR_INVALID_PROPERTY = 9553u,
/// <summary>
/// Try DNS operation again later.
/// </summary>
DNS_ERROR_TRY_AGAIN_LATER = 9554u,
/// <summary>
/// Record for given name and type is not unique.
/// </summary>
DNS_ERROR_NOT_UNIQUE = 9555u,
/// <summary>
/// DNS name does not comply with RFC specifications.
/// </summary>
DNS_ERROR_NON_RFC_NAME = 9556u,
/// <summary>
/// DNS name is a fully-qualified DNS name.
/// </summary>
DNS_STATUS_FQDN = 9557u,
/// <summary>
/// DNS name is dotted (multi-label).
/// </summary>
DNS_STATUS_DOTTED_NAME = 9558u,
/// <summary>
/// DNS name is a single-part name.
/// </summary>
DNS_STATUS_SINGLE_PART_NAME = 9559u,
/// <summary>
/// DNS name contains an invalid character.
/// </summary>
DNS_ERROR_INVALID_NAME_CHAR = 9560u,
/// <summary>
/// DNS name is entirely numeric.
/// </summary>
DNS_ERROR_NUMERIC_NAME = 9561u,
/// <summary>
/// The operation requested is not permitted on a DNS root server.
/// </summary>
DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER = 9562u,
/// <summary>
/// The record could not be created because this part of the DNS namespace has been delegated to another server.
/// </summary>
DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION = 9563u,
/// <summary>
/// The DNS server could not find a set of root hints.
/// </summary>
DNS_ERROR_CANNOT_FIND_ROOT_HINTS = 9564u,
/// <summary>
/// The DNS server found root hints but they were not consistent across all adapters.
/// </summary>
DNS_ERROR_INCONSISTENT_ROOT_HINTS = 9565u,
/// <summary>
/// The specified value is too small for this parameter.
/// </summary>
DNS_ERROR_DWORD_VALUE_TOO_SMALL = 9566u,
/// <summary>
/// The specified value is too large for this parameter.
/// </summary>
DNS_ERROR_DWORD_VALUE_TOO_LARGE = 9567u,
/// <summary>
/// This operation is not allowed while the DNS server is loading zones in the background. Please try again later.
/// </summary>
DNS_ERROR_BACKGROUND_LOADING = 9568u,
/// <summary>
/// The operation requested is not permitted on against a DNS server running on a read-only DC.
/// </summary>
DNS_ERROR_NOT_ALLOWED_ON_RODC = 9569u,
/// <summary>
/// No data is allowed to exist underneath a DNAME record.
/// </summary>
DNS_ERROR_NOT_ALLOWED_UNDER_DNAME = 9570u,
/// <summary>
/// This operation requires credentials delegation.
/// </summary>
DNS_ERROR_DELEGATION_REQUIRED = 9571u,
/// <summary>
/// Name resolution policy table has been corrupted. DNS resolution will fail until it is fixed. Contact your network administrator.
/// </summary>
DNS_ERROR_INVALID_POLICY_TABLE = 9572u,
/// <summary>
/// Not allowed to remove all addresses.
/// </summary>
DNS_ERROR_ADDRESS_REQUIRED = 9573u,
/// <summary>
/// DNS zone does not exist.
/// </summary>
DNS_ERROR_ZONE_DOES_NOT_EXIST = 9601u,
/// <summary>
/// DNS zone information not available.
/// </summary>
DNS_ERROR_NO_ZONE_INFO = 9602u,
/// <summary>
/// Invalid operation for DNS zone.
/// </summary>
DNS_ERROR_INVALID_ZONE_OPERATION = 9603u,
/// <summary>
/// Invalid DNS zone configuration.
/// </summary>
DNS_ERROR_ZONE_CONFIGURATION_ERROR = 9604u,
/// <summary>
/// DNS zone has no start of authority (SOA) record.
/// </summary>
DNS_ERROR_ZONE_HAS_NO_SOA_RECORD = 9605u,
/// <summary>
/// DNS zone has no Name Server (NS) record.
/// </summary>
DNS_ERROR_ZONE_HAS_NO_NS_RECORDS = 9606u,
/// <summary>
/// DNS zone is locked.
/// </summary>
DNS_ERROR_ZONE_LOCKED = 9607u,
/// <summary>
/// DNS zone creation failed.
/// </summary>
DNS_ERROR_ZONE_CREATION_FAILED = 9608u,
/// <summary>
/// DNS zone already exists.
/// </summary>
DNS_ERROR_ZONE_ALREADY_EXISTS = 9609u,
/// <summary>
/// DNS automatic zone already exists.
/// </summary>
DNS_ERROR_AUTOZONE_ALREADY_EXISTS = 9610u,
/// <summary>
/// Invalid DNS zone type.
/// </summary>
DNS_ERROR_INVALID_ZONE_TYPE = 9611u,
/// <summary>
/// Secondary DNS zone requires master IP address.
/// </summary>
DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP = 9612u,
/// <summary>
/// DNS zone not secondary.
/// </summary>
DNS_ERROR_ZONE_NOT_SECONDARY = 9613u,
/// <summary>
/// Need secondary IP address.
/// </summary>
DNS_ERROR_NEED_SECONDARY_ADDRESSES = 9614u,
/// <summary>
/// WINS initialization failed.
/// </summary>
DNS_ERROR_WINS_INIT_FAILED = 9615u,
/// <summary>
/// Need WINS servers.
/// </summary>
DNS_ERROR_NEED_WINS_SERVERS = 9616u,
/// <summary>
/// NBTSTAT initialization call failed.
/// </summary>
DNS_ERROR_NBSTAT_INIT_FAILED = 9617u,
/// <summary>
/// Invalid delete of start of authority (SOA)
/// </summary>
DNS_ERROR_SOA_DELETE_INVALID = 9618u,
/// <summary>
/// A conditional forwarding zone already exists for that name.
/// </summary>
DNS_ERROR_FORWARDER_ALREADY_EXISTS = 9619u,
/// <summary>
/// This zone must be configured with one or more master DNS server IP addresses.
/// </summary>
DNS_ERROR_ZONE_REQUIRES_MASTER_IP = 9620u,
/// <summary>
/// The operation cannot be performed because this zone is shut down.
/// </summary>
DNS_ERROR_ZONE_IS_SHUTDOWN = 9621u,
/// <summary>
/// This operation cannot be performed because the zone is currently being signed. Please try again later.
/// </summary>
DNS_ERROR_ZONE_LOCKED_FOR_SIGNING = 9622u,
/// <summary>
/// Primary DNS zone requires datafile.
/// </summary>
DNS_ERROR_PRIMARY_REQUIRES_DATAFILE = 9651u,
/// <summary>
/// Invalid datafile name for DNS zone.
/// </summary>
DNS_ERROR_INVALID_DATAFILE_NAME = 9652u,
/// <summary>
/// Failed to open datafile for DNS zone.
/// </summary>
DNS_ERROR_DATAFILE_OPEN_FAILURE = 9653u,
/// <summary>
/// Failed to write datafile for DNS zone.
/// </summary>
DNS_ERROR_FILE_WRITEBACK_FAILED = 9654u,
/// <summary>
/// Failure while reading datafile for DNS zone.
/// </summary>
DNS_ERROR_DATAFILE_PARSING = 9655u,
/// <summary>
/// DNS record does not exist.
/// </summary>
DNS_ERROR_RECORD_DOES_NOT_EXIST = 9701u,
/// <summary>
/// DNS record format error.
/// </summary>
DNS_ERROR_RECORD_FORMAT = 9702u,
/// <summary>
/// Node creation failure in DNS.
/// </summary>
DNS_ERROR_NODE_CREATION_FAILED = 9703u,
/// <summary>
/// Unknown DNS record type.
/// </summary>
DNS_ERROR_UNKNOWN_RECORD_TYPE = 9704u,
/// <summary>
/// DNS record timed out.
/// </summary>
DNS_ERROR_RECORD_TIMED_OUT = 9705u,
/// <summary>
/// Name not in DNS zone.
/// </summary>
DNS_ERROR_NAME_NOT_IN_ZONE = 9706u,
/// <summary>
/// CNAME loop detected.
/// </summary>
DNS_ERROR_CNAME_LOOP = 9707u,
/// <summary>
/// Node is a CNAME DNS record.
/// </summary>
DNS_ERROR_NODE_IS_CNAME = 9708u,
/// <summary>
/// A CNAME record already exists for given name.
/// </summary>
DNS_ERROR_CNAME_COLLISION = 9709u,
/// <summary>
/// Record only at DNS zone root.
/// </summary>
DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT = 9710u,
/// <summary>
/// DNS record already exists.
/// </summary>
DNS_ERROR_RECORD_ALREADY_EXISTS = 9711u,
/// <summary>
/// Secondary DNS zone data error.
/// </summary>
DNS_ERROR_SECONDARY_DATA = 9712u,
/// <summary>
/// Could not create DNS cache data.
/// </summary>
DNS_ERROR_NO_CREATE_CACHE_DATA = 9713u,
/// <summary>
/// DNS name does not exist.
/// </summary>
DNS_ERROR_NAME_DOES_NOT_EXIST = 9714u,
/// <summary>
/// Could not create pointer (PTR) record.
/// </summary>
DNS_WARNING_PTR_CREATE_FAILED = 9715u,
/// <summary>
/// DNS domain was undeleted.
/// </summary>
DNS_WARNING_DOMAIN_UNDELETED = 9716u,
/// <summary>
/// The directory service is unavailable.
/// </summary>
DNS_ERROR_DS_UNAVAILABLE = 9717u,
/// <summary>
/// DNS zone already exists in the directory service.
/// </summary>
DNS_ERROR_DS_ZONE_ALREADY_EXISTS = 9718u,
/// <summary>
/// DNS server not creating or reading the boot file for the directory service integrated DNS zone.
/// </summary>
DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE = 9719u,
/// <summary>
/// Node is a DNAME DNS record.
/// </summary>
DNS_ERROR_NODE_IS_DNAME = 9720u,
/// <summary>
/// A DNAME record already exists for given name.
/// </summary>
DNS_ERROR_DNAME_COLLISION = 9721u,
/// <summary>
/// An alias loop has been detected with either CNAME or DNAME records.
/// </summary>
DNS_ERROR_ALIAS_LOOP = 9722u,
/// <summary>
/// DNS AXFR (zone transfer) complete.
/// </summary>
DNS_INFO_AXFR_COMPLETE = 9751u,
/// <summary>
/// DNS zone transfer failed.
/// </summary>
DNS_ERROR_AXFR = 9752u,
/// <summary>
/// Added local WINS server.
/// </summary>
DNS_INFO_ADDED_LOCAL_WINS = 9753u,
/// <summary>
/// Secure update call needs to continue update request.
/// </summary>
DNS_STATUS_CONTINUE_NEEDED = 9801u,
/// <summary>
/// TCP/IP network protocol not installed.
/// </summary>
DNS_ERROR_NO_TCPIP = 9851u,
/// <summary>
/// No DNS servers configured for local system.
/// </summary>
DNS_ERROR_NO_DNS_SERVERS = 9852u,
/// <summary>
/// The specified directory partition does not exist.
/// </summary>
DNS_ERROR_DP_DOES_NOT_EXIST = 9901u,
/// <summary>
/// The specified directory partition already exists.
/// </summary>
DNS_ERROR_DP_ALREADY_EXISTS = 9902u,
/// <summary>
/// This DNS server is not enlisted in the specified directory partition.
/// </summary>
DNS_ERROR_DP_NOT_ENLISTED = 9903u,
/// <summary>
/// This DNS server is already enlisted in the specified directory partition.
/// </summary>
DNS_ERROR_DP_ALREADY_ENLISTED = 9904u,
/// <summary>
/// The directory partition is not available at this time. Please wait a few minutes and try again.
/// </summary>
DNS_ERROR_DP_NOT_AVAILABLE = 9905u,
/// <summary>
/// The operation failed because the domain naming master FSMO role could not be reached. The domain controller holding the domain naming master FSMO role is down or unable to service the request or is not running Windows Server 2003 or later.
/// </summary>
DNS_ERROR_DP_FSMO_ERROR = 9906u,
/// <summary>
/// The RRL is not enabled.
/// </summary>
DNS_ERROR_RRL_NOT_ENABLED = 9911u,
/// <summary>
/// The window size parameter is invalid. It should be greater than or equal to 1.
/// </summary>
DNS_ERROR_RRL_INVALID_WINDOW_SIZE = 9912u,
/// <summary>
/// The IPv4 prefix length parameter is invalid. It should be less than or equal to 32.
/// </summary>
DNS_ERROR_RRL_INVALID_IPV4_PREFIX = 9913u,
/// <summary>
/// The IPv6 prefix length parameter is invalid. It should be less than or equal to 128.
/// </summary>
DNS_ERROR_RRL_INVALID_IPV6_PREFIX = 9914u,
/// <summary>
/// The TC Rate parameter is invalid. It should be less than 10.
/// </summary>
DNS_ERROR_RRL_INVALID_TC_RATE = 9915u,
/// <summary>
/// The Leak Rate parameter is invalid. It should be either 0, or between 2 and 10.
/// </summary>
DNS_ERROR_RRL_INVALID_LEAK_RATE = 9916u,
/// <summary>
/// The Leak Rate or TC Rate parameter is invalid. Leak Rate should be greater than TC Rate.
/// </summary>
DNS_ERROR_RRL_LEAK_RATE_LESSTHAN_TC_RATE = 9917u,
/// <summary>
/// The virtualization instance already exists.
/// </summary>
DNS_ERROR_VIRTUALIZATION_INSTANCE_ALREADY_EXISTS = 9921u,
/// <summary>
/// The virtualization instance does not exist.
/// </summary>
DNS_ERROR_VIRTUALIZATION_INSTANCE_DOES_NOT_EXIST = 9922u,
/// <summary>
/// The virtualization tree is locked.
/// </summary>
DNS_ERROR_VIRTUALIZATION_TREE_LOCKED = 9923u,
/// <summary>
/// Invalid virtualization instance name.
/// </summary>
DNS_ERROR_INVAILD_VIRTUALIZATION_INSTANCE_NAME = 9924u,
/// <summary>
/// The default virtualization instance cannot be added, removed or modified.
/// </summary>
DNS_ERROR_DEFAULT_VIRTUALIZATION_INSTANCE = 9925u,
/// <summary>
/// The scope already exists for the zone.
/// </summary>
DNS_ERROR_ZONESCOPE_ALREADY_EXISTS = 9951u,
/// <summary>
/// The scope does not exist for the zone.
/// </summary>
DNS_ERROR_ZONESCOPE_DOES_NOT_EXIST = 9952u,
/// <summary>
/// The scope is the same as the default zone scope.
/// </summary>
DNS_ERROR_DEFAULT_ZONESCOPE = 9953u,
/// <summary>
/// The scope name contains invalid characters.
/// </summary>
DNS_ERROR_INVALID_ZONESCOPE_NAME = 9954u,
/// <summary>
/// Operation not allowed when the zone has scopes.
/// </summary>
DNS_ERROR_NOT_ALLOWED_WITH_ZONESCOPES = 9955u,
/// <summary>
/// Failed to load zone scope.
/// </summary>
DNS_ERROR_LOAD_ZONESCOPE_FAILED = 9956u,
/// <summary>
/// Failed to write data file for DNS zone scope. Please verify the file exists and is writable.
/// </summary>
DNS_ERROR_ZONESCOPE_FILE_WRITEBACK_FAILED = 9957u,
/// <summary>
/// The scope name contains invalid characters.
/// </summary>
DNS_ERROR_INVALID_SCOPE_NAME = 9958u,
/// <summary>
/// The scope does not exist.
/// </summary>
DNS_ERROR_SCOPE_DOES_NOT_EXIST = 9959u,
/// <summary>
/// The scope is the same as the default scope.
/// </summary>
DNS_ERROR_DEFAULT_SCOPE = 9960u,
/// <summary>
/// The operation is invalid on the scope.
/// </summary>
DNS_ERROR_INVALID_SCOPE_OPERATION = 9961u,
/// <summary>
/// The scope is locked.
/// </summary>
DNS_ERROR_SCOPE_LOCKED = 9962u,
/// <summary>
/// The scope already exists.
/// </summary>
DNS_ERROR_SCOPE_ALREADY_EXISTS = 9963u,
/// <summary>
/// A policy with the same name already exists on this level (server level or zone level) on the DNS server.
/// </summary>
DNS_ERROR_POLICY_ALREADY_EXISTS = 9971u,
/// <summary>
/// No policy with this name exists on this level (server level or zone level) on the DNS server.
/// </summary>
DNS_ERROR_POLICY_DOES_NOT_EXIST = 9972u,
/// <summary>
/// The criteria provided in the policy are invalid.
/// </summary>
DNS_ERROR_POLICY_INVALID_CRITERIA = 9973u,
/// <summary>
/// At least one of the settings of this policy is invalid.
/// </summary>
DNS_ERROR_POLICY_INVALID_SETTINGS = 9974u,
/// <summary>
/// The client subnet cannot be deleted while it is being accessed by a policy.
/// </summary>
DNS_ERROR_CLIENT_SUBNET_IS_ACCESSED = 9975u,
/// <summary>
/// The client subnet does not exist on the DNS server.
/// </summary>
DNS_ERROR_CLIENT_SUBNET_DOES_NOT_EXIST = 9976u,
/// <summary>
/// A client subnet with this name already exists on the DNS server.
/// </summary>
DNS_ERROR_CLIENT_SUBNET_ALREADY_EXISTS = 9977u,
/// <summary>
/// The IP subnet specified does not exist in the client subnet.
/// </summary>
DNS_ERROR_SUBNET_DOES_NOT_EXIST = 9978u,
/// <summary>
/// The IP subnet that is being added, already exists in the client subnet.
/// </summary>
DNS_ERROR_SUBNET_ALREADY_EXISTS = 9979u,
/// <summary>
/// The policy is locked.
/// </summary>
DNS_ERROR_POLICY_LOCKED = 9980u,
/// <summary>
/// The weight of the scope in the policy is invalid.
/// </summary>
DNS_ERROR_POLICY_INVALID_WEIGHT = 9981u,
/// <summary>
/// The DNS policy name is invalid.
/// </summary>
DNS_ERROR_POLICY_INVALID_NAME = 9982u,
/// <summary>
/// The policy is missing criteria.
/// </summary>
DNS_ERROR_POLICY_MISSING_CRITERIA = 9983u,
/// <summary>
/// The name of the the client subnet record is invalid.
/// </summary>
DNS_ERROR_INVALID_CLIENT_SUBNET_NAME = 9984u,
/// <summary>
/// Invalid policy processing order.
/// </summary>
DNS_ERROR_POLICY_PROCESSING_ORDER_INVALID = 9985u,
/// <summary>
/// The scope information has not been provided for a policy that requires it.
/// </summary>
DNS_ERROR_POLICY_SCOPE_MISSING = 9986u,
/// <summary>
/// The scope information has been provided for a policy that does not require it.
/// </summary>
DNS_ERROR_POLICY_SCOPE_NOT_ALLOWED = 9987u,
/// <summary>
/// The server scope cannot be deleted because it is referenced by a DNS Policy.
/// </summary>
DNS_ERROR_SERVERSCOPE_IS_REFERENCED = 9988u,
/// <summary>
/// The zone scope cannot be deleted because it is referenced by a DNS Policy.
/// </summary>
DNS_ERROR_ZONESCOPE_IS_REFERENCED = 9989u,
/// <summary>
/// The criterion client subnet provided in the policy is invalid.
/// </summary>
DNS_ERROR_POLICY_INVALID_CRITERIA_CLIENT_SUBNET = 9990u,
/// <summary>
/// The criterion transport protocol provided in the policy is invalid.
/// </summary>
DNS_ERROR_POLICY_INVALID_CRITERIA_TRANSPORT_PROTOCOL = 9991u,
/// <summary>
/// The criterion network protocol provided in the policy is invalid.
/// </summary>
DNS_ERROR_POLICY_INVALID_CRITERIA_NETWORK_PROTOCOL = 9992u,
/// <summary>
/// The criterion interface provided in the policy is invalid.
/// </summary>
DNS_ERROR_POLICY_INVALID_CRITERIA_INTERFACE = 9993u,
/// <summary>
/// The criterion FQDN provided in the policy is invalid.
/// </summary>
DNS_ERROR_POLICY_INVALID_CRITERIA_FQDN = 9994u,
/// <summary>
/// The criterion query type provided in the policy is invalid.
/// </summary>
DNS_ERROR_POLICY_INVALID_CRITERIA_QUERY_TYPE = 9995u,
/// <summary>
/// The criterion time of day provided in the policy is invalid.
/// </summary>
DNS_ERROR_POLICY_INVALID_CRITERIA_TIME_OF_DAY = 9996u,
/// <summary>
/// A blocking operation was interrupted by a call to WSACancelBlockingCall.
/// </summary>
WSAEINTR = 10004u,
/// <summary>
/// The file handle supplied is not valid.
/// </summary>
WSAEBADF = 10009u,
/// <summary>
/// An attempt was made to access a socket in a way forbidden by its access permissions.
/// </summary>
WSAEACCES = 10013u,
/// <summary>
/// The system detected an invalid pointer address in attempting to use a pointer argument in a call.
/// </summary>
WSAEFAULT = 10014u,
/// <summary>
/// An invalid argument was supplied.
/// </summary>
WSAEINVAL = 10022u,
/// <summary>
/// Too many open sockets.
/// </summary>
WSAEMFILE = 10024u,
/// <summary>
/// A non-blocking socket operation could not be completed immediately.
/// </summary>
WSAEWOULDBLOCK = 10035u,
/// <summary>
/// A blocking operation is currently executing.
/// </summary>
WSAEINPROGRESS = 10036u,
/// <summary>
/// An operation was attempted on a non-blocking socket that already had an operation in progress.
/// </summary>
WSAEALREADY = 10037u,
/// <summary>
/// An operation was attempted on something that is not a socket.
/// </summary>
WSAENOTSOCK = 10038u,
/// <summary>
/// A required address was omitted from an operation on a socket.
/// </summary>
WSAEDESTADDRREQ = 10039u,
/// <summary>
/// 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.
/// </summary>
WSAEMSGSIZE = 10040u,
/// <summary>
/// A protocol was specified in the socket function call that does not support the semantics of the socket type requested.
/// </summary>
WSAEPROTOTYPE = 10041u,
/// <summary>
/// An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call.
/// </summary>
WSAENOPROTOOPT = 10042u,
/// <summary>
/// The requested protocol has not been configured into the system, or no implementation for it exists.
/// </summary>
WSAEPROTONOSUPPORT = 10043u,
/// <summary>
/// The support for the specified socket type does not exist in this address family.
/// </summary>
WSAESOCKTNOSUPPORT = 10044u,
/// <summary>
/// The attempted operation is not supported for the type of object referenced.
/// </summary>
WSAEOPNOTSUPP = 10045u,
/// <summary>
/// The protocol family has not been configured into the system or no implementation for it exists.
/// </summary>
WSAEPFNOSUPPORT = 10046u,
/// <summary>
/// An address incompatible with the requested protocol was used.
/// </summary>
WSAEAFNOSUPPORT = 10047u,
/// <summary>
/// Only one usage of each socket address (protocol/network address/port) is normally permitted.
/// </summary>
WSAEADDRINUSE = 10048u,
/// <summary>
/// The requested address is not valid in its context.
/// </summary>
WSAEADDRNOTAVAIL = 10049u,
/// <summary>
/// A socket operation encountered a dead network.
/// </summary>
WSAENETDOWN = 10050u,
/// <summary>
/// A socket operation was attempted to an unreachable network.
/// </summary>
WSAENETUNREACH = 10051u,
/// <summary>
/// The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress.
/// </summary>
WSAENETRESET = 10052u,
/// <summary>
/// An established connection was aborted by the software in your host machine.
/// </summary>
WSAECONNABORTED = 10053u,
/// <summary>
/// An existing connection was forcibly closed by the remote host.
/// </summary>
WSAECONNRESET = 10054u,
/// <summary>
/// An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.
/// </summary>
WSAENOBUFS = 10055u,
/// <summary>
/// A connect request was made on an already connected socket.
/// </summary>
WSAEISCONN = 10056u,
/// <summary>
/// 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.
/// </summary>
WSAENOTCONN = 10057u,
/// <summary>
/// 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.
/// </summary>
WSAESHUTDOWN = 10058u,
/// <summary>
/// Too many references to some kernel object.
/// </summary>
WSAETOOMANYREFS = 10059u,
/// <summary>
/// A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
/// </summary>
WSAETIMEDOUT = 10060u,
/// <summary>
/// No connection could be made because the target machine actively refused it.
/// </summary>
WSAECONNREFUSED = 10061u,
/// <summary>
/// Cannot translate name.
/// </summary>
WSAELOOP = 10062u,
/// <summary>
/// Name component or name was too long.
/// </summary>
WSAENAMETOOLONG = 10063u,
/// <summary>
/// A socket operation failed because the destination host was down.
/// </summary>
WSAEHOSTDOWN = 10064u,
/// <summary>
/// A socket operation was attempted to an unreachable host.
/// </summary>
WSAEHOSTUNREACH = 10065u,
/// <summary>
/// Cannot remove a directory that is not empty.
/// </summary>
WSAENOTEMPTY = 10066u,
/// <summary>
/// A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously.
/// </summary>
WSAEPROCLIM = 10067u,
/// <summary>
/// Ran out of quota.
/// </summary>
WSAEUSERS = 10068u,
/// <summary>
/// Ran out of disk quota.
/// </summary>
WSAEDQUOT = 10069u,
/// <summary>
/// File handle reference is no longer available.
/// </summary>
WSAESTALE = 10070u,
/// <summary>
/// Item is not available locally.
/// </summary>
WSAEREMOTE = 10071u,
/// <summary>
/// WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable.
/// </summary>
WSASYSNOTREADY = 10091u,
/// <summary>
/// The Windows Sockets version requested is not supported.
/// </summary>
WSAVERNOTSUPPORTED = 10092u,
/// <summary>
/// Either the application has not called WSAStartup, or WSAStartup failed.
/// </summary>
WSANOTINITIALISED = 10093u,
/// <summary>
/// Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence.
/// </summary>
WSAEDISCON = 10101u,
/// <summary>
/// No more results can be returned by WSALookupServiceNext.
/// </summary>
WSAENOMORE = 10102u,
/// <summary>
/// A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
/// </summary>
WSAECANCELLED = 10103u,
/// <summary>
/// The procedure call table is invalid.
/// </summary>
WSAEINVALIDPROCTABLE = 10104u,
/// <summary>
/// The requested service provider is invalid.
/// </summary>
WSAEINVALIDPROVIDER = 10105u,
/// <summary>
/// The requested service provider could not be loaded or initialized.
/// </summary>
WSAEPROVIDERFAILEDINIT = 10106u,
/// <summary>
/// A system call has failed.
/// </summary>
WSASYSCALLFAILURE = 10107u,
/// <summary>
/// No such service is known. The service cannot be found in the specified name space.
/// </summary>
WSASERVICE_NOT_FOUND = 10108u,
/// <summary>
/// The specified class was not found.
/// </summary>
WSATYPE_NOT_FOUND = 10109u,
/// <summary>
/// No more results can be returned by WSALookupServiceNext.
/// </summary>
WSA_E_NO_MORE = 10110u,
/// <summary>
/// A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
/// </summary>
WSA_E_CANCELLED = 10111u,
/// <summary>
/// A database query failed because it was actively refused.
/// </summary>
WSAEREFUSED = 10112u,
/// <summary>
/// No such host is known.
/// </summary>
WSAHOST_NOT_FOUND = 11001u,
/// <summary>
/// This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server.
/// </summary>
WSATRY_AGAIN = 11002u,
/// <summary>
/// A non-recoverable error occurred during a database lookup.
/// </summary>
WSANO_RECOVERY = 11003u,
/// <summary>
/// The requested name is valid, but no data of the requested type was found.
/// </summary>
WSANO_DATA = 11004u,
/// <summary>
/// At least one reserve has arrived.
/// </summary>
WSA_QOS_RECEIVERS = 11005u,
/// <summary>
/// At least one path has arrived.
/// </summary>
WSA_QOS_SENDERS = 11006u,
/// <summary>
/// There are no senders.
/// </summary>
WSA_QOS_NO_SENDERS = 11007u,
/// <summary>
/// There are no receivers.
/// </summary>
WSA_QOS_NO_RECEIVERS = 11008u,
/// <summary>
/// Reserve has been confirmed.
/// </summary>
WSA_QOS_REQUEST_CONFIRMED = 11009u,
/// <summary>
/// Error due to lack of resources.
/// </summary>
WSA_QOS_ADMISSION_FAILURE = 11010u,
/// <summary>
/// Rejected for administrative reasons - bad credentials.
/// </summary>
WSA_QOS_POLICY_FAILURE = 11011u,
/// <summary>
/// Unknown or conflicting style.
/// </summary>
WSA_QOS_BAD_STYLE = 11012u,
/// <summary>
/// Problem with some part of the filterspec or providerspecific buffer in general.
/// </summary>
WSA_QOS_BAD_OBJECT = 11013u,
/// <summary>
/// Problem with some part of the flowspec.
/// </summary>
WSA_QOS_TRAFFIC_CTRL_ERROR = 11014u,
/// <summary>
/// General QOS error.
/// </summary>
WSA_QOS_GENERIC_ERROR = 11015u,
/// <summary>
/// An invalid or unrecognized service type was found in the flowspec.
/// </summary>
WSA_QOS_ESERVICETYPE = 11016u,
/// <summary>
/// An invalid or inconsistent flowspec was found in the QOS structure.
/// </summary>
WSA_QOS_EFLOWSPEC = 11017u,
/// <summary>
/// Invalid QOS provider-specific buffer.
/// </summary>
WSA_QOS_EPROVSPECBUF = 11018u,
/// <summary>
/// An invalid QOS filter style was used.
/// </summary>
WSA_QOS_EFILTERSTYLE = 11019u,
/// <summary>
/// An invalid QOS filter type was used.
/// </summary>
WSA_QOS_EFILTERTYPE = 11020u,
/// <summary>
/// An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR.
/// </summary>
WSA_QOS_EFILTERCOUNT = 11021u,
/// <summary>
/// An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer.
/// </summary>
WSA_QOS_EOBJLENGTH = 11022u,
/// <summary>
/// An incorrect number of flow descriptors was specified in the QOS structure.
/// </summary>
WSA_QOS_EFLOWCOUNT = 11023u,
/// <summary>
/// An unrecognized object was found in the QOS provider-specific buffer.
/// </summary>
WSA_QOS_EUNKOWNPSOBJ = 11024u,
/// <summary>
/// An invalid policy object was found in the QOS provider-specific buffer.
/// </summary>
WSA_QOS_EPOLICYOBJ = 11025u,
/// <summary>
/// An invalid QOS flow descriptor was found in the flow descriptor list.
/// </summary>
WSA_QOS_EFLOWDESC = 11026u,
/// <summary>
/// An invalid or inconsistent flowspec was found in the QOS provider specific buffer.
/// </summary>
WSA_QOS_EPSFLOWSPEC = 11027u,
/// <summary>
/// An invalid FILTERSPEC was found in the QOS provider-specific buffer.
/// </summary>
WSA_QOS_EPSFILTERSPEC = 11028u,
/// <summary>
/// An invalid shape discard mode object was found in the QOS provider specific buffer.
/// </summary>
WSA_QOS_ESDMODEOBJ = 11029u,
/// <summary>
/// An invalid shaping rate object was found in the QOS provider-specific buffer.
/// </summary>
WSA_QOS_ESHAPERATEOBJ = 11030u,
/// <summary>
/// A reserved policy element was found in the QOS provider-specific buffer.
/// </summary>
WSA_QOS_RESERVED_PETYPE = 11031u,
/// <summary>
/// No such host is known securely.
/// </summary>
WSA_SECURE_HOST_NOT_FOUND = 11032u,
/// <summary>
/// Name based IPSEC policy could not be added.
/// </summary>
WSA_IPSEC_NAME_POLICY_ERROR = 11033u,
/// <summary>
/// The specified quick mode policy already exists.
/// </summary>
IPSEC_QM_POLICY_EXISTS = 13000u,
/// <summary>
/// The specified quick mode policy was not found.
/// </summary>
IPSEC_QM_POLICY_NOT_FOUND = 13001u,
/// <summary>
/// The specified quick mode policy is being used.
/// </summary>
IPSEC_QM_POLICY_IN_USE = 13002u,
/// <summary>
/// The specified main mode policy already exists.
/// </summary>
IPSEC_MM_POLICY_EXISTS = 13003u,
/// <summary>
/// The specified main mode policy was not found
/// </summary>
IPSEC_MM_POLICY_NOT_FOUND = 13004u,
/// <summary>
/// The specified main mode policy is being used.
/// </summary>
IPSEC_MM_POLICY_IN_USE = 13005u,
/// <summary>
/// The specified main mode filter already exists.
/// </summary>
IPSEC_MM_FILTER_EXISTS = 13006u,
/// <summary>
/// The specified main mode filter was not found.
/// </summary>
IPSEC_MM_FILTER_NOT_FOUND = 13007u,
/// <summary>
/// The specified transport mode filter already exists.
/// </summary>
IPSEC_TRANSPORT_FILTER_EXISTS = 13008u,
/// <summary>
/// The specified transport mode filter does not exist.
/// </summary>
IPSEC_TRANSPORT_FILTER_NOT_FOUND = 13009u,
/// <summary>
/// The specified main mode authentication list exists.
/// </summary>
IPSEC_MM_AUTH_EXISTS = 13010u,
/// <summary>
/// The specified main mode authentication list was not found.
/// </summary>
IPSEC_MM_AUTH_NOT_FOUND = 13011u,
/// <summary>
/// The specified main mode authentication list is being used.
/// </summary>
IPSEC_MM_AUTH_IN_USE = 13012u,
/// <summary>
/// The specified default main mode policy was not found.
/// </summary>
IPSEC_DEFAULT_MM_POLICY_NOT_FOUND = 13013u,
/// <summary>
/// The specified default main mode authentication list was not found.
/// </summary>
IPSEC_DEFAULT_MM_AUTH_NOT_FOUND = 13014u,
/// <summary>
/// The specified default quick mode policy was not found.
/// </summary>
IPSEC_DEFAULT_QM_POLICY_NOT_FOUND = 13015u,
/// <summary>
/// The specified tunnel mode filter exists.
/// </summary>
IPSEC_TUNNEL_FILTER_EXISTS = 13016u,
/// <summary>
/// The specified tunnel mode filter was not found.
/// </summary>
IPSEC_TUNNEL_FILTER_NOT_FOUND = 13017u,
/// <summary>
/// The Main Mode filter is pending deletion.
/// </summary>
IPSEC_MM_FILTER_PENDING_DELETION = 13018u,
/// <summary>
/// The transport filter is pending deletion.
/// </summary>
IPSEC_TRANSPORT_FILTER_PENDING_DELETION = 13019u,
/// <summary>
/// The tunnel filter is pending deletion.
/// </summary>
IPSEC_TUNNEL_FILTER_PENDING_DELETION = 13020u,
/// <summary>
/// The Main Mode policy is pending deletion.
/// </summary>
IPSEC_MM_POLICY_PENDING_DELETION = 13021u,
/// <summary>
/// The Main Mode authentication bundle is pending deletion.
/// </summary>
IPSEC_MM_AUTH_PENDING_DELETION = 13022u,
/// <summary>
/// The Quick Mode policy is pending deletion.
/// </summary>
IPSEC_QM_POLICY_PENDING_DELETION = 13023u,
/// <summary>
/// The Main Mode policy was successfully added, but some of the requested offers are not supported.
/// </summary>
WARNING_IPSEC_MM_POLICY_PRUNED = 13024u,
/// <summary>
/// The Quick Mode policy was successfully added, but some of the requested offers are not supported.
/// </summary>
WARNING_IPSEC_QM_POLICY_PRUNED = 13025u,
/// <summary>
/// ERROR_IPSEC_IKE_NEG_STATUS_BEGIN
/// </summary>
IPSEC_IKE_NEG_STATUS_BEGIN = 13800u,
/// <summary>
/// IKE authentication credentials are unacceptable
/// </summary>
IPSEC_IKE_AUTH_FAIL = 13801u,
/// <summary>
/// IKE security attributes are unacceptable
/// </summary>
IPSEC_IKE_ATTRIB_FAIL = 13802u,
/// <summary>
/// IKE Negotiation in progress
/// </summary>
IPSEC_IKE_NEGOTIATION_PENDING = 13803u,
/// <summary>
/// General processing error
/// </summary>
IPSEC_IKE_GENERAL_PROCESSING_ERROR = 13804u,
/// <summary>
/// Negotiation timed out
/// </summary>
IPSEC_IKE_TIMED_OUT = 13805u,
/// <summary>
/// IKE failed to find valid machine certificate. Contact your Network Security Administrator about installing a valid certificate in the appropriate Certificate Store.
/// </summary>
IPSEC_IKE_NO_CERT = 13806u,
/// <summary>
/// IKE SA deleted by peer before establishment completed
/// </summary>
IPSEC_IKE_SA_DELETED = 13807u,
/// <summary>
/// IKE SA deleted before establishment completed
/// </summary>
IPSEC_IKE_SA_REAPED = 13808u,
/// <summary>
/// Negotiation request sat in Queue too long
/// </summary>
IPSEC_IKE_MM_ACQUIRE_DROP = 13809u,
/// <summary>
/// Negotiation request sat in Queue too long
/// </summary>
IPSEC_IKE_QM_ACQUIRE_DROP = 13810u,
/// <summary>
/// Negotiation request sat in Queue too long
/// </summary>
IPSEC_IKE_QUEUE_DROP_MM = 13811u,
/// <summary>
/// Negotiation request sat in Queue too long
/// </summary>
IPSEC_IKE_QUEUE_DROP_NO_MM = 13812u,
/// <summary>
/// No response from peer
/// </summary>
IPSEC_IKE_DROP_NO_RESPONSE = 13813u,
/// <summary>
/// Negotiation took too long
/// </summary>
IPSEC_IKE_MM_DELAY_DROP = 13814u,
/// <summary>
/// Negotiation took too long
/// </summary>
IPSEC_IKE_QM_DELAY_DROP = 13815u,
/// <summary>
/// Unknown error occurred
/// </summary>
IPSEC_IKE_ERROR = 13816u,
/// <summary>
/// Certificate Revocation Check failed
/// </summary>
IPSEC_IKE_CRL_FAILED = 13817u,
/// <summary>
/// Invalid certificate key usage
/// </summary>
IPSEC_IKE_INVALID_KEY_USAGE = 13818u,
/// <summary>
/// Invalid certificate type
/// </summary>
IPSEC_IKE_INVALID_CERT_TYPE = 13819u,
/// <summary>
/// IKE negotiation failed because the machine certificate used does not have a private key. IPsec certificates require a private key. Contact your Network Security administrator about replacing with a certificate that has a private key.
/// </summary>
IPSEC_IKE_NO_PRIVATE_KEY = 13820u,
/// <summary>
/// Simultaneous rekeys were detected.
/// </summary>
IPSEC_IKE_SIMULTANEOUS_REKEY = 13821u,
/// <summary>
/// Failure in Diffie-Hellman computation
/// </summary>
IPSEC_IKE_DH_FAIL = 13822u,
/// <summary>
/// Don't know how to process critical payload
/// </summary>
IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED = 13823u,
/// <summary>
/// Invalid header
/// </summary>
IPSEC_IKE_INVALID_HEADER = 13824u,
/// <summary>
/// No policy configured
/// </summary>
IPSEC_IKE_NO_POLICY = 13825u,
/// <summary>
/// Failed to verify signature
/// </summary>
IPSEC_IKE_INVALID_SIGNATURE = 13826u,
/// <summary>
/// Failed to authenticate using Kerberos
/// </summary>
IPSEC_IKE_KERBEROS_ERROR = 13827u,
/// <summary>
/// Peer's certificate did not have a public key
/// </summary>
IPSEC_IKE_NO_PUBLIC_KEY = 13828u,
/// <summary>
/// Error processing error payload
/// </summary>
IPSEC_IKE_PROCESS_ERR = 13829u,
/// <summary>
/// Error processing SA payload
/// </summary>
IPSEC_IKE_PROCESS_ERR_SA = 13830u,
/// <summary>
/// Error processing Proposal payload
/// </summary>
IPSEC_IKE_PROCESS_ERR_PROP = 13831u,
/// <summary>
/// Error processing Transform payload
/// </summary>
IPSEC_IKE_PROCESS_ERR_TRANS = 13832u,
/// <summary>
/// Error processing KE payload
/// </summary>
IPSEC_IKE_PROCESS_ERR_KE = 13833u,
/// <summary>
/// Error processing ID payload
/// </summary>
IPSEC_IKE_PROCESS_ERR_ID = 13834u,
/// <summary>
/// Error processing Cert payload
/// </summary>
IPSEC_IKE_PROCESS_ERR_CERT = 13835u,
/// <summary>
/// Error processing Certificate Request payload
/// </summary>
IPSEC_IKE_PROCESS_ERR_CERT_REQ = 13836u,
/// <summary>
/// Error processing Hash payload
/// </summary>
IPSEC_IKE_PROCESS_ERR_HASH = 13837u,
/// <summary>
/// Error processing Signature payload
/// </summary>
IPSEC_IKE_PROCESS_ERR_SIG = 13838u,
/// <summary>
/// Error processing Nonce payload
/// </summary>
IPSEC_IKE_PROCESS_ERR_NONCE = 13839u,
/// <summary>
/// Error processing Notify payload
/// </summary>
IPSEC_IKE_PROCESS_ERR_NOTIFY = 13840u,
/// <summary>
/// Error processing Delete Payload
/// </summary>
IPSEC_IKE_PROCESS_ERR_DELETE = 13841u,
/// <summary>
/// Error processing VendorId payload
/// </summary>
IPSEC_IKE_PROCESS_ERR_VENDOR = 13842u,
/// <summary>
/// Invalid payload received
/// </summary>
IPSEC_IKE_INVALID_PAYLOAD = 13843u,
/// <summary>
/// Soft SA loaded
/// </summary>
IPSEC_IKE_LOAD_SOFT_SA = 13844u,
/// <summary>
/// Soft SA torn down
/// </summary>
IPSEC_IKE_SOFT_SA_TORN_DOWN = 13845u,
/// <summary>
/// Invalid cookie received.
/// </summary>
IPSEC_IKE_INVALID_COOKIE = 13846u,
/// <summary>
/// Peer failed to send valid machine certificate
/// </summary>
IPSEC_IKE_NO_PEER_CERT = 13847u,
/// <summary>
/// Certification Revocation check of peer's certificate failed
/// </summary>
IPSEC_IKE_PEER_CRL_FAILED = 13848u,
/// <summary>
/// New policy invalidated SAs formed with old policy
/// </summary>
IPSEC_IKE_POLICY_CHANGE = 13849u,
/// <summary>
/// There is no available Main Mode IKE policy.
/// </summary>
IPSEC_IKE_NO_MM_POLICY = 13850u,
/// <summary>
/// Failed to enabled TCB privilege.
/// </summary>
IPSEC_IKE_NOTCBPRIV = 13851u,
/// <summary>
/// Failed to load SECURITY.DLL.
/// </summary>
IPSEC_IKE_SECLOADFAIL = 13852u,
/// <summary>
/// Failed to obtain security function table dispatch address from SSPI.
/// </summary>
IPSEC_IKE_FAILSSPINIT = 13853u,
/// <summary>
/// Failed to query Kerberos package to obtain max token size.
/// </summary>
IPSEC_IKE_FAILQUERYSSP = 13854u,
/// <summary>
/// Failed to obtain Kerberos server credentials for ISAKMP/ERROR_IPSEC_IKE service. Kerberos authentication will not function. The most likely reason for this is lack of domain membership. This is normal if your computer is a member of a workgroup.
/// </summary>
IPSEC_IKE_SRVACQFAIL = 13855u,
/// <summary>
/// Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes).
/// </summary>
IPSEC_IKE_SRVQUERYCRED = 13856u,
/// <summary>
/// Failed to obtain new SPI for the inbound SA from IPsec driver. The most common cause for this is that the driver does not have the correct filter. Check your policy to verify the filters.
/// </summary>
IPSEC_IKE_GETSPIFAIL = 13857u,
/// <summary>
/// Given filter is invalid
/// </summary>
IPSEC_IKE_INVALID_FILTER = 13858u,
/// <summary>
/// Memory allocation failed.
/// </summary>
IPSEC_IKE_OUT_OF_MEMORY = 13859u,
/// <summary>
/// Failed to add Security Association to IPsec Driver. The most common cause for this is if the IKE negotiation took too long to complete. If the problem persists, reduce the load on the faulting machine.
/// </summary>
IPSEC_IKE_ADD_UPDATE_KEY_FAILED = 13860u,
/// <summary>
/// Invalid policy
/// </summary>
IPSEC_IKE_INVALID_POLICY = 13861u,
/// <summary>
/// Invalid DOI
/// </summary>
IPSEC_IKE_UNKNOWN_DOI = 13862u,
/// <summary>
/// Invalid situation
/// </summary>
IPSEC_IKE_INVALID_SITUATION = 13863u,
/// <summary>
/// Diffie-Hellman failure
/// </summary>
IPSEC_IKE_DH_FAILURE = 13864u,
/// <summary>
/// Invalid Diffie-Hellman group
/// </summary>
IPSEC_IKE_INVALID_GROUP = 13865u,
/// <summary>
/// Error encrypting payload
/// </summary>
IPSEC_IKE_ENCRYPT = 13866u,
/// <summary>
/// Error decrypting payload
/// </summary>
IPSEC_IKE_DECRYPT = 13867u,
/// <summary>
/// Policy match error
/// </summary>
IPSEC_IKE_POLICY_MATCH = 13868u,
/// <summary>
/// Unsupported ID
/// </summary>
IPSEC_IKE_UNSUPPORTED_ID = 13869u,
/// <summary>
/// Hash verification failed
/// </summary>
IPSEC_IKE_INVALID_HASH = 13870u,
/// <summary>
/// Invalid hash algorithm
/// </summary>
IPSEC_IKE_INVALID_HASH_ALG = 13871u,
/// <summary>
/// Invalid hash size
/// </summary>
IPSEC_IKE_INVALID_HASH_SIZE = 13872u,
/// <summary>
/// Invalid encryption algorithm
/// </summary>
IPSEC_IKE_INVALID_ENCRYPT_ALG = 13873u,
/// <summary>
/// Invalid authentication algorithm
/// </summary>
IPSEC_IKE_INVALID_AUTH_ALG = 13874u,
/// <summary>
/// Invalid certificate signature
/// </summary>
IPSEC_IKE_INVALID_SIG = 13875u,
/// <summary>
/// Load failed
/// </summary>
IPSEC_IKE_LOAD_FAILED = 13876u,
/// <summary>
/// Deleted via RPC call
/// </summary>
IPSEC_IKE_RPC_DELETE = 13877u,
/// <summary>
/// Temporary state created to perform reinitialization. This is not a real failure.
/// </summary>
IPSEC_IKE_BENIGN_REINIT = 13878u,
/// <summary>
/// The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value. Please fix the policy on the peer machine.
/// </summary>
IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY = 13879u,
/// <summary>
/// The recipient cannot handle version of IKE specified in the header.
/// </summary>
IPSEC_IKE_INVALID_MAJOR_VERSION = 13880u,
/// <summary>
/// Key length in certificate is too small for configured security requirements.
/// </summary>
IPSEC_IKE_INVALID_CERT_KEYLEN = 13881u,
/// <summary>
/// Max number of established MM SAs to peer exceeded.
/// </summary>
IPSEC_IKE_MM_LIMIT = 13882u,
/// <summary>
/// IKE received a policy that disables negotiation.
/// </summary>
IPSEC_IKE_NEGOTIATION_DISABLED = 13883u,
/// <summary>
/// Reached maximum quick mode limit for the main mode. New main mode will be started.
/// </summary>
IPSEC_IKE_QM_LIMIT = 13884u,
/// <summary>
/// Main mode SA lifetime expired or peer sent a main mode delete.
/// </summary>
IPSEC_IKE_MM_EXPIRED = 13885u,
/// <summary>
/// Main mode SA assumed to be invalid because peer stopped responding.
/// </summary>
IPSEC_IKE_PEER_MM_ASSUMED_INVALID = 13886u,
/// <summary>
/// Certificate doesn't chain to a trusted root in IPsec policy.
/// </summary>
IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH = 13887u,
/// <summary>
/// Received unexpected message ID.
/// </summary>
IPSEC_IKE_UNEXPECTED_MESSAGE_ID = 13888u,
/// <summary>
/// Received invalid authentication offers.
/// </summary>
IPSEC_IKE_INVALID_AUTH_PAYLOAD = 13889u,
/// <summary>
/// Sent DoS cookie notify to initiator.
/// </summary>
IPSEC_IKE_DOS_COOKIE_SENT = 13890u,
/// <summary>
/// IKE service is shutting down.
/// </summary>
IPSEC_IKE_SHUTTING_DOWN = 13891u,
/// <summary>
/// Could not verify binding between CGA address and certificate.
/// </summary>
IPSEC_IKE_CGA_AUTH_FAILED = 13892u,
/// <summary>
/// Error processing NatOA payload.
/// </summary>
IPSEC_IKE_PROCESS_ERR_NATOA = 13893u,
/// <summary>
/// Parameters of the main mode are invalid for this quick mode.
/// </summary>
IPSEC_IKE_INVALID_MM_FOR_QM = 13894u,
/// <summary>
/// Quick mode SA was expired by IPsec driver.
/// </summary>
IPSEC_IKE_QM_EXPIRED = 13895u,
/// <summary>
/// Too many dynamically added IKEEXT filters were detected.
/// </summary>
IPSEC_IKE_TOO_MANY_FILTERS = 13896u,
/// <summary>
/// ERROR_IPSEC_IKE_NEG_STATUS_END
/// </summary>
IPSEC_IKE_NEG_STATUS_END = 13897u,
/// <summary>
/// NAP reauth succeeded and must delete the dummy NAP IKEv2 tunnel.
/// </summary>
IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL = 13898u,
/// <summary>
/// Error in assigning inner IP address to initiator in tunnel mode.
/// </summary>
IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE = 13899u,
/// <summary>
/// Require configuration payload missing.
/// </summary>
IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING = 13900u,
/// <summary>
/// A negotiation running as the security principle who issued the connection is in progress
/// </summary>
IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING = 13901u,
/// <summary>
/// SA was deleted due to IKEv1/AuthIP co-existence suppress check.
/// </summary>
IPSEC_IKE_COEXISTENCE_SUPPRESS = 13902u,
/// <summary>
/// Incoming SA request was dropped due to peer IP address rate limiting.
/// </summary>
IPSEC_IKE_RATELIMIT_DROP = 13903u,
/// <summary>
/// Peer does not support MOBIKE.
/// </summary>
IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE = 13904u,
/// <summary>
/// SA establishment is not authorized.
/// </summary>
IPSEC_IKE_AUTHORIZATION_FAILURE = 13905u,
/// <summary>
/// SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential.
/// </summary>
IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE = 13906u,
/// <summary>
/// SA establishment is not authorized. You may need to enter updated or different credentials such as a smartcard.
/// </summary>
IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY = 13907u,
/// <summary>
/// SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential. This might be related to certificate-to-account mapping failure for the SA.
/// </summary>
IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE = 13908u,
/// <summary>
/// ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END
/// </summary>
IPSEC_IKE_NEG_STATUS_EXTENDED_END = 13909u,
/// <summary>
/// The SPI in the packet does not match a valid IPsec SA.
/// </summary>
IPSEC_BAD_SPI = 13910u,
/// <summary>
/// Packet was received on an IPsec SA whose lifetime has expired.
/// </summary>
IPSEC_SA_LIFETIME_EXPIRED = 13911u,
/// <summary>
/// Packet was received on an IPsec SA that does not match the packet characteristics.
/// </summary>
IPSEC_WRONG_SA = 13912u,
/// <summary>
/// Packet sequence number replay check failed.
/// </summary>
IPSEC_REPLAY_CHECK_FAILED = 13913u,
/// <summary>
/// IPsec header and/or trailer in the packet is invalid.
/// </summary>
IPSEC_INVALID_PACKET = 13914u,
/// <summary>
/// IPsec integrity check failed.
/// </summary>
IPSEC_INTEGRITY_CHECK_FAILED = 13915u,
/// <summary>
/// IPsec dropped a clear text packet.
/// </summary>
IPSEC_CLEAR_TEXT_DROP = 13916u,
/// <summary>
/// IPsec dropped an incoming ESP packet in authenticated firewall mode. This drop is benign.
/// </summary>
IPSEC_AUTH_FIREWALL_DROP = 13917u,
/// <summary>
/// IPsec dropped a packet due to DoS throttling.
/// </summary>
IPSEC_THROTTLE_DROP = 13918u,
/// <summary>
/// IPsec DoS Protection matched an explicit block rule.
/// </summary>
IPSEC_DOSP_BLOCK = 13925u,
/// <summary>
/// IPsec DoS Protection received an IPsec specific multicast packet which is not allowed.
/// </summary>
IPSEC_DOSP_RECEIVED_MULTICAST = 13926u,
/// <summary>
/// IPsec DoS Protection received an incorrectly formatted packet.
/// </summary>
IPSEC_DOSP_INVALID_PACKET = 13927u,
/// <summary>
/// IPsec DoS Protection failed to look up state.
/// </summary>
IPSEC_DOSP_STATE_LOOKUP_FAILED = 13928u,
/// <summary>
/// IPsec DoS Protection failed to create state because the maximum number of entries allowed by policy has been reached.
/// </summary>
IPSEC_DOSP_MAX_ENTRIES = 13929u,
/// <summary>
/// IPsec DoS Protection received an IPsec negotiation packet for a keying module which is not allowed by policy.
/// </summary>
IPSEC_DOSP_KEYMOD_NOT_ALLOWED = 13930u,
/// <summary>
/// IPsec DoS Protection has not been enabled.
/// </summary>
IPSEC_DOSP_NOT_INSTALLED = 13931u,
/// <summary>
/// IPsec DoS Protection failed to create a per internal IP rate limit queue because the maximum number of queues allowed by policy has been reached.
/// </summary>
IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES = 13932u,
/// <summary>
/// The requested section was not present in the activation context.
/// </summary>
SXS_SECTION_NOT_FOUND = 14000u,
/// <summary>
/// The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe tool for more detail.
/// </summary>
SXS_CANT_GEN_ACTCTX = 14001u,
/// <summary>
/// The application binding data format is invalid.
/// </summary>
SXS_INVALID_ACTCTXDATA_FORMAT = 14002u,
/// <summary>
/// The referenced assembly is not installed on your system.
/// </summary>
SXS_ASSEMBLY_NOT_FOUND = 14003u,
/// <summary>
/// The manifest file does not begin with the required tag and format information.
/// </summary>
SXS_MANIFEST_FORMAT_ERROR = 14004u,
/// <summary>
/// The manifest file contains one or more syntax errors.
/// </summary>
SXS_MANIFEST_PARSE_ERROR = 14005u,
/// <summary>
/// The application attempted to activate a disabled activation context.
/// </summary>
SXS_ACTIVATION_CONTEXT_DISABLED = 14006u,
/// <summary>
/// The requested lookup key was not found in any active activation context.
/// </summary>
SXS_KEY_NOT_FOUND = 14007u,
/// <summary>
/// A component version required by the application conflicts with another component version already active.
/// </summary>
SXS_VERSION_CONFLICT = 14008u,
/// <summary>
/// The type requested activation context section does not match the query API used.
/// </summary>
SXS_WRONG_SECTION_TYPE = 14009u,
/// <summary>
/// Lack of system resources has required isolated activation to be disabled for the current thread of execution.
/// </summary>
SXS_THREAD_QUERIES_DISABLED = 14010u,
/// <summary>
/// An attempt to set the process default activation context failed because the process default activation context was already set.
/// </summary>
SXS_PROCESS_DEFAULT_ALREADY_SET = 14011u,
/// <summary>
/// The encoding group identifier specified is not recognized.
/// </summary>
SXS_UNKNOWN_ENCODING_GROUP = 14012u,
/// <summary>
/// The encoding requested is not recognized.
/// </summary>
SXS_UNKNOWN_ENCODING = 14013u,
/// <summary>
/// The manifest contains a reference to an invalid URI.
/// </summary>
SXS_INVALID_XML_NAMESPACE_URI = 14014u,
/// <summary>
/// The application manifest contains a reference to a dependent assembly which is not installed
/// </summary>
SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED = 14015u,
/// <summary>
/// The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed
/// </summary>
SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED = 14016u,
/// <summary>
/// The manifest contains an attribute for the assembly identity which is not valid.
/// </summary>
SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE = 14017u,
/// <summary>
/// The manifest is missing the required default namespace specification on the assembly element.
/// </summary>
SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE = 14018u,
/// <summary>
/// The manifest has a default namespace specified on the assembly element but its value is not "urn:schemas-microsoft-com:asm.v1".
/// </summary>
SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE = 14019u,
/// <summary>
/// The private manifest probed has crossed a path with an unsupported reparse point.
/// </summary>
SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT = 14020u,
/// <summary>
/// Two or more components referenced directly or indirectly by the application manifest have files by the same name.
/// </summary>
SXS_DUPLICATE_DLL_NAME = 14021u,
/// <summary>
/// Two or more components referenced directly or indirectly by the application manifest have window classes with the same name.
/// </summary>
SXS_DUPLICATE_WINDOWCLASS_NAME = 14022u,
/// <summary>
/// Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs.
/// </summary>
SXS_DUPLICATE_CLSID = 14023u,
/// <summary>
/// Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs.
/// </summary>
SXS_DUPLICATE_IID = 14024u,
/// <summary>
/// Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs.
/// </summary>
SXS_DUPLICATE_TLBID = 14025u,
/// <summary>
/// Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs.
/// </summary>
SXS_DUPLICATE_PROGID = 14026u,
/// <summary>
/// Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted.
/// </summary>
SXS_DUPLICATE_ASSEMBLY_NAME = 14027u,
/// <summary>
/// A component's file does not match the verification information present in the component manifest.
/// </summary>
SXS_FILE_HASH_MISMATCH = 14028u,
/// <summary>
/// The policy manifest contains one or more syntax errors.
/// </summary>
SXS_POLICY_PARSE_ERROR = 14029u,
/// <summary>
/// Manifest Parse Error : A string literal was expected, but no opening quote character was found.
/// </summary>
SXS_XML_E_MISSINGQUOTE = 14030u,
/// <summary>
/// Manifest Parse Error : Incorrect syntax was used in a comment.
/// </summary>
SXS_XML_E_COMMENTSYNTAX = 14031u,
/// <summary>
/// Manifest Parse Error : A name was started with an invalid character.
/// </summary>
SXS_XML_E_BADSTARTNAMECHAR = 14032u,
/// <summary>
/// Manifest Parse Error : A name contained an invalid character.
/// </summary>
SXS_XML_E_BADNAMECHAR = 14033u,
/// <summary>
/// Manifest Parse Error : A string literal contained an invalid character.
/// </summary>
SXS_XML_E_BADCHARINSTRING = 14034u,
/// <summary>
/// Manifest Parse Error : Invalid syntax for an xml declaration.
/// </summary>
SXS_XML_E_XMLDECLSYNTAX = 14035u,
/// <summary>
/// Manifest Parse Error : An Invalid character was found in text content.
/// </summary>
SXS_XML_E_BADCHARDATA = 14036u,
/// <summary>
/// Manifest Parse Error : Required white space was missing.
/// </summary>
SXS_XML_E_MISSINGWHITESPACE = 14037u,
/// <summary>
/// Manifest Parse Error : The character '>' was expected.
/// </summary>
SXS_XML_E_EXPECTINGTAGEND = 14038u,
/// <summary>
/// Manifest Parse Error : A semi colon character was expected.
/// </summary>
SXS_XML_E_MISSINGSEMICOLON = 14039u,
/// <summary>
/// Manifest Parse Error : Unbalanced parentheses.
/// </summary>
SXS_XML_E_UNBALANCEDPAREN = 14040u,
/// <summary>
/// Manifest Parse Error : Internal error.
/// </summary>
SXS_XML_E_INTERNALERROR = 14041u,
/// <summary>
/// Manifest Parse Error : Whitespace is not allowed at this location.
/// </summary>
SXS_XML_E_UNEXPECTED_WHITESPACE = 14042u,
/// <summary>
/// Manifest Parse Error : End of file reached in invalid state for current encoding.
/// </summary>
SXS_XML_E_INCOMPLETE_ENCODING = 14043u,
/// <summary>
/// Manifest Parse Error : Missing parenthesis.
/// </summary>
SXS_XML_E_MISSING_PAREN = 14044u,
/// <summary>
/// Manifest Parse Error : A single or double closing quote character (\' or \") is missing.
/// </summary>
SXS_XML_E_EXPECTINGCLOSEQUOTE = 14045u,
/// <summary>
/// Manifest Parse Error : Multiple colons are not allowed in a name.
/// </summary>
SXS_XML_E_MULTIPLE_COLONS = 14046u,
/// <summary>
/// Manifest Parse Error : Invalid character for decimal digit.
/// </summary>
SXS_XML_E_INVALID_DECIMAL = 14047u,
/// <summary>
/// Manifest Parse Error : Invalid character for hexadecimal digit.
/// </summary>
SXS_XML_E_INVALID_HEXIDECIMAL = 14048u,
/// <summary>
/// Manifest Parse Error : Invalid unicode character value for this platform.
/// </summary>
SXS_XML_E_INVALID_UNICODE = 14049u,
/// <summary>
/// Manifest Parse Error : Expecting whitespace or '?'.
/// </summary>
SXS_XML_E_WHITESPACEORQUESTIONMARK = 14050u,
/// <summary>
/// Manifest Parse Error : End tag was not expected at this location.
/// </summary>
SXS_XML_E_UNEXPECTEDENDTAG = 14051u,
/// <summary>
/// Manifest Parse Error : The following tags were not closed: %1.
/// </summary>
SXS_XML_E_UNCLOSEDTAG = 14052u,
/// <summary>
/// Manifest Parse Error : Duplicate attribute.
/// </summary>
SXS_XML_E_DUPLICATEATTRIBUTE = 14053u,
/// <summary>
/// Manifest Parse Error : Only one top level element is allowed in an XML document.
/// </summary>
SXS_XML_E_MULTIPLEROOTS = 14054u,
/// <summary>
/// Manifest Parse Error : Invalid at the top level of the document.
/// </summary>
SXS_XML_E_INVALIDATROOTLEVEL = 14055u,
/// <summary>
/// Manifest Parse Error : Invalid xml declaration.
/// </summary>
SXS_XML_E_BADXMLDECL = 14056u,
/// <summary>
/// Manifest Parse Error : XML document must have a top level element.
/// </summary>
SXS_XML_E_MISSINGROOT = 14057u,
/// <summary>
/// Manifest Parse Error : Unexpected end of file.
/// </summary>
SXS_XML_E_UNEXPECTEDEOF = 14058u,
/// <summary>
/// Manifest Parse Error : Parameter entities cannot be used inside markup declarations in an internal subset.
/// </summary>
SXS_XML_E_BADPEREFINSUBSET = 14059u,
/// <summary>
/// Manifest Parse Error : Element was not closed.
/// </summary>
SXS_XML_E_UNCLOSEDSTARTTAG = 14060u,
/// <summary>
/// Manifest Parse Error : End element was missing the character '>'.
/// </summary>
SXS_XML_E_UNCLOSEDENDTAG = 14061u,
/// <summary>
/// Manifest Parse Error : A string literal was not closed.
/// </summary>
SXS_XML_E_UNCLOSEDSTRING = 14062u,
/// <summary>
/// Manifest Parse Error : A comment was not closed.
/// </summary>
SXS_XML_E_UNCLOSEDCOMMENT = 14063u,
/// <summary>
/// Manifest Parse Error : A declaration was not closed.
/// </summary>
SXS_XML_E_UNCLOSEDDECL = 14064u,
/// <summary>
/// Manifest Parse Error : A CDATA section was not closed.
/// </summary>
SXS_XML_E_UNCLOSEDCDATA = 14065u,
/// <summary>
/// Manifest Parse Error : The namespace prefix is not allowed to start with the reserved string "xml".
/// </summary>
SXS_XML_E_RESERVEDNAMESPACE = 14066u,
/// <summary>
/// Manifest Parse Error : System does not support the specified encoding.
/// </summary>
SXS_XML_E_INVALIDENCODING = 14067u,
/// <summary>
/// Manifest Parse Error : Switch from current encoding to specified encoding not supported.
/// </summary>
SXS_XML_E_INVALIDSWITCH = 14068u,
/// <summary>
/// Manifest Parse Error : The name 'xml' is reserved and must be lower case.
/// </summary>
SXS_XML_E_BADXMLCASE = 14069u,
/// <summary>
/// Manifest Parse Error : The standalone attribute must have the value 'yes' or 'no'.
/// </summary>
SXS_XML_E_INVALID_STANDALONE = 14070u,
/// <summary>
/// Manifest Parse Error : The standalone attribute cannot be used in external entities.
/// </summary>
SXS_XML_E_UNEXPECTED_STANDALONE = 14071u,
/// <summary>
/// Manifest Parse Error : Invalid version number.
/// </summary>
SXS_XML_E_INVALID_VERSION = 14072u,
/// <summary>
/// Manifest Parse Error : Missing equals sign between attribute and attribute value.
/// </summary>
SXS_XML_E_MISSINGEQUALS = 14073u,
/// <summary>
/// Assembly Protection Error : Unable to recover the specified assembly.
/// </summary>
SXS_PROTECTION_RECOVERY_FAILED = 14074u,
/// <summary>
/// Assembly Protection Error : The public key for an assembly was too short to be allowed.
/// </summary>
SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT = 14075u,
/// <summary>
/// Assembly Protection Error : The catalog for an assembly is not valid, or does not match the assembly's manifest.
/// </summary>
SXS_PROTECTION_CATALOG_NOT_VALID = 14076u,
/// <summary>
/// An HRESULT could not be translated to a corresponding Win32 error code.
/// </summary>
SXS_UNTRANSLATABLE_HRESULT = 14077u,
/// <summary>
/// Assembly Protection Error : The catalog for an assembly is missing.
/// </summary>
SXS_PROTECTION_CATALOG_FILE_MISSING = 14078u,
/// <summary>
/// The supplied assembly identity is missing one or more attributes which must be present in this context.
/// </summary>
SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE = 14079u,
/// <summary>
/// The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names.
/// </summary>
SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME = 14080u,
/// <summary>
/// The referenced assembly could not be found.
/// </summary>
SXS_ASSEMBLY_MISSING = 14081u,
/// <summary>
/// The activation context activation stack for the running thread of execution is corrupt.
/// </summary>
SXS_CORRUPT_ACTIVATION_STACK = 14082u,
/// <summary>
/// The application isolation metadata for this process or thread has become corrupt.
/// </summary>
SXS_CORRUPTION = 14083u,
/// <summary>
/// The activation context being deactivated is not the most recently activated one.
/// </summary>
SXS_EARLY_DEACTIVATION = 14084u,
/// <summary>
/// The activation context being deactivated is not active for the current thread of execution.
/// </summary>
SXS_INVALID_DEACTIVATION = 14085u,
/// <summary>
/// The activation context being deactivated has already been deactivated.
/// </summary>
SXS_MULTIPLE_DEACTIVATION = 14086u,
/// <summary>
/// A component used by the isolation facility has requested to terminate the process.
/// </summary>
SXS_PROCESS_TERMINATION_REQUESTED = 14087u,
/// <summary>
/// A kernel mode component is releasing a reference on an activation context.
/// </summary>
SXS_RELEASE_ACTIVATION_CONTEXT = 14088u,
/// <summary>
/// The activation context of system default assembly could not be generated.
/// </summary>
SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY = 14089u,
/// <summary>
/// The value of an attribute in an identity is not within the legal range.
/// </summary>
SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE = 14090u,
/// <summary>
/// The name of an attribute in an identity is not within the legal range.
/// </summary>
SXS_INVALID_IDENTITY_ATTRIBUTE_NAME = 14091u,
/// <summary>
/// An identity contains two definitions for the same attribute.
/// </summary>
SXS_IDENTITY_DUPLICATE_ATTRIBUTE = 14092u,
/// <summary>
/// The identity string is malformed. This may be due to a trailing comma, more than two unnamed attributes, missing attribute name or missing attribute value.
/// </summary>
SXS_IDENTITY_PARSE_ERROR = 14093u,
/// <summary>
/// A string containing localized substitutable content was malformed. Either a dollar sign ($) was followed by something other than a left parenthesis or another dollar sign or an substitution's right parenthesis was not found.
/// </summary>
MALFORMED_SUBSTITUTION_STRING = 14094u,
/// <summary>
/// The public key token does not correspond to the public key specified.
/// </summary>
SXS_INCORRECT_PUBLIC_KEY_TOKEN = 14095u,
/// <summary>
/// A substitution string had no mapping.
/// </summary>
UNMAPPED_SUBSTITUTION_STRING = 14096u,
/// <summary>
/// The component must be locked before making the request.
/// </summary>
SXS_ASSEMBLY_NOT_LOCKED = 14097u,
/// <summary>
/// The component store has been corrupted.
/// </summary>
SXS_COMPONENT_STORE_CORRUPT = 14098u,
/// <summary>
/// An advanced installer failed during setup or servicing.
/// </summary>
ADVANCED_INSTALLER_FAILED = 14099u,
/// <summary>
/// The character encoding in the XML declaration did not match the encoding used in the document.
/// </summary>
XML_ENCODING_MISMATCH = 14100u,
/// <summary>
/// The identities of the manifests are identical but their contents are different.
/// </summary>
SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT = 14101u,
/// <summary>
/// The component identities are different.
/// </summary>
SXS_IDENTITIES_DIFFERENT = 14102u,
/// <summary>
/// The assembly is not a deployment.
/// </summary>
SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT = 14103u,
/// <summary>
/// The file is not a part of the assembly.
/// </summary>
SXS_FILE_NOT_PART_OF_ASSEMBLY = 14104u,
/// <summary>
/// The size of the manifest exceeds the maximum allowed.
/// </summary>
SXS_MANIFEST_TOO_BIG = 14105u,
/// <summary>
/// The setting is not registered.
/// </summary>
SXS_SETTING_NOT_REGISTERED = 14106u,
/// <summary>
/// One or more required members of the transaction are not present.
/// </summary>
SXS_TRANSACTION_CLOSURE_INCOMPLETE = 14107u,
/// <summary>
/// The SMI primitive installer failed during setup or servicing.
/// </summary>
SMI_PRIMITIVE_INSTALLER_FAILED = 14108u,
/// <summary>
/// A generic command executable returned a result that indicates failure.
/// </summary>
GENERIC_COMMAND_FAILED = 14109u,
/// <summary>
/// A component is missing file verification information in its manifest.
/// </summary>
SXS_FILE_HASH_MISSING = 14110u,
/// <summary>
/// The specified channel path is invalid.
/// </summary>
EVT_INVALID_CHANNEL_PATH = 15000u,
/// <summary>
/// The specified query is invalid.
/// </summary>
EVT_INVALID_QUERY = 15001u,
/// <summary>
/// The publisher metadata cannot be found in the resource.
/// </summary>
EVT_PUBLISHER_METADATA_NOT_FOUND = 15002u,
/// <summary>
/// The template for an event definition cannot be found in the resource (error = %1).
/// </summary>
EVT_EVENT_TEMPLATE_NOT_FOUND = 15003u,
/// <summary>
/// The specified publisher name is invalid.
/// </summary>
EVT_INVALID_PUBLISHER_NAME = 15004u,
/// <summary>
/// The event data raised by the publisher is not compatible with the event template definition in the publisher's manifest.
/// </summary>
EVT_INVALID_EVENT_DATA = 15005u,
/// <summary>
/// The specified channel could not be found.
/// </summary>
EVT_CHANNEL_NOT_FOUND = 15007u,
/// <summary>
/// The specified XML text was not well-formed. See Extended Error for more details.
/// </summary>
EVT_MALFORMED_XML_TEXT = 15008u,
/// <summary>
/// The events for a direct channel go directly to a log file and cannot be subscribed to.
/// </summary>
EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL = 15009u,
/// <summary>
/// Configuration error.
/// </summary>
EVT_CONFIGURATION_ERROR = 15010u,
/// <summary>
/// The query result is stale or invalid and must be recreated. This may be due to the log being cleared or rolling over after the query result was created.
/// </summary>
EVT_QUERY_RESULT_STALE = 15011u,
/// <summary>
/// The query result is currently at an invalid position.
/// </summary>
EVT_QUERY_RESULT_INVALID_POSITION = 15012u,
/// <summary>
/// Registered MSXML doesn't support validation.
/// </summary>
EVT_NON_VALIDATING_MSXML = 15013u,
/// <summary>
/// An expression can only be followed by a change-of-scope operation if the expression evaluates to a node set and is not already part of another change-of-scope operation.
/// </summary>
EVT_FILTER_ALREADYSCOPED = 15014u,
/// <summary>
/// Cannot perform a step operation from a term that does not represent an element set.
/// </summary>
EVT_FILTER_NOTELTSET = 15015u,
/// <summary>
/// Left-hand side arguments to binary operators must be either attributes, nodes or variables. Right-hand side arguments must be constants.
/// </summary>
EVT_FILTER_INVARG = 15016u,
/// <summary>
/// A step operation must involve a node test or, in the case of a predicate, an algebraic expression against which to test each node in the preceeding node set.
/// </summary>
EVT_FILTER_INVTEST = 15017u,
/// <summary>
/// This data type is currently unsupported.
/// </summary>
EVT_FILTER_INVTYPE = 15018u,
/// <summary>
/// A syntax error occurred at position %1!d!
/// </summary>
EVT_FILTER_PARSEERR = 15019u,
/// <summary>
/// This operator is unsupported by this implementation of the filter.
/// </summary>
EVT_FILTER_UNSUPPORTEDOP = 15020u,
/// <summary>
/// An unexpected token was encountered.
/// </summary>
EVT_FILTER_UNEXPECTEDTOKEN = 15021u,
/// <summary>
/// The requested operation cannot be performed over an enabled direct channel. The channel must first be disabled.
/// </summary>
EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL = 15022u,
/// <summary>
/// Channel property %1!s! contains an invalid value. The value has an invalid type, is outside of its valid range, cannot be changed, or is not supported by this type of channel.
/// </summary>
EVT_INVALID_CHANNEL_PROPERTY_VALUE = 15023u,
/// <summary>
/// Publisher property %1!s! contains an invalid value. The value has an invalid type, is outside of its valid range, cannot be changed, or is not supported by this type of publisher.
/// </summary>
EVT_INVALID_PUBLISHER_PROPERTY_VALUE = 15024u,
/// <summary>
/// The channel failed to activate.
/// </summary>
EVT_CHANNEL_CANNOT_ACTIVATE = 15025u,
/// <summary>
/// The XPath expression exceeded the supported complexity. Simplify the expression or split it into multiple expressions.
/// </summary>
EVT_FILTER_TOO_COMPLEX = 15026u,
/// <summary>
/// The message resource is present but the message was not found in the message table.
/// </summary>
EVT_MESSAGE_NOT_FOUND = 15027u,
/// <summary>
/// The message ID for the desired message could not be found.
/// </summary>
EVT_MESSAGE_ID_NOT_FOUND = 15028u,
/// <summary>
/// The substitution string for insert index (%1) could not be found.
/// </summary>
EVT_UNRESOLVED_VALUE_INSERT = 15029u,
/// <summary>
/// The description string for parameter reference (%1) could not be found.
/// </summary>
EVT_UNRESOLVED_PARAMETER_INSERT = 15030u,
/// <summary>
/// The maximum number of replacements has been reached.
/// </summary>
EVT_MAX_INSERTS_REACHED = 15031u,
/// <summary>
/// The event definition could not be found for event ID (%1).
/// </summary>
EVT_EVENT_DEFINITION_NOT_FOUND = 15032u,
/// <summary>
/// The locale specific resource for the desired message is not present.
/// </summary>
EVT_MESSAGE_LOCALE_NOT_FOUND = 15033u,
/// <summary>
/// The resource is too old and is not supported.
/// </summary>
EVT_VERSION_TOO_OLD = 15034u,
/// <summary>
/// The resource is too new and is not supported.
/// </summary>
EVT_VERSION_TOO_NEW = 15035u,
/// <summary>
/// The channel at index %1!d! of the query can't be opened.
/// </summary>
EVT_CANNOT_OPEN_CHANNEL_OF_QUERY = 15036u,
/// <summary>
/// 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.
/// </summary>
EVT_PUBLISHER_DISABLED = 15037u,
/// <summary>
/// Attempted to create a numeric type that is outside of its valid range.
/// </summary>
EVT_FILTER_OUT_OF_RANGE = 15038u,
/// <summary>
/// The subscription fails to activate.
/// </summary>
EC_SUBSCRIPTION_CANNOT_ACTIVATE = 15080u,
/// <summary>
/// The log of the subscription is in disabled state, and can not be used to forward events to. The log must first be enabled before the subscription can be activated.
/// </summary>
EC_LOG_DISABLED = 15081u,
/// <summary>
/// When forwarding events from local machine to itself, the query of the subscription can't contain target log of the subscription.
/// </summary>
EC_CIRCULAR_FORWARDING = 15082u,
/// <summary>
/// The credential store that is used to save credentials is full.
/// </summary>
EC_CREDSTORE_FULL = 15083u,
/// <summary>
/// The credential used by this subscription can't be found in credential store.
/// </summary>
EC_CRED_NOT_FOUND = 15084u,
/// <summary>
/// No active channel is found for the query.
/// </summary>
EC_NO_ACTIVE_CHANNEL = 15085u,
/// <summary>
/// The resource loader failed to find MUI file.
/// </summary>
MUI_FILE_NOT_FOUND = 15100u,
/// <summary>
/// The resource loader failed to load MUI file because the file fail to pass validation.
/// </summary>
MUI_INVALID_FILE = 15101u,
/// <summary>
/// The RC Manifest is corrupted with garbage data or unsupported version or missing required item.
/// </summary>
MUI_INVALID_RC_CONFIG = 15102u,
/// <summary>
/// The RC Manifest has invalid culture name.
/// </summary>
MUI_INVALID_LOCALE_NAME = 15103u,
/// <summary>
/// The RC Manifest has invalid ultimatefallback name.
/// </summary>
MUI_INVALID_ULTIMATEFALLBACK_NAME = 15104u,
/// <summary>
/// The resource loader cache doesn't have loaded MUI entry.
/// </summary>
MUI_FILE_NOT_LOADED = 15105u,
/// <summary>
/// User stopped resource enumeration.
/// </summary>
RESOURCE_ENUM_USER_STOP = 15106u,
/// <summary>
/// UI language installation failed.
/// </summary>
MUI_INTLSETTINGS_UILANG_NOT_INSTALLED = 15107u,
/// <summary>
/// Locale installation failed.
/// </summary>
MUI_INTLSETTINGS_INVALID_LOCALE_NAME = 15108u,
/// <summary>
/// A resource does not have default or neutral value.
/// </summary>
MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE = 15110u,
/// <summary>
/// Invalid PRI config file.
/// </summary>
MRM_INVALID_PRICONFIG = 15111u,
/// <summary>
/// Invalid file type.
/// </summary>
MRM_INVALID_FILE_TYPE = 15112u,
/// <summary>
/// Unknown qualifier.
/// </summary>
MRM_UNKNOWN_QUALIFIER = 15113u,
/// <summary>
/// Invalid qualifier value.
/// </summary>
MRM_INVALID_QUALIFIER_VALUE = 15114u,
/// <summary>
/// No Candidate found.
/// </summary>
MRM_NO_CANDIDATE = 15115u,
/// <summary>
/// The ResourceMap or NamedResource has an item that does not have default or neutral resource..
/// </summary>
MRM_NO_MATCH_OR_DEFAULT_CANDIDATE = 15116u,
/// <summary>
/// Invalid ResourceCandidate type.
/// </summary>
MRM_RESOURCE_TYPE_MISMATCH = 15117u,
/// <summary>
/// Duplicate Resource Map.
/// </summary>
MRM_DUPLICATE_MAP_NAME = 15118u,
/// <summary>
/// Duplicate Entry.
/// </summary>
MRM_DUPLICATE_ENTRY = 15119u,
/// <summary>
/// Invalid Resource Identifier.
/// </summary>
MRM_INVALID_RESOURCE_IDENTIFIER = 15120u,
/// <summary>
/// Filepath too long.
/// </summary>
MRM_FILEPATH_TOO_LONG = 15121u,
/// <summary>
/// Unsupported directory type.
/// </summary>
MRM_UNSUPPORTED_DIRECTORY_TYPE = 15122u,
/// <summary>
/// Invalid PRI File.
/// </summary>
MRM_INVALID_PRI_FILE = 15126u,
/// <summary>
/// NamedResource Not Found.
/// </summary>
MRM_NAMED_RESOURCE_NOT_FOUND = 15127u,
/// <summary>
/// ResourceMap Not Found.
/// </summary>
MRM_MAP_NOT_FOUND = 15135u,
/// <summary>
/// Unsupported MRT profile type.
/// </summary>
MRM_UNSUPPORTED_PROFILE_TYPE = 15136u,
/// <summary>
/// Invalid qualifier operator.
/// </summary>
MRM_INVALID_QUALIFIER_OPERATOR = 15137u,
/// <summary>
/// Unable to determine qualifier value or qualifier value has not been set.
/// </summary>
MRM_INDETERMINATE_QUALIFIER_VALUE = 15138u,
/// <summary>
/// Automerge is enabled in the PRI file.
/// </summary>
MRM_AUTOMERGE_ENABLED = 15139u,
/// <summary>
/// Too many resources defined for package.
/// </summary>
MRM_TOO_MANY_RESOURCES = 15140u,
/// <summary>
/// Resource File can not be used for merge operation.
/// </summary>
MRM_UNSUPPORTED_FILE_TYPE_FOR_MERGE = 15141u,
/// <summary>
/// Load/UnloadPriFiles cannot be used with resource packages.
/// </summary>
MRM_UNSUPPORTED_FILE_TYPE_FOR_LOAD_UNLOAD_PRI_FILE = 15142u,
/// <summary>
/// Resource Contexts may not be created on threads that do not have a CoreWindow.
/// </summary>
MRM_NO_CURRENT_VIEW_ON_THREAD = 15143u,
/// <summary>
/// The singleton Resource Manager with different profile is already created.
/// </summary>
DIFFERENT_PROFILE_RESOURCE_MANAGER_EXIST = 15144u,
/// <summary>
/// The system component cannot operate given API operation
/// </summary>
OPERATION_NOT_ALLOWED_FROM_SYSTEM_COMPONENT = 15145u,
/// <summary>
/// The resource is a direct reference to a non-default resource candidate.
/// </summary>
MRM_DIRECT_REF_TO_NON_DEFAULT_RESOURCE = 15146u,
/// <summary>
/// Resource Map has been re-generated and the query string is not valid anymore.
/// </summary>
MRM_GENERATION_COUNT_MISMATCH = 15147u,
/// <summary>
/// The PRI files to be merged have incompatible versions.
/// </summary>
PRI_MERGE_VERSION_MISMATCH = 15148u,
/// <summary>
/// The primary PRI files to be merged does not contain a schema.
/// </summary>
PRI_MERGE_MISSING_SCHEMA = 15149u,
/// <summary>
/// Unable to load one of the PRI files to be merged.
/// </summary>
PRI_MERGE_LOAD_FILE_FAILED = 15150u,
/// <summary>
/// Unable to add one of the PRI files to the merged file.
/// </summary>
PRI_MERGE_ADD_FILE_FAILED = 15151u,
/// <summary>
/// Unable to create the merged PRI file.
/// </summary>
PRI_MERGE_WRITE_FILE_FAILED = 15152u,
/// <summary>
/// Packages for a PRI file merge must all be from the same package family.
/// </summary>
PRI_MERGE_MULTIPLE_PACKAGE_FAMILIES_NOT_ALLOWED = 15153u,
/// <summary>
/// Packages for a PRI file merge must not include multiple main packages.
/// </summary>
PRI_MERGE_MULTIPLE_MAIN_PACKAGES_NOT_ALLOWED = 15154u,
/// <summary>
/// Packages for a PRI file merge must not include bundle packages.
/// </summary>
PRI_MERGE_BUNDLE_PACKAGES_NOT_ALLOWED = 15155u,
/// <summary>
/// Packages for a PRI file merge must include one main package.
/// </summary>
PRI_MERGE_MAIN_PACKAGE_REQUIRED = 15156u,
/// <summary>
/// Packages for a PRI file merge must include at least one resource package.
/// </summary>
PRI_MERGE_RESOURCE_PACKAGE_REQUIRED = 15157u,
/// <summary>
/// Invalid name supplied for a canonical merged PRI file.
/// </summary>
PRI_MERGE_INVALID_FILE_NAME = 15158u,
/// <summary>
/// Unable to find the specified package.
/// </summary>
MRM_PACKAGE_NOT_FOUND = 15159u,
/// <summary>
/// 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.
/// </summary>
MCA_INVALID_CAPABILITIES_STRING = 15200u,
/// <summary>
/// The monitor's VCP Version (0xDF) VCP code returned an invalid version value.
/// </summary>
MCA_INVALID_VCP_VERSION = 15201u,
/// <summary>
/// The monitor does not comply with the MCCS specification it claims to support.
/// </summary>
MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION = 15202u,
/// <summary>
/// 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.
/// </summary>
MCA_MCCS_VERSION_MISMATCH = 15203u,
/// <summary>
/// The Monitor Configuration API only works with monitors that support the MCCS 1.0 specification, MCCS 2.0 specification or the MCCS 2.0 Revision 1 specification.
/// </summary>
MCA_UNSUPPORTED_MCCS_VERSION = 15204u,
/// <summary>
/// An internal Monitor Configuration API error occurred.
/// </summary>
MCA_INTERNAL_ERROR = 15205u,
/// <summary>
/// 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.
/// </summary>
MCA_INVALID_TECHNOLOGY_TYPE_RETURNED = 15206u,
/// <summary>
/// The caller of SetMonitorColorTemperature specified a color temperature that the current monitor did not support. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.
/// </summary>
MCA_UNSUPPORTED_COLOR_TEMPERATURE = 15207u,
/// <summary>
/// The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria.
/// </summary>
AMBIGUOUS_SYSTEM_DEVICE = 15250u,
/// <summary>
/// The requested system device cannot be found.
/// </summary>
SYSTEM_DEVICE_NOT_FOUND = 15299u,
/// <summary>
/// Hash generation for the specified hash version and hash type is not enabled on the server.
/// </summary>
HASH_NOT_SUPPORTED = 15300u,
/// <summary>
/// The hash requested from the server is not available or no longer valid.
/// </summary>
HASH_NOT_PRESENT = 15301u,
/// <summary>
/// The secondary interrupt controller instance that manages the specified interrupt is not registered.
/// </summary>
SECONDARY_IC_PROVIDER_NOT_REGISTERED = 15321u,
/// <summary>
/// The information supplied by the GPIO client driver is invalid.
/// </summary>
GPIO_CLIENT_INFORMATION_INVALID = 15322u,
/// <summary>
/// The version specified by the GPIO client driver is not supported.
/// </summary>
GPIO_VERSION_NOT_SUPPORTED = 15323u,
/// <summary>
/// The registration packet supplied by the GPIO client driver is not valid.
/// </summary>
GPIO_INVALID_REGISTRATION_PACKET = 15324u,
/// <summary>
/// The requested operation is not supported for the specified handle.
/// </summary>
GPIO_OPERATION_DENIED = 15325u,
/// <summary>
/// The requested connect mode conflicts with an existing mode on one or more of the specified pins.
/// </summary>
GPIO_INCOMPATIBLE_CONNECT_MODE = 15326u,
/// <summary>
/// The interrupt requested to be unmasked is not masked.
/// </summary>
GPIO_INTERRUPT_ALREADY_UNMASKED = 15327u,
/// <summary>
/// The requested run level switch cannot be completed successfully.
/// </summary>
CANNOT_SWITCH_RUNLEVEL = 15400u,
/// <summary>
/// must not be higher than the run level of its dependent services.
/// </summary>
INVALID_RUNLEVEL_SETTING = 15401u,
/// <summary>
/// one or more services will not stop or restart within the specified timeout.
/// </summary>
RUNLEVEL_SWITCH_TIMEOUT = 15402u,
/// <summary>
/// A run level switch agent did not respond within the specified timeout.
/// </summary>
RUNLEVEL_SWITCH_AGENT_TIMEOUT = 15403u,
/// <summary>
/// A run level switch is currently in progress.
/// </summary>
RUNLEVEL_SWITCH_IN_PROGRESS = 15404u,
/// <summary>
/// One or more services failed to start during the service startup phase of a run level switch.
/// </summary>
SERVICES_FAILED_AUTOSTART = 15405u,
/// <summary>
/// task needs more time to shutdown.
/// </summary>
COM_TASK_STOP_PENDING = 15501u,
/// <summary>
/// Package could not be opened.
/// </summary>
INSTALL_OPEN_PACKAGE_FAILED = 15600u,
/// <summary>
/// Package was not found.
/// </summary>
INSTALL_PACKAGE_NOT_FOUND = 15601u,
/// <summary>
/// Package data is invalid.
/// </summary>
INSTALL_INVALID_PACKAGE = 15602u,
/// <summary>
/// Package failed updates, dependency or conflict validation.
/// </summary>
INSTALL_RESOLVE_DEPENDENCY_FAILED = 15603u,
/// <summary>
/// There is not enough disk space on your computer. Please free up some space and try again.
/// </summary>
INSTALL_OUT_OF_DISK_SPACE = 15604u,
/// <summary>
/// There was a problem downloading your product.
/// </summary>
INSTALL_NETWORK_FAILURE = 15605u,
/// <summary>
/// Package could not be registered.
/// </summary>
INSTALL_REGISTRATION_FAILURE = 15606u,
/// <summary>
/// Package could not be unregistered.
/// </summary>
INSTALL_DEREGISTRATION_FAILURE = 15607u,
/// <summary>
/// User cancelled the install request.
/// </summary>
INSTALL_CANCEL = 15608u,
/// <summary>
/// Install failed. Please contact your software vendor.
/// </summary>
INSTALL_FAILED = 15609u,
/// <summary>
/// Removal failed. Please contact your software vendor.
/// </summary>
REMOVE_FAILED = 15610u,
/// <summary>
/// The provided package is already installed, and reinstallation of the package was blocked. Check the AppXDeployment-Server event log for details.
/// </summary>
PACKAGE_ALREADY_EXISTS = 15611u,
/// <summary>
/// The application cannot be started. Try reinstalling the application to fix the problem.
/// </summary>
NEEDS_REMEDIATION = 15612u,
/// <summary>
/// A Prerequisite for an install could not be satisfied.
/// </summary>
INSTALL_PREREQUISITE_FAILED = 15613u,
/// <summary>
/// The package repository is corrupted.
/// </summary>
PACKAGE_REPOSITORY_CORRUPTED = 15614u,
/// <summary>
/// To install this application you need either a Windows developer license or a sideloading-enabled system.
/// </summary>
INSTALL_POLICY_FAILURE = 15615u,
/// <summary>
/// The application cannot be started because it is currently updating.
/// </summary>
PACKAGE_UPDATING = 15616u,
/// <summary>
/// The package deployment operation is blocked by policy. Please contact your system administrator.
/// </summary>
DEPLOYMENT_BLOCKED_BY_POLICY = 15617u,
/// <summary>
/// The package could not be installed because resources it modifies are currently in use.
/// </summary>
PACKAGES_IN_USE = 15618u,
/// <summary>
/// The package could not be recovered because necessary data for recovery have been corrupted.
/// </summary>
RECOVERY_FILE_CORRUPT = 15619u,
/// <summary>
/// The signature is invalid. To register in developer mode, AppxSignature.p7x and AppxBlockMap.xml must be valid or should not be present.
/// </summary>
INVALID_STAGED_SIGNATURE = 15620u,
/// <summary>
/// An error occurred while deleting the package's previously existing application data.
/// </summary>
DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED = 15621u,
/// <summary>
/// The package could not be installed because a higher version of this package is already installed.
/// </summary>
INSTALL_PACKAGE_DOWNGRADE = 15622u,
/// <summary>
/// An error in a system binary was detected. Try refreshing the PC to fix the problem.
/// </summary>
SYSTEM_NEEDS_REMEDIATION = 15623u,
/// <summary>
/// A corrupted CLR NGEN binary was detected on the system.
/// </summary>
APPX_INTEGRITY_FAILURE_CLR_NGEN = 15624u,
/// <summary>
/// The operation could not be resumed because necessary data for recovery have been corrupted.
/// </summary>
RESILIENCY_FILE_CORRUPT = 15625u,
/// <summary>
/// The package could not be installed because the Windows Firewall service is not running. Enable the Windows Firewall service and try again.
/// </summary>
INSTALL_FIREWALL_SERVICE_NOT_RUNNING = 15626u,
/// <summary>
/// Package move failed.
/// </summary>
PACKAGE_MOVE_FAILED = 15627u,
/// <summary>
/// The deployment operation failed because the volume is not empty.
/// </summary>
INSTALL_VOLUME_NOT_EMPTY = 15628u,
/// <summary>
/// The deployment operation failed because the volume is offline.
/// </summary>
INSTALL_VOLUME_OFFLINE = 15629u,
/// <summary>
/// The deployment operation failed because the specified volume is corrupt.
/// </summary>
INSTALL_VOLUME_CORRUPT = 15630u,
/// <summary>
/// The deployment operation failed because the specified application needs to be registered first.
/// </summary>
NEEDS_REGISTRATION = 15631u,
/// <summary>
/// The deployment operation failed because the package targets the wrong processor architecture.
/// </summary>
INSTALL_WRONG_PROCESSOR_ARCHITECTURE = 15632u,
/// <summary>
/// You have reached the maximum number of developer sideloaded packages allowed on this device. Please uninstall a sideloaded package and try again.
/// </summary>
DEV_SIDELOAD_LIMIT_EXCEEDED = 15633u,
/// <summary>
/// A main app package is required to install this optional package. Install the main package first and try again.
/// </summary>
INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE = 15634u,
/// <summary>
/// This app package type is not supported on this filesystem
/// </summary>
PACKAGE_NOT_SUPPORTED_ON_FILESYSTEM = 15635u,
/// <summary>
/// Package move operation is blocked until the application has finished streaming
/// </summary>
PACKAGE_MOVE_BLOCKED_BY_STREAMING = 15636u,
/// <summary>
/// A main or another optional app package has the same application ID as this optional package. Change the application ID for the optional package to avoid conflicts.
/// </summary>
INSTALL_OPTIONAL_PACKAGE_APPLICATIONID_NOT_UNIQUE = 15637u,
/// <summary>
/// This staging session has been held to allow another staging operation to be prioritized.
/// </summary>
PACKAGE_STAGING_ONHOLD = 15638u,
/// <summary>
/// A related set cannot be updated because the updated set is invalid. All packages in the related set must be updated at the same time.
/// </summary>
INSTALL_INVALID_RELATED_SET_UPDATE = 15639u,
/// <summary>
/// An optional package with a FullTrust entry point requires the main package to have the runFullTrust capability.
/// </summary>
INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY = 15640u,
/// <summary>
/// An error occurred because a user was logged off.
/// </summary>
DEPLOYMENT_BLOCKED_BY_USER_LOG_OFF = 15641u,
/// <summary>
/// An optional package provision requires the dependency main package to also be provisioned.
/// </summary>
PROVISION_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_PROVISIONED = 15642u,
/// <summary>
/// The packages failed the SmartScreen reputation check.
/// </summary>
PACKAGES_REPUTATION_CHECK_FAILED = 15643u,
/// <summary>
/// The SmartScreen reputation check operation timed out.
/// </summary>
PACKAGES_REPUTATION_CHECK_TIMEDOUT = 15644u,
/// <summary>
/// The current deployment option is not supported.
/// </summary>
DEPLOYMENT_OPTION_NOT_SUPPORTED = 15645u,
/// <summary>
/// Activation is blocked due to the .appinstaller update settings for this app.
/// </summary>
APPINSTALLER_ACTIVATION_BLOCKED = 15646u,
/// <summary>
/// Remote drives are not supported; use \\server\share to register a remote package.
/// </summary>
REGISTRATION_FROM_REMOTE_DRIVE_NOT_SUPPORTED = 15647u,
/// <summary>
/// The process has no package identity.
/// </summary>
APPMODEL_ERROR_NO_PACKAGE = 15700u,
/// <summary>
/// The package runtime information is corrupted.
/// </summary>
APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT = 15701u,
/// <summary>
/// The package identity is corrupted.
/// </summary>
APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT = 15702u,
/// <summary>
/// The process has no application identity.
/// </summary>
APPMODEL_ERROR_NO_APPLICATION = 15703u,
/// <summary>
/// One or more AppModel Runtime group policy values could not be read. Please contact your system administrator with the contents of your AppModel Runtime event log.
/// </summary>
APPMODEL_ERROR_DYNAMIC_PROPERTY_READ_FAILED = 15704u,
/// <summary>
/// One or more AppModel Runtime group policy values are invalid. Please contact your system administrator with the contents of your AppModel Runtime event log.
/// </summary>
APPMODEL_ERROR_DYNAMIC_PROPERTY_INVALID = 15705u,
/// <summary>
/// The package is currently not available.
/// </summary>
APPMODEL_ERROR_PACKAGE_NOT_AVAILABLE = 15706u,
/// <summary>
/// Loading the state store failed.
/// </summary>
STATE_LOAD_STORE_FAILED = 15800u,
/// <summary>
/// Retrieving the state version for the application failed.
/// </summary>
STATE_GET_VERSION_FAILED = 15801u,
/// <summary>
/// Setting the state version for the application failed.
/// </summary>
STATE_SET_VERSION_FAILED = 15802u,
/// <summary>
/// Resetting the structured state of the application failed.
/// </summary>
STATE_STRUCTURED_RESET_FAILED = 15803u,
/// <summary>
/// State Manager failed to open the container.
/// </summary>
STATE_OPEN_CONTAINER_FAILED = 15804u,
/// <summary>
/// State Manager failed to create the container.
/// </summary>
STATE_CREATE_CONTAINER_FAILED = 15805u,
/// <summary>
/// State Manager failed to delete the container.
/// </summary>
STATE_DELETE_CONTAINER_FAILED = 15806u,
/// <summary>
/// State Manager failed to read the setting.
/// </summary>
STATE_READ_SETTING_FAILED = 15807u,
/// <summary>
/// State Manager failed to write the setting.
/// </summary>
STATE_WRITE_SETTING_FAILED = 15808u,
/// <summary>
/// State Manager failed to delete the setting.
/// </summary>
STATE_DELETE_SETTING_FAILED = 15809u,
/// <summary>
/// State Manager failed to query the setting.
/// </summary>
STATE_QUERY_SETTING_FAILED = 15810u,
/// <summary>
/// State Manager failed to read the composite setting.
/// </summary>
STATE_READ_COMPOSITE_SETTING_FAILED = 15811u,
/// <summary>
/// State Manager failed to write the composite setting.
/// </summary>
STATE_WRITE_COMPOSITE_SETTING_FAILED = 15812u,
/// <summary>
/// State Manager failed to enumerate the containers.
/// </summary>
STATE_ENUMERATE_CONTAINER_FAILED = 15813u,
/// <summary>
/// State Manager failed to enumerate the settings.
/// </summary>
STATE_ENUMERATE_SETTINGS_FAILED = 15814u,
/// <summary>
/// The size of the state manager composite setting value has exceeded the limit.
/// </summary>
STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED = 15815u,
/// <summary>
/// The size of the state manager setting value has exceeded the limit.
/// </summary>
STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED = 15816u,
/// <summary>
/// The length of the state manager setting name has exceeded the limit.
/// </summary>
STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED = 15817u,
/// <summary>
/// The length of the state manager container name has exceeded the limit.
/// </summary>
STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED = 15818u,
/// <summary>
/// This API cannot be used in the context of the caller's application type.
/// </summary>
API_UNAVAILABLE = 15841u,
/// <summary>
/// This PC does not have a valid license for the application or product.
/// </summary>
STORE_ERROR_UNLICENSED = 15861u,
/// <summary>
/// The authenticated user does not have a valid license for the application or product.
/// </summary>
STORE_ERROR_UNLICENSED_USER = 15862u,
/// <summary>
/// The commerce transaction associated with this license is still pending verification.
/// </summary>
STORE_ERROR_PENDING_COM_TRANSACTION = 15863u,
/// <summary>
/// The license has been revoked for this user.
/// </summary>
STORE_ERROR_LICENSE_REVOKED = 15864u
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment