X86 error code

Contents

Contents

  • 1 Exceptions
    • 1.1 Faults
      • 1.1.1 Division Error
      • 1.1.2 Bound Range Exceeded
      • 1.1.3 Invalid Opcode
      • 1.1.4 Device Not Available
      • 1.1.5 Invalid TSS
      • 1.1.6 Segment Not Present
      • 1.1.7 Stack-Segment Fault
      • 1.1.8 General Protection Fault
      • 1.1.9 Page Fault
        • 1.1.9.1 Error code
      • 1.1.10 x87 Floating-Point Exception
      • 1.1.11 Alignment Check
      • 1.1.12 SIMD Floating-Point Exception
    • 1.2 Traps
      • 1.2.1 Debug
      • 1.2.2 Breakpoint
      • 1.2.3 Overflow
    • 1.3 Aborts
      • 1.3.1 Double Fault
      • 1.3.2 Machine Check
      • 1.3.3 Triple Fault
  • 2 Selector Error Code
    • 2.1 Legacy
      • 2.1.1 FPU Error Interrupt
      • 2.1.2 Coprocessor Segment Overrun
  • 3 See Also
    • 3.1 External Links

Exceptions, as described in this article, are a type of interrupt generated by the CPU when an ‘error’ occurs. Some exceptions are not really errors in most cases, such as page faults.

Exceptions are classified as:

  • Faults: These can be corrected and the program may continue as if nothing happened.
  • Traps: Traps are reported immediately after the execution of the trapping instruction.
  • Aborts: Some severe unrecoverable error.

Some exceptions will push a 32-bit «error code» on to the top of the stack, which provides additional information about the error. This value must be pulled from the stack before returning control back to the currently running program. (i.e. before calling IRET)

Name Vector nr. Type Mnemonic Error code?
Division Error 0 (0x0) Fault #DE No
Debug 1 (0x1) Fault/Trap #DB No
Non-maskable Interrupt 2 (0x2) Interrupt No
Breakpoint 3 (0x3) Trap #BP No
Overflow 4 (0x4) Trap #OF No
Bound Range Exceeded 5 (0x5) Fault #BR No
Invalid Opcode 6 (0x6) Fault #UD No
Device Not Available 7 (0x7) Fault #NM No
Double Fault 8 (0x8) Abort #DF Yes (Zero)
Coprocessor Segment Overrun 9 (0x9) Fault No
Invalid TSS 10 (0xA) Fault #TS Yes
Segment Not Present 11 (0xB) Fault #NP Yes
Stack-Segment Fault 12 (0xC) Fault #SS Yes
General Protection Fault 13 (0xD) Fault #GP Yes
Page Fault 14 (0xE) Fault #PF Yes
Reserved 15 (0xF) No
x87 Floating-Point Exception 16 (0x10) Fault #MF No
Alignment Check 17 (0x11) Fault #AC Yes
Machine Check 18 (0x12) Abort #MC No
SIMD Floating-Point Exception 19 (0x13) Fault #XM/#XF No
Virtualization Exception 20 (0x14) Fault #VE No
Control Protection Exception 21 (0x15) Fault #CP Yes
Reserved 22-27 (0x16-0x1B) No
Hypervisor Injection Exception 28 (0x1C) Fault #HV No
VMM Communication Exception 29 (0x1D) Fault #VC Yes
Security Exception 30 (0x1E) Fault #SX Yes
Reserved 31 (0x1F) No
Triple Fault No
FPU Error Interrupt IRQ 13 Interrupt #FERR No

Exceptions

Faults

Division Error

The Division Error occurs when dividing any number by 0 using the DIV or IDIV instruction, or when the division result is too large to be represented in the destination. Since a faulting DIV or IDIV instruction is very easy to insert anywhere in the code, many OS developers use this exception to test whether their exception handling code works.

The saved instruction pointer points to the DIV or IDIV instruction which caused the exception.

Bound Range Exceeded

This exception can occur when the BOUND instruction is executed. The BOUND instruction compares an array index with the lower and upper bounds of an array. When the index is out of bounds, the Bound Range Exceeded exception occurs.

The saved instruction pointer points to the BOUND instruction which caused the exception.

Invalid Opcode

The Invalid Opcode exception occurs when the processor tries to execute an invalid or undefined opcode, or an instruction with invalid prefixes. It also occurs in other cases, such as:

  • The instruction length exceeds 15 bytes, but this only occurs with redundant prefixes.
  • The instruction tries to access a non-existent control register (for example, mov cr6, eax).
  • The UD instruction is executed.

The saved instruction pointer points to the instruction which caused the exception.

Device Not Available

The Device Not Available exception occurs when an FPU instruction is attempted but there is no FPU. This is not likely, as modern processors have built-in FPUs. However, there are flags in the CR0 register that disable the FPU/MMX/SSE instructions, causing this exception when they are attempted. This feature is useful because the operating system can detect when a user program uses the FPU or XMM registers and then save/restore them appropriately when multitasking.

The saved instruction pointer points to the instruction that caused the exception.

Invalid TSS

An Invalid TSS exception occurs when an invalid segment selector is referenced as part of a task switch, or as a result of a control transfer through a gate descriptor, which results in an invalid stack-segment reference using an SS selector in the TSS.

When the exception occurred before loading the segment selectors from the TSS, the saved instruction pointer points to the instruction which caused the exception. Otherwise, and this is more common, it points to the first instruction in the new task.

Error code: The Invalid TSS exception sets an error code, which is a selector index.

Segment Not Present

The Segment Not Present exception occurs when trying to load a segment or gate which has its `Present` bit set to 0.
However when loading a stack-segment selector which references a descriptor which is not present, a Stack-Segment Fault occurs.

If the exception happens during a hardware task switch, the segment values should not be relied upon by the handler. That is, the handler should check them before trying to resume the new task. There are three ways to do this, according to the Intel documentation.

The saved instruction pointer points to the instruction which caused the exception.

Error code: The Segment Not Present exception sets an error code, which is the segment selector index of the segment descriptor which caused the exception.

Stack-Segment Fault

The Stack-Segment Fault occurs when:

  • Loading a stack-segment referencing a segment descriptor which is not present.
  • Any PUSH or POP instruction or any instruction using ESP or EBP as a base register is executed, while the stack address is not in canonical form.
  • When the stack-limit check fails.

If the exception happens during a hardware task switch, the segment values should not be relied upon by the handler. That is, the handler should check them before trying to resume the new task. There are three ways to do this, according to the Intel documentation.

The saved instruction pointer points to the instruction which caused the exception, unless the fault occurred because of loading a non-present stack segment during a hardware task switch, in which case it points to the next instruction of the new task.

Error code: The Stack-Segment Fault sets an error code, which is the stack segment selector index when a non-present segment descriptor was referenced or a limit check failed during a hardware task switch. Otherwise (for present segments and already in use), the error code is 0.

General Protection Fault

A General Protection Fault may occur for various reasons. The most common are:

  • Segment error (privilege, type, limit, read/write rights).
  • Executing a privileged instruction while CPL != 0.
  • Writing a 1 in a reserved register field or writing invalid value combinations (e.g. CR0 with PE=0 and PG=1).
  • Referencing or accessing a null-descriptor.

The saved instruction pointer points to the instruction which caused the exception.

Error code: The General Protection Fault sets an error code, which is the segment selector index when the exception is segment related. Otherwise, 0.

Page Fault

A Page Fault occurs when:

  • A page directory or table entry is not present in physical memory.
  • Attempting to load the instruction TLB with a translation for a non-executable page.
  • A protection check (privileges, read/write) failed.
  • A reserved bit in the page directory or table entries is set to 1.

The saved instruction pointer points to the instruction which caused the exception.

Error code

The Page Fault sets an error code:

 31              15                             4               0
+---+--  --+---+-----+---+--  --+---+----+----+---+---+---+---+---+
|   Reserved   | SGX |   Reserved   | SS | PK | I | R | U | W | P |
+---+--  --+---+-----+---+--  --+---+----+----+---+---+---+---+---+
Length Name Description
P 1 bit Present When set, the page fault was caused by a page-protection violation. When not set, it was caused by a non-present page.
W 1 bit Write When set, the page fault was caused by a write access. When not set, it was caused by a read access.
U 1 bit User When set, the page fault was caused while CPL = 3. This does not necessarily mean that the page fault was a privilege violation.
R 1 bit Reserved write When set, one or more page directory entries contain reserved bits which are set to 1. This only applies when the PSE or PAE flags in CR4 are set to 1.
I 1 bit Instruction Fetch When set, the page fault was caused by an instruction fetch. This only applies when the No-Execute bit is supported and enabled.
PK 1 bit Protection key When set, the page fault was caused by a protection-key violation. The PKRU register (for user-mode accesses) or PKRS MSR (for supervisor-mode accesses) specifies the protection key rights.
SS 1 bit Shadow stack When set, the page fault was caused by a shadow stack access.
SGX 1 bit Software Guard Extensions When set, the fault was due to an SGX violation. The fault is unrelated to ordinary paging.

In addition, it sets the value of the CR2 register to the virtual address which caused the Page Fault.

x87 Floating-Point Exception

The x87 Floating-Point Exception occurs when the FWAIT or WAIT instruction, or any waiting floating-point instruction is executed, and the following conditions are true:

  • CR0.NE is 1;
  • an unmasked x87 floating point exception is pending (i.e. the exception bit in the x87 floating point status-word register is set to 1).

The saved instruction pointer points to the instruction which is about to be executed when the exception occurred. The x87 instruction pointer register contains the address of the last instruction which caused the exception.

Error Code: The exception does not push an error code. However, exception information is available in the x87 status word register.

Alignment Check

An Alignment Check exception occurs when alignment checking is enabled and an unaligned memory data reference is performed. Alignment checking is only performed in CPL 3.

Alignment checking is disabled by default. To enable it, set the CR0.AM and RFLAGS.AC bits both to 1.

The saved instruction pointer points to the instruction which caused the exception.

SIMD Floating-Point Exception

The SIMD Floating-Point Exception occurs when an unmasked 128-bit media floating-point exception occurs and the CR4.OSXMMEXCPT bit is set to 1. If the OSXMMEXCPT flag is not set, then SIMD floating-point exceptions will cause an Undefined Opcode exception instead of this.

The saved instruction pointer points to the instruction which caused the exception.

Error Code: The exception does not push an error code. However, exception information is available in the MXCSR register.

Traps

Debug

The Debug exception occurs on the following conditions:

  • Instruction fetch breakpoint (Fault)
  • General detect condition (Fault)
  • Data read or write breakpoint (Trap)
  • I/O read or write breakpoint (Trap)
  • Single-step (Trap)
  • Task-switch (Trap)

When the exception is a fault, the saved instruction pointer points to the instruction which caused the exception. When the exception is a trap, the saved instruction pointer points to the instruction after the instruction which caused the exception.

Error code: The Debug exception does not set an error code. However, exception information is provided in the debug registers (CPU_Registers_x86#Debug_Registers).

Breakpoint

A Breakpoint exception occurs at the execution of the INT3 instruction. Some debug software replace an instruction by the INT3 instruction. When the breakpoint is trapped, it replaces the INT3 instruction with the original instruction, and decrements the instruction pointer by one.

The saved instruction pointer points to the byte after the INT3 instruction.

Overflow

An Overflow exception is raised when the INTO instruction is executed while the overflow bit in RFLAGS is set to 1.

The saved instruction pointer points to the instruction after the INTO instruction.

Aborts

Double Fault

A Double Fault occurs when an exception is unhandled or when an exception occurs while the CPU is trying to call an exception handler. Normally, two exception at the same time are handled one after another, but in some cases that is not possible. For example, if a page fault occurs, but the exception handler is located in a not-present page, two page faults would occur and neither can be handled. A double fault would occur.

A double fault will always generate an error code with a value of zero.

The saved instruction pointer is undefined. A double fault cannot be recovered. The faulting process must be terminated.

In several starting hobby OSes, a double fault is also quite often a misdiagnosed IRQ0 in the cases where the PIC hasn’t been reprogrammed yet.

Machine Check

The Machine Check exception is model specific and processor implementations are not required to support it. It uses model-specific registers to provide error information. It is disabled by default. To enable it, set the CR4.MCE bit to 1.

Machine check exceptions occur when the processor detects internal errors, such as bad memory, bus errors, cache errors, etc.

The value of the saved instruction pointer depends on the implementation and the exception.

Triple Fault

Main article: Triple Fault

The Triple Fault is not really an exception, because it does not have an associated vector number. Nonetheless, a triple fault occurs when an exception is generated when attempt to call the double fault exception handler. It results in the processor resetting. See the main article for more information about possible causes and how to avoid them.

Selector Error Code

 31         16   15         3   2   1   0
+---+--  --+---+---+--  --+---+---+---+---+
|   Reserved   |    Index     |  Tbl  | E |
+---+--  --+---+---+--  --+---+---+---+---+
Length Name Description
E 1 bit External When set, the exception originated externally to the processor.
Tbl 2 bits IDT/GDT/LDT table This is one of the following values:

Value Description
0b00 The Selector Index references a descriptor in the GDT.
0b01 The Selector Index references a descriptor in the IDT.
0b10 The Selector Index references a descriptor in the LDT.
0b11 The Selector Index references a descriptor in the IDT.
Index 13 bits Selector Index The index in the GDT, IDT or LDT.

Legacy

The following exceptions happen on outdated technology, but are no longer used or should be avoided. They apply mostly to the intel 386 and earlier, and might include CPUs from other manufacturers around the same time.

FPU Error Interrupt

In the old days, the floating point unit was a dedicated chip that could be attached to the processor. It lacked direct wiring of FPU errors to the processor, so instead it used IRQ 13, allowing the CPU to deal with errors at its own leasure. When the 486 was developed and multiprocessor support was added, the FPU was embedded on die and a global interrupt for FPUs became undesirable, instead getting an option for direct error handling. By default, this method is not enabled at boot for backwards compatibility, but an OS should update the settings accordingly.

Coprocessor Segment Overrun

When the FPU was still external to the processor, it had separate segment checking in protected mode. Since the 486 this is handled by a GPF instead like it already did with non-FPU memory accesses.

See Also

External Links

  • Intel® 64 and IA-32 Architectures Software Developer’s Manual, Volume 3 (System Programming Guide), Chapter 6 (Interrupt and exception handling)

Статьи » Расшифровка КОДОВ ОШИБОК Windows

Расшифровка КОДОВ ОШИБОК Windows

Для более удобного поиска вашей ошибки используйте CTRL+F

0000 0x0000 Операция успешно завершена. 
0001 0x0001 Неверная функция. 
0002 0x0002 Системе не удается найти указанный файл. 
0003 0x0003 Системе не удается найти указанный путь. 
0004 0x0004 Системе не удается открыть файл. 
0005 0x0005 Нет доступа. 
0006 0x0006 Неверный дескриптор. 
0007 0x0007 Повреждены управляющие блоки памяти. 
0008 0x0008 Недостаточно памяти для обработки команды. 
0009 0x0009 Неверный адрес управляющего блока памяти. 
0010 0x000A Ошибка в среде. 
0011 0x000B Была сделана попытка загрузить программу, имеющую неверный формат. 
0012 0x000C Код доступа неверен. 
0013 0x000D Ошибка в данных. 
0014 0x000E Недостаточно памяти для завершения операции. 
0015 0x000F Системе не удается найти указанный диск. 
0016 0x0010 Не удается удалить каталог 
0017 0x0011 Системе не удается переместить файл на другой диск. 
0018 0x0012 Больше файлов не осталось. 
0019 0x0013 Носитель защищен от записи. 
0020 0x0014 Системе не удается найти указанное устройство. 
0021 0x0015 Устройство не готово. 
0022 0x0016 Устройство не опознает команду. 
0023 0x0017 Ошибка в данных (CRC) 
0024 0x0018 Длина выданной программой команды слишком велика. 
0025 0x0019 Не удается найти заданную область или дорожку на диске. 
0026 0x001A Нет доступа к диску или дискете. 
0027 0x001B Не удается найти заданный сектор на диске. 
0028 0x001C На принтере кончилась бумага. 
0029 0x001D Системе не удается произвести запись на устройство. 
0030 0x001E Системе не удается произвести чтение с устройства. 
0031 0x001F Присоединенное к системе устройство не работает. 
0032 0x0020 Процесс не может получить доступ к файлу, так как этот файл занят другим процессом. 
0033 0x0021 Процесс не может получить доступ к файлу, так как часть этого файла заблокирована другим процессом. 
0034 0x0022 В устройство вставлен неверный диск. Вставьте %2 (серийный номер тома: %3) в устройство %1. 
0036 0x0024 Слишком много файлов открыто для совместного доступа. 
0038 0x0026 Достигнут конец файла. 
0039 0x0027 Диск заполнен до конца. 
0050 0x0032 Запрос сети не поддерживается. 
0051 0x0033 Удаленный компьютер недоступен. 
0052 0x0034 В сети имеется два ресурса с одинаковыми именами. 
0053 0x0035 Не найден сетевой путь. 
0054 0x0036 Сеть занята. 
0055 0x0037 Сетевой ресурс или устройство более недоступно. 
0056 0x0038 Достигнут предел по числу команд для сетевой части BIOS. 
0057 0x0039 Аппаратная ошибка сетевой платы. 
0058 0x003A Указанный сервер не может выполнить требуемую операцию. 
0059 0x003B Неожиданная ошибка в сети. 
0060 0x003C Несовместимый удаленный контроллер. 
0061 0x003D Очередь принтера заполнена до конца. 
0062 0x003E На сервер отсутствует место для записи файла, выводимого на печать. 
0063 0x003F Ваш файл, находившийся в очереди вывода на печать, был удален. 
0064 0x0040 Указанное сетевое имя более недоступно. 
0065 0x0041 Нет доступа к сети. 
0066 0x0042 Неверно указан тип сетевого ресурса. 
0067 0x0043 Не найдено сетевое имя. 
0068 0x0044 Превышен предел по числу имен для локальной сетевой платы компьютера. 
0069 0x0045 Превышен предел по числу сеансов сетевой системы ввода/вывода (BIOS). 
0070 0x0046 Сервер сети был остановлен или находится в процессе запуска. 
0071 0x0047 Количество подключений к удаленному компьютеру достигло предела, поэтому установка дополнительных подключений невозможна. 
0072 0x0048 Работа указанного принтера или дискового накопителя была остановлена. 
0080 0x0050 Файл существует. 
0082 0x0052 Не удается создать файл или каталог. 
0083 0x0053 Сбой прерывания INT 24 
0084 0x0054 Недостаточно памяти для обработки запроса. 
0085 0x0055 Имя локального устройства уже используется. 
0086 0x0056 Сетевой пароль указан неверно. 
0087 0x0057 Параметр задан неверно. 
0088 0x0058 Ошибка записи в сети. 
0089 0x0059 В настоящее время системе не удается запустить другой процесс. 

0100 0x0064 Не удается создать еще один системный семафор. 
0101 0x0065 Семафор эксклюзивного доступа занят другим процессом. 
0102 0x0066 Семафор установлен и не может быть закрыт. 
0103 0x0067 Семафор не может быть установлен повторно. 
0104 0x0068 Запросы к семафорам эксклюзивного доступа на время выполнения прерываний не допускаются. 
0105 0x0069 Этот семафор более не принадлежит использовавшему его процессу. 
0106 0x006A Вставьте диск в устройство %1. 
0107 0x006B Программа была остановлена, так как нужный диск вставлен не был. 
0108 0x006C Диск занят или заблокирован другим процессом. 
0109 0x006D Канал был закрыт. 
0110 0x006E Системе не удается открыть указанное устройство или файл. 
0111 0x006F Указано слишком длинное имя файла. 
0112 0x0070 Недостаточно места на диске. 
0113 0x0071 Исчерпаны внутренние идентификаторы файлов. 
0114 0x0072 Внутренний идентификатор конечного файла неверен. 
0117 0x0075 Вызов IOCTL приложением произведен неверно. 
0118 0x0076 Параметр проверки записи данных имеет неверное значение. 
0119 0x0077 Система не может обработать полученную команду. 
0120 0x0078 Эта функция допустима только в режиме Win32. 
0121 0x0079 Истек интервал ожидания семафора. 
0122 0x007A Область данных, переданная по системному вызову, слишком мала. 
0123 0x007B Синтаксическая ошибка в имени файла, имени каталога или метке тома. 
0124 0x007C Неверный уровень системного вызова. 
0125 0x007D У диска отсутствует метка тома. 
0126 0x007E Не найден указанный модуль. 
0127 0x007F Не найдена указанная процедура. 
0128 0x0080 Дочерние процессы, окончания которых требуется ожидать, отсутствуют. 
0129 0x0081 Приложение %1 нельзя запустить в режиме Win32. 
0130 0x0082 Попытка использовать дескриптор файла для открытия раздела диска и выполнения операции, отличающейся от ввода/вывода нижнего уровня. 
0131 0x0083 Попытка поместить указатель на файл перед началом файла. 
0132 0x0084 Указатель на файл не может быть установлен на заданное устройство или файл. 
0133 0x0085 Команды JOIN и SUBST не могут быть использованы для дисков, содержащих уже объединенные диски. 
0134 0x0086 Попытка использовать команду JOIN или SUBST для диска, уже включенного в набор объединенных дисков. 
0135 0x0087 Попытка использовать команду JOIN или SUBST для диска, который уже был отображен. 
0136 0x0088 Попытка снять признак объединения с диска, для которого команда JOIN не выполнялась. 
0137 0x0089 Попытка снять признак отображения с диска, для которого команда SUBST не выполнялась. 
0138 0x008A Попытка объединить диск с каталогом на объединенном диске. 
0139 0x008B Попытка отобразить диск на каталог, находящийся на отображенном диске. 
0140 0x008C Попытка объединить диск с каталогом на отображенном диске. 
0141 0x008D Попытка отобразить диск на каталог, находящийся на объединенном диске. 
0142 0x008E В настоящее время выполнить команду JOIN или SUBST невозможно. 
0143 0x008F Система не может объединить или отобразить диск на каталог (с каталогом) с этого же диска. 
0144 0x0090 Этот каталог не является подкаталогом корневого. 
0145 0x0091 Каталог непуст. 
0146 0x0092 Указанный путь используется для отображенного диска. 
0147 0x0093 Недостаточно ресурсов для обработки команды. 
0148 0x0094 Указанный путь в настоящее время использовать нельзя. 
0149 0x0095 Попытка объединить или отобразить диск, каталог на котором уже используется для отображения. 
0150 0x0096 Сведения о трассировке в файле CONFIG.SYS не найдены, либо трассировка запрещена. 
0151 0x0097 Число семафоров для DosMuxSemWait задано неверно. 
0152 0x0098 Не выполнен вызов DosMuxSemWait. Установлено слишком много семафоров. 
0153 0x0099 Некорректный вызов DosMuxSemWait. 
0154 0x009A Длина метки тома превосходит предел, установленный для файловой системы. 
0155 0x009B Не удается создать еще один поток команд. 
0156 0x009C Принимающий процесс отклонил сигнал. 
0157 0x009D Сегмент уже освобожден и не может быть заблокирован. 
0158 0x009E Блокировка с сегмента уже снята. 
0159 0x009F Адрес идентификатора потока команд задан неверно. 
0160 0x00A0 DosExecPgm передан неверный аргумент. 
0161 0x00A1 Путь указан неверно. 
0162 0x00A2 Сигнал уже находится в состоянии обработки. 
0164 0x00A4 Создание дополнительных потоков команд невозможно. 
0167 0x00A7 Не удается снять блокировку с области файла. 
0170 0x00AA Требуемый ресурс занят. 
0173 0x00AD Запрос на блокировку соответствует определенной области. 
0174 0x00AE Файловая система не поддерживает указанные изменения типа блокировки. 
0180 0x00B4 Системой обнаружен неверный номер сегмента. 
0182 0x00B6 Операционная система не может запустить %1. 
0183 0x00B7 Невозможно создать файл, так как он уже существует. 
0186 0x00BA Передан неверный флаг. 
0187 0x00BB Не найдено указанное имя системного семафора. 
0188 0x00BC Операционная система не может запустить %1. 
0189 0x00BD Операционная система не может запустить %1. 
0190 0x00BE Операционная система не может запустить %1. 
0191 0x00BF Не удается запустить %1 в режиме Win32. 
0192 0x00C0 Операционная система не может запустить %1. 
0193 0x00C1 %1 не является приложением Win32. 
0194 0x00C2 Операционная система не может запустить %1. 
0195 0x00C3 Операционная система не может запустить %1. 
0196 0x00C4 Операционная система не может запустить это приложение. 
0197 0x00C5 Конфигурация операционной системы не рассчитана на запуск этого приложения. 
0198 0x00C6 Операционная система не может запустить %1. 
0199 0x00C7 Операционная система не может запустить это приложение. 

0200 0x00C8 Сегмент кода не может превышать 64 Кбайт. 
0201 0x00C9 Операционная система не может запустить %1. 
0202 0x00CA Операционная система не может запустить %1. 
0203 0x00CB Системе не удается найти указанный параметр среды. 
0205 0x00CD Ни один из процессов в дереве команды не имеет обработчика сигналов. 
0206 0x00CE Имя файла или его расширение имеет слишком большую длину. 
0207 0x00CF Стек занят. 
0208 0x00D0 Подстановочные знаки * и/или ? заданы неверно или образуют неверный шаблон имени. 
0209 0x00D1 Отправляемый сигнал неверен. 
0210 0x00D2 Не удается установить обработчик сигналов. 
0212 0x00D4 Сегмент заблокирован и не может быть перемещен. 
0214 0x00D6 К этой программе или модулю присоединено слишком много динамически подключаемых модулей. 
0215 0x00D7 Вызовы LoadModule не могут быть вложены. 
0230 0x00E6 Состояние канала является неверным. 
0231 0x00E7 Все копии канала заняты. 
0232 0x00E8 Идет закрытие канала. 
0233 0x00E9 С обоих концов канала отсутствуют процессы. 
0234 0x00EA Имеются дополнительные данные. 
0240 0x00F0 Сеанс был прекращен. 
0254 0x00FE Имя дополнительного атрибута было задано неверно. 
0255 0x00FF Дополнительные атрибуты несовместимы между собой. 
0259 0x0103 Дополнительные данные отсутствуют. 
0266 0x010A Не удается использовать интерфейс (API) Copy. 
0267 0x010B Неверно задано имя каталога. 
0275 0x0113 Дополнительные атрибуты не уместились в буфере. 
0276 0x0114 Файл дополнительных атрибутов поврежден. 
0277 0x0115 Файл дополнительных атрибутов переполнен. 
0278 0x0116 Неверно указан дескриптор дополнительного атрибута. 
0282 0x011A Установленная файловая система не поддерживает дополнительные атрибуты. 
0288 0x0120 Попытка освободить не принадлежащий процессу объект синхронизации. 
0298 0x012A Слишком много попыток занесения события для семафора. 
0299 0x012B Запрос Read/WriteProcessMemory был выполнен только частично. 

0317 0x013D Не удается найти сообщение с номером 0x%1 в файле сообщений %2. 

0487 0x01E7 Попытка обращения к неверному адресу. 

0534 0x0216 Длина результата арифметической операции превысила 32 разряда. 
0535 0x0217 С другой стороны канала присутствует процесс. 
0536 0x0218 Идет ожидание открытия процессом другой стороны канала. 

0994 0x03E2 Нет доступа к дополнительным атрибутам. 
0995 0x03E3 Операция ввода/вывода была прервана из-за завершения потока команд или по запросу приложения. 
0996 0x03E4 Наложенное событие ввода/вывода не находится в сигнальном состоянии. 
0997 0x03E5 Протекает наложенное событие ввода/вывода. 
0998 0x03E6 Неверная попытка доступа к адресу памяти. 
0999 0x03E7 Ошибка при выполнении операции со страницей. 

1001 0x03E9 Слишком глубокий уровень рекурсии. Стек переполнен. 
1002 0x03EA Окно не может взаимодействовать с отправленным сообщением. 
1003 0x03EB Не удается завершить выполнение функции. 
1004 0x03EC Флаги установлены неверно. 
1005 0x03ED Не удается опознать присутствующую на томе файловую систему. Убедитесь в том, что все системные драйверы загружены, а также в исправности самого тома. 
1006 0x03EE Том для открытого файла был изменен извне, так что работа с файлом невозможна. 
1007 0x03EF Заданная операция не может быть выполнена в полноэкранном режиме. 
1008 0x03F0 Попытка ссылки на несуществующий элемент. 
1009 0x03F1 База данных реестра повреждена. 
1010 0x03F2 Параметр реестра имеет неверное значение. 
1011 0x03F3 Не удается открыть параметр реестра. 
1012 0x03F4 Не удается прочитать параметр реестра. 
1013 0x03F5 Не удается записать параметр реестра. 
1014 0x03F6 Один из файлов в базе данных реестра должен был быть восстановлен с помощью протокола или резервной копии. Восстановление прошло успешно.
1015 0x03F7 Реестр поврежден. Структура одного из файлов, содержащего данные реестра, повреждена. Возможно поврежден образ файла в памяти, или файл не удалось восстановить из-за отсутствия резервной копии/протокола. 
1016 0x03F8 Операция ввода/вывода, инициированная реестром, закончилась неисправимым сбоем. Не удалось считать, записать или закрыть один из файлов, содержащих системный образ реестра. 
1017 0x03F9 При попытке загрузить или восстановить файл реестра выяснилось, что этот файл имеет неверный формат. 
1018 0x03FA Попытка произвести недопустимую операцию над параметром реестра, отмеченным для удаления. 
1019 0x03FB Не удалось выделить требуемое место в протоколе реестра. 
1020 0x03FC Нельзя создать символическую связь для параметра реестра, который уже содержит подпараметры или значения. 
1021 0x03FD Нельзя создать статический подпараметр для временного родительского параметра. 
1022 0x03FE Запрос на оповещение об изменениях завершается, однако данные не были возвращены в буфер вызывающей процедуры. Теперь эта процедура нуждается в переборе файлов для поиска изменений. 
1051 0x041B Команда остановки была отправлена службе, от которой зависят другие службы. 
1052 0x041C Команда неуместна для данной службы 
1053 0x041D Служба не ответила на запрос своевременно. 
1054 0x041E Не удалось создать поток команд для службы. 
1055 0x041F База данных службы заблокирована. 
1056 0x0420 Одна копия службы уже запущена. 
1057 0x0421 Имя учетной записи задано неверно или не существует. 
1058 0x0422 Указанная служба отключена или не может быть запущена. 
1059 0x0423 Была сделана попытка установить циклическую зависимость между службами. 
1060 0x0424 Указанная служба не установлена. 
1061 0x0425 Служба в настоящее время не может принимать команды. 
1062 0x0426 Служба не запущена. 
1063 0x0427 Процесс службы не может установить связь с контроллером службы. 
1064 0x0428 Ошибка службы при обработке команды. 
1065 0x0429 Указанная база данных не существует. 
1066 0x042A Служба возвратила код ошибки. 
1067 0x042B Процесс был неожиданно завершен. 
1068 0x042C Не удалось запустить дочернюю службу. 
1069 0x042D Служба не запущена из-за сбоя при входе. 
1070 0x042E «Сразу после запуска служба «»зависла»».» 
1071 0x042F Блокировка базы данных указанной службы наложена неверно. 
1072 0x0430 Указанная служба была отмечена для удаления. 
1073 0x0431 Указанная служба уже существует. 
1074 0x0432 Система в настоящий момент работает с использованием последней корректной конфигурации. 
1075 0x0433 Дочерняя служба не существует или была отмечена для удаления. 
1076 0x0434 Текущая конфигурация уже была задействована в качестве источника последнего корректного набора параметров. 
1077 0x0435 С момента последней загрузки попытки запустить службу не делались. 
1078 0x0436 Имя уже задействовано в качестве имени службы. 

1100 0x044C Достигнут физический конец ленты. 
1101 0x044D Достигнута метка файла. 
1102 0x044E Обнаружено начало раздела ленты. 
1103 0x044F Достигнут конец набора файлов. 
1104 0x0450 Больше данных на ленте нет. 
1105 0x0451 Не удается создать на ленте разделы. 
1106 0x0452 Неверный размер блока при обращении к новой ленте многотомного раздела. 
1107 0x0453 Сведения о разделах при загрузке ленты не обнаружены. 
1108 0x0454 Не удается заблокировать механизм извлечения носителя. 
1109 0x0455 Не удается извлечь носитель. 
1110 0x0456 Носитель в устройстве мог быть заменен. 
1111 0x0457 Шина ввода/вывода была инициализирована заново. 
1112 0x0458 Отсутствует носитель в устройстве. 
1113 0x0459 В многобайтовой кодовой странице отсутствует символ для одного из кодов в формате Unicode. 
1114 0x045A Произошел сбой в программе инициализации библиотеки динамической компоновки (DLL). 
1115 0x045B Идет завершение работы системы. 
1116 0x045C Прервать завершение работы системы невозможно, так как оно не было инициировано. 
1117 0x045D Запрос не был выполнен из-за ошибки ввода/вывода на устройстве. 
1118 0x045E Ни одно из последовательных устройств успешно инициализировано не было. Драйвер последовательных устройств будет выгружен. 
1119 0x045F Не удается открыть устройство, использующее общий с другими устройствами запрос на прерывание (IRQ). Как минимум одно устройство, использующее этот же запрос IRQ, уже было открыто. 
1120 0x0460 Последовательная операция ввода/вывода была завершена в результате следующей операции записи в последовательный порт. (Значение IOCTL_SERIAL_XOFF_COUNTER достигло 0.) 
1121 0x0461 Последовательная операция ввода/вывода была завершена по истечении периода ожидания. (Значение IOCTL_SERIAL_XOFF_COUNTER не достигло 0.)
1122 0x0462 На гибком диске не обнаружена адресная метка идентификатора. 
1123 0x0463 Обнаружено несоответствие между полем идентификатора сектора гибкого диска и адресом дорожки контроллера. 
1124 0x0464 Ошибка, возвращенная контроллером гибких дисков, не опознается драйвером. 
1125 0x0465 Контроллером гибких дисков возвращены некорректные значения регистров. 
1126 0x0466 Зафиксирован многократный сбой операции проверки при обращении к жесткому диску. 
1127 0x0467 Зафиксирован многократный сбой операции при обращении к жесткому диску. 
1128 0x0468 При обращении к жесткому диску потребовался сброс контроллера, однако даже его произвести не удалось. 
1129 0x0469 Достигнут физический конец ленты. 
1130 0x046A Недостаточно памяти сервера для обработки команды. 
1131 0x046B Обнаружена вероятность возникновения взаимоблокировки. 
1132 0x046C Базовый адрес или смещение имеют неверное выравнивание. 
1140 0x0474 Попытка изменения режима питания была заблокирована другим приложением или драйвером. 
1141 0x0475 Сбой BIOS при попытке изменения режима питания. 
1150 0x047E Для указанной программы требуется более поздняя версия Windows. 
1151 0x047F Указанная программа не является программой для Windows или MS-DOS. 
1152 0x0480 Запуск более одной копии указанной программы невозможен. 
1153 0x0481 Указанная программа была написана для одной из предыдущих версий Windows. 
1154 0x0482 Поврежден один из файлов библиотек, необходимых для выполнения данного приложения.

1155 0x0483 Указанному файлу не сопоставлено ни одно приложение для выполнения данной операции. 

1156 0x0484 Ошибка при пересылке команды приложению. 
1157 0x0485 Не найден один из файлов библиотек, необходимых для выполнения данного приложения. 

1200 0x04B0 Указано неверное имя устройства. 
1201 0x04B1 Устройство в настоящее время не присоединено, однако сведения о нем в конфигурации присутствуют. 
1202 0x04B2 Попытка записать сведения об устройстве, которые уже были записаны. 
1203 0x04B3 Ни одна из систем доступа к сети не смогла обработать заданный сетевой путь. 
1204 0x04B4 Имя системы доступа к сети задано неверно. 
1205 0x04B5 Не удается открыть конфигурацию подключения к сети. 
1206 0x04B6 Конфигурация подключения к сети повреждена. 
1207 0x04B7 Перечисление для объектов, не являющихся контейнерами, невозможно. 
1208 0x04B8 Ошибка. 
1209 0x04B9 Неверный формат имени группы. 
1210 0x04BA Неверный формат имени компьютера. 
1211 0x04BB Неверный формат имени события. 
1212 0x04BC Неверный формат имени домена. 
1213 0x04BD Неверный формат имени службы. 
1214 0x04BE Неверный формат сетевого имени. 
1215 0x04BF Неверный формат имени ресурса. 
1216 0x04C0 Неверный формат пароля. 
1217 0x04C1 Неверный формат имени сообщения. 
1218 0x04C2 Неверный формат задания адреса, по которому отправляется сообщение. 
1219 0x04C3 Представленные идентификационные сведения конфликтуют с имеющимися. 
1220 0x04C4 Попытка установки сеанса связи с сервером сети, для которого достигнут предел по числу таких сеансов. 
1221 0x04C5 Имя рабочей группы или домена уже используется другим компьютером в сети. 
1222 0x04C6 Сеть отсутствует или не запущена. 
1223 0x04C7 Операция была отменена пользователем. 
1224 0x04C8 Указанная операция не может быть выполнена для файла с открытым разделом. 
1225 0x04C9 Удаленная система отклонила запрос на подключение к сети. 
1226 0x04CA Сетевое подключение было закрыто. 
1227 0x04CB Конечной точке транспорта уже сопоставлен адрес. 
1228 0x04CC Конечной точке сети еще не сопоставлен адрес. 
1229 0x04CD Попытка выполнить операцию для несуществующего сетевого подключения. 
1230 0x04CE Попытка выполнить недопустимую операцию для активного сетевого подключения. 
1231 0x04CF Этот транспорт не обеспечивает доступа к удаленной сети. 
1232 0x04D0 Этот транспорт не обеспечивает доступа к удаленной системе. 
1233 0x04D1 Удаленная система не поддерживает транспортный протокол. 
1234 0x04D2 На конечном звене нужной сети удаленной системы не запущена ни одна служба. 
1235 0x04D3 Запрос был снят. 
1236 0x04D4 Подключение к сети было разорвано локальной системой. 
1237 0x04D5 Не удалось завершить операцию. Следует повторить ее. 
1238 0x04D6 Не удалось произвести подключение к серверу, так как достигнут предел по числу одновременно установленных соединений. 
1239 0x04D7 Попытка входа в сеть в непредусмотренное для этого пользователя (учетной записи) время дня. 
1240 0x04D8 Данный пользователь не может войти в сеть с этой станции. 
1241 0x04D9 Нельзя использовать сетевой адрес для данной операции. 
1242 0x04DA Служба уже зарегистрирована. 
1243 0x04DB Указанная служба не существует. 
1244 0x04DC Запрошенная операция не была выполнена, так как пользователь не зарегистрирован. 
1245 0x04DD Запрошенная операция не была выполнена, так как пользователь не подключен к сети. Указанная служба не существует. 
1246 0x04DE Требуется продолжить выполняющуюся операцию. 
1247 0x04DF Попытка выполнить операцию инициализации, которая уже проведена. 
1248 0x04E0 Больше локальных устройств не найдено. 

1300 0x0514 Пользователь обладает не всеми использованными правами доступа. 
1301 0x0515 Не было установлено соответствие между именами пользователей и идентификаторами защиты. 
1302 0x0516 Системные квоты для данной учетной записи не установлены. 
1303 0x0517 Ключ шифрования недоступен. 
1304 0x0518 Пароль NT слишком сложен и не может быть преобразован в пароль LAN Manager. Вместо пароля LAN Manager была возвращена пустая строка. 
1305 0x0519 Версия изменений неизвестна. 
1306 0x051A Два уровня изменений несовместимы между собой. 
1307 0x051B Этот код защиты не может соответствовать владельцу объекта. 
1308 0x051C Этот код защиты не может соответствовать основной группе объекта. 
1309 0x051D Предпринята попытка использования элемента имперсонификации потоком команд, который в данное время не производит имперсонификацию процесса. 
1310 0x051E Группу нельзя отключить. 
1311 0x051F Отсутствуют серверы, которые могли бы обработать запрос на вход в сеть. 
1312 0x0520 Указанный сеанс работы не существует. Возможно, он уже завершен. 
1313 0x0521 Указанное право доступа не существует. 
1314 0x0522 Указанное право доступа у клиента отсутствует. 
1315 0x0523 Указанное имя не является корректным именем пользователя. 
1316 0x0524 Пользователь с указанным именем уже существует. 
1317 0x0525 Пользователь с указанным именем не существует. 
1318 0x0526 Указанная группа уже существует. 
1319 0x0527 Указанная группа не существует. 
1320 0x0528 Указанный пользователь уже является членом заданной группы, либо группа не может быть удалена, так как содержит как минимум одного пользователя. 
1321 0x0529 Указанный пользователь не является членом заданной группы. 
1322 0x052A Последнюю учетную запись из группы администраторов нельзя отключить или удалить. 
1323 0x052B Не удается обновить пароль. Текущий пароль был задан неверно. 
1324 0x052C Не удается обновить пароль. Новый пароль содержит недопустимые символы. 
1325 0x052D Не удается обновить пароль. Было нарушено одно из правил обновления. 
1326 0x052E Вход в сеть не произведен: имя пользователя или пароль не опознаны. 
1327 0x052F Вход в сеть не произведен: имеются ограничения, связанные с учетной записью. 
1328 0x0530 Вход в сеть не произведен: учетная запись не предусматривает возможность входа в данное время. 
1329 0x0531 Вход в сеть не произведен: пользователю не предоставлено право работы на этом компьютере. 
1330 0x0532 Вход в сеть не произведен: срок действия указанного пароля истек. 
1331 0x0533 Вход в сеть не произведен: учетная запись в настоящее время отключена. 
1332 0x0534 Именам пользователей не сопоставлены коды защиты данных. 
1333 0x0535 Одновременно запрошено слишком много локальных кодов пользователей. 
1334 0x0536 Дополнительные локальные коды пользователей недоступны. 
1335 0x0537 Часть кода защиты данных неверна. 
1336 0x0538 Список управления доступом (ACL) имеет неверную структуру. 
1337 0x0539 Код защиты данных имеет неверную структуру. 
1338 0x053A Дескриптор защиты данных имеет неверную структуру. 
1340 0x053C Не удается построить список управления доступом (ACL) или элемент этого списка (ACE). 
1341 0x053D Сервер в настоящее время отключен. 
1342 0x053E Сервер в настоящее время включен. 
1343 0x053F Значение задано неверно. 
1344 0x0540 Недостаточно памяти для обновления сведений, относящихся к защите данных. 
1345 0x0541 Указанные атрибуты неверны или несовместимы с атрибутами группы в целом. 
1346 0x0542 Требуемый уровень имперсонификации не обеспечен, или обеспеченный уровень неверен. 
1347 0x0543 Не удается открыть элемент защиты данных неизвестного уровня. 
1348 0x0544 Запрошен неверный класс сведений для проверки. 
1349 0x0545 Тип элемента не соответствует требуемой операции. 
1350 0x0546 Операция, связанная с защитой данных, не может быть выполнена для незащищенного объекта. 
1351 0x0547 Недоступен сервер Windows NT, или объекты внутри домена защищены. Требуемые сведения недоступны. 
1352 0x0548 Диспетчер защиты (SAM) или локальный сервер (LSA) не смог выполнить требуемую операцию. 
1353 0x0549 Состояние домена не позволило выполнить нужную операцию. 
1354 0x054A Эта операция разрешена только для главного контроллера домена. 
1355 0x054B Указанный домен не существует. 
1356 0x054C Указанный домен уже существует. 
1357 0x054D Была сделана попытка превысить предел на число доменов, обслуживаемых одним сервером. 
1358 0x054E Не удается завершить требуемую операцию из-за сбоев в данных на диске или неустранимой ошибки носителя. 
1359 0x054F База данных системы защиты содержит внутренние противоречия. 
1360 0x0550 Универсальные типы доступа содержатся в маске доступа, которая должна была уже быть связана с нестандартными типами. 
1361 0x0551 Дескриптор защиты имеет неверный формат. 
1362 0x0552 Требуемое действие может использоваться только в процессе входа в сеть Вызвавший его процесс не зарегистрирован как относящийся к процедуре входа. 
1363 0x0553 Запуск нового сеанса работы с уже использующимся кодом невозможен. 
1364 0x0554 Пакет аутентификации не опознан. 
1365 0x0555 Операция не соответствует текущему состоянию процесса входа в сеть. 
1366 0x0556 Код сеанса уже используется. 
1367 0x0557 Режим входа задан неверно. 
1368 0x0558 Не удается обеспечить представление через именованный конвейер до тех пор, пока данные не прочитаны с этого конвейера. 
1369 0x0559 Операция несовместима с состоянием транзакции для ветви реестра. 
1370 0x055A База данных защиты повреждена. 
1371 0x055B Операция не предназначена для встроенных учетных записей. 
1372 0x055C Операция не предназначена для встроенной специальной группы. 
1373 0x055D Операция не предназначена для встроенного специального пользователя. 
1374 0x055E Нельзя удалить пользователя из группы, так как она является для него основной. 
1375 0x055F Элемент уже используется в качестве основного элемента. 
1376 0x0560 Указанная локальная группа не существует. 
1377 0x0561 Указанный пользователь не входит в локальную группу. 
1378 0x0562 Указанный пользователь уже является членом локальной группы. 
1379 0x0563 Указанная локальная группа уже существует. 
1380 0x0564 Вход в сеть не произведен: пользователю не разрешено производить вход в сеть в данном режиме с этого компьютера. 
1381 0x0565 Достигнут предел по количеству защищенных данных/ресурсов для одной системы. 
1382 0x0566 Длина защищенных данных превышает максимально возможную. 
1383 0x0567 Локальная база данных защиты содержит внутренние несоответствия. 
1384 0x0568 В процессе входа в сеть было использовано слишком много кодов защиты. 
1385 0x0569 Вход в сеть не произведен: выбранный режим входа для данного пользователя на этом компьютере не предусмотрен. 
1386 0x056A Для смены пароля необходим зашифрованный пароль. 
1387 0x056B Не удается добавить нового пользователя в локальную группу, так как этот пользователь не существует. 
1388 0x056C Не удается добавить нового пользователя в группу, так как этот пользователь имеет неверный тип учетной записи. 
1389 0x056D Задано слишком много кодов защиты. 
1390 0x056E Для смены пароля необходим зашифрованный пароль. 
1391 0x056F Список управления доступом (ACL) не содержит наследуемых компонентов 
1392 0x0570 Файл или каталог поврежден. Чтение невозможно. 
1393 0x0571 Структура диска повреждена. Чтение невозможно. 
1394 0x0572 Отсутствует ключ для указанного сеанса входа в сеть. 
1395 0x0573 Количество подключений к службе ограничено. Дополнительные подключения в настоящее время невозможны. 

1400 0x0578 Неверный дескриптор окна. 
1401 0x0579 Неверный дескриптор меню. 
1402 0x057A Неверный дескриптор указателя. 
1403 0x057B Неверный дескриптор таблицы сочетаний клавиш. 
1404 0x057C Неверный дескриптор обработчика. 
1405 0x057D Неверный дескриптор многооконной структуры. 
1406 0x057E Не удается создать дочернее окно верхнего уровня. 
1407 0x057F Не удается найти класс окна. 
1408 0x0580 Окно принадлежит другому потоку команд. 
1409 0x0581 Назначенная клавиша уже зарегистрирована. 
1410 0x0582 Класс уже существует. 
1411 0x0583 Класс не существует. 
1412 0x0584 Не все окна, принадлежащие данному классу, закрыты. 
1413 0x0585 Неверный индекс. 
1414 0x0586 Неверный дескриптор значка. 
1415 0x0587 Используются ключевые слова, относящиеся к окнам диалога типа private. 
1416 0x0588 Идентификатор списка не найден. 
1417 0x0589 Подстановочные знаки не обнаружены. 
1418 0x058A Буфер обмена для потока команд не открыт. 
1419 0x058B Назначенная клавиша не зарегистрирована. 
1420 0x058C Окно не является окном диалога. 
1421 0x058D Не найден идентификатор элемента управления. 
1422 0x058E Неверное сообщение для поля со списком (поле не имеет области ввода). 
1423 0x058F Окно не является полем со списком. 
1424 0x0590 Высота не может превышать 256. 
1425 0x0591 Неверный дескриптор контекста устройства (DC). 
1426 0x0592 Неверный тип процедуры обработки. 
1427 0x0593 Неверная процедура обработки. 
1428 0x0594 Невозможно установить нелокальный обработчик без дескриптора модуля. 
1429 0x0595 Эта процедура обработки может быть только глобальной. 
1430 0x0596 Процедура для обработки журнала уже установлена. 
1431 0x0597 Процедура обработки не установлена. 
1432 0x0598 Неверное сообщение для простого списка. 
1433 0x0599 Параметр LB_SETCOUNT отправлен списку неверного типа. 
1434 0x059A Список не входит в порядок обхода элементов управления. 
1435 0x059B Нельзя уничтожить объект, созданный другим потоком команд. 
1436 0x059C Дочерние окна не могут иметь меню. 
1437 0x059D Окно не имеет системного меню. 
1438 0x059E Неверный тип окна сообщения. 
1439 0x059F Неверный системный параметр (SPI_*). 
1440 0x05A0 Экран уже заблокирован. 
1441 0x05A1 Дескрипторы всех окон, входящих в многооконную структуру, должны иметь общий родительский дескриптор. 
1442 0x05A2 Окно не является дочерним. 
1443 0x05A3 Неверная команда GW_*. 
1444 0x05A4 Неверный идентификатор потока команд. 
1445 0x05A5 Невозможно обработать сообщение от окна, не являющегося компонентом многооконного (MDI) интерфейса. 
1446 0x05A6 Всплывающее меню уже активно. 
1447 0x05A7 Окно не имеет полос прокрутки. 
1448 0x05A8 Диапазон значений для полосы прокрутки не может выходить за пределы 0x7FFF. 
1449 0x05A9 Невозможно отобразить или удалить окно указанным способом. 
1450 0x05AA Недостаточно системных ресурсов для завершения операции. 
1451 0x05AB Недостаточно системных ресурсов для завершения операции. 
1452 0x05AC Недостаточно системных ресурсов для завершения операции. 
1453 0x05AD Недостаточная квота для завершения операции. 
1454 0x05AE Недостаточная квота для завершения операции. 
1455 0x05AF Файл подкачки слишком мал для завершения операции. 
1456 0x05B0 Не найден пункт меню. 

1500 0x05DC Журнал событий поврежден. 
1501 0x05DD Не удается найти файл журнала событий. Служба протоколирования событий не запущена. 
1502 0x05DE Журнал событий переполнен. 
1503 0x05DF Журнал событий был изменен в промежутке между двумя операциями чтения. 

1700 0x06A4 Неверная привязка строки. 
1701 0x06A5 Неверный тип дескриптора привязки. 
1702 0x06A6 Недопустимый дескриптор привязки. 
1703 0x06A7 Последовательность протокола RPC не поддерживается. 
1704 0x06A8 Некорректная последовательность протокола RPC. 
1705 0x06A9 Неверный универсальный уникальный идентификатор строки (UUID). 
1706 0x06AA Неверный формат адреса конечного узла. 
1707 0x06AB Сетевой адрес задан неверно. 
1708 0x06AC Конечный узел не найден. 
1709 0x06AD Неверно задано значение интервала ожидания. 
1710 0x06AE Универсальный уникальный идентификатор объекта (UUID) не найден. 
1711 0x06AF Универсальный уникальный идентификатор объекта (UUID) уже зарегистрирован. 
1712 0x06B0 Универсальный уникальный идентификатор типа (UUID) уже зарегистрирован. 
1713 0x06B1 Сервер RPC уже находится в режиме приема команд. 
1714 0x06B2 Не зарегистрирована ни одна протокольная последовательность. 
1715 0x06B3 Сервер RPC не принимает команды. 
1716 0x06B4 Неизвестный тип диспетчера. 
1717 0x06B5 Неизвестный интерфейс. 
1718 0x06B6 Привязка отсутствует. 
1719 0x06B7 Протокольные последовательности отсутствуют. 
1720 0x06B8 Не удается создать конечный узел. 
1721 0x06B9 Недостаточно ресурсов для завершения операции. 
1722 0x06BA Сервер RPC недоступен. 
1723 0x06BB Сервер RPC занят и не может завершить операцию. 
1724 0x06BC Неверные параметры сети. 
1725 0x06BD Активные удаленные вызовы процедур в потоке отсутствуют. 
1726 0x06BE Сбой при удаленном вызове процедуры. 
1727 0x06BF Сбой при удаленном вызове процедуры. Вызов не произведен. 
1728 0x06C0 Ошибка протокола удаленного вызова процедур (RPC). 
1730 0x06C2 Синтаксис не поддерживается сервером RPC. 
1732 0x06C4 Тип универсального уникального идентификатора (UUID) не поддерживается. 
1733 0x06C5 Неверный тег. 
1734 0x06C6 Неверные границы массива. 
1735 0x06C7 Привязка не содержит имени элемента. 
1736 0x06C8 Имя имеет неверный синтаксис. 
1737 0x06C9 Синтаксис имени не поддерживается. 
1739 0x06CB Отсутствуют сетевые адреса, позволяющие сконструировать универсальный уникальный идентификатор (UUID). 
1740 0x06CC Этот конечный узел существует в двух экземплярах. 
1741 0x06CD Неизвестный тип аутентификации. 
1742 0x06CE Максимальное число вызовов слишком мало. 
1743 0x06CF Строка имеет слишком большую длину. 
1744 0x06D0 Не найдена последовательность протокола RPC. 
1745 0x06D1 Номер процедуры выходит за рамки допустимого диапазона. 
1746 0x06D2 Привязка не содержит никаких сведений, относящихся к аутентификации. 
1747 0x06D3 Неизвестная служба аутентификации. 
1748 0x06D4 Неизвестный уровень аутентификации. 
1749 0x06D5 Неверный контекст системы защиты. 
1750 0x06D6 Неизвестная служба авторизации. 
1751 0x06D7 Недопустимый элемент. 
1752 0x06D8 Конечный узел (сервер) не может выполнить операцию. 
1753 0x06D9 Дополнительные конечные узлы недоступны. 
1754 0x06DA Экспорт интерфейсов не производился. 
1755 0x06DB Имя элемента задано не полностью. 
1756 0x06DC Неправильная версия. 
1757 0x06DD Другие члены в группе отсутствуют. 
1758 0x06DE Элементы, экспорт которых можно отменить, отсутствуют. 
1759 0x06DF Интерфейс не найден. 
1760 0x06E0 Элемент уже существует. 
1761 0x06E1 Элемент не найден. 
1762 0x06E2 Служба имен недоступна. 
1763 0x06E3 Неверное семейство сетевых адресов. 
1764 0x06E4 Операция не поддерживается. 
1765 0x06E5 Отсутствует контекст защиты данных для обеспечения имперсонификации. 
1766 0x06E6 Внутренняя ошибка при удаленном вызове процедуры (RPC). 
1767 0x06E7 Сервер RPC попытался произвести целочисленное деление на нуль. 
1768 0x06E8 Ошибка адресации на сервере RPC. 
1769 0x06E9 Операция с плавающей точкой на сервере RPC привела к делению на нуль. 
1770 0x06EA Исчезновение порядка при операции с плавающей точкой на сервере RPC. 
1771 0x06EB Переполнение при операции с плавающей точкой на сервере RPC. 
1772 0x06EC Список серверов RPC, доступных для привязки дескрипторов, был исчерпан.

1773 0x06ED Не удается открыть файл таблицы преобразования символов.
1774 0x06EE Файл таблицы преобразования символов содержит менее 512 байт.
1775 0x06EF При удаленном вызове процедуры главному компьютеру от клиента был передан пустой дескриптор контекста.
1777 0x06F1 В процессе удаленного вызова процедуры дескриптор контекста был изменен.
1778 0x06F2 Дескрипторы привязки, переданные при удаленном вызове процедуры, не соответствуют друг другу.
1779 0x06F3 Не удается получить дескриптор удаленного вызова процедуры.
1780 0x06F4 Был передан пустой указатель ссылки.
1781 0x06F5 Номер находится за пределами допустимого диапазона.
1782 0x06F6 Количество байт слишком мало.
1783 0x06F7 Переданы неверные данные.
1784 0x06F8 Имеющийся буфер не подходит для указанной операции.
1785 0x06F9 Не удается определить тип диска. Вероятно, он не отформатирован.
1786 0x06FA Рабочая станция не может участвовать в отношениях доверенности.
1787 0x06FB База данных диспетчера учетных записей на сервере Windows NT не содержит записи для регистрации этого компьютера как рабочей станции через отношения доверенности.
1788 0x06FC Установка отношений доверенности между основным доменом и доменом-доверителем не состоялась.
1789 0x06FD Не удалось установить доверительные отношения между этой рабочей станцией и основным доменом.
1790 0x06FE Вход в сеть не произведен.
1791 0x06FF Удаленный вызов процедуры для данного потока уже произведен.
1792 0x0700 Попытка входа в сеть при отключенной сетевой службе входа.
1793 0x0701 Срок действия учетной записи пользователя истек.
1794 0x0702 Система переадресации занята и не может быть выгружена.
1795 0x0703 Указанный драйвер принтера уже установлен.
1796 0x0704 Указанный порт не существует.
1797 0x0705 Неизвестный драйвер принтера.
1798 0x0706 Неизвестный процессор печати.
1799 0x0707 Файл-разделитель задан неверно.

1800 0x0708 Приоритет задан неверно.
1801 0x0709 Имя принтера задано неверно.
1802 0x070A Принтер уже существует.
1803 0x070B Неверная команда принтера.
1804 0x070C Неверно задан тип данных.
1805 0x070D Неверно задана среда.
1806 0x070E Все привязки исчерпаны.
1807 0x070F Использованное имя является междоменным трастовым именем. Для обращения к этому серверу воспользуйтесь глобальным или локальным именем.
1808 0x0710 Указанное имя является именем компьютера. Для доступа к серверу воспользуйтесь глобальным или локальным именем пользователя.
1809 0x0711 Указанное имя является именем серверного траста. Для доступа к серверу воспользуйтесь глобальным или локальным именем пользователя.
1810 0x0712 Указанное имя или идентификатор защиты (SID) домена несовместимы со сведениями, полученными о домене через отношения доверенности.
1811 0x0713 Сервер занят и не может быть выгружен.
1812 0x0714 Файл образа не содержит раздела с ресурсами.
1813 0x0715 Указанный тип ресурса в файле образа отсутствует.
1814 0x0716 Указанное имя ресурса не найдено в файле образа.
1815 0x0717 Код языка для ресурсов в файле образа не найден.
1816 0x0718 Не удается обработать команду.
1817 0x0719 Ни один интерфейс не зарегистрирован.
1818 0x071A В процессе обработки вызова произошла смена сервера.
1819 0x071B Дескриптор привязки не содержит всей необходимой информации.
1820 0x071C Ошибка при обмене данными.
1821 0x071D Запрошенный уровень проверки имен не поддерживается.
1822 0x071E Ни одно основное имя не зарегистрировано.
1823 0x071F Указан неверный код ошибки Windows RPC.
1824 0x0720 Был создан идентификатор UUID, который подходит только для этого компьютера.
1825 0x0721 Ошибка в пакете защиты данных.
1826 0x0722 Поток команд не прерван.
1827 0x0723 Недопустимая операция для дескриптора шифрования/дешифрования.
1828 0x0724 Несовместимая версия пакета.
1829 0x0725 Несовместимая версия RPC.
1898 0x076A Член группы не найден.
1899 0x076B Не удается создать базу данных отображения конечного узла.

1900 0x076C Универсальный уникальный идентификатор объекта (UUID) имеет пустое значение.
1901 0x076D Время задано некорректно.
1902 0x076E Имя формы задано некорректно.
1903 0x076F Размер формы задан некорректно.
1904 0x0770 Указанный дескриптор принтера уже ожидается.
1905 0x0771 Указанный принтер был удален.
1906 0x0772 Некорректное состояние принтера.
1907 0x0773 Перед первым входом пользователь должен сменить свой пароль.
1908 0x0774 Не удается найти контроллер этого домена.
1909 0x0775 Учетная запись пользователя заблокирована и не может быть использована для входа в сеть.

2000 0x07D0 Неверный формат пиксела.
2001 0x07D1 Выбран неверный драйвер.
2002 0x07D2 Тип или атрибут класса окна задан неверно.
2003 0x07D3 Требуемая операция для метафайлов не поддерживается.
2004 0x07D4 Требуемая операция преобразования не поддерживается.
2005 0x07D5 Требуемая операция обрезания рисунка не поддерживается.

2202 0x089A Имя пользователя задано неверно.
2250 0x08CA Сетевое подключение не существует.

2401 0x0961 На подключенном устройстве имеются открытые файлы или запросы, ждущие обработки.
2402 0x0962 Активные подключения все еще существуют.
2404 0x0964 Устройство используется одним из активных процессов и не может быть отключено.

3000 0x0BB8 Указан неизвестный монитор печати.
3001 0x0BB9 Указанный драйвер принтера занят.
3002 0x0BBA Не найден файл диспетчера очереди.
3003 0x0BBB Не был произведен вызов StartDocPrinter.
3004 0x0BBC Не был произведен вызов AddJob.
3005 0x0BBD Указанный процессор печати уже установлен.
3006 0x0BBE Указанный монитор печати уже установлен.

4000 0x0FA0 Ошибка WINS при обработке команды.
4001 0x0FA1 Нельзя удалить локальную часть WINS.
4002 0x0FA2 Ошибка при импорте из файла.
4003 0x0FA3 Ошибка при архивации данных. Производилась ли ранее полная архивация?
4004 0x0FA4 Ошибка при архивации данных. Проверьте каталог, в который производится архивация базы данных.
4005 0x0FA5 Имя не существует в базе данных WINS.
4006 0x0FA6 Репликация невозможна без предварительной настройки.

6118 0x17E6 Недоступен список серверов для этой рабочей группы.

В данной статейки мы поговорим о таком явление в операционной системе Windows как — Blue Screen of Death или по нашему «синий экран смерти», также его называют STOP-ошибка. Рассмотрим основные причины возникновения и расшифруем коды данных ошибок.

А для начала давайте дадим определение, что такое «Blue Screen of Death» — это способ генерации сообщения о фатальной ошибке в операционных системах Windows NT 4.0, Windows 2000, Windows 2003, Windows XP, Windows Vista и Windows 7 вызванной нарушениями в работе некоторых программ или драйверов, но все равно чаще из-за аппаратных сбоев компьютера.

Синий экран приводит к остановке всех процессов в операционной системе и замиранию компьютера после вывода синего экрана. Вообще синий экран нам помогает, Вы спросите чем, а тем, что он предотвращает разрушения операционной системы и вывода из строй оборудования. При появлении «синего экрана смерти» отображается код ошибки и способ ее решения. Но может быть такое, что STOP-ошибка была вызвана, например искажением пакетов данных, передаваемых по локальной сети, в этом случае помогает простая перезагрузка. Если же ошибка появляется каждый раз при запуске операционной системы, то это уже возможно проблема, связанная с аппаратной частью компьютера, например повреждение драйверов, файловой системы, жесткого диска, блоков памяти RAM. Но для выяснения причин возникшей ошибки, необходимо переписать первые две выводимые строки STOP-ошибки. Например, как показано чуть ниже:

STOP 0x0000006B (0xC0000022, 0x00000000, 0x00000000, 0x00000000) PROCESS1_INITIALIZATION_FAILED

где 0xC0000022, 0x00000000, 0x00000000, 0x00000000 — параметры, раскрывающие смысл данной BSoD.

Есть кстати небольшая особенность, она заключается в том, что в операционной системе, чтобы увидеть синий экран нужно сначала включить эту возможность windows, или Вы просто не увидите этого экрана, при возникновении ошибки компьютер просто быстро перезагрузится (и так каждый раз).

Для того чтобы включить эту опцию перейдите в свойства «Мой компьютер», выберите вкладку «Дополнительно». В поле «Загрузка и восстановление» нажмите кнопку «Параметры». В появившемся окне снимите галочку напротив «Выполнить автоматическую перезагрузку».

С появлением STOP-ошибки в тексте сообщения кратко приводится метод ее решения правда на английском языке. Но могу сказать точно, в настоящее время распространенной причиной возникновения  STOP-ошибок являются аппаратные проблемы с железом компьютера или программные его части, а иногда из-за нестыковки одного с другим.

Теперь давайте перейдем непосредственно к самим ошибкам и рассмотрим причины их возникновения и краткие способы решения.

0x00000001: APC_INDEX_MISMATCH

Внутренняя ошибка ядра (kernel). Проблема связана чаще всего с неполадкой в драйверах, нехваткой оперативной памяти или места на жестком диске.

0x0000000A: IRQL_NOT_LESS_OR_EQUAL

Произошло вмешательство в виртуальную память на внутреннем процессе IRQ высокого уровня. Наиболее типичная причина возникновения — драйвер устройства использует неверный адрес. Ошибка возникает из-за плохих драйверов. Редко возникает из-за неисправности одного из устройств в системе.
Параметры:

  1. Адрес, по которому выполнено ошибочное обращение
  2. IRQL, который использовался для обращения к памяти
  3. Тип доступа к памяти: 0 = операция чтения, 1 = операция записи
  4. Адрес инструкции, которая затребовала доступ к памяти по адресу

0x0000001E: KMODE_EXCEPTION_NOT_HANDLED

Это очень часто встречающаяся ошибка. Обычно исключённый адрес указывает на драйвер или функцию, которая вызвала стоп-экран. Всегда обращайте внимание не только на указанный драйвер, но и на сам адрес или имидж, содержащий эту ошибку. Обычно это код исключения 0x80000003. Эта ошибка означает, что точка прерывания или обработчик инициализировался при обращении к памяти, но система загрузилась с /NODEBUG ключа. Это ошибка не может появляться слишком часто. Если ошибка появляется постоянно, убедитесь, что отладчик (debugger) подключён и система загружается с /DEBUG ключа.
На не-Intel системах, если адрес исключения — 0XBFC0304, ошибка возникает вследствие кэширования процессора. Если ошибка появляется постоянно, свяжитесь с производителем процессора.
Как правило, требуется анализ второго параметра этого сообщения, который указывает на адрес драйвера/функции, которая была причиной проблемы.
Параметры:

  1. Код исключительной ситуации
  2. Адрес, при обработке которого произошел сбой
  3. Параметр 0 — исключение
  4. Параметр 1 — исключение

0x00000020: KERNEL_APC_PENDING_DURING_EXIT

Название ошибки указывает на повреждённый/отключённый APC счётчик. Если у вас такая ситуация, проверьте все файловые системы установленные на машине, например используя спасательный комплект EMRD.
Текущий IRQL должен быть равен нулю. Если IRQ не равен нулю, то определённый порядок выгрузки драйверов, при возвращении на более высокий уровень IRQ, может стать причиной возникновения ошибки. Попытайтесь запомнить, что вы делали или какие приложения закрывали, какие драйвера были установлены на момент возникновения синего экрана. Этот симптом указывает на серьёзную проблему в драйверах сторонних разработчиков.
Параметры:

  1. Адрес APC, на момент сбоя.
  2. Сбойная нить APC
  3. Текущий IRQ уровень

0x00000023: FAT_FILE_SYSTEM

Возник сбой чтения или записи в раздел жесткого диска, имеющим формат FAT. Сбой может быть связан с повреждением файловой системы, либо с появлением сбойных секторов на диске. Также сбой может быть связан с программным обеспечением, меняющим структуру диска (программы шифрования и прочее).

0x00000024: NTFS_FILE_SYSTEM

Возник сбой чтения или записи в раздел жесткого диска, имеющим формат NTFS. Сбой может быть связан с повреждением файловой системы, либо с появлением сбойных секторов на диске. Также сбой может быть связан с программным обеспечением, меняющим структуру диска (программы шифрования и прочее).

0x0000002A: INCONSISTENT_IRP

I/O Request Packet (IRP) не функционирует; возникает, когда поле или несколько полей неверны по сравнению с сохранившемся состоянием IRP. Например, IRP был уже отключен, когда драйвер какого-либо устройства ждал команды.
Параметры:
1 — адрес по которому IRP был найден в нерабочем режиме

0x0000002B: PANIC_STACK_SWITCH

Эта ошибка возникает, когда область стека ядра переполнена. Ошибка происходит, когда драйвер ядра использует слишком много места в области стека. Возможной причиной ошибки также может быть повреждение самого ядра.

0x0000002E: DATA_BUS_ERROR

Данная STOP-ошибка чаще всего возникает из-за сбоя в области оперативной памяти. Такое может случиться, когда драйвер пытается обратиться к адресу памяти, которого не существует.
Параметры:

  1. Адрес виртуальной памяти, который стал причиной ошибки
  2. Физический адрес причины ошибки
  3. Регистрация статуса процессора (PSR)
  4. Регистрация инструкции ошибки (FIR)

0x00000031: PHASE0_INITIALIZATION_FAILED

Инициализацию системы не удалось завершить на ранней стадии (фаза 0). Нужно более детально изучить ошибку, так как данный код ошибки не говорит практический ни о чём.
0x00000032: PHASE1_INITIALIZATION_FAILED
Инициализацию системы не удалось завершить на поздней стадии (фаза 1). Нужно более детально изучить ошибку, так как данный код ошибки не говорит практический ни о чём.
Параметры:

  1. Код уровня системы, который описывает, по какой причине система считает, что инициализация не завершена
  2. Указывает место внутри INIT.C, где произошла ошибка инициализации фазы 1

0x00000035: NO_MORE_IRP_STACK_LOCATIONS

Драйвер высокого уровня пытался вызвать драйвер низкого уровня через интерфейс IoCallDriver(), но у системы не было свободного места в области стека, по этой причине драйвер низкого уровня не достигнет нужных параметров, так как для него вообще нет никаких параметров. Это фатальная ситуация, так как драйвер высокого уровня считает, что заполнил параметры для драйвера низкого уровня (что-то он должен был сделать, чтобы вызвать драйвер низкого уровня). Тем не менее, так как нет свободного места в области стека, был затерт конец пакета. Это часто возникает из-за повреждения блоков памяти стека. Необходимо проверить на ошибки память и драйвера.
Параметры:
1 — адрес IRP

0x00000036: DEVICE_REFERENCE_COUNT_NOT_ZERO

Драйвер устройства пытался удалить из системы один из компонентов своего устройства, но счётчик обращений этого компонента не был равен нулю -это означает, что за данным компонентом находятся какие-то невыполненные задачи (счётчик указывает код ошибки, из-за чего данный компонент не может быть выгружен). Это ошибка вызова драйвера.
Параметры:
1 — адрес объекта

0x0000003E: MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED

Мультипроцессорная система не симметрична по отношению друг к другу. Для правильной симметричности, процессоры должны быть одного типа и уровня. Например, попытка использовать процессор уровня Pentium и 80486 одновременно, вызовет ошибку. Кроме того, на х86 системах, возможность вычислений с плавающей точкой должны быть либо на всех процессорах, либо ни на одном.

0x0000003F: NO_MORE_SYSTEM_PTES

Не хватает РТЕ (page file entries — точек доступа к файлу подкачки). Обычно причиной является драйвер, который плохо очищает файл подкачки (swap) и он переполняется. Также причиной может являться чрезмерная фрагментация файла подкачки.

0x00000040: TARGET_MDL_TOO_SMALL

Драйвер вызвал функцию IoBuildPartialMdl() и передал ему MDL, чтобы выявить часть источника MDL, но область получателя MDL недостаточно большая, для того, чтобы отобразить пределы требуемых адресов. Это ошибка драйвера.

0x00000041: MUST_SUCCEED_POOL_EMPTY

Драйвер системы запросил место в Must Suceed Pool. Данная функция не может быть выполнима, так как система не выделяет места в Must Suceed Pool. Замените или обновите неисправный драйвер системы.
Параметры:

  1. Величина требуемой запроса
  2. Номер использованной страницы
  3. Количество запрашиваемых страниц
  4. Количество доступных страниц

0x00000044: MULTIPLE_IRP_COMPLETE_REQUESTS

Драйвер запросил завершение IRP [IoCompleteRequest()], но пакет был уже завершён. Эту ошибку сложно выявить. Возможная причина — драйвер пытается завершить одну и ту же операцию несколько раз. Редкая причина — 2 различных драйвера пытаются завладеть пакетом и завершить его. Первый как правило срабатывает, а второй нет. Отследить, какой именно драйвер это сделал, трудно, так как следы первого драйвера были переписаны вторым.
Параметры:
1 — адрес IRP

0x00000048: CANCEL_STATE_IN_COMPLETED_IRP

Эта ошибка указывает, что I/O Request Packet (IRP), который должен быть завершён, имеет порядок отмены определённый в нём же, т.е. это означает, что пакет в таком режиме, может быть отменен. Тем не менее, пакет не относиться более к драйверу, так как он уже вошёл в стадию завершения.
Параметры:
1 — адрес IRP

0x00000049: PAGE_FAULT_WITH_INTERRUPTS_OFF

Страничная ошибка при обращении к памяти, при выключенных прерываниях IRQ. Описание ошибки такое же, как и у 0x0000000A.

0x0000004C: FATAL_UNHANDLED_HARD_ERROR

Критическая нераспознанная ошибка. Наиболее вероятные причины описаны в 0xC0000218, 0xC000022A или
0xC0000221.

0x0000004D: NO_PAGES_AVAILABLE

Нет больше свободной страничной памяти, для завершения операции. Проверьте наличие свободного места на диске. Замените драйвер. Параметры:

  1. Количество использованных страниц
  2. Количество физических страниц на машине
  3. Расширенное значение величины страниц
  4. Общее значение величины страниц

0x0000004E: PFN_LIST_CORRUPT

Причина — повреждённая/неисправная структура ввода-вывода драйвера. Параметры:

  1. Значение 1
  2. Значение ListHead, которое повреждено
  3. Число доступных страниц
  4. Ноль
  1. Значение 2
  2. Данные, которые удаляются
  3. Максимальное число физических страниц
  4. Итог удаляемых данных

0x00000050: PAGE_FAULT_IN_NONPAGED_AREA

Возникает, когда запрошенная информация не была найдена в памяти. Система проверяет файл подкачки (page file), но отсутствующая информация была обозначена, как невозможная для записи в файл подкачки (page file).
Параметры:
1. указывает на адрес в памяти, который допустил ошибку

0x00000051: REGISTRY_ERROR

Произошла ошибка ввода-вывода с реестром, когда система попыталась прочитать один из его файлов, отсюда следует, что ошибка могла быть вызвана проблемой с оборудованием или повреждением самой системы. Это так же может означать, что ошибка вызвана операцией обновления, которую использует только система безопасности и эта ошибка возникает, когда ресурсы на исходе. Если такая ошибка возникла, проверьте, является ли машина PDC или BDC и сколько аккаунтов в базе данных SAM (Менеджер Безопасности Аккаунтов), не заполнены ли соответствующие библиотеки почти до конца.
Параметры:
1.    значение 1 (указывает, где появилась ошибка)
2.    значение 2 (указывает, где появилась ошибка)
3.    может указывать на библиотеку
4.    может быть возвратным кодом HvCheckHive’а, если какая-либо
библиотека повреждена

0x00000058: FTDISK_INTERNAL_ERROR

Система загрузилась с восстановленного первичного раздела массива, в следствии чего библиотеки сообщают, что зеркало в порядке, но на самом деле это не так. Настоящие образы библиотек находятся в теневой копии. Вам нужно загрузиться именно с них.

0x00000067: CONFIG_INITIALIZATION_FAILED

Ошибка означает, что реестр не может выделить место, необходимое для работы файлов реестра. Эта ошибка никогда не может появиться, так как процесс резервирования такого места происходит на ранней стадии загрузки системы и для реестра выделяется достаточно места.
Параметры:
1.    пять
2.    Указывает на NTOSCONFIGCMSYSINI, который потерпел неудачу.

0x00000069: IO1_INITIALIZATION_FAILED

Не удалось инициализировать устройство ввода-вывода по неизвестной причине. Такое происходит, если установщик системы неправильно определил оборудование в процессе инсталляции системы, или пользователь неверно переконфигурировал систему.

0x0000006B: PROCESS1_INITIALIZATION_FAILED

Параметры:
1.    сообщает на код процесса, который решил, что инициализация системы не прошла успешно.
2.    сообщает на место в NTOSPSPSINIT.C, где ошибка была обнаружена.
0x0000006D: SESSION1_INITIALIZATION_FAILED 0x0000006E: SESSION2_INITIALIZATION_FAILED 0x0000006F: SESSION3_INITIALIZATION_FAILED 0x00000070: SESSION4_INITIALIZATION_FAILED 0x00000071: SESSION5_INITIALIZATION_FAILED
Это коды кодов (SESSION1 — SESSION5) указывают место в NTOSINITINIT.C, где была допущена ошибка.
Параметры:
1. сообщает код сессии, которая решила, что инициализация системы не прошла успешно.

0x00000073: CONFIG_LIST_FAILED

Указывает, что один из файлов реестра поврежден или нечитаем. Поврежден один из следующих файлов реестра: SOFTWARE, SECURITY, SAM (Менеджер Безопасности Аккаунтов). Возможной причиной является отсутствие места на диске, либо недостаток оперативной памяти.

0x00000074: BAD_SYSTEM_CONFIG_INFO

Эта ошибка может возникнуть в результате того, что файл реестра SYSTEM, загружаемый через компонент NTLDR, поврежден.
Эта ошибка так же может означать, что некоторые требуемые ключи реестра и их параметры отсутствуют. Загрузка в LastKnownGood (Последней удачной конфигурации) возможно решит эту проблему. Но не исключено, что вам придётся переустанавливать систему, или использовать спасательный диск.

0x00000075: CANNOT_WRITE_CONFIGURATION

Эта ошибка может возникнуть, когда в файлы системного реестра (SYSTEM и SYSTEM.ALT) не могут быть записаны дополнительные данные в момент инициализациями реестра в момент первой фазы (когда появляется доступ к файловым системам). Эта ошибка означает, что на диске нет свободного места, а также произошла попытка сохранить реестр на устройстве «только чтение».

0x00000076: PROCESS_HAS_LOCKED_PAGES

Эта ошибка может возникнуть по причине драйвера, который не полностью выгрузился после операции ввода-вывода. Параметры:
1.    адрес процесса
2.    число закрытых страниц
3.    число зарезервированных страниц
4.    ноль

0x00000077: KERNEL_STACK_INPAGE_ERROR

Ошибка считывания одной из страниц ядра система. Проблема заключается в сбойном блоке файла виртуальной памяти или ошибки контролера диска (очень редко, причиной может стать нехватка системных ресурсов, а точнее, может закончится резерв невиртуальной памяти со статусом c0000009a [STATUS_INSUFFICIENT_RESOURCES]).
Если первый и второй параметры кода ошибки равны 0, то это означает, что местоположение ошибки в ядре не найдено. А это значит, что ошибка вызвана плохим оборудованием.
Статус ввода-вывода c000009c (STATUS_DEVICE_DATA_ERROR) или C000016AL (STATUS_DISK_OPERATION_FAILED) обычно означает, что информация не может быть прочитана из-за плохого блока в памяти. После перезагрузки автоматическая проверка диска попытается определить адрес плохого блока в памяти. Если статус равен C0000185 (STATUS_IO_DEVICE_ERROR) и виртуальная память находиться на SCSI диске, то проверьте подключение и работу SCSI устройства.
Параметры:
1.    ноль
2.    ноль
3.    значение PTE на момент ошибки
4.    адрес ошибки ядра или

1.    код статуса
2.    код статуса ввода-вывода
3.    номер страницы виртуальной памяти
4.    Смещение в файле подкачк

0x00000079: MISMATCHED_HAL

Уровень проверки HAL и тип конфигурации HAL не подходят ядру системы или типу машины. Такая ошибка, скорее всего, вызвана тем, что пользователь вручную обновил либо NTOSKRNL.EXE либо HAL.DLL. Или на машине мультипроцессорный HAL (MP) и юнипроцессорное ядро (UP), или наоборот.

0x0000007A: KERNEL_DATA_INPAGE_ERROR

Не считывается запрашиваемая ядром страница. Ошибка вызвана плохим блоком в памяти или ошибкой контроллера диска. См. так же 0x00000077. Параметры:
1.    тип зависшей блокировки
2.    статус ошибки (обычно код ввода-вывода)
3.    текущий процесс (виртуальный адрес для блокировки типа 3 или PTE)
4.    адрес виртуальной памяти, который не может быть перемещен в файл подкачки

0x0000007B: INACCESSIBLE_BOOT_DEVICE

В процессе инсталляции I/O системы, драйвер загрузочного устройства, возможно, не смог инициализировать устройство, с которого система пыталась загрузиться, или файловая система, которая должна была прочитать это устройство, либо не смогла инициализироваться, либо просто не распознала информацию на устройстве, как структуру файловой системы. В вышеупомянутом случае, первый аргумент — это адрес уникодовой структуры информации, которая является ARC именем устройства, с которого была попытка загрузиться. Во втором случае, первый аргумент — это адрес объекта устройства, которое не может быть смонтировано.
Если эта ошибка возникла при начальной инсталляции системы, возможно система была установлена на диск или SCSI контроллер, которые ею не поддерживается. Имейте в виду, что некоторые контроллеры поддерживаются только драйверами из Windows-библиотек (WDL), которые должны быть установлены в режиме выборочной установкой.
Эта ошибка так же может произойти после установки нового SCSI адаптера или контроллера или после изменения системных разделов. В этом случае, на x86 системах, нужно отредактировать BOOT.INI.
Параметры:
1. указатель на объект устройства или уникодовая строка (Unicode string), или ARC имя.

0x0000007D: INSTALL_MORE_MEMORY

Не хватает оперативной памяти для запуска ядра Windows (необходимо 5 MB)
Параметры:
1.    номер найденных физических страниц
2.    нижняя физическая страница
3.    верхняя физическая страница
4.    ноль

0x0000007E: SYSTEM_THREAD_EXCEPTION_NOT_HANDLED

Проблема с оборудованием, драйвером или обнаружена нехватка свободного места на диске. Также ошибка может проявляться при попытке обновления Windows XP до Service Pack 2 или Service Pack 3, либо Windows Vista при попытке обновления до Service Pack 1. Причина ошибки может быть связана с драйверами оборудования. Необходимо откатить изменения до состояния на момент установки Service Pack, либо удалить установленное обновление. Для решения данной проблемы необходимо обновить драйвера оборудования с сайта производителя.

0x0000007F: UNEXPECTED_KERNEL_MODE_TRAP

Произошло непредвиденное исключение в режиме ядра, или прерывания, при котором ядро не срабатывает. Также причиной ошибки может стать прерывание, которое повлекло за собой немедленную смерть в виде двойной ошибки — double fault. Первое число в коде ошибки — число прерывания (8 = double fault). Чтобы узнать больше, что это за прерывание, обратитесь к мануалу семейства Intel x86.
Иными словами, ошибка появляется, когда процессор допускает ошибку, с которой ядро не может справиться. Чаще всего ошибка возникает из-за плохих блоков ОЗУ, а иногда из-за разгона процессора.
Попробуйте отменить в BIOS функцию синхронной передачи данных.

0x00000080: NMI_HARDWARE_FAILURE

Ошибка инициализации ядра на данном оборудовании. HAL должен сообщить всю конкретную информацию, которую имеет, и предложить пользователю обратиться к поставщику оборудования за техподдержкой.

0x00000085: SETUP_FAILURE

Ошибка возникает при загрузке установщика системы в ранних версиях Windows NT. Текстовая форма setup’a больше не использует процедуру поиска ошибок (bugcheck), для того чтобы не создавать серьезных помех при установке. Поэтому вы никогда не столкнётесь с данной ошибкой. Все проверки ошибок были заменены на более дружелюбные и (где возможно) более информативные сообщения об ошибках.

0x0000008B: MBR_CHECKSUM_MISMATCH

Ошибка возникает в процессе загрузки, когда контрольная сумма MBR, вычисленная системой, не совпадает с контрольной суммой загрузчика. Обычно это означает вирус. Просканируйте загрузочный сектор антивирусной программой, предварительно загрузившись с компакт-диска.
KerBugCheckEx параметры:
1    — Сигнатура диска в MBR
2    — Контрольная сумма MBR, записанная в osloader
3    — Контрольная сумма MBR, записанная в системе

0x0000008E: PAGE_FAULT_IN_NON_PAGED_AREA

Несовместимость или неисправность блоков памяти RAM. Продиагностируйте память и замените неисправные модули оперативной памяти.

0x0000008F: PP0_INITIALIZATION_FAILED

Ошибка происходит во время инициализации нулевой фазы менеджера Plug and Play в режиме ядра. Проверьте оборудование и системный диск.

0x00000090: PP1_INITIALIZATION_FAILED

Ошибка происходит во время инициализации первичной фазы менеджера Plug and Play в режиме ядра. К этому моменту инициализированы системные файлы, драйвера и реестр. Проверьте оборудование и системный диск.

0x00000092: UP_DRIVER_ON_MP_SYSTEM

Ошибка   возникает,   когда   однопроцессорный   драйвер   загружается   в системе, где присутствует более чем один активный процессор. KeBugCheckEx параметры: 1 — Базовый адрес однопроцессорного драйвера

0x00000093: INVALID_KERNEL_HANDLE

Ошибка появляется, когда код ядра (kernel code) или другие критические компоненты ОС пытаются закрыть дескриптор, который не является действительным.
Параметры:
1    — Вызванный дескриптор NtClose
2    — 0 означает, что был закрыт защищенный дескриптор
1 означает, что был закрыт неправильный дескриптор
0x00000094: KERNEL_STACK_LOCKED_AT_EXIT
Это сообщение появляется, когда нить существует, в то время как её стек помечен, как блокированный. Проблема вызвана драйвером оборудования.

0x00000096: INVALID_WORK_QUEUE_ITEM

Проблема вызвана некорректным драйвером оборудования.

0x00000097: BOUND_IMAGE_UNSUPPORTED

Проблема вызвана некорректным драйвером оборудования.

Курс по SQL для начинающих

0x00000098: END_OF_NT_EVALUATION_PERIOD

Время работы демонстрационной версии системы Windows закончилось. Параметры:
1    — Дата инсталляции (нижние 32-бита)
2    — Дата инсталляции (верхние 32-бита)
3    — Триал период в минутах.

0x00000099: INVALID_REGION_OR_SEGMENT

ExInitializeRegion или ExInterlockedExtendRegion были вызваны с неправильным набором параметров.

0x0000009A: SYSTEM_LICENSE_VIOLATION

Произошло нарушение программного лицензионного соглашения. Это может быть или из-за попытки изменить тип продукта системы, или попытки изменить срок триального периода ОС.

0x0000009B: UDFS_FILE_SYSTEM

Возник сбой чтения или записи на носитель, имеющим формат UDFS. Сбой может быть связан с повреждением файловой системы, либо с появлением сбойных секторов на диске. Также сбой может быть связан с программным обеспечением, меняющим структуру диска (программы шифрования и прочее).

0x0000009C: MACHINE_CHECK_EXCEPTION

Фатальная ошибка Machine Check Exception (проверка машины). Ошибка связана с неправильной конфигурацией оборудования, разгоном процессора, нестабильной работой блоков оперативной памяти, перегревом компонентов системы, нестабильной работой блока питания.

0x0000009F: DRIVER_POWER_STATE_FAILURE

Драйвер находится в противоречивом или недопустимом состоянии потребления энергии. Обычно это происходит из за сбоев в питании, при перезагрузке, выходе из спящего режима и т.д. Необходимо заменить сбойный драйвер, либо удалить программное обеспечение, контролирующее файловую систему (антивирусы, программы шифрования

0x000000A5: ACPI_BIOS_ERROR

Причиной данного сообщения являются постоянные сбои в ACPI BIOS. На уровне операционной системы данную проблему решить нельзя. Необходим детальный анализ.

0x000000B4: VIDEO_DRIVER_INIT_FAILURE

Windows не смог загрузить драйвер видеокарты. Проблема в основном связана с драйверами видео, либо произошел аппаратный конфлик с платой видео. Перезагрузитесь в безопасном режиме и смените драйвер видео на стандартный.

0x000000BE: ATTEMPTED_WRITE_TO_READONLY_MEMORY

Драйвер попытался записать данные в постоянное запоминающее устройство (ПЗУ), куда запись невозможна. Проблема в основном связана с установкой плохого драйвера устройства, службы или программно-аппаратного обеспечения. Смените драйвер.
_MEMORY_CORRUPTION
Драйвер записал данные в недопустимую секцию памяти. Смените драйвер.

0x000000C2: BAD_POOL_CALLER

Ядро системы или драйвер дали неправильную команду обращения к памяти. Как правило, плохой драйвер или программное обеспечение вызвало эту ошибку. Смените драйвер.

0x000000C4: DRIVER_VERIFIER_DETECTED_VIOLATION

Программа проверки драйвера обнаружила фатальную ошибку в модуле генерации STOP-ошибки. Сопроводительные параметры — параметры, которые передаются в KeBugCheckEx и отображаются на синем экране. Смените драйвер.

0x000000C5: DRIVER_CORRUPTED_EXPOOL

Произошла попытка обращения из недопустимой области памяти в процесс IRQL высокого уровня. Эта ошибка возникает почти всегда из-за драйверов, которые разрушили системный пул. Смените драйвер.

0x000000C6: DRIVER_CAUGHT_MODIFYING_FREED_POOL

Драйвер попытался обратиться к освобожденному пулу памяти. Смените драйвер.

0x000000C7: TIMER_OR_DPC_INVALID

Таймер ядра или Delayed Procedure Call (DPC) присутствует в запрещенном участке памяти. Данная ошибка возникает, когда драйвер не смог завершить работу таймера ядра или Delayed Procedure Call (DPC) перед отгрузкой его из памяти. Смените драйвер.

0x000000C9: DRIVER_VERIFIER_IOMANAGER_VIOLATION

Это сообщение от одного из менеджеров проверки драйвера. Смените драйвер.

0x000000CB: DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS

Ошибка, сходная со STOP-ошибкой 0x00000076. Отличается от последней только тем, что в данном случае ошибка выявлена при трассировке ядра. Ошибка указывает на то, что драйвер или менеджер ввода — вывода не могут открыть блокированные страницы после операции ввода — вывода. Обратите внимание на название прикладного драйвера в окне STOP-ошибке. Смените драйвер.

0x000000CE: DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS

Драйвер не может отменить зависшее состояние компонентов системы. Ошибка обычно происходит после установки плохих драйверов или компонентов сервиса. Смените драйвер.

0x000000D1: DRIVER_IRQL_NOT_LESS_OR_EQUAL

Система попыталась обратиться к страничной памяти, используя процесс ядра через IRQL высокого уровня. Самая типичная причина — плохой драйвер устройства. Это может также быть вызвано поврежденной оперативной памятью, или поврежденным файлом подкачки.

0x000000D8: DRIVER_USED_EXCESSIVE_PTES

Ошибка происходит, когда драйвер запрашивает большое количество памяти ядра.

0x000000E3: RESOURCE_NOT_OWNED

Различные сбои, связанные с файловой системой, приводят к данной STOP-ошибке. Проблема может быть связана с драйвером NTFS.SYS.

0x000000EA: THREAD_STUCK_IN_DEVICE_DRIVER

Проблемный драйвер устройства ввел систему в состояние зависания. Как правило, это вызвано драйвером дисплея, при попытке перехода компьютера в ждущий режим. Данная проблема связана с видеоадаптером, или плохим видео драйвером.
Произошел сбой во время подключения загрузочного диска. Ошибка может произойти на компьютерах с высокопроизводительными дисковыми контроллерами, которые не были корректно сконфигурированы и установлены, либо подключены некачественным кабелем. После обычной перезагрузки, система может возобновить нормальную работу, как ни в чем не бывало. Также эта ошибка появляется после некорректного завершения работы Windows и сбой может быть связан с повреждением файловой системы.

0x000000F2: HARDWARE_INTERRUPT_STORM

Это сообщение появляется, если ядро обнаруживает шторм прерывания, то есть, когда вызванное уровнем-прерыванием устройство не в состоянии выдавать запрос на прерывание. Обычно, это вызвано плохим драйвером устройства.

0x000000F3: DISORDERLY_SHUTDOWN

Завершение Windows потерпело крах из-за недостатка памяти. Определите, какая программа попала «за пределы памяти», попробуйте обнаружить, почему виртуальная память не обеспечивает нужными системными ресурсами, и исследуйте, отказывается ли программа (или, иногда, драйвер) завершать свою работу, без освобождения открытых страниц в памяти.

0x000000FA: HTTP_DRIVER_CORRUPTED

Системный драйвер Http.sys поврежден. Необходимо данный компонент восстановить с оригинального диска.

0x000000FC: ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY

Произведена попытка выполнить функцию в невыполняемой памяти. Параметры:
1    — Адрес, из которой была попытка выполнить функцию
2    — Содержание входа таблицы страниц (PTE)
0x000000FD: DIRTY_NOWRITE_PAGES_CONGESTION
Нет свободной страничной памяти для продолжения основных системных операций.
Параметры:
1    — Общее количество запрашиваемой страничной памяти
2    — Количество запрашиваемой страничной памяти с невозможностью для записи.
3    —
4    — Код состояния в момент последней записи в страничную память

0x000000FE: BUGCODE_USB_DRIVER

Произошла критическая ошибка в работе USB контроллера и связанных с ним устройств. Проблема как правило вызвана некорректной работой USB-контроллера, либо неисправностью подсоединенных USB-устройств. Отключите все USB-устройства от компьютера, также попробуйте отключить USB-контроллер в BIOS. Обновите драйвера USB.

0x00000101:CLOCK_WATCHDOG_TIMEOUT

Указывает, что ожидаемое прерывание по синхроимпульсам на вторичном процессоре в многопроцессорной системе не было получено в пределах определенного интервала. Данный процессор не обрабатывает прерывания. Как правило, это происходит, когда процессор не отвечает, либо вошел в бесконечный цикл.
Параметры:
1    — Интервал блокировки времени прерывания по синхроимпульсам, в
номинальных тактах системных часов
2    — ноль
3    — Адрес управляющего блока процессора (PRCB) для нереагируемого
процессора
4    — ноль

0x00000104: AGP_INVALID_ACCESS

Попытка записи графическим процессором в память, которая не была зарезервирована для этого. Ошибка связана с видеодрайвером, либо старой версией BIOS.
Параметры:
1    — Смещение (в ULONG) в пределах страниц AGP к первым данным
ULONG, данные которого разрушены
2    — ноль
3    — ноль
4    — ноль

0x00000105: AGP_GART_CORRUPTION

Ошибка появляется при повреждении Graphics Aperture Remapping Table (GART). Ошибка вызвана неправильной работой драйвера DMA (прямого доступа в память)
Параметры:
1    — Базовый адрес (виртуальный) в GART
2    — Смещение в GART, где выявлено искажение
3    — Базовый адрес (виртуальный) из кэша GART (копия GART)
4    — ноль

0x00000106: AGP_ILLEGALLY_REPROGRAMMED

Ошибка вызвана неподписанный  либо поврежденным  видеодрайвером. Замените видеодрайвер. Параметры:
1    — Оригинальная команда
2    — Текущая команда
3    — ноль
4    — ноль

0x00000108: THIRD_PARTY_FILE_SYSTEM_FAILURE

Произошла критическая ошибка в стороннем фильтре файловой системы. Ошибка может быть вызвана антивирусным программным обеспечением, программами дефрагментации, резервирования данных и прочими сторонними утилитами. Попробуйте также увеличить объем файла подкачки и оперативной памяти.

0x00000109: CRITICAL_STRUCTURE_CORRUPTION

Ядро системы обнаружило неверный код, либо нарушение целостности данных. Системы на базе 64-кода защищены от этой ошибки. Проблема могла быть вызвана сбоем оперативной памяти, либо драйверами третьей стороны.

0x0000010E: VIDEO_MEMORY_MANAGEMENT_INTERNAL

Обнаружена внутренняя ошибка видеодрайвера. Проблема с видеодрайвером.

0x0000010F: RESOURCE_MANAGER_EXCEPTION_NOT_HANDLED

В   менеджере   ресурсов   режима   ядра   (kernel-mode   resource   manager) произошло исключение.

0x00000112: MSRPC_STATE_VIOLATION

Компонент системы msrpc.sys во время выполнения вернул код ошибки. Код ошибки указан в первом параметре.

0x00000113: VIDEO_DXGKRNL_FATAL_ERROR

Ядро DirectX Graphics выявило критическую ошибку.

0x00000114: VIDEO_SHADOW_DRIVER_FATAL_ERROR

Теневой видеодрайвер обнаружил критическую ошибку.

0x00000115: AGP_INTERNAL

В   видеоинтерфейсе   AGP   драйвером   видеопорта   была   обнаружена критическая ошибка.

0x00000116: VIDEO_TDR_ERROR

Сброс видеодрайвера по таймауту не был успешно произведен.

0x0000011C: ATTEMPTED_WRITE_TO_CM_PROTECTED_STORAGE

Была   сделана   попытка   записи   в   область   защищенную   от   записи конфигурационного менеджера: Параметры:
1    — Виртуальный адрес предпринятой команды записи
2    — Содержание PTE
3    — зарезервировано
4    — зарезервировано Название драйвера, делающего попытку операции записи, напечатано как
строка Unicode на экране ошибки.

0x00000121: DRIVER_VIOLATION

Драйвер произвел нарушение доступа в одну из областей памяти. Параметры:
1    — описывает тип нарушения
2    — зарезервировано
3 — зарезервировано Используйте отладчик ядра и просмотрите стек вызовов для определения
имени драйвера, который произвел нарушение доступа.

0x00000122: WHEA_INTERNAL_ERROR

Произошла внутренняя ошибка в архитектуре обнаружения ошибок аппаратных средств Windows (Windows Hardware Error Architecture (WHEA))

0x00000124: WHEA_UNCORRECTABLE_ERROR

Произошла ошибка в аппаратной части компьютера. Данная ошибка выявлена архитектурой обнаружения ошибок аппаратных средств Windows (Windows Hardware Error Architecture (WHEA))

0x00000127: PAGE_NOT_ZERO

Страница памяти не была полностью заполнена нулями. Данная ошибка происходит из-за сбоя аппаратных средств, либо по причине срабатывания привилегированного компонента операционной системы, который произвел преждевременное изменение страницы в памяти.
Параметры:
1    — Виртуальный адрес в памяти, который указывает на некорректную
страницу.
2    — Физический номер страницы
3    — ноль
4    — ноль

0x0000012B: FAULTY_HARDWARE_CORRUPTED_PAGE

Обнаружен single bit error (единичная битовая ошибка) на странице памяти. Это ошибка связана с аппаратной оперативной памятью. Параметры:
1 — Виртуальный адрес в памяти, который указывает на некорректную
страницу.
2    — Физический номер страницы
3    — ноль
4    — ноль

0x0000012C: EXFAT_FILE_SYSTEM

Возник сбой чтения или записи в раздел носителя, имеющим формат exFat. Сбой может быть связан с повреждением файловой системы, либо с появлением сбойных секторов на диске. Также сбой может быть связан с программным обеспечением, меняющим структуру диска (программы шифрования и прочее). Данный сбой относится к носителям, отформатированным под Windows Vista Service Pack 1.

0x1000007E: SYSTEM_THREAD_EXCEPTION_NOT_HANDLED_M
0x1000008E: KERNEL_MODE_EXCEPTION_NOT_HANDLED_M
0xC000009A: STATUS_INSUFFICIENT_RESOURCES

Системное ядро операционной системы исчерпало все системные ресурсы для своей работы, в том числе и файл подкачки. Проверьте диск на наличие ошибок. Увеличьте объем жесткого диска и объем оперативной памяти.

0xC0000135: UNABLE TO LOCATE DLL

Windows попытался загрузить DLL библиотеку и получил код ошибки. Возможная причина — файл отсутствует или поврежден. Возможно также поврежден системный реестр.

0xC0000142: DLL Initialization Failure

Данная ошибка была вызвана повреждением системной DLL библиотеки.

0xC0000218: UNKNOWN_HARD_ERROR

Необходимый файл системного реестра не может загрузиться. Файл может быть поврежден или отсутствует (необходим спасательный диск или переустановка Windows). Файлы системного реестра, возможно, были разрушены из-за повреждения жесткого диска. Драйвер, возможно, разрушил данные системного реестра при загрузке в память, или память, куда системный реестр был загружен, имеет ошибку четности (выключите внешний кэш и проверьте ОЗУ).

0xC000021A: STATUS_SYSTEM_PROCESS_TERMINATED

Это происходит, когда Windows переключился в привилегированный режим, а подсистемы непривилегированного режима, типа Winlogon или Подсистемы Времени выполнения Клиент-сервера (CSRSS), вызвали какой-либо сбой, и защиту нельзя гарантировать. Поскольку Windows XP не может работать без Winlogon или CSRSS, это — одна из немногих ситуаций, где отказ обслуживания непривилегированного режима может заставить систему прекращать отвечать. Эта также может произойти, когда компьютер перезапущен после того, как администратор системы изменил разрешения так, чтобы СИСТЕМНАЯ учетная запись больше не имела адекватные разрешения обратиться к системным файлам и папкам. Ошибка также может быть вызвана повреждением файла user32.dll или некорректными системными драйверами (.sys)

0xC0000221: STATUS_IMAGE_CHECKSUM_MISMATCH

драйвер повреждён или системная библиотека была распознана, как повреждённая. Система делает всё для того, чтобы проверить целостность важных системных файлов. Синий экран показывает имя повреждённого файла. Если такое случилось, загрузитесь в любую другую систему или, если таковых нет, переустановите систему. Убедитесь, что версия файла, который был выявлен, как повреждённый, совпадает с версией файла в дистрибутиве системы и если так, то замените его с диска. Постоянные ошибки с разными именами файлов, говорят о том, что есть проблемы с носителями информации или с контроллером диска, где располагаются эти файлы.

0xC0000244

STOP-ошибка происходит, когда политика аудита активирует параметр CrashOnAuditFail

0xC000026C

Обычно указывает на проблемы драйвера устройства. Больше информации о данной ошибке

0xDEADDEAD: MANUALLY_INITIATED_CRASH1

«It’s dead, Jim!” (Это мертвый, Джим!) Эта STOP-ошибка указывает на то, что пользователь преднамеренно инициализировал аварийный отказ, либо от отладчика ядра, либо от клавиатуры.

Вот небольшой перечень ошибок, которые могу появляться в операционных системах Windows NT 4.0, Windows 2000, Windows 2003, Windows XP, Windows Vista и Windows 7. Все боятся синего экрана смерти, но на самом деле если его бы не было, то компьютер просто ломался, и Вам пришлось бы отдавать в ремонт Ваше оборудование, или покупать новое, или может даже весь компьютер. Поэтому давайте отдадим должное разработчикам этой операционной системы, которые заботятся о наших кошелках. На этом мы с Вами заканчиваем разговор о знаменитом «Синем экране смерти».

Описание кодов ошибок BSOD (Blue Screen of Death) в Windows. Причины появления синего экрана смерти с расшифровкой, методы решения проблемы.

Коды ошибок «синего экрана смерти» с расшифровкой. По другому они называются ошибками Windows (Blue Screen of Death или BSOD), которые также называются STOP ошибки. Они появляются, когда проблема настолько серьезна, что работа Windows полностью останавливается.

Рекомендую при появлении синего экрана воспользоваться универсальными методами его устранения, описанными мной в статье Решение BSOD.

Чтобы получить сведения об ошибке, введите её код в поле поиска по странице. Нажмите сочетание клавиш CTRL + F и укажите номер BSOD как, например,  или 0x0000007e.

0x00000001

APC_INDEX_MISMATCH

В Windows XP:

Ошибка на уровне ядра. Это, вероятно, вызвано несоответствием между номером KeEnterCriticalRegion и номером KeLeaveCriticalRegion в файловой системе, что может привести к повреждению системы.

Windows 7 и Server 2008 R2:

Эта проблема вызвана ошибкой в драйвере Compositebus.sys.

Когда устройство MTP (мультимедийное) или WPD (портативное) подключается к компьютеру в первый раз и пытается установить драйвер, приложение может выполнить команду сброса USB-устройства. Драйвер Compositebus.sys, который вызывает ошибку вызывается синхронно.

  1. BSoD 0x00000001 появляется в Windows Server 2008 и Windows 7 при установке приложений сторонних производителей для устройств MTP и WPD. Также при первой установке. Ошибка возникает из-за непоследовательного состояния драйвера Compositebus.sys. Когда устройство MTP или MPD впервые подключается к компьютеру, Composite Bus Enumerator обнаруживает его и пытается установить драйвер устройства. В процессе установки стороннее приложение может выполнить команду сброса на USB-устройстве, что вызывает ошибку. Чтобы устранить ошибку, загрузите и установите последние обновления для вашей операционной системы.
  2. STOP 0x00000001 появляется в Windows Vista из-за ошибки в системном файле Win32k.sys. Поле CombinedApcDisable имеет значение 0x0000FFFFFFF.

Обновление операционной системы устранит эту ошибку. http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=2203330&kbln=en

APC_INDEX_MISMATCH является внутренней ошибкой ядра. Она возникает в конце системного вызова. Ошибка возникает, когда файловая система или драйвер имеют несогласованную последовательность системных вызовов для начала или завершения защищенного или критического раздела. Например, каждый вызов KeEnterCriticalRegion должен иметь соответствующий вызов KeLeaveCriticalRegion.

Чаще всего эта ошибка возникает, когда метки KeEnterCricticalRegion и KeLeaveCriticalRegion не совпадают в файловой системе. KeEnterCricticalRegion временно отключает доставку обычных APC режима ядра, в то время как специальные APC режима ядра продолжают доставляться. KeLeaveCriticalRegion включает доставку обычных APC режима ядра, которые были отключены вызовом KeEnterCricticalRegion. Критическая секция может выполняться рекурсивно, при этом каждый вызов KeEnterCricticalRegion имеет соответствующий вызов KeLeaveCriticalRegion.

0x00000002

DEVICE_QUEUE_NOT_BUSY

Это указывает на то, что ожидалось, что очередь устройств будет занята, но она не была занята.

Эта ошибка, скорее всего, связана с проблемами аппаратного обеспечения или драйверов устройств.

  1. Обновите драйверы.
  2. Сканирование на наличие вирусов.
  3. Очистите реестр.
  4. Проверьте жесткий диск на наличие ошибок.

Загрузите и установите последние обновления для вашей операционной системы.

0x00000003

INVALID_AFFINITY_SET

Это пустой указатель близости к несоответствующему подмножеству.

Эта ошибка, скорее всего, связана с проблемами аппаратного обеспечения или драйвера устройства.

  1. Обновите свои драйверы.
  2. Проверка на вирусы.
  3. Очистите реестр.
  4. Проверьте жесткий диск на наличие ошибок.

Загрузите и установите последние обновления вашей операционной системы.

0x00000004

INVALID_DATA_ACCESS_TRAP

Признак недопустимого исключения при доступе к данным.

Эта ошибка, скорее всего, связана с аппаратным обеспечением или проблемами с драйверами устройств.

  1. Обновите драйверы.
  2. Проверьте на наличие вирусов.
  3. Очистите реестр.

Загрузите и установите последние обновления для вашей операционной системы.

0x00000005

INVALID_PROCESS_ATTACH_ATTEMPT

Проблема с занятым мьютексом (элементом синхронизации событий) или мьютексом с уже присоединенным процессом.

Эта ошибка указывает на то, что поток был присоединен к процессу в ситуации, когда это недопустимо. Например, эта ошибка могла возникнуть, если KeAttachProcess был вызван, когда поток уже был присоединен к процессу (что недопустимо), или если поток вернулся из определенных вызовов функций в присоединенном состоянии (что недопустимо).

Эта проблема возникает при наличии ошибки кодирования в файле Http.sys, что в свою очередь вызывает повреждение стека.

РЕШЕНИЕ

Для устранения BSoD скачайте и установите последние обновления для вашей операционной системы. В частности, для Windows Xp KB887742, для Windows Server необходимо установить Windows Server 2003 Service Pack 1.

КОММЕНТАРИИ

Эта ошибка может возникнуть, если драйвер вызывает функцию KeAttachProcess, а поток уже присоединен к другому процессу. Лучше использовать функцию KeStackAttachProcess. Если текущий поток уже был присоединен к другому процессу, функция KeStackAttachProcess сохраняет текущее состояние APC до того, как текущий поток присоединится к новому процессу.

0x00000006

INVALID_PROCESS_DETACH_ATTEMPT

Обычно это указывает на то, что поток был присоединен к процессу в ситуации, когда это недопустимо. Например, эта ошибка могла возникнуть, если KeAttachProcess был запущен, когда поток уже был присоединен к процессу (что недопустимо), или если поток вернулся из определенных вызовов функций в присоединенном состоянии (что недопустимо).

Эта ошибка также может возникнуть, если драйвер вызывает функцию KeAttachProcess, а поток уже присоединен к другому процессу. Лучше использовать функцию KeStackAttachProcess. Если текущий поток уже присоединен к другому процессу, функция KeStackAttachProcess сохраняет текущее состояние APC перед присоединением текущего потока к новому процессу.

Эта ошибка, скорее всего, связана с проблемами аппаратного обеспечения или драйверов устройств.

Она также может быть вызвана:

  • Проблемы с памятью.
  • Плохой блок питания.
  • Перегрев.
  1. Обновите драйверы.
  2. Проверьте компьютер на наличие вирусов.
  3. Проверьте жесткий диск на наличие ошибок.
  4. Проверьте память на наличие ошибок.
  5. Проверьте блок питания.

Загрузите и установите последние обновления для вашей операционной системы.

0x00000007

INVALID_SOFTWARE_INTERRUPT

Это указывает на то, что уровень не находится в пределах программного диапазона.

Скорее всего, ошибка связана с проблемами программного обеспечения или драйверов устройств.

  1. Обновите драйверы.
  2. Проверьте компьютер на наличие вирусов.
  3. Проверьте жесткий диск на наличие ошибок..

Скачайте и установите последние обновления для вашей операционной системы.

0x00000008

IRQL_NOT_DISPATCH_LEVEL

Попытка удаления устройства не на уровне хоста.

Эта ошибка, скорее всего, связана с проблемами аппаратного обеспечения или драйвера устройства.

  1. Обновите драйверы.
  2. Проверьте компьютер на наличие вирусов.
  3. Проверьте жесткий диск на наличие ошибок..
  4. Загрузите и установите последние обновления для вашей операционной системы.

Если это происходит при установке ОС, попробуйте обновить биос.

0x00000009

IRQL_NOT_GREATER_OR_EQUAL

Это указывает на то, что IRQL (уровень запроса прерывания), меньше требуемого.

Эта ошибка, скорее всего, связана с проблемами с оборудованием или драйверами устройств.

  1. Обновите драйверы.
  2. Проверьте компьютер на наличие вирусов.
  3. Проверьте жесткий диск на наличие ошибок.

Загрузите и установите последние обновления для вашей операционной системы.

0x0000000A

IRQL_NOT_LESS_OR_EQUAL

Windows XP:

Была предпринята попытка повлиять на виртуальную память (файл подкачки) высокоуровневого внутреннего процесса IRQ. Если у вас есть отладчик ядра, вы можете увидеть, где именно система зависла.

Наиболее распространенная причина — драйвер устройства использует неправильный адрес.

В Windows 7 и Server 2008:

Эта проблема возникает, если диспетчер питания открывает порт вызова (ALPC) в дополнение к локальной процедуре. Однако диспетчер питания закрывает другой порт вместо закрытия порта ALPC. Утечка памяти происходит при каждом запросе питания. Когда потерянная память накапливается до определенного уровня, компьютер выходит из строя.

Подробнее читайте здесь: http://support.microsoft.com/errorlist/default.aspx?sd=gn&nobounce=1&errorid=741422 и http://support.microsoft.com/errorlist/default.aspx?sd=gn&nobounce=1&errorid=741756

Рекомендации по устранению этой ошибки:

  • для Windows XP: http://support.microsoft.com/kb/314063
  • для Windows Server 2003: http://support.microsoft.com/kb/954337/en?sd=gn
  • Проверьте память на наличие ошибок.

Microsoft выпустила специальное обновление, поэтому просто обновите Windows.

РЕШЕНИЕ

Во время установки Windows XP

Если ошибка появляется во время установки, то, возможно, проблема в аппаратном обеспечении вашего компьютера. Первое, что нужно сделать, это проверить аппаратное обеспечение на совместимость с вашей операционной системой. Если аппаратное обеспечение вашего ПК полностью совместимо, давайте пройдем 7 шагов один за другим для устранения ошибки.

Шаг Определите уровень абстракции аппаратного обеспечения. Во время установки системы, в момент определения конфигурации компьютера нажмите FВ появившемся окне убедитесь, что спецификация верна. Попробуйте переустановить Windows XP.

Шаг Отключите следующие функции в настройках CMOS:

  • все кэширование, включая (L2, BIOS, внутреннее/внешнее);
  • все затенения;
  • Plug and Play;
  • наличие антивирусной защиты BIOS.

Переустановите систему, если синий экран продолжает появляться, перейдите к следующему шагу. Если сообщение об ошибке прекращается, необходимо выяснить, какая именно функция вызывает ошибку. Для этого включайте по одной отключенной функции за раз и наблюдайте за процессом установки операционной системы. С помощью коротких манипуляций вы можете определить проблемную функцию. Его необходимо отключить.

Шаг Проверьте оперативную память. Если в компьютере установлено несколько карт памяти, следует устанавливать по одной карте памяти за раз и наблюдать за процессом установки. Если BSoD исчезает, становится ясно, что проблема вызвана картой памяти, которая находится вне системного блока вашего компьютера. Если вы используете одну карту памяти, необходимо проверить ее с помощью специализированной программы, например memtest.

Шаг Удалите все адаптеры и устройства, не нужные для установки операционной системы. Конкретно:

  • SCSI-устройства;
  • IDE-устройства;
  • сетевой адаптер;
  • внутренний модем;
  • звуковая карта;
  • дополнительные жесткие диски (для установки системы достаточно одного жесткого диска)
  • CD-привод или DVD-привод (при установке с локального жесткого диска).

Попробуйте переустановить Windows XP. Если синий экран смерти все еще продолжает появляться, перейдите к шагу В противном случае необходимо определить, какой из удаленных адаптеров является причиной ошибки. Для этого необходимо поочередно установить по одному устройству в системный блок и перезагрузить компьютер. В случае появления синего экрана виновником является последнее добавленное устройство. Вам следует заменить ее.

Шаг 5: Обновление драйвера SCSI и удаление устройств SCSI. Загрузите последнюю версию драйвера от поставщика адаптера. Отключить синхронизацию на контроллере SCSI. Удалите все устройства SCSI, кроме одного жесткого диска, на котором установлена операционная система.

Шаг 6: Изменение настроек и устранение устройств IDE. С помощью перемычки переведите жесткий диск IDE в режим Master и отключите все устройства IDE, кроме жесткого диска, на который вы устанавливаете Windows XP.

Шаг 7: Обратитесь к производителю компьютера или материнской платы. Производитель может помочь вам запустить диагностическую программу и обновить BIOS.

Во время работы Windows XP

Рассмотрим 3 шага для решения проблемы BSoD 0x0000000A, возникающей в уже запущенной операционной системе.

Шаг 1: Рассмотрите недавно установленное программное обеспечение. Если вы установили стороннюю программу (драйвер), попробуйте удалить или отключить ее, чтобы она не загружалась. Затем перезагрузите компьютер, чтобы проверить, было ли это программное обеспечение или драйвер, который вызвал ошибку.

Шаг 2: Рассмотрите недавно добавленные устройства. Если вы добавили какие-либо устройства или драйверы после установки Windows, удалите их, а затем перезагрузите компьютер и посмотрите, не является ли это причиной синего экрана. Если удаление недавно установленного оборудования устраняет ошибку, следует установить проблемное устройство и установить последние версии драйверов с сайта производителя устройства. Проведите диагностику устройства.

Шаг 3: Восстановление Windows.

Windows 7 и Windows Server 2008

Остановка 0x0000000A появляется, когда система переходит в спящий режим. Это происходит потому, что драйвер Diskdump.sys неправильно устанавливает размер ввода/вывода в 0. Когда система переходит в спящий режим, драйвер Diskdump.Sys отвечает за запись содержимого памяти в файл Hiberfil.sys. Если устройство хранения данных, содержащее файл Hiberfil.sys, он занят, когда устройство получает запрос ввода/вывода от драйвера Diskdump.sys, он пытается отправить запрос ввода/вывода позже. Однако драйвер Diskdump.sys неправильно устанавливает размер ввода/вывода в 0 при повторной отправке запроса. Поэтому система обращается к недопустимому адресу памяти и получает сообщение об ошибке.

Для устранения ошибки загрузите и установите последние обновления для вашей операционной системы.

0x0000000B

NO_EXCEPTION_HANDLING_SUPPORT

Это указывает на то, что обработка исключений не поддерживается.

Обычно такая остановка вызвана ошибками в одном из драйверов.

Вы можете попробовать обновить драйверы до последних версий и установить последние обновления ОС.

0x0000000C

MAXIMUM_WAIT_OBJECTS_EXCEEDED

Исполняемая программа превысила лимит максимального количества объектов в состоянии ожидания.

В большинстве случаев причиной ошибки является программа, которую вы в данный момент запускаете, обычно это игры.

Попробуйте проверить память и установить последние обновления.

0x0000000D

MUTEX_LEVEL_NUMBER_VIOLATION

Это указывает на попытку получить взаимное исключение на самом низком уровне.

Попытка установить взаимные исключения с помощью заголовочного файла NTOSEXEXLEVELS.H

Вы должны найти точки взаимодействия и определить, какие из них пытаются получить доступ к этому уровню в неправильной последовательности.

Варианты:

1 — соединение на уровне связи

2 — попытка доступа к уровню взаимодействия

0x0000000E

NO_USER_MODE_CONTEXT

Это указывает на попытку входа в пользовательский режим без контекста.

Обновите Windows.

0x0000000F

SPIN_LOCK_ALREADY_OWNED

Это указывает на попытку получить проприетарную спиновую блокировку.

Эта ошибка означает, что в режиме ядра произошло неожиданное прерывание, или такое прерывание, которое ядро не разрешает иметь или получать (связанная ловушка), или такое прерывание, которое приводит к немедленной «смерти» (двойная ошибка). Первое число в интервалах кода ошибки — это количество прерываний (8 = двойная ошибка). Используя отладчик ядра, KB и !TRAP в подходящем фрейме (который будет EBP, и поставляется с KiTrap — по крайней мере, на машинах x86) покажет, откуда пришло прерывание. В общем случае ошибка возникает, когда процессор совершает ошибку, с которой ядро не может справиться. Чаще всего это вызвано плохой оперативной памятью, но также и разгоном. Попробуйте отключить согласование синхронизации BIOS.

Убедитесь, что вы не получаете блокировку рекурсивно. И, для потоков, которые имеют спин-блокировки, убедитесь, что вы не уменьшаете IRQL потока до уровня ниже IRQL спин-блокировки, которую он содержит.

0x00000010

SPIN_LOCK_NOT_OWNED

Ошибка ввода/вывода для жестких дисков.

При высоком уровне ввода-вывода для жестких дисков драйвер Scsiport снимет блокировку вращения на устройстве расширения, а затем снова заблокирует, если поле ReadyLogicalUnit Logical Device Number (LUN) текущего жесткого диска не установлено в нулевое значение. Такое поведение вызывает сообщение об ошибке «Stop 0x00000010», поскольку потоки рассинхронизированы. Другой поток может обновить поля ReadyLogicalUnit после того, как поток-владелец проверит поле, но до того, как поток-владелец выполнит следующую итерацию цикла. Циклический тест прошел успешно, поскольку поле ReadyLogicalUnit не равно null, а поле GetNextLuRequest не вызывается, когда удерживается спиновая блокировка.

Повторите, что драйверы scsiport не получают адаптер spinlock в нижней части цикла. Условный поток драйвера Scsiport извлекает адаптер спин-лока и освобождает спин-лок при выходе из цикла.

  1. Обновление операционной системы.
  2. Обновите драйверы.
  3. Проверьте жесткий диск на наличие ошибок.
0x00000011

THREAD_NOT_MUTEX_OWNER

Попытка освободить поток, у которого нет источника.

0x00000012

TRAP_CAUSE_UNKNOWN

Эта ошибка означает, что ее причина неизвестна. В этом случае для определения причины постарайтесь записать обстоятельства, при которых это произошло: что вы делали или пытались сделать в это время, какие изменения произошли в системе и т.д.д.

Рекомендации по устранению:

  1. Перезагрузите компьютер
  2. Если вы установили новое оборудование до возникновения этой ошибки остановки, убедитесь, что оно совместимо с вашей операционной системой. Вы можете проверить совместимость, перейдя по этой ссылке. Если ваша операционная система и новое оборудование несовместимы — замените устройство. Если оборудование совместимо, загрузите последние версии драйверов с сайта производителя оборудования и установите их. Если у вас установлены последние версии драйверов, попробуйте установить более старую версию. Обратитесь к своему реселлеру.
  3. Обновите операционную систему, последние обновления на сайте Microsoft.
  4. Если вы не установили новое оборудование, необходимо проверить напряжение в сети. Оно должно быть не менее 210 В.
  5. Проверьте оперативную память на работоспособность и ошибки. Вы можете проверить наличие ошибок с помощью программы Memtest++. Если в компьютере установлено несколько модулей памяти, попробуйте поработать, вытаскивая сначала один модуль, затем другой, чтобы определить неисправный. Память RAM выходит из строя очень часто, но очень редко бывает, что одновременно выходит из строя более одного модуля.
  6. Проверьте, достаточно ли свободного места на жестком диске. Если места недостаточно, удалите некоторые данные.
  7. Проверьте жесткий диск на наличие поврежденных секторов и ошибок. Если возможно, восстановите ошибки и плохие сектора стандартными средствами (Свойства диска — Сервис — Выполнить проверку).
  8. Попробуйте восстановить систему из точки восстановления системы.
  9. Если вы не можете войти в Windows, попробуйте загрузиться с последней удачной конфигурации.
  10. Если вы сами настраивали BIOS, попробуйте сбросить настройки по умолчанию.
  11. Проверьте систему на наличие вирусов. Это можно проверить с помощью бесплатной утилиты от DrWeb.
  12. В крайнем случае, переустановите Windows.
  13. Если эта ошибка остановки появляется во время установки системы, возможно, не хватает оперативной памяти. Добавьте.

Возможные причины возникновения:

  1. Недостаток напряжения
  2. Большой объем оперативной памяти
  3. Малый объем памяти при установке системы
  4. Несовместимое оборудование
  5. Неподходящие драйверы
  6. Неисправная оперативная память
  7. Сломанный жесткий диск
  8. Нехватка места на жестком диске
  9. Может возникнуть при добавлении аппаратных устройств
  10. При использовании цветовой схемы Windows Aero
  11. Когда операционная система заблокирована
  12. Неправильно настроен Bios
  13. Влияние вирусов
0x00000013

EMPTY_THREAD_REAPER_LIST

Поврежденный список потоков. Т.е. Был вызван поток, которого нет в списке.

0x00000014

CREATE_DELETE_LOCK_NOT_LOCKED

Нет описания.

Эта ошибка появляется очень редко.

0x00000015

LAST_CHANCE_CALLED_FROM_KMODE

Это исключение было вызвано из ядра ОС.

0x00000016

CID_HANDLE_CREATION

Произошел сбой при создании дескриптора для предоставления клиенту.

0x00000017

CID_HANDLE_DELETION

Сбой произошел при удалении дескриптора для инициализации клиента.

0x00000018

REFERENCE_BY_POINTER

Произошел сбой при обращении к объекту. Должен существовать указатель, на который он указывает.

Счетчик ссылок на объект имеет недопустимое значение для текущего состояния объекта. Каждый раз, когда драйвер использует указатель на объект, он вызывает подпрограмму ядра для увеличения счетчика ссылок на объект на единицу. Когда драйвер завершает указатель, драйвер вызывает другую подпрограмму ядра, чтобы уменьшить счетчик ссылок на единицу.

Драйверы должны вызывать подпрограммы, увеличивающие (link) и уменьшающие (dereference) счетчик ссылок. Эта ошибка возникает, когда значение счетчика ссылок на объект не совпадает. Несоответствие обычно вызывается драйвером, который слишком часто уменьшает количество ссылок на объект, делая дополнительные вызовы, которые разыменовывают объект. Эта ошибка может возникнуть, когда счетчик ссылок равен нулю, а к объекту все еще есть открытые дескрипторы.

Эта ошибка, чаще всего, возникает из-за двух виновников:

Драйвер.

Антивирус.

  1. Попробуйте восстановить систему.
  2. Обновить драйверы.
  3. Переустановите или удалите антивирус.
0x00000019

BAD_POOL_HEADER

Неверный заголовок пула.

Эта проблема вызвана ошибкой в файлах NTFS системы.

  1. Проверьте жесткий диск на наличие ошибок.
  2. Обновите ОС.
0x0000001A

MEMORY_MANAGEMENT

Это указывает на то, что произошла серьезная ошибка управления памятью.

Подробнее:

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

  1. Обновите драйверы.
  2. Обновить Windows.
  3. Проверить компьютер на наличие вирусов.
  4. Проверьте жесткий диск на наличие ошибок.
  5. Проверьте память на наличие ошибок.

РЕШЕНИЕ

Windows XP

Чтобы исправить ошибку Stop 0x0000001A, установите рекомендуемое обновление безопасности 931784 или KB929338.

Windows Server 2008 SP2 и Windows Server 2008 R2

BSoD возникает из-за того, что процессоры Intel Westmere имеют новую возможность кэширования структуры управления виртуальной машины (VMCS). Эта опция добавлена для обеспечения помощи виртуализации, чтобы увеличить производительность гипервизора. Поскольку эта функция была представлена после Windows 2008 SP2 и после Windows 2008 R2, гипервизор некорректно обрабатывает кэширование VMCS. Повреждение памяти вызывает эту ошибку.

Чтобы устранить эту ошибку, обновите операционную систему.

Windows 2000

Для решения проблемы Stop 0x0000001A необходимо установить пакет обновления 3.

0x0000001B

PFN_SHARE_COUNT

Страница памяти имеет поврежденный элемент базы данных.

  1. Обновите драйверы.
  2. Обновить Windows.
  3. Проверьте компьютер на наличие вирусов.
  4. Проверить жесткий диск на наличие ошибок.
  5. Проверьте память на наличие ошибок.
0x0000001C

PFN_REFERENCE_COUNT

Страница памяти имеет поврежденный элемент базы данных.

  1. Обновите драйверы.
  2. Обновите Windows.
  3. Проверьте компьютер на наличие вирусов.
  4. Проверьте жесткий диск на наличие ошибок.
  5. Проверьте память на наличие ошибок.
0x0000001D

NO_SPIN_LOCK_AVAILABLE

Это указывает на отсутствие доступных для выделения спин-блокировок.

Если вы измените тип кадра IPX для сетевого подключения с Auto Select на любой другой тип кадра IPX, вы можете получить ошибку остановки «STOP 0x0000001D» или «STOP 0x000000A», которая возникает в Ndis.sys.

Эта проблема может возникнуть, если на компьютере работает NWLink IPX/SPX/NetBIOS-совместимый транспортный протокол.

  1. Обновите операционную систему или переустановите ее.
  2. Попробуйте обновить BIOS.
0x0000001E

KMODE_EXCEPTION_NOT_HANDLED

Сообщение указывает на то, что ядро Windows XP Professional обнаружило запрещенную операцию или неизвестную инструкцию процессора. Проблема, вызывающая этот вид сбоя, аналогична той, которая вызывает ошибку 0x0000000A. Это также может быть вызвано повреждением памяти или нарушением доступа. Windows XP Professional умеет самостоятельно справляться с этой проблемой, если только проблема не взяла на себя поддержку аварийного завершения работы системы самостоятельно

Сообщения об остановке = 0x0000001E обычно появляются после установки неисправных драйверов или системных служб, или они могут указывать на аппаратные проблемы, такие как конфликты памяти и IRQ. Если в сообщении об остановке указан список драйверов, удалите/исключите их. Если удаление программного обеспечения или драйверов не решит проблему, свяжитесь с производителем и узнайте об обновлениях. Обновленное программное обеспечение особенно важно при использовании мультимедийных программ, антивирусных программ и мастеров записи компакт-дисков.

Если в ошибке остановки упоминается Win32k.В разделе Services проблема может заключаться в сторонней программе удаленного доступа. Если такая программа установлена, вы можете удалить ее, загрузившись в Безопасном режиме. Если нет, используйте консоль восстановления для удаления неисправного системного файла.

Проблема может быть вызвана несовместимостью микропрограммного обеспечения. Многие проблемы интерфейса расширенной конфигурации и питания (ACPI) могут быть решены с помощью обновления микропрограммы (BIOS).

Очистка диска от ненужных временных файлов может помочь.п., поскольку проблема может возникнуть из-за недостаточного дискового пространства (также и для виртуальной памяти).

А также проверьте память на наличие ошибок.

0x0000001F

SHARED_RESOURCE_CONV_ERROR

Это указывает на общую проблему преобразования ресурсов.

0x00000020

KERNEL_APC_PENDING_DURING_EXIT

Эта проблема возникает, если модуль Win32k.Sys неправильно управляет объектами шрифта. Вызов асинхронной процедуры утечки (APC). Когда система обнаруживает утечку памяти APC, система сообщает об ошибке Stop.

Этот симптом указывает на серьезную проблему в драйверах сторонних производителей.

Известно, что эта проблема возникала на серверах под управлением Symantec pcAnywhere 11.5 с помощью Symantec AntiVirus 8.x или Symantec AntiVirus 9.0. Ошибка вызвана обновленным драйвером обработчика событий Symantec (Symevent.sys), которая установлена вместе с pcAnywhere 11.В связи с драйвером Symevent.Драйверы защиты в реальном времени компании Symantec показывают ошибку «Stop 0x00000020».

Чтобы временно решить эту проблему, отключите драйверы защиты в реальном времени Symantec. Если вы не можете запустить сервер обычным способом, запустите его в безопасном режиме, а затем временно отключите драйверы защиты в реальном времени.

Примечание . Следуйте этим инструкциям, только если сервер не загружается как обычно. После отключения драйверов защиты реального времени и запуска сервера в обычном режиме рекомендуется сразу же установить обновленный драйвер Symevent.sys. После этого снова включите драйверы защиты в реальном времени.

Чтобы отключить драйверы защиты в реальном времени, выполните действия, соответствующие версии сканера Symantec AntiVirus, установленного на сервере.

ПРЕДУПРЕЖДЕНИЕ Пока драйверы защиты реального времени отключены, сервер может быть подвержен вирусной атаке или вмешательству потенциально опасных программ. Поэтому рекомендуется отключить сервер от сети до тех пор, пока драйверы не будут снова включены.

Чтобы отключить драйверы сканера реального времени Symantec AntiVirus 8, выполните следующие действия.x выполните следующие действия:

  1. Выберите Run в меню Start, введите regedit и нажмите OK.
  2. Найдите и выделите следующий раздел реестра:
    HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServices
  3. Выберите раздел Navap.
  4. В правой панели окна редактора реестра дважды щелкните на Пуск.
  5. В поле Значение измените значение на 4 и нажмите OK.
  6. В разделе Службы выберите Navapel.
  7. В правой панели окна Редактора реестра дважды щелкните параметр Пуск.
  8. В поле Значение измените значение на 4 и нажмите OK.
  9. Закройте редактор реестра.
  10. Отключение сервера от сети.
  11. Перезагрузите сервер.

Чтобы отключить драйверы защиты в реальном времени Symantec AntiVirus 9.0 выполните следующие действия:

  1. Выберите «Выполнить» в меню «Пуск», введите regedit и нажмите OK.
  2. Найдите и выделите следующий раздел реестра:
    HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServices
  3. Выберите раздел Savrt.
  4. В правой панели окна редактора реестра дважды щелкните параметр Пуск.
  5. В поле Значение измените значение на 4 и нажмите OK.
  6. В разделе Службы выберите подраздел Savrtpel.
  7. В правой панели окна редактора реестра дважды щелкните на Start (Пуск).
  8. В поле Значение измените значение на 4 и нажмите OK.
  9. Закройте редактор реестра.
  10. Отключить сервер от сети.
  11. Перезагрузите сервер.

Всегда старайтесь записывать, что вы делали или какие приложения закрывали, какие драйвера были установлены в момент появления синего экрана.

0x00000021

QUOTA_UNDERFLOW

Ошибка указывает на то, что квота была возвращена процессу, но процесс не использовал столько квот.

Всегда старайтесь записывать, что вы делали или какие приложения закрывали, какие драйвера были установлены, когда появился синий экран.

Если эта ошибка возникает впервые — перезагрузите компьютер и повторите попытку. Если компьютер снова покажет синий экран смерти BSOD, выполните следующие действия:

* Откройте и тщательно очистите все контакты внутри системного блока.

* Переподключите все доступные контакты (контакты жесткого диска, оперативной памяти, блока питания), проблема может заключаться в плохом контакте.

Если вы установили какое-либо новое оборудование на свой компьютер до появления BSOD (синего экрана смерти), проверьте, совместимо ли оно с вашей операционной системой.

* Если оборудование не прошло проверку на совместимость, попробуйте заменить его на другое.

* Если ваше оборудование совместимо, а BSOD все еще появляется, то вам необходимо обновить драйверы оборудования. Вы всегда можете загрузить драйвер с сайта производителя. Чаще всего эта ошибка вызвана некорректной работой программы (драйвера).

* Если вы установили какую-либо программу перед ошибкой остановки, удалите ее и попробуйте поработать на компьютере.

* Если при обновлении драйверов появляется ошибка остановки, то попробуйте установить драйвера с версией ниже, чем у вас была.

* Или обратитесь за советом к поставщику оборудования.

* Обновите Windows. Загрузите последние обновления с веб-сайта Microsoft.

Если ошибка возникла без вашего вмешательства с установкой нового оборудования, вам следует:

* Проверьте, работает ли оперативная память. Вы можете проверить его с помощью программы Memtest++ (поищите ее в Google). Если память не работает, пожалуйста, замените плиту. Если у вас несколько карт памяти, попробуйте работать с ними по отдельности, вынимая их по очереди. Чаще всего память повреждается сразу в нескольких слотах. И вы найдете неисправное. Не забудьте почистить контакты на модуле и материнской плате, так как пыль часто вызывает эту проблему.

* Проверьте жесткий диск на наличие свободного места. В случае недостаточного объема памяти удалите некоторые данные.

* Проверьте жесткий диск на наличие плохих секторов и ошибок.

* Попытайтесь восстановить систему из точки восстановления.

* Если вы не можете войти в Windows, попробуйте загрузиться с последней удачной конфигурации.

* Если вы пытались настроить параметры BIOS до появления этой ошибки, восстановите их по умолчанию.

* Проверьте компьютер на наличие вирусов.

* В крайнем случае переустановите Windows.

* Если эта ошибка остановки появляется во время установки Windows, попробуйте увеличить объем оперативной памяти или очистить память от пыли.

Возможные причины:

* Отсутствие питания

* Увеличить объем оперативной памяти

* Несовместимое оборудование

* Неправильный драйвер

* Неисправная оперативная память

* Сломан жесткий диск

* Нехватка места на жестком диске

* Если ваша операционная система заблокирована

* Неправильная настройка BIOS

* Влияние вирусов

0x00000022

FILE_SYSTEM

Ошибки файловой системы.

  1. Обновите свою ОС.
  2. Обновите драйверы.
  3. Проверьте жесткий диск на наличие ошибок.
0x00000023

FAT_FILE_SYSTEM

Возникла ошибка при записи или чтении с системного жесткого диска в FAT16 или FAT3Возможно, проблема с самим диском или с пакетом запросов на прерывание (IRP). Поврежденные драйверы SCSI и IDE также могут негативно влиять на способность системы читать и записывать на диск, что приводит к ошибке.

Также причиной может быть неправильная фрагментация диска, проблемы с антивирусным ПО или ПО для мониторинга диска, ПО для перестановки диска, криптопрограммы и т.д.

Другой возможной причиной является исчерпание незагружаемого пула памяти. Если пул невыгружаемой памяти полностью исчерпан, эта ошибка может остановить работу системы. Однако во время процесса индексирования, если доступный пул невыгружаемой памяти очень мал, другой драйвер режима ядра, которому требуется пул невыгружаемой памяти, также может вызвать эту ошибку.

Чтобы решить проблему повреждения диска:

Попробуйте отключить антивирусные программы, программы резервного копирования или средства дефрагментации диска.

Запустите Chkdsk /F /R (Пуск) на вашем компьютере ->Run) для обнаружения и исправления ошибок в файловой системе.

Чтобы решить проблему не загружаемого пула памяти:

Добавьте физическую память компьютера. Это увеличит объем памяти неэластичного пула, доступной ядру.

0x00000024

NTFS_FILE_SYSTEM

Произошла ошибка при записи или чтении с системного диска в файловой системе NTFS. Возможно, проблема в самом диске или в пакете запроса прерывания (IRP). Поврежденные драйверы SCSI и IDE также могут ухудшить способность системы к чтению и записи и вызвать ошибку.

Другими возможными причинами могут быть сильная фрагментация диска, проблемы с антивирусным ПО или ПО для мониторинга диска, ПО, изменяющее конструкцию диска, ПО для шифрования и т.д.

Другой возможной причиной является исчерпание пула неосвобожденной памяти. Если пул незагружаемой памяти полностью исчерпан, эта ошибка может остановить систему. Однако во время процесса индексации, если объем доступной памяти в незагружаемом пуле очень мал, другой драйвер режима ядра, которому требуется незагружаемый пул памяти, также может вызвать эту ошибку.

Чтобы решить проблему повреждения диска:

Попробуйте отключить антивирусные программы, программы резервного копирования или средства дефрагментации диска.

Запустите Chkdsk /F /R (Пуск ->Выполните) для поиска и исправления ошибок файловой системы.

Чтобы решить проблему незагружаемого пула памяти:

Добавьте физическую память компьютера. Это увеличит объем памяти в незагружаемом пуле, доступном ядру.

0x00000025

NPFS_FILE_SYSTEM

Эта ошибка возникает, когда память переполнена.

  1. Проверьте память на наличие ошибок.
  2. Добавьте больше памяти.
0x00000026

CDFS_FILE_SYSTEM

Одной из возможных причин этой ошибки является повреждение жесткого диска. Поврежденный драйвер SCSI или IDE также может нарушить способность системы к чтению/записи, что приводит к следующей ошибке.

Другой возможной причиной может быть переполнение памяти.

Чтобы решить проблему повреждения диска:

Попробуйте отключить антивирус, программы резервного копирования или средства дефрагментации диска.

Запустите Chkdsk /F /R (Пуск ->Запуск) для поиска и исправления ошибок файловой системы.

Для устранения переполнения памяти:

Добавьте физическую память в компьютер.

0x00000027

RDR_FILE_SYSTEM

Эта ошибка возникает при переполнении памяти. Поэтому, скорее всего, не хватает памяти.

Или проверьте память на наличие ошибок.

В Windows Vista и более поздних версиях: ошибки в самой ОС. Устранена обновлением Windows.

  1. Обновите операционную систему.
  2. Проверьте память на наличие ошибок.
0x00000028

CORRUPT_ACCESS_TOKEN

Это указывает на то, что система безопасности столкнулась с недействительным маркером доступа.

0x00000029

SECURITY_SYSTEM

Это указывает на проблему в системе безопасности.

Обновите операционную систему.

0x0000002A

INCONSISTENT_IRP

Состояния IRP (пакет ввода/вывода) не соответствуют друг другу.

Это происходит, когда поле или поля в IRP не соответствуют остальному состоянию IRP. Например, IRP, который был прерван, был указан как все еще ожидающий команд драйвера какого-либо устройства.

Попробуйте обновить драйвер, указанный в ошибке.

0x0000002B

PANIC_STACK_SWITCH

Эта ошибка указывает на то, что область стека ядра переполнена. Это может произойти, если драйвер уровня ядра использует слишком много места в области стека. Это также может произойти, если в самом ядре имеется серьезная ошибка.

  1. Проверьте свободное пространство на диске C:
  2. Проверьте память на наличие ошибок.
  3. Обновить операционную систему.
  4. Попробуйте пересобрать систему, если это не поможет, то вам необходимо переустановить систему.
0x0000002C

PORT_DRIVER_INTERNAL

Это указывает на внутреннюю ошибку в драйвере порта.

  1. Попробуйте обновить драйвер, указанный в ошибке.
  2. Обновить операционную систему.
0x0000002D

SCSI_DISK_DRIVER_INTERNAL

Это указывает на внутреннюю ошибку в жестком диске SCSI.

  1. Попробуйте обновить драйвер, упомянутый в ошибке.
  2. Проверьте шлейф подключения жесткого диска.
0x0000002E

DATA_BUS_ERROR

Это указывает на ошибку шины данных, которая может быть вызвана ошибкой в системной памяти. Ошибка также может быть вызвана тем, что драйвер обращается к несуществующему адресу.

Варианты ошибки STOP:

A — адрес виртуальной памяти, вызвавшей ошибку

B — физический адрес причины ошибки

C — Регистр состояния процессора (PSR)

D — регистр команд ошибок (FIR)

Причиной почти всегда является аппаратное обеспечение системы — неправильная конфигурация, несовместимое или поврежденное оборудование. В большинстве случаев это вызвано плохой оперативной памятью, ошибками L2-кэша, ошибками видеопамяти или поврежденным жестким диском.

Подробнее читайте здесь:

http://support.microsoft.com/kb/218132/en?sd=gn

  1. Проверьте память на наличие ошибок.
  2. Обновите BIOS.
  3. Обновите или откатите драйверы.
  4. Проверьте жесткий диск на наличие ошибок.
  5. Проверьте MBR на наличие вирусов.

РЕШЕНИЕ

Исправление аппаратного обеспечения: Если аппаратное обеспечение было недавно установлено в системе, удалите его, чтобы убедиться, что именно оно стало причиной сбоя.

Если причиной ошибки является существующее оборудование, его необходимо заменить. Проверьте контакты всех плат в компьютере, также они должны быть правильно установлены. Используйте инструменты очистки для очистки аппаратных контактов.

Если проблема возникает на недавно установленной системе, проверьте наличие обновлений BIOS, контроллера SCSI и сетевой карты. Обновления такого типа обычно доступны на сайтах производителей оборудования.

Если ошибка возникает после установки нового или обновленного драйвера устройства, драйвер необходимо удалить или заменить. Если ошибка возникает во время загрузки Windows и системный раздел отформатирован в NTFS, вы можете попробовать использовать безопасный режим для переустановки или удаления неисправного драйвера.

Если драйвер используется как часть системного процесса в Безопасном режиме, можно запустить Консоль восстановления.

Для получения дополнительных сообщений об ошибках, которые могут помочь точно определить устройство или драйвер, вызывающий ошибку, используйте Event Viewer. Отключение кэширования памяти или затенения в BIOS также может устранить эту ошибку. Также проверьте систему на наличие вирусов с помощью любого современного программного обеспечения для обнаружения вирусов.

Решение проблемы повреждения жесткого диска: Запустите Chkdsk/f/r на системном разделе. Вы должны перезагрузить систему, чтобы начать сканирование диска. Если вы не можете запустить систему из-за ошибки, используйте консоль восстановления и запустите Chkdsk/r.

Обратите внимание, что если ваш системный раздел отформатирован в файловой системе (FAT), длинные имена файлов, используемые Windows, могут быть повреждены при использовании Scandisk или других служб на базе MS-DOS.

0x0000002F

INSTRUCTION_BUS_ERROR

Это указывает на ошибку в инструкциях шины.

0x00000030

SET_OF_INVALID_CONTEXT

Это указывает на попытку изменить значения SS и ESP при возврате в код режима ядра.

Ошибка также возникает, когда какая-либо подпрограмма пытается установить указатель узла стека в кадре ловушки в значение, меньшее, чем текущее значение указателя узла стека.

Проверьте компьютер на наличие вирусов.

0x00000031

PHASE0_INITIALIZATION_FAILED

Сбой инициализации системы на очень ранней стадии.

Также могут быть проблемы с оборудованием.

Необходимо изучить ошибку более подробно, так как этот код ошибки практически ни о чем не говорит.

0x00000032

PHASE1_INITIALIZATION_FAILED

Сбой поздней инициализации системы.

Также может быть проблема с драйверами устройств.

Нам нужно рассмотреть ошибку более подробно, потому что этот код ошибки практически ни о чем не говорит.

0X00000033

UNEXPECTED_INITIALIZATION_CALL

Сбой поздней инициализации системы.

Также могут быть проблемы с драйверами устройств.

Вам необходимо изучить ошибку более подробно, так как этот код ошибки практически ни о чем вам не говорит.

0X00000034

CACHE_MANAGER

Данная ошибка возникает при переполнении памяти.

Также истощение пула нескачиваемой памяти вызывает эту ошибку. Во время процесса индексации, если объем доступного пула необработанной памяти очень мал, другой драйвер, требующий пул необработанной памяти, может инициировать эту ошибку.

  1. Проверьте память на наличие ошибок.
  2. Проверьте свободное место на диске C:
  3. Добавьте больше памяти.
0x00000035

NO_MORE_IRP_STACK_LOCATIONS

Драйвер верхнего уровня пытался вызвать драйвер нижнего уровня через интерфейс IoCallDriver(), но в стеке не было свободного места, поэтому драйвер нижнего уровня не сможет получить нужные параметры, так как для него вообще нет параметров. Это фатальная ситуация, поскольку драйвер более высокого уровня считает, что он заполнил параметры для драйвера более низкого уровня. Тем не менее, поскольку в стеке нет места для последнего драйвера, компилятор признал конец пакета недействительным. Это означает, что, скорее всего, повреждена какая-то другая память.

Проверьте память на наличие ошибок.

0x00000036

DEVICE_REFERENCE_COUNT_NOT_ZERO

Драйвер устройства пытался удалить один из своих объектов устройства из системы, но счетчик ссылок для этого объекта был отличен от нуля.

Это означает, что все еще существуют внешние ссылки на устройство. (Количество ссылок указывает на ряд причин, по которым устройства этого объекта не могут быть удалены.)

Имеет место ошибка в вызове драйвера устройства.

Обновите или откатите драйверы.

Если это не помогло, необходимо определить, к какому устройству принадлежит драйвер, по имени драйвера, показанному в BSoD. Установите более новые драйверы для этого устройства. Если синий экран продолжает возникать, то необходимо удалить или заменить неисправное устройство.

0x00000037

FLOPPY_INTERNAL_ERROR

Это указывает на ошибку драйвера внутреннего флоппи-диска.

Обновите драйвер, указанный в ошибке.

0x00000038

SERIAL_DRIVER_INTERNAL

Это указывает на внутреннюю ошибку драйвера последовательного устройства.

Обновите драйвер, указанный в ошибке.

0x00000039

SYSTEM_EXIT_OWNED_MUTEX

Это означает, что была предпринята попытка выйти из системной службы при наличии одного или нескольких взаимных исключений.

0x0000003A

SYSTEM_UNWIND_PREVIOUS_USER

Это указывает на то, что была попытка пройти через диспетчер системных служб в режим пользователя.

Проверьте компьютер на наличие вирусов.

0x0000003B

SYSTEM_SERVICE_EXCEPTION

Это указывает на то, что в системе обслуживания было запущено исключение, которое не было обработано системой обслуживания.

BSoD вызван чрезмерным использованием пула памяти подкачки и может появиться из-за пересечения графических драйверов пользовательского режима и из-за некорректной передачи данных в код ядра.

Обновите операционную систему.

РЕШЕНИЕ

Windows Server 2003

Остановка 0x0000003B возникает в сценариях, когда менеджер памяти ядра дважды неправильно освобождает секцию INIT драйвера. Для устранения ошибки установите обновление KB941410.

Windows 7 и Windows 2008

Синий экран появляется из-за ошибки в стеке драйвера Microsoft IEEE 1394, при которой буфер, выделяемый для стека, инициализируется неправильно. Для устранения ошибки необходимо установить обновление KB980932.

http://support.microsoft.com/errorlist/default.aspx?sd=gn&nobounce=1&errorid=740630

0x0000003C

INTERRUPT_UNWIND_ATTEMPTED

Это указывает на то, что выполняемое задание было инициировано в процедуре обработки прерываний, которая пыталась пройти через диспетчер прерываний.

0x0000003D

INTERRUPT_EXCEPTION_NOT_HANDLED

Это указывает на то, что в процедуре обработки прерываний было вызвано исключение, которое не было обработано процедурой обработки прерываний.

Эта проблема возникает, если программа проверки драйверов рассматривает некоторые изменения как ошибки.

Windows 7 и Server 2008 R2:

http://support.microsoft.com/kb/2494666/en?sd=gn

Microsoft выпустила исправление. Обновите ОС.

0x0000003E

MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED

Это указывает на то, что многопроцессорная конфигурация не поддерживается. Например, не все процессоры имеют одинаковый уровень или одинаковый тип.

Во время загрузки Windows запрашивает тип процессора и использует эту информацию для настройки инициализации, чтобы использовать преимущества функций, которые процессор должен поддерживать. Позже он обращается к процессору, чтобы проверить, поддерживает ли он эти конкретные возможности. Одна из проблем заключается в том, что производитель процессора. Если производитель не Intel или AMD, возвращаемое значение — Windows NT, предполагается, что функции не поддерживаются процессором, хотя это может быть и так.

64-разрядные версии Windows Vista или Windows Server 2008 запущены на компьютере с несколькими процессорами Intel x 64 или многоядерными процессорами Intel x 6При попытке установить пакет обновления 2 (SP2) для Windows Vista или пакет обновления 2 (SP2) для Windows Server 2008 на компьютер появляется эта ошибка.

http://support.microsoft.com/kb/973879/en?sd=gn

  1. Обновите операционную систему.
  2. Обновите BIOS.
0x0000003F

NO_MORE_SYSTEM_PTES

В системе закончились записи в таблице страниц. Недостаточно PTE (записей файла страницы). Обычно это вызвано тем, что драйвер неправильно очищает файл подкачки или не хватает места на диске.

Основная причина появления синего экрана заключается в том, что драйвер пытается запросить большой блок виртуальной памяти, но нет непрерывного блока достаточного размера, чтобы удовлетворить этот запрос.

Часто видеодрайверы пытаются занять огромный объем памяти, которого просто нет. Эта ошибка также может быть вызвана программами резервного копирования.

  1. Обновите драйверы.
  2. Проверьте свободное пространство на диске C:
0x00000040

TARGET_MDL_TOO_SMALL

Это указывает на MDL (список дескрипторов памяти), который был выделен для отображения, но буфер недостаточно велик для отображения номеров блоков страниц (PFN).

Возможно, проблема с драйвером.

  1. Обновите драйверы.
  2. Обновить ОС.
0x00000041

MUST_SUCCEED_POOL_EMPTY

Ошибка указывает на то, что какой-то драйвер запросил слишком много места в пуле must_succeed.

Обновите драйвер, указанный в ошибке.

0x00000042

ATDISK_DRIVER_INTERNAL

Это указывает на ошибку драйвера жесткого диска.

Обновите драйвер, указанный в ошибке.

0x00000043

NO_SUCH_PARTITION

Это указывает на ошибку драйвера жесткого диска. Т.е. Я хотел изменить тип раздела, но не могу его найти.

Обновите драйвер, указанный в ошибке.

0x00000044

MULTIPLE_IRP_COMPLETE_REQUESTS

Драйвер запросил завершение для IRP [IoCompleteRequest()], но пакет уже был завершен.

Эту ошибку трудно обнаружить.

Самый простой случай — драйвер пытается выполнить одну и ту же операцию дважды, но этот случай очень редок.

Бывает также, что два разных драйвера пытаются взять на себя пакет и завершить его. Первый вариант обычно работает, а второй — нет. Трудно отследить, какой драйвер вызвал сбой, поскольку следы первого драйвера были перезаписаны вторым. Однако конфликт можно обнаружить, просмотрев поля DeviceObject в каждом месте стека.

Это также может произойти, если у вас установлен клиент Novell 4.83.

Обновите драйверы.

Если у вас установлен Novel, обновите его или перезагрузите более новую версию.

0x00000045

INSUFFICIENT_SYSTEM_MAP_REGS

Это указывает на то, что была предпринята попытка выделить больше регистров карты, чем выделено адаптеру.

0x00000046

DEREF_UNKNOWN_LOGON_SESSION

Это указывает на то, что был удален токен, который не был частью какой-либо известной сессии входа в систему.

0x00000047

REF_UNKNOWN_LOGON_SESSION

Это указывает на то, что был создан токен, который не был частью какой-либо известной сессии входа в систему.

0x00000048

CANCEL_STATE_IN_COMPLETED_IRP

Эта ошибка указывает на то, что пакет запроса ввода-вывода (IRP), который должен быть завершен, имеет особый порядок отмены, что означает, что пакет находится в таком положении, когда он не может быть отменен другим способом. Хотя сам пакет уже не имеет отношения к драйверу, устанавливающему порядок завершения работы, поскольку он уже находится в фазе завершения работы.

Обновите ОС.

0x00000049

PAGE_FAULT_WITH_INTERRUPTS_OFF

Ошибка буквально означает: ошибка страницы при доступе к памяти, с отключенными IRQ.

См. ошибку 0x0000001A

Проверьте память на наличие ошибок.

0x0000004A

IRQL_GT_ZERO_AT_SYSTEM_SERVICE

Это указывает на попытку выхода из системного обслуживания с IRQL (уровень запроса прерывания) больше 0.

0x0000004B

STREAMS_INTERNAL_ERROR

Указывает на внутреннюю ошибку в среде потоковой передачи или в драйвере потоковой передачи.

0x0000004C

FATAL_UNHANDLED_HARD_ERROR

Это указывает на то, что фатальная серьезная ошибка (ошибка STATUS) произошла до того, как обработчик ошибок стал доступен. Существует несколько причин, по которым могла возникнуть эта ошибка:

Поврежден файл структуры данных реестра;

Неожиданно не запустился Winlogon или Windows;

Поврежден драйвер или системная DLL.

  1. Восстановите операционную систему.
  2. Проверьте жесткий диск на наличие ошибок и вирусов.
  3. Проверьте реестр.
  4. Обновите драйверы.
0x0000004D

NO_PAGES_AVAILABLE

Недостаточно свободного места для продолжения операций.

Причины:

  1. Драйвер заблокирован в цикле редактируемых или отображаемых держателей страниц. Это ошибка драйвера.
  2. Драйвер накопителя не отвечает. Это ошибка драйвера.
  3. Недостаточно места в стеке диска для записи и/или редактирования страниц. память. Это ошибка драйвера.
  4. Все процессы были свернуты, все доступные страницы заполнены, а места все еще недостаточно.
  5. Драйвер забывает сбросить счетчик свободных страниц после запуска процессов.
  6. Или циклическая операция не может быть завершена.

Если доступен отладчик ядра, введите следующие команды, которые покажут, какие драйверы используют сколько памяти и где:

!process 0 7

!vm

dd mmpagingfiles

dd @$p

Варианты:

  1. Количество используемых страниц
  2. Количество физических страниц на машине
  3. Расширенное значение страницы
  4. Общее значение страницы

Обновите драйверы.

0x0000004E

PFN_LIST_CORRUPT

Это указывает на страницу управления памятью с поврежденным списком номеров файлов.

  1. Обновите драйверы.
  2. Обновите операционную систему.
  3. Проверьте память на наличие ошибок.
0x0000004F

NDIS_INTERNAL_ERROR

Это указывает на внутреннюю ошибку в обертке NDIS или драйвере NDIS.

  1. Проверьте жесткий диск на наличие ошибок.
0x00000050

PAGE_FAULT_IN_NONPAGED_AREA

Это указывает на отсутствие страницы в адресном пространстве, зарезервированной для ненумерованных страниц данных, t.е. Указывает на ошибочный адрес в памяти.

Это также может быть проблема с драйвером USB.

Такое поведение возникает, когда компьютер заражен одним из вариантов HaxDoor.

  1. Проверьте компьютер на наличие вирусов.
  2. Проверьте память на наличие ошибок.
  3. Обновить ОС.
  4. Обновите драйверы.
0x00000051

REGISTRY_ERROR

Ошибка реестра. Эта ошибка также может означать, что реестр получил ошибку ввода-вывода при попытке прочитать один из своих файлов. Ошибка могла быть вызвана аппаратной проблемой или повреждением системы. Это также может означать, что ошибка вызвана операцией обновления, которую использует только система безопасности, и то только тогда, когда ресурсы исчерпаны. Если эта ошибка возникает, проверьте, является ли машина PDC или BDC и сколько учетных записей находится в базе данных SAM (Account Security Manager), а также почти ли заполнены соответствующие библиотеки.

  1. Очистите реестр.
  2. Проверьте жесткий диск на наличие ошибок.
  3. Обновите ОС.
0x00000052

MAILSLOT_FILE_SYSTEM

Это указывает на проблему с файловой системой.

Проверьте жесткий диск на наличие ошибок.

0x00000053

NO_BOOT_DEVICE

Это указывает на то, что драйвер запуска не был успешно инициализирован.

0x00000054

LM_SERVER_INTERNAL_ERROR

Это указывает на внутреннюю ошибку в Windows.

0x00000055

DATA_COHERENCY_EXCEPTION

Это указывает на несоответствие между страницами в первичном и вторичном кэшах данных.

0x00000056

INSTRUCTION_COHERENCY_EXCEPTION

Это указывает на несоответствие между страницами в первичном и вторичном кэшах команд.

0x00000057

XNS_INTERNAL_ERROR

Это указывает на внутреннюю ошибку XNS. Возможно, вам потребуется заменить сетевую карту.

0x00000058

FTDISK_INTERNAL_ERROR

Система загружается с перестроенного первичного раздела, поэтому библиотеки говорят, что зеркало в порядке, но на самом деле это не так. Реальные образы были изменены. Вам нужно загрузиться именно с этого раздела.

Перезагрузите систему из теневого раздела.

0x00000059

PINBALL_FILE_SYSTEM

Это указывает на несоответствие между страницами в первичном и вторичном кэше данных. Возможна проблема с HPFS.

  1. Проверьте жесткий диск на наличие ошибок.
  2. Проверьте память на наличие ошибок.
0x0000005A

CRITICAL_SERVICE_FAILED

Это указывает на то, что критически важная служба не смогла инициализироваться при запуске последнего известного рабочего набора управления.

0x0000005B

SET_ENV_VAR_FAILED

Это указывает на то, что критическая служба не смогла инициализироваться, но последняя известная переменная рабочего окружения не может быть установлена.

0x0000005C

HAL_INITIALIZATION_FAILED

Инициализация фазы 0 уровня абстракции аппаратного обеспечения (HAL) перестала работать. Это может быть аппаратная проблема.

  1. Проверьте аппаратное обеспечение компьютера.
  2. Попробуйте переключить ACPI HPET Table в BIOS в положение Enabled.
  3. Обновите драйверы.
  4. Обновить ОС.
0x0000005D

UNSUPPORTED_PROCESSOR

Указывает на то, что установленный процессор не поддерживается.

Замена этого процессора на процессор, поддерживающий текущую версию Windows, устранит ошибку.

0x0000005E

OBJECT_INITIALIZATION_FAILED

Инициализация фазы 0 диспетчера объектов перестала работать. Это может быть аппаратная проблема.

0x0000005F

SECURITY_INITIALIZATION_FAILED

Фаза 0 инициализации системы безопасности перестала работать. Это может быть аппаратной проблемой.

0x00000060

PROCESS_INITIALIZATION_FAILED

Инициализация процесса фазы 0 перестала работать.

Это может быть проблема с оборудованием.

0x00000061

HAL1_INITIALIZATION_FAILED

Инициализация фазы 1 уровня аппаратной абстракции (HAL) прекращена.

Может быть проблема с драйвером устройства.

Обновите драйверы и ОС.

0x00000062

OBJECT1_INITIALIZATION_FAILED

Инициализация фазы 1 диспетчера объектов перестала работать.

Возможно, проблема с драйвером устройства.

Обновите драйверы и ОС.

0x00000063

SECURITY1_INITIALIZATION_FAILED

Фаза инициализации системы безопасности 1 перестала работать.

Возможно, проблема с драйвером устройства.

Обновите драйверы и ОС.

0x00000064

SYMBOLIC_INITIALIZATION_FAILED

Инициализация символьных ссылок перестала работать.

Может быть проблема с драйвером устройства.

Обновите драйверы и ОС.

0x00000065

MEMORY1_INITIALIZATION_FAILED

Фаза 1 инициализации памяти перестала работать.

Может возникнуть проблема с драйвером устройства.

Обновите драйверы и ОС.

0x00000066

CACHE_INITIALIZATION_FAILED

Инициализация кэша перестала работать.

Возможно, проблема с драйвером устройства.

Обновите драйверы и ОС.

0x00000067

CONFIG_INITIALIZATION_FAILED

Ошибка указывает на то, что реестр не может выделить место, необходимое для файлов реестра. Поскольку процесс резервирования этого пространства происходит на ранней стадии загрузки системы и для реестра выделяется достаточно места, и если эта ошибка возникает, значит, ошибка в самом процессе резервирования.

Проверьте свободное пространство на диске C:

0x00000068

FILE_INITIALIZATION_FAILED

Ошибка инициализации файловой системы.

Проверьте жесткий диск на наличие ошибок.

0x00000069

IO1_INITIALIZATION_FAILED

Не удалось инициализировать устройство ввода/вывода по неизвестной причине. Это может произойти, если при установке было принято неверное решение во время установки системы, или если пользователь неправильно перенастроил систему. Или он пытается установить образ одной системы на совершенно другую систему (другой компьютер).

Программы резервного копирования также могут вызывать ошибку.

0x0000006A

LPC_INITIALIZATION_FAILED

Вызов процедуры локальной инициализации (LPC) перестал работать. Возможно, проблема с драйверами.

0x0000006B

PROCESS1_INITIALIZATION_FAILED

Эта ошибка означает, что проверка инициализации операционной системы Microsoft Windows не удалась.

В Windows 7 или Windows Server 2008 R2:

Эта проблема возникает из-за поврежденного файла Bootcat.кэша или из-за изменения размера файла Bootcat.кэш с момента последнего успешного запуска.

Проверьте жесткий диск на наличие ошибок и вирусов.

Windows 7 или Server 2008 R2 — Обновление ОС.

0x0000006C

REFMON_INITIALIZATION_FAILED

Инициализация соединения монитора перестала работать.

Обновите драйверы.

0x0000006D

SESSION1_INITIALIZATION_FAILED

Эта ошибка означает, что проверка инициализации операционной системы Microsoft Windows не удалась.

0x0000006E

SESSION2_INITIALIZATION_FAILED

Эта ошибка означает, что проверка инициализации операционной системы Microsoft Windows завершилась неудачно.

0x0000006F

SESSION3_INITIALIZATION_FAILED

Эта ошибка означает, что проверка инициализации операционной системы Microsoft Windows завершилась неудачно.

0x00000070

SESSION4_INITIALIZATION_FAILED

Эта ошибка указывает на сбой инициализации операционной системы Microsoft Windows.

Обновите операционную систему

0x00000071

SESSION5_INITIALIZATION_FAILED

Эта ошибка указывает на то, что инициализация операционной системы Microsoft Windows не удалась.

Обновите операционную систему

0x00000072

ASSIGN_DRIVE_LETTERS_FAILED

Эта ошибка означает, что назначение буквы диска не удалось.

0x00000073

CONFIG_LIST_FAILED

Указывает на то, что одна из системных библиотек повреждена или не читается. Эта библиотека может быть следующих типов: SOFTWARE, SECURITY, SAM (Account Security Manager).

Первая причина этой ошибки заключается в том, что в Windows заканчивается место на системном диске.

Другая типичная проблема заключается в том, что попытка выделения пула не удалась.

  1. Проверьте свободное место на диске C:
  2. Проверьте жесткий диск и память на наличие ошибок.
0x00000074

BAD_SYSTEM_CONFIG_INFO

Информация о конфигурации системы повреждена.

Эта ошибка может указывать на то, что библиотека SYSTEM, загружаемая NTLDR, повреждена. Тем не менее, это практически невозможно, поскольку OSLOADER всегда проверяет библиотеки после загрузки и убеждается, что они не повреждены. Эта ошибка также может означать, что отсутствуют некоторые необходимые ключи реестра и их параметры

Она также может возникнуть, если разрешения на папку %SystemRoot%System32Config изменены таким образом, что системная учетная запись не имеет полного разрешения на доступ к этой папке.

Попытайтесь восстановить систему или попытайтесь загрузить последнюю удачную конфигурацию.

0x00000075

CANNOT_WRITE_CONFIGURATION

Эта ошибка может возникнуть, когда файлы системных библиотек (SYSTEM и SYSTEM.ALT) не может разместить дополнительные данные в момент инициализации реестра и на первом этапе (когда становятся доступны файловые системы). Эта ошибка обычно означает, что на диске нет свободного места, также она может возникнуть при попытке сохранить реестр на устройстве, доступном только для чтения.

0x00000076

PROCESS_HAS_LOCKED_PAGES

Эта ошибка может быть вызвана драйвером, который не полностью выгружен после операции ввода-вывода.

  1. Обновить драйверы.
  2. Обновите операционную систему.
0x00000077

KERNEL_STACK_INPAGE_ERROR

Система попыталась прочитать данные ядра из виртуальной памяти (файла подкачки) и не смогла найти данные по указанному адресу. Причины — дефекты оперативной памяти, сбой жесткого диска, повреждение данных или заражение вирусной программой и т.д.п.

  1. Проверьте память на наличие ошибок.
  2. Проверьте жесткий диск на наличие ошибок и вирусов.
0x00000078

PHASE0_EXCEPTION

Эта проверка на наличие ошибок возникает при неожиданном прерывании во время инициализации HAL. Это повреждение может возникнуть, если вы установили параметры прерывания в опциях загрузки, но не включили отладку ядра.

0x00000079

MISMATCHED_HAL

Эта проверка на ошибки указывает на то, что версия или конфигурация уровня аппаратной абстракции (HAL) не соответствует уровню аппаратной абстракции ядра или компьютера.

Ошибка MISMATCHED_HAL часто возникает, когда пользователь вручную обновляет Ntoskrnl.exe или Hal.dll.

Ошибка также может указывать на то, что один из этих двух файлов устарел. Например, HAL мог быть разработан для Microsoft Windows 2000, а ядро — для Windows XP. Или на компьютере может быть ошибочно установлен многопроцессорный HAL и однопроцессорное ядро, или наоборот.

Ntoskrnl.exe файл ядра для однопроцессорных систем и Ntkrnlmp.exe для многопроцессорных систем. Однако имена файлов соответствуют файлам на установочном носителе. После установки операционной системы Windows файл переименовывается в Ntoskrnl.exe, независимо от исходного файла, используемого в программе. В файле HAL также используется имя Hal.dll после установки, но на установочном носителе есть несколько возможных файлов HAL.

0x0000007A

KERNEL_DATA_INPAGE_ERROR

Эта проверка ошибки указывает на то, что нужная страница данных ядра из страничного файла не может быть считана в память.

  1. Проверьте подключение жесткого диска (шлейф).
  2. Обновите ОС и драйверы.
0x0000007B

INACCESSIBLE_BOOT_DEVICE

В процессе установки системы ввода-вывода драйвер загрузочного устройства мог не инициализировать устройство, с которого система пыталась загрузиться, или файловая система, которая должна была читать это устройство, либо не инициализировалась, либо просто не распознала информацию на устройстве как структуру файловой системы. В приведенном выше случае первым аргументом является адрес информационной структуры unicode, которая представляет собой ARC-имя устройства, с которого вы пытались загрузиться. Во втором случае первый аргумент является адресом объекта устройства, которое не может быть смонтировано.

Если эта ошибка возникает при первоначальной установке системы, то возможно, что система была установлена на диск или контроллер SCSI, который не поддерживается. Обратите внимание, что некоторые контроллеры поддерживаются только драйверами из библиотек Windows (WDL), которые должны быть установлены в режиме выборочной установки.

Эта ошибка также может возникнуть после установки нового SCSI адаптера или контроллера или после изменения системных разделов. На системах x86 вам необходимо отредактировать BOOT.INI; в системах ARC необходимо запустить Setup.

Нажмите здесь для получения дополнительной информации:

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

  1. Проверьте память на наличие ошибок.
  2. Проверьте жесткий диск на наличие ошибок и вирусов.
  3. Проверьте загрузочный сектор (MBR) на наличие вирусов.
  4. Проверьте ваше оборудование.
  5. Обновите драйверы.
0x0000007C

BUGCODE_NDIS_DRIVER

Данная проверка ошибки указывает на наличие проблемы с драйвером NDIS.

Этот драйвер (NDIS Bugcheck) для Windows Server 2003 — Windows 7.

Для Windows 2000 и Windows XP см. файл справки «Для Windows 2000 и Windows XP». Ошибка 0x000000D2, BUGCODE_ID_DRIVER.

Переустановите драйвер NDIS.

0x0000007D

INSTALL_MORE_MEMORY

Эта ошибка указывает на то, что у вас недостаточно памяти для запуска Microsoft Windows.

Для работы Windows необходимо не менее 5 МБ оперативной памяти.

Установите дополнительную память.

0x0000007E

SYSTEM_THREAD_EXCEPTION_NOT_HANDLEDДля этого кода существует отдельная страница.

Перейти к описанию

0x0000007F

UNEXPECTED_KERNEL_MODE_TRAP

Эта ошибка означает, что произошло неожиданное исключение или прерывание в режиме ядра, при котором ядро не справляется.

Ошибка также может быть вызвана прерыванием, которое приводит к немедленной смерти в виде двойной ошибки. Первое число в коде ошибки — это количество прерываний (8 = двойная ошибка). Чтобы узнать больше о том, что представляет собой это прерывание, обратитесь к руководству по семейству Intel x86.

Короче говоря, ошибка возникает, когда процессор допускает ошибку, которую не может обработать ядро. Ошибка чаще всего вызвана плохими блоками оперативной памяти, а иногда — разгоном процессора.

Попробуйте отключить функцию синхронной передачи данных в BIOS.

РЕШЕНИЕ

Устранение неполадок: Если в компьютере установлено новое оборудование, его необходимо отключить. Если причиной сбоя стало имеющееся оборудование, необходимо удалить или заменить аппаратный компонент(ы) компьютера, который может быть сломан.

Просканируйте оперативную память на наличие ошибок.

Убедитесь, что все компоненты вашего компьютера установлены правильно. Почистите контакты адаптера.

Обновление BIOS.

Все жесткие диски, контроллеры жестких дисков и адаптеры SCSI должны быть совместимы с установленной версией Windows.

Если в сообщении об ошибке указан драйвер, отключите или обновите этот драйвер. Отключите или удалите любые драйверы или службы, которые были недавно добавлены. Если ошибка возникает при загрузке Windows и системный раздел отформатирован в файловой системе NTFS, используйте безопасный режим для переустановки или удаления неисправного драйвера. Если драйвер используется в качестве процесса запуска системы в безопасном режиме, запустите компьютер с помощью консоли восстановления, чтобы получить доступ к файлу.

Перезагрузите компьютер и нажмите F8 в меню текстового режима, чтобы отобразить параметры загрузки операционной системы. В этом меню выберите «Загрузить последнюю успешную конфигурацию». Этот вариант наиболее эффективен, когда в систему одновременно добавляется только один драйвер или служба.

Разгон процессора может привести к этой ошибке. Сбросьте тактовую частоту процессора до значения по умолчанию.

Убедитесь, что система зарегистрирована в Event Viewer. Если вы найдете там информацию об ошибке, вы сможете определить устройство или драйвер, который вызывает ошибку 0x0000007F.

Отключите кэш-память BIOS.

Если ошибка UNEXPECTED_KERNEL_MODE_TRAP возникает во время обновления до новой версии Windows, она может быть вызвана драйвером устройства, системной службой, антивирусной программой или программой резервного копирования, которые несовместимы с новой версией. Удалите все сторонние драйверы устройств и системные службы, отключите антивирусные программы.

Установите последнюю версию пакета обновления Windows.

Если предыдущие шаги не помогли решить проблему, отнесите материнскую плату в ремонтную мастерскую для диагностики. Трещины, царапины или неисправные компоненты на материнской плате могут вызвать эту ошибку.

0x00000080

NMI_HARDWARE_FAILURE

Ошибка инициализации ядра на данном оборудовании.

Эта ошибка указывает на проблему с аппаратным обеспечением.

0x00000081

SPIN_LOCK_INIT_FAILURE

Эта ошибка появляется очень редко.

0x00000082

DFS_FILE_SYSTEM

Ошибки распределенной файловой системы.

Обновите ОС.

0x00000083

OFS_FILE_SYSTEM

Это указывает на проблему с файловой системой OFS.

Проверьте жесткий диск на наличие ошибок.

0x00000084

RECOM_DRIVER

Это указывает на проблему с драйвером RECOM.

0x00000085

SETUP_FAILURE

Во время установки произошла фатальная ошибка.

Текстовая форма setup`a больше не использует bugcheck для устранения серьезных ошибок. Так вы никогда не столкнетесь с 0x8Все проверки ошибок были заменены более дружественными и (по возможности) более информативными сообщениями об ошибках. Однако некоторые авторы ошибок были просто заменены нашими экранами проверки ошибок, и код этих ошибок остался прежним. Эти ошибки перечислены ниже.)

0: Шрифт OEM HAL — недопустимый формат файла *.fon, поэтому установка не смогла отобразить текст. Это означает, что vgaxxx.fon на компакт-диске или дискете поврежден.

1: Не удалось инициализировать видео. Эта ошибка имеет свой собственный экран, и у пользователя есть только 2 опции.

Это означает, что файл vga.sys (или другой драйвер, в зависимости от машины) поврежден, или что данное оборудование не поддерживается.

Причина ошибки:

0: NtCreateFile of devicevideo0

1: IOCTL_VIDEO_QUERY_NUM_AVAIL_MODES

2: IOCTL_VIDEO_QUERY_AVAIL_MODES

3: Не поддерживается требуемый видеорежим. Это указывает на внутреннюю ошибку установки.

4: IOCTL_VIDEO_SET_CURRENT_MODE (невозможно установить видеорежим)

5: IOCTL_VIDEO_MAP_VIDEO_MEMORY

6: IOCTL_VIDEO_LOAD_AND_SET_FONT (3 — код состояния вызова NT API)

2: Недостаточный объем памяти. Эта ошибка теперь использует более дружественный экран, в зависимости от того, насколько далеко зашла установка.

3: Клавиатура не была инициализирована. Теперь есть 2 разных экрана, в зависимости от ошибок, которые могли здесь возникнуть. Это может означать, что диск с драйверами для клавиатуры (i8042prt.sys или kbdclass.sys) поврежден или на компьютере установлена клавиатура, которая не поддерживается.

Это также может означать, что dll раскладки клавиатуры не может быть загружена.

Причина ошибки

0: NtCreateFile of deviceKeyboardClass0 .

При установке не удалось обнаружить клавиатуру, подключенную к компьютеру.

1: Невозможно загрузить dll раскладки клавиатуры.

Установка не может загрузить dll раскладки клавиатуры .

Это означает, что на дискете или CD нет файла (kbdus.dll для нас или других dll).

4: Установка не смогла выяснить путь к устройству, с которого началась установка. Это внутренняя ошибка установки.

5: Сбой проверки разделов. Это указывает на ошибку в драйвере диска. Параметры имеют значения только для группы установки.

0x0000008B

MBR_CHECKSUM_MISMATCH

Эта ошибка возникает во время загрузки операционной системы, когда контрольная сумма MBR, вычисленная операционной системой Microsoft Windows, не совпадает с контрольной суммой загрузчика системы.

Этот BSoD указывает на наличие вирусов.

Проверьте операционную систему на наличие вирусов с помощью актуального антивирусного программного обеспечения.

0x0000008E

PAGE_FAULT_IN_NON_PAGED_AREA

Этот BSoD является распространенной ошибкой. Чтобы интерпретировать ее, необходимо определить, какое исключение было сгенерировано.

Существуют следующие коды исключений:

0x80000002: STATUS_DATATYPE_MISALIGNMENT указывает на невыровненную ссылку на данные;

0x80000003: STATUS_BREAKPOINT. Указывает на ситуацию, когда система сталкивается с контрольной точкой или ASSERT без подключенного отладчика ядра;

0xC0000005: STATUS_ACCESS_VIOLATION указывает на нарушение доступа к памяти.

Для устранения ошибки необходимо:

Убедитесь, что на системном разделе диска достаточно свободного места;

Если в сообщении об ошибке указан драйвер, отключите или обновите его;

Замените видеокарту;

Обновите BIOS;

Отключите опции кэширования и затенения памяти BIOS.

Параметр 2 (адрес исключения) должен идентифицировать драйвер или функцию, вызвавшую ошибку.

Если причины исключения не установлены, рассмотрите следующие проблемы:

Несовместимость аппаратного обеспечения. Убедитесь, что вновь установленное оборудование совместимо с установленной версией Windows;

Причиной ошибки может быть неисправный драйвер устройства или системная служба. Аппаратные проблемы, такие как несовместимость BIOS, конфликты памяти и IRQ, также могут вызывать синий экран.

Если имя драйвера указано в списке ошибок, его необходимо удалить или отключить. Также удалите или отключите все недавно добавленные драйверы и службы. Если ошибка возникает при запуске системы и системный раздел отформатирован в файловой системе NTFS, необходимо использовать Безопасный режим для удаления неисправного драйвера. Если драйвер используется как часть системного процесса для запуска безопасного режима, вам потребуется запустить компьютер с помощью консоли восстановления, чтобы получить доступ к файлу.

Если BSoD указывает на системный драйвер Win32k.Источником ошибки может быть сторонняя программа дистанционного управления. Если есть такое программное обеспечение, его необходимо удалить.

Убедитесь, что система вошла в Event Viewer. Информация об ошибке поможет определить устройство или драйвер, который вызывает Stop 0x0000008E.

Отключите кэширование памяти BIOS. Обновление микропрограммы BIOS.

Необходимо также запустить диагностику аппаратного обеспечения. Просканируйте оперативную память на наличие ошибок.

Синий экран KERNEL_MODE_EXCEPTION_NOT_HANDLED может возникнуть после первого перезапуска при установке Windows или после завершения установки. Возможная причина — недостаток дискового пространства для установки. Удалите все временные файлы, файлы интернет-кэша, файлы резервных копий приложений и .файлы chk. Вы можете использовать другой жесткий диск с большей емкостью.

0x0000008F

PP0_INITIALIZATION_FAILED

Это сообщение появляется, если инициализация фазы 0 диспетчера Plug and Play в режиме ядра не удалась (kernel-mode Plug and Play Manager failed). Нет ничего, что могло бы вызвать эту ошибку.

0x00000090

PP1_INITIALIZATION_FAILED

Ошибка возникает во время инициализации первичной фазы менеджера Plug and Play в режиме ядра. На этом этапе инициализируются системные файлы, драйверы и реестр.

Проверьте аппаратное обеспечение и системный диск.

0x00000091

WIN32K_INIT_OR_RIT_FAILURE

UNKNOWN

0x00000092

UP_DRIVER_ON_MP_SYSTEM

Эта ошибка возникает только при загрузке однопроцессорного драйвера в системе с более чем одним активным процессором.

0x00000093

INVALID_KERNEL_HANDLE

Эта ошибка возникает, когда некоторый код ядра (e.g. сервер, перенаправитель или другой драйвер) попытался закрыть недопустимый дескриптор или защищенный дескриптор.

Параметры:

1 — Вызванный дескриптор NtClose

2 — 0 означает, что защищенный хэндл был закрыт

1 означает, что был закрыт недопустимый дескриптор

Клиентская служба Novell NetWare версии 3 также может вызывать ошибку.5b.

0x00000094

KERNEL_STACK_LOCKED_AT_EXIT

Это сообщение появляется, когда поток существует, а его стек помечен как заблокированный.

Проблема вызвана драйвером оборудования.

Обновите драйверы.

0x00000095

PNP_INTERNAL_ERROR

UNKNOWN

0x00000096

INVALID_WORK_QUEUE_ITEM

Эта проверка на ошибку указывает на удаление элемента очереди, содержащего нулевой указатель.

Это сообщение появляется, когда KeRemoveQueue удаляет очередь данных, а поле flink или blink равно 0. Почти всегда это происходит из-за неправильного применения кода рабочего элемента текущего объекта, но неправильное применение любой очереди также может привести к этой ошибке. Правило — данные могут быть помещены в очередь только один раз. Когда элемент удаляется из очереди, его поле flink равно 0. Эта ошибка возникает при попытке удалить данные, поля flink или blink которых равны 0. Чтобы устранить эту ошибку, необходимо выяснить, к какой очереди она относится. Если эта очередь является одной из рабочих очередей EX (ExWorkerQueue), то удаляемый объект является WORK_QUEUE_ITEM. Эта ошибка предполагает, что причина заключается в следующем. Параметры ошибки помогают определить драйвер, который неправильно использует очередь.

Проблема вызвана неправильным драйвером оборудования.

0x00000097

BOUND_IMAGE_UNSUPPORTED

MmLoadSystemImage был вызван для загрузки образа. Это не поддерживается ядром. Убедитесь, что привязка.exe не был запущен для изображения.

Параметры:

  1. Обращение к данным в очереди, поле flink/blink которых равно нулю.
  2. Обращение к очереди ссылок. Обычно это одна из очередей ExWorkerQueues.
  3. Начальный адрес массива ExWorkerQueue. Это покажет, является ли данная очередь одной из очередей ExWorkerQueue, и если да, то смещение от этого параметра покажет очередь.
  4. Если это очередь ExWorkerQueue (как это обычно бывает), то это адрес запущенной процедуры, которая была бы вызвана, если бы запущенный элемент был действительным. Это может быть использовано для идентификации драйвера, который неправильно использует рабочую очередь.

Проблема вызвана неправильным аппаратным драйвером.

0x00000098

END_OF_NT_EVALUATION_PERIOD

Эта проверка на ошибку указывает на то, что пробный период для операционной системы Microsoft Windows закончился.

0x00000099

INVALID_REGION_OR_SEGMENT

ExInitializeRegion или ExInterlockedExtendRegion был вызван с неправильным набором параметров.

0x0000009A

SYSTEM_LICENSE_VIOLATION

Операционная система Microsoft Windows обнаружила нарушение лицензионного соглашения.

BSoD возникает, когда пользователь пытается изменить тип продукта автономной системы или когда изменяется испытательный срок оценочного модуля Windows.

0x0000009B

UDFS_FILE_SYSTEM

Одной из возможных причин появления синего экрана является поврежденный жесткий диск. Повреждение файловой системы или плохие блоки (сектора) на диске могут вызвать эту ошибку. Поврежденные драйверы SCSI и IDE также могут негативно влиять на способность системы читать и записывать на жесткий диск, вызывая эту ошибку.

Другой возможной причиной является исчерпание пула необработанной памяти. Во время процесса индексирования, если объем доступного пула необработанной памяти очень мал, другой драйвер, требующий пул необработанной памяти, может вызвать ошибку.

Устраните повреждение диска: Проверьте Event Viewer на наличие сообщений об ошибках SCSI и FASTFAT или Autochk (журнал приложений), которые могут точно определить устройство или драйвер, вызывающий ошибку. Попробуйте отключить любые антивирусные программы, программы копирования или дефрагментаторы диска, которые постоянно следят за системой. Также необходимо выполнить аппаратную диагностику системы.

Выполните команду chkdsk/f/r для обнаружения и устранения любых структурных повреждений файловой системы. Необходимо перезагрузить систему, прежде чем начнется сканирование диска на системном разделе.

Вам нужно решить проблему истощенного пула памяти, который не выгружается: добавьте в компьютер новую физическую память. Это увеличит объем пула непрокачиваемой памяти, доступной ядру.

0x0000009C

MACHINE_CHECK_EXCEPTION

Фатальное исключение при проверке машины.

Это происходит из-за того, что процессор вашего компьютера обнаруживает ошибку и сообщает о ней Windows XP. Для этого используется Machine Check Exception (MCE) для процессоров Pentium или Machine Check Architecture (MCA) для некоторых процессоров Pentium Pro. Ошибка может быть вызвана следующим:

Ошибки системной шины

Проблемы с четностью памяти или кодом коррекции ошибок (ECC)

Проблемы с кэшированием в процессоре или аппаратном обеспечении

Проблема с Translation Lookaside Buffers (TLB) в центральном процессоре

Другие проблемы процессора

Другие аппаратные проблемы

Решение:

Ошибка может возникнуть, если:

  1. Вы разогнали процессор или шину. В этом случае установите рабочие параметры в соответствии с рекомендациями производителя.
  2. Нестабильное питание. Убедитесь, что ваш блок питания работает правильно.
  3. Перегрев. Перегрев компонентов может привести к этой ошибке. Убедитесь, что все вентиляторы работают правильно.
  4. Поврежденная память или память, не подходящая для вашего компьютера. Убедитесь, что память работает правильно и что модель совместима с вашей конфигурацией.

Добавление:

Эта ошибка также может возникнуть, если:

  1. Вы изменили настройки BIOS, влияющие на конфигурацию ядра
  2. Вы установили HP из чужого образа системы
  3. У вас неправильно подключено какое-то оборудование

Это происходит потому, что проверка машины не соответствует уже установленной конфигурации ядра.

В операционных системах Windows Vista и более поздних версиях синий экран 0x0000009C возникает только при следующих обстоятельствах:

WHEA не полностью инициализирована;

Все процессоры, которые сходятся, не имеют ошибок в своих регистрах.

При других обстоятельствах эта ошибка заменяется BSoD 0x00000124: WHEA_UNCORRECTABLE_ERROR.

0x0000009E

USER_MODE_HEALTH_MONITOR

Эта проблема возникает из-за враждебных отношений между потоком, освобождающим стек ядра, и другим потоком, выделяющим память.. Эта проблема возникает, если попытки выделения памяти происходят до того, как рабочий поток очистит стек памяти ядра.

Аппаратные механизмы обнаружили службы режима ядра, которые не запущены. Однако проблемы исчерпания ресурсов (включая утечки памяти, конкуренцию блокировок) могут блокировать критически важные компоненты пользовательского режима без блокировки ожидающих вызовов процедур (DPC) или истощения пула непрокачиваемой памяти.

В операционных системах Microsoft Windows Server 2003, Enterprise Edition, Windows Server 2003, Datacenter Edition и Windows 2000 с пакетом обновления 4 (SP4) BSoD может быть вызван пользовательским режимом. Синий экран 0x0000009E возникает, только если пользователь установил HangRecoveryAction на 3.

Также ошибка может возникать при добавлении дополнительных дисковых накопителей для отказоустойчивых кластеров в Windows Server 2008 R2

0x0000009F

DRIVER_POWER_STATE_FAILURE

Драйвер находится в несовместимом или нестабильном состоянии питания. Возникает в большинстве случаев из-за сбоев питания, во время выключения, режима ожидания или гибернации.

Windows XP и более поздние версии

Причина:

Причиной этой остановки является драйвер устройства, который не пережил вызов для перехода в другое состояние питания.

Решение:

Вам необходимо обновить или удалить сломанный драйвер устройства или драйвер фильтра файловой системы, который мог быть установлен антивирусом, программой удаленного доступа или CDW/CDRW.

Примените следующее для обнаружения драйвера:

  1. Используйте %SystemRoot%System32Sigverif.exe для проверки драйверов, не прошедших тесты Microsoft (неподписанные драйверы).
  2. Проверьте наличие обновлений драйверов у поставщика системы.
  3. Обновите программное обеспечение, которое может иметь драйверы фильтра файловой системы.
  4. Удалите аппаратные компоненты, а также программное обеспечение, в котором нет необходимости.
  5. Установите другую Windows на другой раздел. И вы устанавливаете программное обеспечение, сразу же проверяя его, пока не найдете уязвимую программу.
0x000000A0

INTERNAL_POWER_ERROR

Указывает на фатальную ошибку менеджера управления питанием.

При попытке перевести компьютер с Windows Vista или Windows Server 2008 в спящий режим появляется сообщение о неразрешимой ошибке.

Эта проблема вызвана ошибкой в файле Atapi.sys. Перед переходом в спящий режим Windows Vista записывает на диск файл гибернации памяти. Однако в некоторых случаях диск может не вернуть правильное значение при попытке инициализации соответствующего стека системного хранилища. Когда диск хранения возвращает недопустимое значение, Windows Vista перестает отвечать на запросы.

Обновите свою ОС

0x000000A1

PCI_BUS_DRIVER_INTERNAL

0x000000A1 возникает при обнаружении несоответствия в структуре драйвера внутренней шины PCI и не может быть продолжено.

0x000000A2

MEMORY_IMAGE_CURRUPT

0x000000A2 указывает на поврежденный исполняемый образ в памяти.

Контрольная сумма памяти (CRC) перестает работать.

Проверьте память на наличие ошибок.

0x000000A3

ACPI_DRIVER_INTERNAL

0x000000A3 указывает на то, что драйвер ACPI обнаружил внутреннее несоответствие.

Несоответствие в драйвере ACPI настолько серьезное, что продолжение работы приведет к серьезным проблемам.

Возможным источником данной проблемы является ошибка BIOS.

0x000000A4

CNSS_FILE_SYSTEM_FILTER

0x000000A4 указывает на ошибку в фильтре файловой системы CNSS.

BSoD CNSS_FILE_SYSTEM_FILTER может возникнуть из-за переполнения пула памяти без возможности прокачки. Если пул непрокачиваемой памяти абсолютно полон, эта ошибка может остановить работу системы. Если в процессе индексации доступный пул необработанной памяти очень мал, другой драйвер, которому нужен пул необработанной памяти, может вызвать такую же ошибку.

Решите проблему с исчерпанием пула подкачки: добавьте в компьютер новую физическую память. Это позволит увеличить объем пула подкачиваемой памяти, доступной ядру.

0x000000A5

ACPI_BIOS_ERROR

Это сообщение вызвано постоянными сбоями в BIOS ACPI. Невозможно устранить эту проблему на уровне операционной системы. Необходим детальный анализ.

Это может произойти, если обнаружено, что BIOS компьютера не полностью соответствует конфигурации и питанию (ACPI).

Чтобы устранить эту проблему, обратитесь к производителю компьютера, чтобы получить обновление BIOS, полностью соответствующее стандарту ACPI.

Чтобы временно решить эту проблему, необходимо вручную установить стандартный уровень абстракции аппаратного обеспечения компьютера (HAL):

Перезагрузите компьютер и повторно запустите программу установки.

После перезапуска программы установки нажмите F7 (не F6), когда появится запрос «Нажмите F6, если вам нужно установить специальный драйвер SCSI или RAID».».

Windows автоматически отключает настройки ACPI HAL и устанавливает PC HAL по умолчанию.

0x000000A7

BAD_EXHANDLE

Эта ошибка означает, что при проверке в режиме ядра в таблице дескрипторов обнаружена несогласованная запись в таблице состояния.

0x000000AB

SESSION_HAS_VALID_POOL_ON_EXIT

Эта ошибка означает, что проверка сеанса загрузки произошла, когда сеанс драйвера все еще находился в памяти.

Ошибка возникает из-за того, что драйвер сессии не освобождает свой пул выделений перед выгрузкой сессии. Эта проверка указывает на ошибку в Win32k.sys, Atmfd.dll, Rdpdd.dll, или видеодрайвер.

0x000000AC

HAL_MEMORY_ALLOCATION

Эта ошибка указывает на то, что проверка уровня абстракции аппаратного обеспечения (HAL) не смогла получить достаточно свободной памяти.

Проверьте ОС на наличие вирусов.

0x000000AD

VIDEO_DRIVER_DEBUG_REPORT_REQUEST

Эта проверка на ошибку указывает на то, что видеопорт создал несмертельный минидамп от имени видеодрайвера во время выполнения.

Проверка ошибки VIDEO_DRIVER_DEBUG_REPORT_REQUEST может быть вызвана только созданием минидампа, но не созданием полного дампа или дампа ядра.

0x000000B4

VIDEO_DRIVER_INIT_FAILURE

Windows не удалось загрузить драйвер видеокарты. Проблема в основном связана с видеодрайверами или произошел аппаратный конфликт с видеокартой. Перезагрузитесь в безопасном режиме и смените видеодрайвер на тот, который установлен по умолчанию.

0x000000B8

ATTEMPTED_SWITCH_FROM_DPC

Это указывает на то, что подпрограмма отложенного вызова процедур (DPC) попыталась выполнить недопустимую операцию.

Трассировка стека приведет к коду в исходной подпрограмме DPC, который вызвал ошибку.

0x000000B9

CHIPSET_DETECTED_ERROR

Система остановилась из-за критических ошибок в чипсете.

  1. Если ошибка возникает после того, как система проработала некоторое время, и если она не возникает на холодном компьютере, проверьте, не перегревается ли чипсет на материнской плате.
  2. Установите драйверы для чипсета.
  3. Проверьте работоспособность материнской платы, используя диагностическое программное обеспечение.
0x000000BA

SESSION_HAS_VALID_VIEWS_ON_EXIT

Это указывает на то, что драйвер сеанса все еще отображает представления, когда сеанс выгружен.

Проблемы с видео или драйвером.

В первую очередь необходимо проверить драйвер для вашей видеокарты и работоспособность самой карты.

0x000000BB

NETWORK_BOOT_INITIALIZATION_FAILED

Эта ошибка означает, что Windows не смогла успешно загрузиться по сети.

Эта ошибка возникает, когда Windows загружается из сети, и критическая функция перестала работать во время инициализации ввода-вывода.

Проверьте состояние сети и доступность сервера.

0x000000BC

NETWORK_BOOT_DUPLICATE_ADDRESS

Это указывает на то, что во время начальной загрузки сети этой машине был назначен двойной IP-адрес.

Если вы установили его вручную, проверьте, правильно ли установлен IP-адрес. Или вы можете просто заменить его на новый.

0x000000BE

ATTEMPTED_WRITE_TO_READONLY_MEMORY

Драйвер попытался выполнить запись в память, доступную только для чтения. Обычно это происходит после сбоя драйвера оборудования, системной службы, перепрошивки BIOS. Если имя драйвера указано в ошибке, попробуйте устранить проблему, отключив, удалив или откатив драйверы.

Удалите последнюю установленную программу, обновите драйверы и установите последние обновления.

0x000000BF

MUTEX_ALREADY_OWNED

Несанкционированная попытка доступа к сигнальному объекту.

Скорее всего, вам придется восстановить систему из резервной копии или переустановить ее. Но сначала вы можете попробовать установить последние обновления.

Проблема также может существовать на аппаратном уровне.

0x000000C1

SPECIAL_POOL_DETECTED_MEMORY_CORRUPTION

Один из драйверов не записывается в свое пространство памяти.

Если ошибка была вызвана установкой нового программного обеспечения, то отмените установку. Также может помочь обновление системы.

0x000000C2

BAD_POOL_CALLER

Ядро системы или драйвер передали недопустимую команду доступа к памяти. Обычно причиной этой ошибки является плохой драйвер или программное обеспечение.

Попытайтесь выяснить, какая программа вызывает ошибку.

Также имеет смысл запустить тест памяти.

0x000000C3

BUGCODE_PSS_MESSAGE_SIGNATURE

UNKNOWN

0x000000C4

DRIVER_VERIFIER_DETECTED_VIOLATION

Время от времени Windows проверяет драйверы на наличие фатальных ошибок. Эта остановка, означает, что проверка не удалась и в одном из драйверов, есть критические ошибки

Найдите нефункциональный драйвер и обновите его.

0x000000C5

DRIVER_CORRUPTED_EXPOOL

Один из драйверов пытается обратиться к области памяти, которая не является его собственной или не существует.

Проблема может быть вызвана неправильным программным обеспечением, а также проблемами с драйверами и операционной системой. Поэтому необходимо локализовать и, если возможно, обновить программное обеспечение.

0x000000C6

DRIVER_CAUGHT_MODIFYING_FREED_POOL

Драйвер пытается получить доступ к свободному пространству памяти, к которому у него нет доступа.

Обновите драйверы, установите последние обновления. Попробуйте удалить последнюю установленную программу.

0x000000C7

TIMER_OR_DPC_INVALID

Системный таймер или отложенный вызов DPC был обнаружен в не предназначенной для этого области памяти.

Если проблема вызвана последней установленной программой, удалите ее. Также эта проблема может быть вызвана некорректными драйверами и ошибками Windows.

0x000000C8

IRQL_UNEXPECTED_VALUE

Процесс вызвал прерывание, которое не ожидалось ядром или не может быть вызвано. Первый параметр вида 0x00AABSS указывает, какое прерывание было вызвано AA, а какое ожидалось BB

Обычно ошибка вызвана либо драйверами, либо самой операционной системой.

0x000000C9

DRIVER_VERIFIER_IOMANAGER_VIOLATION

Обычно это происходит из-за неправильной установки одного из драйверов или ошибки в одном из драйверов. Кроме того, данная ошибка часто может возникать вместе с несколькими другими остановками.

Обновите драйверы.

0x000000CA

PNP_DETECTED_FATAL_ERROR

Несколько причин:

Некоторые из установленных аппаратных средств неправильно обнаружены службой Plug and play.

Результат автоматического обновления.

Оба варианта встречаются довольно часто.

Поэтапно отключите оборудование и найдите неисправное устройство.

Если ошибка появилась после обновления системы и она не загружается в безопасном режиме теперь *в большинстве случаев загружается*, то поможет либо переустановка, либо восстановление windows.

Если каким-то чудом и винда загрузилась в безопасном режиме или в последней удачной конфигурации, то можно откатить обновления и последние установленные программы.

0x000000CB

DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS

Возникает, как правило, при резервном копировании данных или при использовании удаленных вызовов процедур и выполнении программ на удаленной машине.

Ошибка указывает на то, что драйвер или диспетчер ввода/вывода не может открыть заблокированные страницы после операции ввода/вывода. Имя драйвера может быть указано на синем экране STOP-ошибки.

0x000000CC

PAGE_FAULT_IN_FREED_SPECIAL_POOL

Это указывает на то, что система обратилась к памяти, которая была ранее освобождена.

Если система смогла определить, в каком драйвере или библиотеке произошла ошибка, то будет отображено его имя.

Обычно это указывает на проблему синхронизации с системным драйвером.

Попытайтесь найти причину сбоя, неисправную программу или драйвер. Если ошибка возникает после установки программ или обновлений, откатите их.

0x000000CD

PAGE_FAULT_BEYOND_END_OF_ALLOCATION

Указывает на то, что система обратилась к памяти, выйдя за пределы некоторого пула распределения драйвера.

Обновите драйверы.

0x000000CE

DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS

Драйвер не может отменить зависшее состояние компонентов системы. Фатальные ошибки обычно возникают после установки плохих драйверов или служебных компонентов.

0x000000CF

TERMINAL_SERVER_DRIVER_MADE_INCORRECT_MEMORY_REFERENCE

Это указывает на то, что драйвер не был правильно перенесен на терминальный сервер.

0x000000D0

DRIVER_CORRUPTED_MMPOOL

Это указывает на то, что система пыталась получить доступ к недействительной памяти в процессе IRQL, который был слишком высок.

Если вы недавно установили какое-либо новое программное обеспечение, убедитесь, что оно установлено правильно. Проверьте наличие обновленных драйверов на веб-сайте производителя.

Альтернативный метод открыть реестр HKEY_LOCAL_MACHINE SYSTEM CurrentControlSet Control Session Manager Memory Management. В этом ключе создайте и отредактируйте параметр ProtectNonPagedPool и установите его значение в DWORD 1.

0x000000D1

DRIVER_IRQL_NOT_LESS_OR_EQUAL

Система попыталась получить доступ к памяти страницы с помощью процесса ядра через высокоуровневый IRQL. Наиболее распространенной причиной является плохой драйвер устройства. Также причиной может быть поврежденная оперативная память или поврежденный файл подкачки.

Возможные причины:

Неисправный драйвер

Неисправная оперативная память

Поврежденный файл виртуальной памяти.

0x000000D2

BUGCODE_ID_DRIVER

Это указывает на проблему с драйвером NDIS.

Эта проверка кода ошибки возникает только в Windows 2000 и Windows XP. В Windows Server 2003 и более поздних версиях соответствующий код проверки — ошибка 0x0000007C (BUGCODE_NDIS_DRIVER).

0x000000D3

DRIVER_PORTION_MUST_BE_NONPAGED

Это означает, что система пыталась получить доступ к страничной памяти в процессе IRQL, который был слишком высоким.

Эта ошибка проверки обычно вызывается драйверами, которые неправильно пометили свой собственный код или данные.

0x000000D4

SYSTEM_SCAN_AT_RAISED_IRQL_CAUGHT_IMPROPER_DRIVER_UNLOAD

Это означает, что драйвер не отменил запланированные операции перед выгрузкой.

0x000000D5

DRIVER_PAGE_FAULT_IN_FREED_SPECIAL_POOL

Это указывает на то, что драйвер обратился к памяти, которая была освобождена ранее.

0x000000D6

DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION

Указывает на то, что драйвер обратился к памяти за пределы выделенного ему пула.

0x000000D7

DRIVER_UNMAPPING_INVALID_VIEW

Указывает, что драйвер пытается удалить адрес, который не был отображен.

0x000000D8

DRIVER_USED_EXCESSIVE_PTES

Это означает, что в системе больше нет остаточных записей таблицы страниц (PTE).

Обычно это происходит при нехватке записей таблицы страниц (PTE), когда драйверу требуется слишком много системной памяти.

0x000000D9

MUTEX_ALREADY_OWNED

Это указывает на то, что внутренние структуры отслеживания заблокированной страницы были повреждены.

0x000000E0

ACPI_BIOS_FATAL_ERROR

Это указывает на неисправность одного из компонентов компьютера.

0x000000E1

WORKER_THREAD_RETURNED_AT_BAD_IRQL

Указывает, что рабочий поток завершился и вернулся с IRQL> = УРОВЕНЬ_ДИСПЕТЧЕРИЗАЦИИ.

Виртуальные машины Windows Server 2008 на Hyper-V генерируют ошибку остановки, когда NLB (балансировка сетевой нагрузки) настроена или когда кластер NLB (балансировка сетевой нагрузки) не сходится, как ожидалось

Windows Server 2008 — Обновление ОС.

0x000000E2

MANUALLY_INITIATED_CRASH

Это указывает на то, что пользователь сознательно инициировал ошибку либо из отладчика ядра, либо с клавиатуры.

0x000000E3

RESOURCE_NOT_OWNED

Это указывает на то, что поток пытался освободить ресурс, которого у него не было.

Различные сбои, связанные с файловой системой, вызывают эту ошибку STOP.

Для Windows Vista или Windows Server 2008 эта проблема может возникнуть на Symantec 11.0 выпуск 2 (MB2) защищенного компьютера. Если это произошло, пожалуйста, обновите операционную систему.

0x000000E4

WORKER_INVALID

Это указывает на то, что память, которая не должна содержать исполнительный элемент рабочего, содержит такой элемент, или что текущий активный элемент рабочего был поставлен в очередь.

Обычно это вызвано тем, что драйверы освобождают память, в которой все еще содержится рабочий исполняемый файл.

0x000000E6

DRIVER_VERIFIER_DMA_VIOLATION

Это код контроля ошибок для всех сбоев проверки DMA верификатора драйверов.

0x000000E7

INVALID_FLOATING_POINT_STATE

Это указывает на то, что сохраненное состояние потока с плавающей точкой недействительно.

0x000000E8

INVALID_CANCEL_OF_FILE_OPEN

Это указывает на то, что в IoCancelFileOpen был передан недопустимый объект файла.

0x000000E9

ACTIVE_EX_WORKER_THREAD_TERMINATION

Это указывает на то, что активный рабочий поток исполнительного механизма завершается.

0x000000EA

THREAD_STUCK_IN_DEVICE_DRIVER

Это указывает на то, что поток в драйвере устройства бесконечно вращается.

Эта проблема возникает, если графический адаптер входит в бесконечный цикл, ожидая освобождения видеоустройства. Для устранения проблемы необходимо установить последнюю версию драйвера видеоадаптера.

0x000000EB

DIRTY_MAPPED_PAGES_CONGESTION

Указывает на отсутствие свободных страниц для продолжения операций.

0x000000EC

SESSION_HAS_VALID_SPECIAL_POOL_ON_EXIT

Это означает, что сеанс выгрузки произошел, когда сеанс драйвера все еще находился в памяти.

Это указывает на ошибку в Win32k.sys, atmfd.dll, rdpdd.dll или видеодрайвер.

0x000000ED

UNMOUNTABLE_DISK_VOLUME

Система ввода/вывода ядра пыталась смонтировать устройство для загрузки системы, и это не удалось. Эта ошибка может возникнуть во время обновления до Windows XP в системе, в которой используются высокопроизводительные диски или контроллеры ATA, и они соединены кабелем с низкой пропускной способностью. В некоторых случаях после перезагрузки система может продолжать работать без видимых сбоев. Эта ошибка часто появляется после некорректного зависания Windows. Чтобы исправить ситуацию, используйте EMRD или ERCD и выберите в меню режим 3 (коррекция NTFS).

1) Существует вероятность простого повреждения файловой системы. В этом случае можно попробовать выполнить следующие действия:

  1. Настройте BIOS вашего компьютера на загрузку с CD/DVD диска.
  2. Вставьте установочный компакт-диск с Windows XP и загрузите с него компьютер.
  3. Запустите консоль восстановления вместо установки операционной системы (клавиша R на соответствующем экране).
  4. В командной строке консоли восстановления выполните команду: chkdsk c: /F /X /R
  5. (командные ключи могут немного отличаться, выполните команду chkdsk /? )
  6. После завершения команды перезагрузите компьютер.

P.S: Если по какой-то причине консоль восстановления не запускается, вы можете использовать другие LiveCD (e.g. BartPE, ERD Commander, OO BlueCon — из всех них можно запустить одну и ту же команду chkdsk)

2) Возможно, произошел аппаратный сбой и ваш жесткий диск вышел из строя. Попробуйте запустить систему в безопасном режиме.

Если проблема повторится, переустановите систему в режиме обновления.

= В случае неудачи может потребоваться замена аппаратного обеспечения.

0x000000EF

CRITICAL_PROCESS_DIED

Это указывает на то, что критический системный процесс умер.

0x000000F1

SCSI_VERIFIER_DETECTED_VIOLATION

Это код ошибки проверки нарушения драйвера SCSI.

0x000000F3

DISORDERLY_SHUTDOWN

Выключение Windows связано с нехваткой памяти. Проверьте наличие свободного места на диске и «замороженных» программ или драйверов.

0x000000F4

CRITICAL_OBJECT_TERMINATION

Это означает, что процессы или потоки, критически важные для работы системы, были неожиданно завершены.

Ошибка 0x0F4 указывает на проблему с жестким диском, возможно, с драйвером контроллера.

Фатальная ошибка синего экрана (BSOD) возникает из-за драйвера snapman.Acronis program sys. Удаление драйверов Acronis SnapAPI.

Возникает на WinXP, если она установлена на ведомый диск. Например, на: канале IDE ведомого диска или на дисках SATA, которые не находятся на нулевом канале.

Второе условие возникновения, диск должен быть единственным.

  1. Проверьте диск на наличие логических и физических ошибок.
  2. Попробуйте изменить канал, к которому подключен диск. Например, подключите кабель к другой розетке.
  3. Замените шлейф.

Возможные причины — HDD, проверьте кабели, проверьте надежность соединения, также режимы BIOS HDD.

0x000000F5

FLTMGR_FILE_SYSTEM

Это означает, что в диспетчере фильтров произошла неустранимая ошибка.

На причину проблемы указывает значение параметра 1.

Если параметр 1 равен 0x66, вы можете отладить эту проблему, убедившись, что драйвер минифильтра зарегистрировал обратный вызов для этого задания. Текущее задание может быть найдено в структуре данных обратного вызова. (См. Параметр 2.) Использование! расширение отладчика fltkd.cbd.

Если параметр 1 равен 0x67, следует проверить, нет ли где-то в системе негерметичного пула неподписанной памяти.

Если параметр 1 равен 0x6A, убедитесь, что драйвер минифильтра не обращается к этому файловому объекту (см. раздел 6).2.Параметр 2) получите дескриптор в любой момент обработки этого задания минифильтром.

Если параметр 1 равен 0x6B или 0x6C, произошла невосстанавливаемая ошибка внутреннего состояния, которая заставит операционную систему проверить.

Если параметр 1 равен 0x6D, убедитесь, что драйвер минифильтра не вызывает FltReleaseContext слишком много раз для данного контекста (см. Параметр 2).

Если параметр 1 равен 0x6E, убедитесь, что драйвер минифильтра не вызывает FltReferenceContext после удаления данного контекста (см. Параметр 2).

0x000000F6

PCI_VERIFIER_DETECTED_VIOLATION

Это указывает на то, что произошла ошибка в BIOS или другом устройстве, проверяемом драйвером PCI.

0x000000F7

DRIVER_OVERRAN_STACK_BUFFER

Это означает, что драйвер переполнил стек буфера.

Это классическая хакерская атака — переполнение буфера. Система была переведена в нерабочее состояние, чтобы предотвратить получение злоумышленником полного контроля над ней.

Проверьте компьютер на наличие вирусов.

0x000000F8

RAMDISK_BOOT_INITIALIZATION_FAILED

Это означает, что произошел сбой инициализации при попытке загрузки с диска.

0x000000F9

DRIVER_RETURNED_STATUS_REPARSE_FOR_VOLUME_OPEN

Это указывает на то, что драйвер вернул STATUS_REPARSE на запрос IRP_MJ_CREATE без имени.

0x000000FA

HTTP_DRIVER_CORRUPTED

Это указывает на то, что HTTP (Http.sys) находится в поврежденном состоянии и не может быть восстановлен.

Системный драйвер Http.системный драйвер sys поврежден. Вам необходимо восстановить этот компонент с оригинального диска.

0x000000FC

ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY

Была предпринята попытка выполнить функцию в неисполняемой памяти.

Параметры:

  1. 1 — Адрес, с которого была предпринята попытка выполнения функции
  2. 2 — Содержание таблицы ввода страниц (PTE)

0x000000FD: DIRTY_NOWRITE_PAGES_CONGESTION

Отсутствует свободная страничная память для продолжения основных системных операций.

Параметры:

  1. Общий объем запрошенной страничной памяти
  2. Количество запрошенных страниц памяти с невозможностью записи.
  3. Код состояния при последней записи в страничную память
0x000000FD

DIRTY_NOWRITE_PAGES_CONGESTION

Это означает, что нет свободных страниц для продолжения основных системных операций.

Это указывает на ошибку драйвера.

0x000000FE

BUGCODE_USB_DRIVER

Это означает, что произошла ошибка в драйвере универсальной последовательной шины (USB).

Проблема чаще всего вызвана неисправным контроллером USB или подключенными устройствами USB. Отключите все USB-устройства от компьютера, также попробуйте отключить USB-контроллер в BIOS. Обновите драйверы USB.

0x000000FF

RESERVE_QUEUE_OVERFLOW

Это указывает на то, что была предпринята попытка включить новый элемент в резервную очередь, что привело к переполнению очереди.

0x00000100

LOADER_BLOCK_MISMATCH

Это означает, что либо блок загрузчика недействителен, либо он не соответствует загружаемой системе.

0x00000101

CLOCK_WATCHDOG_TIMEOUT

Эта ошибка указывает на то, что ожидаемое прерывание синхроимпульса на вторичном процессоре в многопроцессорной системе не было получено в течение отведенного интервала времени.Данный процессор не обрабатывает прерывания. Обычно это происходит, когда процессор не отвечает или входит в бесконечный цикл.

Обновите операционную систему.

0x00000103

MUP_FILE_SYSTEM

Эта ошибка указывает на то, что провайдер множественного интернет-протокола (MUP) столкнулся с недействительными или неожиданными данными. В результате MUP не может сформировать запрос канала от удаленной файловой системы к сетевому перенаправителю.

0x00000104

AGP_INVALID_ACCESS

Графический процессор попытался выполнить запись в память, которая не была для него зарезервирована. Ошибка связана с видеодрайвером или старой версией BIOS.

  1. Обновите драйверы видеокарты.
  2. Обновить BIOS.
0x00000105

AGP_GART_CORRUPTION

Ошибка появляется при повреждении таблицы ремаппинга графической апертуры (GART). Ошибка вызвана неисправностью драйвера DMA (прямой доступ к памяти).

Обновите драйверы видеокарты.

0x00000106

AGP_ILLEGALLY_REPROGRAMMED

Эта ошибка вызвана неподписанным или поврежденным видеодрайвером.

Обновите драйверы видеокарты.

0x00000108

THIRD_PARTY_FILE_SYSTEM_FAILURE

Произошла критическая ошибка в фильтре файловой системы стороннего производителя.

Ошибка может быть вызвана антивирусным ПО, ПО дефрагментации, ПО резервного копирования данных и другими сторонними утилитами. Также попробуйте увеличить размер файла подкачки и оперативной памяти.

0x00000109

CRITICAL_STRUCTURE_CORRUPTION

Ядро системы обнаружило некорректный код или нарушение целостности данных. Системы на базе 64 защищены от этой ошибки.

Проблема могла быть вызвана сбоем оперативной памяти или драйверами сторонних производителей.

0x0000010A

APP_TAGGING_INITIALIZATION_FAILED

Эта ошибка появляется очень редко.

0x0000010C

FSRTL_EXTRA_CREATE_PARAMETER_VIOLATION

Это означает, что было обнаружено нарушение в пакете Extra Create Parameter (ECP) библиотеки файловой системы (FsRtl).

0x0000010D

WDF_VIOLATION

Это указывает на то, что Kernel Mode Driver Framework (KMDF) обнаружил, что Windows нашла ошибку в драйвере на базе платформы.

0x0000010E

VIDEO_MEMORY_MANAGEMENT_INTERNAL

Это означает, что менеджер видеопамяти столкнулся с условием, которое он не смог исправить.

0x0000010F

RESOURCE_MANAGER_EXCEPTION_NOT_HANDLED

Это указывает на то, что менеджер транзакций ядра обнаружил, что менеджер ресурсов привилегированного режима поднял исключение в ответ на прямой обратный вызов.

0x00000111

RECURSIVE_NMI

Эта ошибка указывает на то, что произошло немаскируемое прерывание (NMI), в то время как предыдущее NMI еще не завершено.

0x00000112

MSRPC_STATE_VIOLATION

драйвер msrpc.Была сгенерирована ошибка runtime sys. Код ошибки указан в первом параметре.

Наиболее распространенной причиной этой проверки ошибок является драйвер Msrpc.Система sys нарушила семантику состояния для этого вызова.

0x00000113

VIDEO_DXGKRNL_FATAL_ERROR

Графическое ядро DirectX обнаружило критическую ошибку.

0x00000114

VIDEO_SHADOW_DRIVER_FATAL_ERROR

Теневой видеодрайвер обнаружил критическую ошибку.

Обновите драйверы видеокарты.

0x00000115

AGP_INTERNAL

Драйвером видеопорта обнаружена критическая ошибка в видеоинтерфейсе AGP.

Обновите драйверы вашей видеокарты.

0x00000116

VIDEO_TDR_ERROR

Сброс тайм-аута видеодрайвера не был успешно выполнен.

Обновление драйверов видеокарты.

0x00000117

VIDEO_TDR_TIMEOUT_DETECTED

Это означает, что драйвер дисплея не отреагировал своевременно.

Обновите драйверы видеокарты.

0x00000119

VIDEO_SCHEDULER_INTERNAL_ERROR

Эта ошибка указывает на то, что планировщик видео обнаружил фатальную ошибку.

Обновите драйверы видеокарты.

0x0000011A

EM_INITIALIZATION_FAILURE

Эта ошибка проверки появляется очень редко.

0x0000011B

DRIVER_RETURNED_HOLDING_CANCEL_LOCK

Эта проверка ошибки указывает на то, что драйвер вернулся из подпрограммы отмены, которая содержит глобальную блокировку отмены. Это приводит к тому, что все последующие вызовы отмены перестают работать и приводят либо к мертвой блокировке, либо к другой ошибке.

0x0000011C

ATTEMPTED_WRITE_TO_CM_PROTECTED_STORAGE

Эта ошибка указывает на то, что была предпринята попытка записи в защищенное хранилище менеджера конфигурации, доступное только для чтения.

0x0000011D

EVENT_TRACING_FATAL_ERROR

Эта ошибка указывает на то, что подсистема трассировки событий столкнулась с неожиданной фатальной ошибкой.

0x00000121

DRIVER_VIOLATION

Драйвер нарушил доступ к одной из областей памяти.

Используйте отладчик ядра и просмотрите стек вызовов, чтобы определить

имя драйвера, который вызвал нарушение доступа.

0x00000122

WHEA_INTERNAL_ERROR

Произошла внутренняя ошибка архитектуры аппаратных ошибок Windows (WHEA).

0x00000124

WHEA_UNCORRECTABLE_ERROR

Произошла ошибка в аппаратном обеспечении компьютера. Эта ошибка обнаруживается архитектурой аппаратных ошибок Windows (WHEA).

0X00000124 Сообщение об ошибке возникает при использовании функции «горячей стыковки» для добавления или удаления устройства PCI Express на компьютере с Windows Server 2008 или на компьютере с Windows Vista

см. http://support.microsoft.com/kb/952681/en

0x00000127

PAGE_NOT_ZERO

Эта ошибка указывает на то, что страница, которая должна была быть заполнена нулями, не была заполнена. Эта ошибка может быть вызвана аппаратной ошибкой или тем, что привилегированный компонент операционной системы изменил страницу после ее освобождения.

0x0000012B

FAULTY_HARDWARE_CORRUPTED_PAGE

Эта проверка ошибок указывает на то, что на этой странице была обнаружена однобитная ошибка.

Это ошибка аппаратной памяти.

Проверьте память на наличие ошибок.

0x0000012C

EXFAT_FILE_SYSTEM

Эта проверка на ошибки показывает, что проблема связана с файловой системой ExFAT .

Проверьте жесткий диск на наличие ошибок.

0x00000144

BUGCODE_USB3_DRIVER

Говорит, что есть ошибка в драйвере USB.

0x1000007E

SYSTEM_THREAD_EXCEPTION_NOT_HANDLED_M

Это означает, что системный поток вызвал исключение, которое обработчик ошибок не распознал.

Обнаружена аппаратная проблема или недостаточное количество свободного места на диске.

0x1000007F

UNEXPECTED_KERNEL_MODE_TRAP

Это указывает на то, что ловушка была произведена процессором серии Intel, и ядро не смогло поймать ловушку.

0x1000008E

KERNEL_MODE_EXCEPTION_NOT_HANDLED_M

Это означает, что в режиме ядра программа выбросила исключение, которое обработчик ошибок не распознал.

Эта проблема возникает в Windows Vista SP1.

Для Vista: Отключите программное обеспечение для сканирования электронной почты.

Для XP: Обновите свою ОС.

0x100000EA

THREAD_STUCK_IN_DEVICE_DRIVER_M

Проблемный драйвер устройства привел к зависанию системы. Обычно это вызвано тем, что драйвер дисплея пытается перевести компьютер в режим приостановки. Проблема связана с видеоадаптером или плохим видеодрайвером.

Также может быть вызвано сбоем при подключении загрузочного диска. Эта ошибка может возникать на компьютерах, где установлены высокопроизводительные дисковые контроллеры, которые не были правильно настроены и установлены, или не подключены качественным кабелем. После обычной перезагрузки система может возобновить нормальную работу, как будто ничего не произошло. Эта ошибка также возникает после некорректного выключения Windows, и сбой может быть вызван повреждением файловой системы.

0xC000009A

STATUS_INSUFFICIENT_RESOURCES

Системное ядро вашей операционной системы исчерпало все системные ресурсы для своей работы, включая файл подкачки.

  1. Проверьте диск на наличие ошибок.
  2. Увеличьте объем жесткого диска и оперативной памяти.
0xC0000135

UNABLE TO LOCATE DLL

Windows попыталась загрузить DLL и получила код ошибки. Возможная причина — отсутствующий или поврежденный файл. Также может быть проблема с реестром.

Проверьте жесткий диск на наличие ошибок.

0xC0000142

DLL Initialization Failure
Перейти к описанию

0xC0000218

UNKNOWN_HARD_ERROR

Необходимый файл системного реестра не может быть загружен. Файл может быть поврежден или отсутствовать (требуется загрузочный диск или переустановка Windows). Файлы системного реестра могли быть уничтожены из-за повреждения жесткого диска. Возможно, драйвер повредил данные реестра при загрузке в память, или в памяти, куда был загружен реестр, произошла ошибка четности (отключите внешний кэш и проверьте оперативную память).

0xC000021A

STATUS_SYSTEM_PROCESS_TERMINATED

Это происходит, когда Windows переключилась в привилегированный режим, а подсистемы непривилегированного режима, такие как Winlogon или Client Server Runtime Subsystem (CSRSS), дали какой-то сбой, и защита не может быть гарантирована. Поскольку Windows XP не может работать без Winlogon или CSRSS, это одна из немногих ситуаций, когда отказ в обслуживании непривилегированного режима может привести к тому, что система перестанет отвечать на запросы. Это также может произойти при перезагрузке компьютера после того, как системный администратор изменил разрешения так, что учетная запись SYSTEM больше не имеет достаточных разрешений для доступа к системным файлам и папкам. Ошибка также может быть вызвана поврежденным файлом user32.dll или неправильные системные драйверы (.sys)

0xC0000221

STATUS_IMAGE_CHECKSUM_MISMATCH

Поврежден драйвер или обнаружена неисправность системной библиотеки. Система делает все возможное, чтобы проверить целостность важных системных файлов. Синий экран показывает имя поврежденного файла. Если это произошло, загрузитесь в любую другую систему, или, если таковых нет, переустановите систему. Убедитесь, что версия файла, обнаруженного как поврежденный, совпадает с версией файла в дистрибутиве системы, и если это так, замените его на версию. Постоянные ошибки с разными именами файлов указывают на проблему с носителем или контроллером диска, на котором находятся файлы.

0xC0000244

CrashOnAuditFail

Ошибка STOP возникает, когда ваша политика аудита активирует параметр CrashOnAuditFail (действительно для Windows XP).

0xC000026C

UNABLE_TO_LOAD_DEVICE_DRIVER

Обычно указывает на проблемы с драйвером устройства.

0xDEADDEAD

MANUALLY_INITIATED_CRASH1

Это мертво, Джим! (Это смерть, Джим!) Эта ошибка STOP указывает на то, что пользователь намеренно инициализировал сбой, либо из отладчика ядра, либо с клавиатуры.

P.S. Если ваш STOP-код отсутствует в базе, или у вас есть более детальное описание ошибки, пожалуйста, сообщите в комментариях для обновления и дополнения информации.

Code Description Error Code 1 Incorrect function. [ERROR_INVALID_FUNCTION (0x1)] Error Code 2 The system cannot find the file specified. [ERROR_FILE_NOT_FOUND (0x2)] Error Code 3 The system cannot find the path specified. [ERROR_PATH_NOT_FOUND (0x3)] Error Code 4 The system cannot open the file. [ERROR_TOO_MANY_OPEN_FILES (0x4)] Error Code 5 Access is denied. [ERROR_ACCESS_DENIED (0x5)] Error Code 6 The handle is invalid. [ERROR_INVALID_HANDLE (0x6)] Error Code 7 The storage control blocks were destroyed. [ERROR_ARENA_TRASHED (0x7)] Error Code 8 Not enough storage is available to process this command. [ERROR_NOT_ENOUGH_MEMORY (0x8)] Error Code 9 The storage control block address is invalid. [ERROR_INVALID_BLOCK (0x9)] Error Code 10 The environment is incorrect. [ERROR_BAD_ENVIRONMENT (0xA)] Error Code 11 An attempt was made to load a program with an incorrect format. [ERROR_BAD_FORMAT (0xB)] Error Code 12 The access code is invalid. [ERROR_INVALID_ACCESS (0xC)] Error Code 13 The
data is invalid. [ERROR_INVALID_DATA (0xD)] Error Code 14 Not enough storage is available to complete this operation. [ERROR_OUTOFMEMORY (0xE)] Error Code 15 The system cannot find the drive specified. [ERROR_INVALID_DRIVE (0xF)] Error Code 16 The directory cannot be removed. [ERROR_CURRENT_DIRECTORY (0x10)] Error Code 17 The system cannot move the file to a different disk drive. [ERROR_NOT_SAME_DEVICE (0x11)] Error Code 18 There are no more files. [ERROR_NO_MORE_FILES (0x12)] Error Code 19 The media is write protected. [ERROR_WRITE_PROTECT (0x13)] Error Code 20 The system cannot find the device specified. [ERROR_BAD_UNIT (0x14)] Error Code 21 The device is not ready. [ERROR_NOT_READY (0x15)] Error Code 22 The device does not recognize the command. [ERROR_BAD_COMMAND (0x16)] Error Code 23 Data error (cyclic redundancy check). [ERROR_CRC (0x17)] Error Code 24 The program issued a command but the command length is incorrect. [ERROR_BAD_LENGTH (0x18)] Error Code 25 The drive cannot locate a specific area or track on the disk. [ERROR_SEEK (0x19)] Error Code 26 The specified disk or diskette cannot be accessed. [ERROR_NOT_DOS_DISK (0x1A)] Error Code 27 The drive cannot find the sector requested. [ERROR_SECTOR_NOT_FOUND (0x1B)] Error Code 28 The printer is out of paper. [ERROR_OUT_OF_PAPER (0x1C)] Error Code 29 The system cannot write to the specified device. [ERROR_WRITE_FAULT (0x1D)] Error Code 30 The system cannot read from the specified device. [ERROR_READ_FAULT (0x1E)] Error Code 31 A device attached to the system is not functioning. [ERROR_GEN_FAILURE (0x1F)] Error Code 32 The process cannot access the file because it is being used by another process. [ERROR_SHARING_VIOLATION (0x20)] Error Code 33 The process cannot access the file because another process has locked a portion of the file. [ERROR_LOCK_VIOLATION (0x21)] Error Code 34 The wrong diskette is in the drive. Insert %2 (Volume Serial Number Error Code 36 Too many files opened for sharing. [ERROR_SHARING_BUFFER_EXCEEDED (0x24)] Error Code 38 Reached the end of the file. [ERROR_HANDLE_EOF (0x26)] Error Code 39 The disk is full. [ERROR_HANDLE_DISK_FULL (0x27)] Error Code 50 The request is not supported. [ERROR_NOT_SUPPORTED (0x32)] Error Code 51 Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path contact your network administrator. [ERROR_REM_NOT_LIST (0x33)] Error Code 52 You were not connected because a duplicate name exists on the network. If joining a domain, go to System in Control Panel to change the computer name and try again. If joining a workgroup choose another workgroup name. [ERROR_DUP_NAME (0x34)] Error Code 53 The network path was not found. [ERROR_BAD_NETPATH (0x35)] Error Code 54 The network is busy. [ERROR_NETWORK_BUSY (0x36)] Error Code 55 The specified network resource or device is no longer available. [ERROR_DEV_NOT_EXIST (0x37)] Error Code 56 The network BIOS command limit has been reached. [ERROR_TOO_MANY_CMDS (0x38)] Error Code 57 A network adapter hardware error occurred. [ERROR_ADAP_HDW_ERR (0x39)] Error Code 58 The specified server cannot perform the requested operation. [ERROR_BAD_NET_RESP (0x3A)] Error Code 59 An unexpected network error occurred. [ERROR_UNEXP_NET_ERR (0x3B)] Error Code 60 The remote adapter is not compatible. [ERROR_BAD_REM_ADAP (0x3C)] Error Code 61 The printer queue is full. [ERROR_PRINTQ_FULL (0x3D)] Error Code 62 Space to store the file waiting to be printed is not available on the server. [ERROR_NO_SPOOL_SPACE (0x3E)] Error Code 63 Your file waiting to be printed was deleted. [ERROR_PRINT_CANCELLED (0x3F)] Error Code 64 The specified network name is no longer available. [ERROR_NETNAME_DELETED (0x40)] Error Code 65 Network access is denied. [ERROR_NETWORK_ACCESS_DENIED (0x41)] Error Code 66 The network resource type is not correct. [ERROR_BAD_DEV_TYPE (0x42)] Error Code 67 The network name cannot be found. [ERROR_BAD_NET_NAME (0x43)] Error Code 68 The name limit for the local computer network adapter card was exceeded. [ERROR_TOO_MANY_NAMES (0x44)] Error Code 69 The network BIOS session limit was exceeded. [ERROR_TOO_MANY_SESS (0x45)] Error Code 70 The remote server has been paused or is in the process of being started. [ERROR_SHARING_PAUSED (0x46)] Error Code 71 No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept. [ERROR_REQ_NOT_ACCEP (0x47)] Error Code 72 The specified printer or disk device has been paused. [ERROR_REDIR_PAUSED (0x48)] Error Code 80 The file exists. [ERROR_FILE_EXISTS (0x50)] Error Code 82 The directory or file cannot be created. [ERROR_CANNOT_MAKE (0x52)] Error Code 83 Fail on INT 24. [ERROR_FAIL_I24 (0x53)] Error Code 84 Storage to process this request is not available. [ERROR_OUT_OF_STRUCTURES (0x54)] Error Code 85 The local device name is already in use. [ERROR_ALREADY_ASSIGNED (0x55)] Error Code 86 The specified network password is not correct. [ERROR_INVALID_PASSWORD (0x56)] Error Code 87 The parameter is incorrect. [ERROR_INVALID_PARAMETER (0x57)] Error Code 88 A write fault occurred on the network. [ERROR_NET_WRITE_FAULT (0x58)] Error Code 89 The system cannot start another process at this time. [ERROR_NO_PROC_SLOTS (0x59)] Error Code 100 Cannot create another system semaphore. [ERROR_TOO_MANY_SEMAPHORES (0x64)] Error Code 101 The exclusive semaphore is owned by another process. [ERROR_EXCL_SEM_ALREADY_OWNED (0x65)] Error Code 102 The semaphore is set and cannot be closed. [ERROR_SEM_IS_SET (0x66)] Error Code 103 The semaphore cannot be set again. [ERROR_TOO_MANY_SEM_REQUESTS (0x67)] Error Code 104 Cannot request exclusive semaphores at interrupt time. [ERROR_INVALID_AT_INTERRUPT_TIME (0x68)] Error Code 105 The previous ownership of this semaphore has ended. [ERROR_SEM_OWNER_DIED (0x69)] Error Code 106 Insert the diskette for drive %1. [ERROR_SEM_USER_LIMIT (0x6A)] Error Code 107 The program stopped because an alternate diskette was not inserted. [ERROR_DISK_CHANGE (0x6B)] Error Code 108 The disk is in use or locked by another process. [ERROR_DRIVE_LOCKED (0x6C)] Error Code 109 The pipe has been ended. [ERROR_BROKEN_PIPE (0x6D)] Error Code 110 The system cannot open the device or file specified. [ERROR_OPEN_FAILED (0x6E)] Error Code 111 The file name is too long. [ERROR_BUFFER_OVERFLOW (0x6F)] Error Code 112 There is not enough space on the disk. [ERROR_DISK_FULL (0x70)] Error Code 113 No more internal file identifiers available. [ERROR_NO_MORE_SEARCH_HANDLES (0x71)] Error Code 114 The target internal file identifier is incorrect. [ERROR_INVALID_TARGET_HANDLE (0x72)] Error Code 117 The IOCTL call made by the application program is not correct. [ERROR_INVALID_CATEGORY (0x75)] Error Code 118 The verify-on-write switch parameter value is not correct. [ERROR_INVALID_VERIFY_SWITCH (0x76)] Error Code 119 The system does not support the command requested. [ERROR_BAD_DRIVER_LEVEL (0x77)] Error Code 120 This function is not supported on this system. [ERROR_CALL_NOT_IMPLEMENTED (0x78)] Error Code 121 The semaphore timeout period has expired. [ERROR_SEM_TIMEOUT (0x79)] Error Code 122 The data area passed to a system call is too small. [ERROR_INSUFFICIENT_BUFFER (0x7A)] Error Code 123 The filename, directory name or volume label syntax is incorrect. [ERROR_INVALID_NAME (0x7B)] Error Code 124 The system call level is not correct. [ERROR_INVALID_LEVEL (0x7C)] Error Code 125 The disk has no volume label. [ERROR_NO_VOLUME_LABEL (0x7D)] Error Code 126 The specified module could not be found. [ERROR_MOD_NOT_FOUND (0x7E)] Error Code 127 The specified procedure could not be found. [ERROR_PROC_NOT_FOUND (0x7F)] Error Code 128 There are no child processes to wait for. [ERROR_WAIT_NO_CHILDREN (0x80)] Error Code 129 The %1 application cannot be run in Win32 mode. [ERROR_CHILD_NOT_COMPLETE (0x81)] Error Code 130 Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O. [ERROR_DIRECT_ACCESS_HANDLE (0x82)] Error Code 131 An attempt was made to move the file pointer before the beginning of the file. [ERROR_NEGATIVE_SEEK (0x83)] Error Code 132 The file pointer cannot be set on the specified device or file. [ERROR_SEEK_ON_DEVICE (0x84)] Error Code 133 A JOIN or SUBST command cannot be used for a drive that contains previously joined drives. [ERROR_IS_JOIN_TARGET (0x85)] Error Code 134 An attempt was made to use a JOIN or SUBST command on a drive that has already been joined. [ERROR_IS_JOINED (0x86)] Error Code 135 An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted. [ERROR_IS_SUBSTED (0x87)] Error Code 136 The system tried to delete the JOIN of a drive that is not joined. [ERROR_NOT_JOINED (0x88)] Error Code 137 The system tried to delete the substitution of a drive that is not substituted. [ERROR_NOT_SUBSTED (0x89)] Error Code 138 The system tried to join a drive to a directory on a joined drive. [ERROR_JOIN_TO_JOIN (0x8A)] Error Code 139 The system tried to substitute a drive to a directory on a substituted drive. [ERROR_SUBST_TO_SUBST (0x8B)] Error Code 140 The system tried to join a drive to a directory on a substituted drive. [ERROR_JOIN_TO_SUBST (0x8C)] Error Code 141 The system tried to SUBST a drive to a directory on a joined drive. [ERROR_SUBST_TO_JOIN (0x8D)] Error Code 142 The system cannot perform a JOIN or SUBST at this time. [ERROR_BUSY_DRIVE (0x8E)] Error Code 143 The system cannot join or substitute a drive to or for a directory on the same drive. [ERROR_SAME_DRIVE (0x8F)] Error Code 144 The directory is not a subdirectory of the root directory. [ERROR_DIR_NOT_ROOT (0x90)] Error Code 145 The directory is not empty. [ERROR_DIR_NOT_EMPTY (0x91)] Error Code 146 The path specified is being used in a substitute. [ERROR_IS_SUBST_PATH (0x92)] Error Code 147 Not enough resources are available to process this command. [ERROR_IS_JOIN_PATH (0x93)] Error Code 148 The path specified cannot be used at this time. [ERROR_PATH_BUSY (0x94)] Error Code 149 An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute. [ERROR_IS_SUBST_TARGET (0x95)] Error Code 150 System trace information was not specified in your CONFIG.SYS file or tracing is disallowed. [ERROR_SYSTEM_TRACE (0x96)] Error Code 151 The number of specified semaphore events for DosMuxSemWait is not correct. [ERROR_INVALID_EVENT_COUNT (0x97)] Error Code 152 DosMuxSemWait did not execute too many semaphores are already set. [ERROR_TOO_MANY_MUXWAITERS (0x98)] Error Code 153 The DosMuxSemWait list is not correct. [ERROR_INVALID_LIST_FORMAT (0x99)] Error Code 154 The volume label you entered exceeds the label character limit of the target file system. [ERROR_LABEL_TOO_LONG (0x9A)] Error Code 155 Cannot create another thread. [ERROR_TOO_MANY_TCBS (0x9B)] Error Code 156 The recipient process has refused the signal. [ERROR_SIGNAL_REFUSED (0x9C)] Error Code 157 The segment is already discarded and cannot be locked. [ERROR_DISCARDED (0x9D)] Error Code 158 The segment is already unlocked. [ERROR_NOT_LOCKED (0x9E)] Error Code 159 The address for the thread ID is not correct. [ERROR_BAD_THREADID_ADDR (0x9F)] Error Code 160 One or more arguments are not correct. [ERROR_BAD_ARGUMENTS (0xA0)] Error Code 161 The specified path is invalid. [ERROR_BAD_PATHNAME (0xA1)] Error Code 162 A signal is already pending. [ERROR_SIGNAL_PENDING (0xA2)] Error Code 164 No more threads can be created in the system. [ERROR_MAX_THRDS_REACHED (0xA4)] Error Code 167 Unable to lock a region of a file. [ERROR_LOCK_FAILED (0xA7)] Error Code 170 The requested resource is in use. [ERROR_BUSY (0xAA)] Error Code 173 A lock request was not outstanding for the supplied cancel region. [ERROR_CANCEL_VIOLATION (0xAD)] Error Code 174 The file system does not support atomic changes to the lock type. [ERROR_ATOMIC_LOCKS_NOT_SUPPORTED (0xAE)] Error Code 180 The system detected a segment number that was not correct. [ERROR_INVALID_SEGMENT_NUMBER (0xB4)] Error Code 182 The operating system cannot run %1. [ERROR_INVALID_ORDINAL (0xB6)] Error Code 183 Cannot create a file when that file already exists. [ERROR_ALREADY_EXISTS (0xB7)] Error Code 186 The flag passed is not correct. [ERROR_INVALID_FLAG_NUMBER (0xBA)] Error Code 187 The specified system semaphore name was not found. [ERROR_SEM_NOT_FOUND (0xBB)] Error Code 188 The operating system cannot run %1. [ERROR_INVALID_STARTING_CODESEG (0xBC)] Error Code 189 The operating system cannot run %1. [ERROR_INVALID_STACKSEG (0xBD)] Error Code 190 The operating system cannot run %1. [ERROR_INVALID_MODULETYPE (0xBE)] Error Code 191 Cannot run %1 in Win32 mode. [ERROR_INVALID_EXE_SIGNATURE (0xBF)] Error Code 192 The operating system cannot run %1. [ERROR_EXE_MARKED_INVALID (0xC0)] Error Code 193 %1 is not a valid Win32 application. [ERROR_BAD_EXE_FORMAT (0xC1)] Error Code 194 The operating system cannot run %1. [ERROR_ITERATED_DATA_EXCEEDS_64k (0xC2)] Error Code 195 The operating system cannot run %1. [ERROR_INVALID_MINALLOCSIZE (0xC3)] Error Code 196 The operating system cannot run this application program. [ERROR_DYNLINK_FROM_INVALID_RING (0xC4)] Error Code 197 The operating system is not presently configured to run this application. [ERROR_IOPL_NOT_ENABLED (0xC5)] Error Code 198 The operating system cannot run %1. [ERROR_INVALID_SEGDPL (0xC6)] Error Code 199 The operating system cannot run this application program. [ERROR_AUTODATASEG_EXCEEDS_64k (0xC7)] Error Code 200 The code segment cannot be greater than or equal to 64K. [ERROR_RING2SEG_MUST_BE_MOVABLE (0xC8)] Error Code 201 The operating system cannot run %1. [ERROR_RELOC_CHAIN_XEEDS_SEGLIM (0xC9)] Error Code 202 The operating system cannot run %1. [ERROR_INFLOOP_IN_RELOC_CHAIN (0xCA)] Error Code 203 The system could not find the environment option that was entered. [ERROR_ENVVAR_NOT_FOUND (0xCB)] Error Code 205 No process in the command subtree has a signal handler. [ERROR_NO_SIGNAL_SENT (0xCD)] Error Code 206 The filename or extension is too long. [ERROR_FILENAME_EXCED_RANGE (0xCE)] Error Code 207 The ring 2 stack is in use. [ERROR_RING2_STACK_IN_USE (0xCF)] Error Code 208 The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified. [ERROR_META_EXPANSION_TOO_LONG (0xD0)] Error Code 209 The signal being posted is not correct. [ERROR_INVALID_SIGNAL_NUMBER (0xD1)] Error Code 210 The signal handler cannot be set. [ERROR_THREAD_1_INACTIVE (0xD2)] Error Code 212 The segment is locked and cannot be reallocated. [ERROR_LOCKED (0xD4)] Error Code 214 Too many dynamic-link modules are attached to this program or dynamic-link module. [ERROR_TOO_MANY_MODULES (0xD6)] Error Code 215 Cannot nest calls to LoadModule. [ERROR_NESTING_NOT_ALLOWED (0xD7)] Error Code 216 The version of %1 is not compatible with the version you’re running. Check your computer’s system information to see whether you need a x86 (32-bit) or x64 (64-bit) version of the program, and then contact the software publisher. [ERROR_EXE_MACHINE_TYPE_MISMATCH (0xD8)] Error Code 217 The image file %1 is signed, unable to modify. [ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY (0xD9)] Error Code 218 The image file %1 is strong signed, unable to modify. [ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY (0xDA)] Error Code 220 This file is checked out or locked for editing by another user. [ERROR_FILE_CHECKED_OUT (0xDC)] Error Code 221 The file must be checked out before saving changes. [ERROR_CHECKOUT_REQUIRED (0xDD)] Error Code 222 The file type being saved or retrieved has been blocked. [ERROR_BAD_FILE_TYPE (0xDE)] Error Code 223 The file size exceeds the limit allowed and cannot be saved. [ERROR_FILE_TOO_LARGE (0xDF)] Error Code 224 Access Denied. Before opening files in this location, you must first add the web site to your trusted sites list, browse to the web site and select the option to login automatically. [ERROR_FORMS_AUTH_REQUIRED (0xE0)] Error Code 225 Operation did not complete successfully because the file contains a virus. [ERROR_VIRUS_INFECTED (0xE1)] Error Code 226 This file contains a virus and cannot be opened. Due to the nature of this virus, the file has been removed from this location. [ERROR_VIRUS_DELETED (0xE2)] Error Code 229 The pipe is local. [ERROR_PIPE_LOCAL (0xE5)] Error Code 230 The pipe state is invalid. [ERROR_BAD_PIPE (0xE6)] Error Code 231 All pipe instances are busy. [ERROR_PIPE_BUSY (0xE7)] Error Code 232 The pipe is being closed. [ERROR_NO_DATA (0xE8)] Error Code 233 No process is on the other end of the pipe. [ERROR_PIPE_NOT_CONNECTED (0xE9)] Error Code 234 More data is available. [ERROR_MORE_DATA (0xEA)] Error Code 240 The session was canceled. [ERROR_VC_DISCONNECTED (0xF0)] Error Code 254 The specified extended attribute name was invalid. [ERROR_INVALID_EA_NAME (0xFE)] Error Code 255 The extended attributes are inconsistent. [ERROR_EA_LIST_INCONSISTENT (0xFF)] Error Code 258 The wait operation timed out. [WAIT_TIMEOUT (0x102)] Error Code 259 No more data is available. [ERROR_NO_MORE_ITEMS (0x103)] Error Code 266 The copy functions cannot be used. [ERROR_CANNOT_COPY (0x10A)] Error Code 267 The directory name is invalid. [ERROR_DIRECTORY (0x10B)] Error Code 275 The extended attributes did not fit in the buffer. [ERROR_EAS_DIDNT_FIT (0x113)] Error Code 276 The extended attribute file on the mounted file system is corrupt. [ERROR_EA_FILE_CORRUPT (0x114)] Error Code 277 The extended attribute table file is full. [ERROR_EA_TABLE_FULL (0x115)] Error Code 278 The specified extended attribute handle is invalid. [ERROR_INVALID_EA_HANDLE (0x116)] Error Code 282 The mounted file system does not support extended attributes. [ERROR_EAS_NOT_SUPPORTED (0x11A)] Error Code 288 Attempt to release mutex not owned by caller. [ERROR_NOT_OWNER (0x120)] Error Code 298 Too many posts were made to a semaphore. [ERROR_TOO_MANY_POSTS (0x12A)] Error Code 299 Only part of a ReadProcessMemory or WriteProcessMemory request was completed. [ERROR_PARTIAL_COPY (0x12B)] Error Code 300 The oplock request is denied. [ERROR_OPLOCK_NOT_GRANTED (0x12C)] Error Code 301 An invalid oplock acknowledgment was received by the system. [ERROR_INVALID_OPLOCK_PROTOCOL (0x12D)] Error Code 302 The volume is too fragmented to complete this operation. [ERROR_DISK_TOO_FRAGMENTED (0x12E)] Error Code 303 The file cannot be opened because it is in the process of being deleted. [ERROR_DELETE_PENDING (0x12F)] Error Code 317 The system cannot find message text for message number 0x%1 in the message file for %2. [ERROR_MR_MID_NOT_FOUND (0x13D)] Error Code 318 The scope specified was not found. [ERROR_SCOPE_NOT_FOUND (0x13E)] Error Code 350 No action was taken as a system reboot is required. [ERROR_FAIL_NOACTION_REBOOT (0x15E)] Error Code 351 The shutdown operation failed. [ERROR_FAIL_SHUTDOWN (0x15F)] Error Code 352 The restart operation failed. [ERROR_FAIL_RESTART (0x160)] Error Code 353 The maximum number of sessions has been reached. [ERROR_MAX_SESSIONS_REACHED (0x161)] Error Code 400 The thread is already in background processing mode. [ERROR_THREAD_MODE_ALREADY_BACKGROUND (0x190)] Error Code 401 The thread is not in background processing mode. [ERROR_THREAD_MODE_NOT_BACKGROUND (0x191)] Error Code 402 The process is already in background processing mode. [ERROR_PROCESS_MODE_ALREADY_BACKGROUND (0x192)] Error Code 403 The process is not in background processing mode. [ERROR_PROCESS_MODE_NOT_BACKGROUND (0x193)] Error Code 487 Attempt to access invalid
address. [ERROR_INVALID_ADDRESS (0x1E7)] Error Code 500 User profile cannot be loaded. [ERROR_USER_PROFILE_LOAD (0x1F4)] Error Code 534 Arithmetic result exceeded 32 bits. [ERROR_ARITHMETIC_OVERFLOW (0x216)] Error Code 535 There is a process on other end of the pipe. [ERROR_PIPE_CONNECTED (0x217)] Error Code 536 Waiting for a process to open the other end of the pipe. [ERROR_PIPE_LISTENING (0x218)] Error Code 537 Application verifier has found an error in the current process. [ERROR_VERIFIER_STOP (0x219)] Error Code 538 An error occurred in the ABIOS subsystem. [ERROR_ABIOS_ERROR (0x21A)] Error Code 539 A warning occurred in the WX86 subsystem. [ERROR_WX86_WARNING (0x21B)] Error Code 540 An error occurred in the WX86 subsystem. [ERROR_WX86_ERROR (0x21C)] Error Code 541 An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine. [ERROR_TIMER_NOT_CANCELED (0x21D)] Error Code 542 Unwind exception code. [ERROR_UNWIND (0x21E)] Error Code 543 An invalid or unaligned stack was encountered during an unwind operation. [ERROR_BAD_STACK (0x21F)] Error Code 544 An invalid unwind target was encountered during an unwind operation. [ERROR_INVALID_UNWIND_TARGET (0x220)] Error Code 545 Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort [ERROR_INVALID_PORT_ATTRIBUTES (0x221)] Error Code 546 Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port. [ERROR_PORT_MESSAGE_TOO_LONG (0x222)] Error Code 547 An attempt was made to lower a quota limit below the current usage. [ERROR_INVALID_QUOTA_LOWER (0x223)] Error Code 548 An attempt was made to attach to a device that was already attached to another device. [ERROR_DEVICE_ALREADY_ATTACHED (0x224)] Error Code 549 An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references. [ERROR_INSTRUCTION_MISALIGNMENT (0x225)] Error Code 550 Profiling not started. [ERROR_PROFILING_NOT_STARTED (0x226)] Error Code 551 Profiling not stopped. [ERROR_PROFILING_NOT_STOPPED (0x227)] Error Code 552 The passed ACL did not contain the minimum required information. [ERROR_COULD_NOT_INTERPRET (0x228)] Error Code 553 The number of active profiling objects is at the maximum and no more may be started. [ERROR_PROFILING_AT_LIMIT (0x229)] Error Code 554 Used to indicate that an operation cannot continue without blocking for I/O. [ERROR_CANT_WAIT (0x22A)] Error Code 555 Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process. [ERROR_CANT_TERMINATE_SELF (0x22B)] Error Code 556 If an MM error is returned which is not defined in the standard FsRtl filter [ERROR_UNEXPECTED_MM_CREATE_ERR (0x22C)] Error Code 557 If an MM error is returned which is not defined in the standard FsRtl filter [ERROR_UNEXPECTED_MM_MAP_ERROR (0x22D)] Error Code 558 If an MM error is returned which is not defined in the standard FsRtl filter [ERROR_UNEXPECTED_MM_EXTEND_ERR (0x22E)] Error Code 559 A malformed function table was encountered during an unwind operation. [ERROR_BAD_FUNCTION_TABLE (0x22F)] Error Code 560 Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. This causes the protection attempt to fail [ERROR_NO_GUID_TRANSLATION (0x230)] Error Code 561 Indicates that an attempt was made to grow an LDT by setting its size [ERROR_INVALID_LDT_SIZE (0x231)] Error Code 563 Indicates that the starting value for the LDT information was not an integral multiple of the selector size. [ERROR_INVALID_LDT_OFFSET (0x233)] Error Code 564 Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors. [ERROR_INVALID_LDT_DESCRIPTOR (0x234)] Error Code 565 Indicates a process has too many threads to perform the requested action. For example [ERROR_TOO_MANY_THREADS (0x235)] Error Code 566 An attempt was made to operate on a thread within a specific process [ERROR_THREAD_NOT_IN_PROCESS (0x236)] Error Code 567 Page file quota was exceeded. [ERROR_PAGEFILE_QUOTA_EXCEEDED (0x237)] Error Code 568 The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role. [ERROR_LOGON_SERVER_CONFLICT (0x238)] Error Code 569 The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required. [ERROR_SYNCHRONIZATION_REQUIRED (0x239)] Error Code 570 The NtCreateFile API failed. This error should never be returned to an application [ERROR_NET_OPEN_FAILED (0x23A)] Error Code 571 {Privilege Failed} The I/O permissions for the process could not be changed. [ERROR_IO_PRIVILEGE_FAILED (0x23B)] Error Code 572 {Application Exit by CTRL+C} The application terminated as a result of a CTRL+C. [ERROR_CONTROL_C_EXIT (0x23C)] Error Code 573 {Missing System File} The required system file %hs is bad or missing. [ERROR_MISSING_SYSTEMFILE (0x23D)] Error Code 574 {Application Error} The exception %s (0x%08lx) occurred in the application at location 0x%08lx. [ERROR_UNHANDLED_EXCEPTION (0x23E)] Error Code 575 {Application Error} The application failed to initialize properly (0x%lx). Click OK to terminate the application. [ERROR_APP_INIT_FAILURE (0x23F)] Error Code 576 {Unable to Create Paging File} The creation of the paging file %hs failed (%lx). The requested size was %ld. [ERROR_PAGEFILE_CREATE_FAILED (0x240)] Error Code 577 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 [ERROR_INVALID_IMAGE_HASH (0x241)] Error Code 578 {No Paging File Specified} No paging file was specified in the system configuration. [ERROR_NO_PAGEFILE (0x242)] Error Code 579 {EXCEPTION} A real-mode application issued a floating-point instruction and floating-point hardware is not present. [ERROR_ILLEGAL_FLOAT_CONTEXT (0x243)] Error Code 580 An event pair synchronization operation was performed using the thread specific client/server event pair object [ERROR_NO_EVENT_PAIR (0x244)] Error Code 581 A Windows Server has an incorrect configuration. [ERROR_DOMAIN_CTRLR_CONFIG_ERROR (0x245)] Error Code 582 An illegal character was encountered. For a multi-byte character set this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE. [ERROR_ILLEGAL_CHARACTER (0x246)] Error Code 583 The Unicode character is not defined in the Unicode character set installed on the system. [ERROR_UNDEFINED_CHARACTER (0x247)] Error Code 584 The paging file cannot be created on a floppy diskette. [ERROR_FLOPPY_VOLUME (0x248)] Error Code 585 The system BIOS failed to connect a system interrupt to the device or bus to which the device is connected. [ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT (0x249)] Error Code 586 This operation is only allowed for the Primary Domain Controller of the domain. [ERROR_BACKUP_CONTROLLER (0x24A)] Error Code 587 An attempt was made to acquire a mutant such that its maximum count would have been exceeded. [ERROR_MUTANT_LIMIT_EXCEEDED (0x24B)] Error Code 588 A volume has been accessed for which a file system driver is required that has not yet been loaded. [ERROR_FS_DRIVER_REQUIRED (0x24C)] Error Code 589 {Registry File Failure} The registry cannot load the hive (file) Error Code 590 {Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process [ERROR_DEBUG_ATTACH_FAILED (0x24E)] Error Code 591 {Fatal System Error} The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). The system has been shut down. [ERROR_SYSTEM_PROCESS_TERMINATED (0x24F)] Error Code 592 {Data Not Accepted} The TDI client could not handle the data received during an indication. [ERROR_DATA_NOT_ACCEPTED (0x250)] Error Code 593 NTVDM encountered a hard error. [ERROR_VDM_HARD_ERROR (0x251)] Error Code 594 {Cancel Timeout} The driver %hs failed to complete a canceled I/O request in the allotted time. [ERROR_DRIVER_CANCEL_TIMEOUT (0x252)] Error Code 595 {Reply Message Mismatch} An attempt was made to reply to an LPC message [ERROR_REPLY_MESSAGE_MISMATCH (0x253)] Error Code 596 {Delayed Write Failed} Windows was unable to save all the data for the file %hs. The data has been lost. This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere. [ERROR_LOST_WRITEBEHIND_DATA (0x254)] Error Code 597 The parameter(s) passed to the server in the client/server shared memory window were invalid. Too much data may have been put in the shared memory window. [ERROR_CLIENT_SERVER_PARAMETERS_INVALID (0x255)] Error Code 598 The stream is not a tiny stream. [ERROR_NOT_TINY_STREAM (0x256)] Error Code 599 The request must be handled by the stack overflow code. [ERROR_STACK_OVERFLOW_READ (0x257)] Error Code 600 Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing onode is moved or the extent stream is converted to a large stream. [ERROR_CONVERT_TO_LARGE (0x258)] Error Code 601 The attempt to find the object found an object matching by ID on the volume but it is out of the scope of the handle used for the operation. [ERROR_FOUND_OUT_OF_SCOPE (0x259)] Error Code 602 The bucket array must be grown. Retry transaction after doing so. [ERROR_ALLOCATE_BUCKET (0x25A)] Error Code 603 The user/kernel marshalling buffer has overflowed. [ERROR_MARSHALL_OVERFLOW (0x25B)] Error Code 604 The supplied variant structure contains invalid data. [ERROR_INVALID_VARIANT (0x25C)] Error Code 605 The specified buffer contains ill-formed data. [ERROR_BAD_COMPRESSION_BUFFER (0x25D)] Error Code 606 {Audit Failed} An attempt to generate a security audit failed. [ERROR_AUDIT_FAILED (0x25E)] Error Code 607 The timer resolution was not previously set by the current process. [ERROR_TIMER_RESOLUTION_NOT_SET (0x25F)] Error Code 608 There is insufficient account information to log you on. [ERROR_INSUFFICIENT_LOGON_INFO (0x260)] Error Code 609 {Invalid DLL Entrypoint} The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO may cause the application to operate incorrectly. [ERROR_BAD_DLL_ENTRYPOINT (0x261)] Error Code 610 {Invalid Service Callback Entrypoint} The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However [ERROR_BAD_SERVICE_ENTRYPOINT (0x262)] Error Code 611 There is an IP address conflict with another system on the network [ERROR_IP_ADDRESS_CONFLICT1 (0x263)] Error Code 612 There is an IP address conflict with another system on the network [ERROR_IP_ADDRESS_CONFLICT2 (0x264)] Error Code 613 {Low On Registry Space} The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored. [ERROR_REGISTRY_QUOTA_LIMIT (0x265)] Error Code 614 A callback return system service cannot be executed when no callback is active. [ERROR_NO_CALLBACK_ACTIVE (0x266)] Error Code 615 The password provided is too short to meet the policy of your user account. Please choose a longer password. [ERROR_PWD_TOO_SHORT (0x267)] Error Code 616 The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar [ERROR_PWD_TOO_RECENT (0x268)] Error Code 617 You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Please select a password that you have not previously used. [ERROR_PWD_HISTORY_CONFLICT (0x269)] Error Code 618 The specified compression format is unsupported. [ERROR_UNSUPPORTED_COMPRESSION (0x26A)] Error Code 619 The specified hardware profile configuration is invalid. [ERROR_INVALID_HW_PROFILE (0x26B)] Error Code 620 The specified Plug and Play registry device path is invalid. [ERROR_INVALID_PLUGPLAY_DEVICE_PATH (0x26C)] Error Code 621 The specified quota list is internally inconsistent with its descriptor. [ERROR_QUOTA_LIST_INCONSISTENT (0x26D)] Error Code 622 {Windows Evaluation Notification} The evaluation period for this installation of Windows has expired. This system will shutdown in 1 hour. To restore access to this installation of Windows [ERROR_EVALUATION_EXPIRATION (0x26E)] Error Code 623 {Illegal System DLL Relocation} The system DLL %hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL %hs occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL. [ERROR_ILLEGAL_DLL_RELOCATION (0x26F)] Error Code 624 {DLL Initialization Failed} The application failed to initialize because the window station is shutting down. [ERROR_DLL_INIT_FAILED_LOGOFF (0x270)] Error Code 625 The validation process needs to continue on to the next step. [ERROR_VALIDATE_CONTINUE (0x271)] Error Code 626 There are no more matches for the current index enumeration. [ERROR_NO_MORE_MATCHES (0x272)] Error Code 627 The range could not be added to the range list because of a conflict. [ERROR_RANGE_LIST_CONFLICT (0x273)] Error Code 628 The server process is running under a SID different than that required by client. [ERROR_SERVER_SID_MISMATCH (0x274)] Error Code 629 A group marked use for deny only cannot be enabled. [ERROR_CANT_ENABLE_DENY_ONLY (0x275)] Error Code 630 {EXCEPTION} Multiple floating point faults. [ERROR_FLOAT_MULTIPLE_FAULTS (0x276)] Error Code 631 {EXCEPTION} Multiple floating point traps. [ERROR_FLOAT_MULTIPLE_TRAPS (0x277)] Error Code 632 The requested interface is not supported. [ERROR_NOINTERFACE (0x278)] Error Code 633 {System Standby Failed} The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode. [ERROR_DRIVER_FAILED_SLEEP (0x279)] Error Code 634 The system file %1 has become corrupt and has been replaced. [ERROR_CORRUPT_SYSTEM_FILE (0x27A)] Error Code 635 {Virtual Memory Minimum Too Low} Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process [ERROR_COMMITMENT_MINIMUM (0x27B)] Error Code 636 A device was removed so enumeration must be restarted. [ERROR_PNP_RESTART_ENUMERATION (0x27C)] Error Code 637 {Fatal System Error} The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down. [ERROR_SYSTEM_IMAGE_BAD_SIGNATURE (0x27D)] Error Code 638 Device will not start without a reboot. [ERROR_PNP_REBOOT_REQUIRED (0x27E)] Error Code 639 There is not enough power to complete the requested operation. [ERROR_INSUFFICIENT_POWER (0x27F)] Error Code 640 ERROR_MULTIPLE_FAULT_VIOLATION [ERROR_MULTIPLE_FAULT_VIOLATION (0x280)] Error Code 641 The system is in the process of shutting down. [ERROR_SYSTEM_SHUTDOWN (0x281)] Error Code 642 An attempt to remove a processes DebugPort was made [ERROR_PORT_NOT_SET (0x282)] Error Code 643 This version of Windows is not compatible with the behavior version of directory forest [ERROR_DS_VERSION_CHECK_FAILURE (0x283)] Error Code 644 The specified range could not be found in the range list. [ERROR_RANGE_NOT_FOUND (0x284)] Error Code 646 The driver was not loaded because the system is booting into safe mode. [ERROR_NOT_SAFE_MODE_DRIVER (0x286)] Error Code 647 The driver was not loaded because it failed it’s initialization call. [ERROR_FAILED_DRIVER_ENTRY (0x287)] Error Code 648 The «%hs» encountered an error while applying power or reading the device configuration. This may be caused by a failure of your hardware or by a poor connection. [ERROR_DEVICE_ENUMERATION_ERROR (0x288)] Error Code 649 The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached. [ERROR_MOUNT_POINT_NOT_RESOLVED (0x289)] Error Code 650 The device object parameter is either not a valid device object or is not attached to the volume specified by the file name. [ERROR_INVALID_DEVICE_OBJECT_PARAMETER (0x28A)] Error Code 651 A Machine Check Error has occurred. Please check the system eventlog for additional information. [ERROR_MCA_OCCURED (0x28B)] Error Code 652 There was error [%2] processing the driver database. [ERROR_DRIVER_DATABASE_ERROR (0x28C)] Error Code 653 System hive size has exceeded its limit. [ERROR_SYSTEM_HIVE_TOO_LARGE (0x28D)] Error Code 654 The driver could not be loaded because a previous version of the driver is still in memory. [ERROR_DRIVER_FAILED_PRIOR_UNLOAD (0x28E)] Error Code 655 {Volume Shadow Copy Service} Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation. [ERROR_VOLSNAP_PREPARE_HIBERNATE (0x28F)] Error Code 656 The system has failed to hibernate (The error code is %hs). Hibernation will be disabled until the system is restarted. [ERROR_HIBERNATION_FAILURE (0x290)] Error Code 665 The requested operation could not be completed due to a file system limitation [ERROR_FILE_SYSTEM_LIMITATION (0x299)] Error Code 668 An assertion failure has occurred. [ERROR_ASSERTION_FAILURE (0x29C)] Error Code 669 An error occurred in the ACPI subsystem. [ERROR_ACPI_ERROR (0x29D)] Error Code 670 WOW Assertion Error. [ERROR_WOW_ASSERTION (0x29E)] Error Code 671 A device is missing in the system BIOS MPS table. This device will not be used. Please contact your system vendor for system BIOS update. [ERROR_PNP_BAD_MPS_TABLE (0x29F)] Error Code 672 A translator failed to translate resources. [ERROR_PNP_TRANSLATION_FAILED (0x2A0)] Error Code 673 A IRQ translator failed to translate resources. [ERROR_PNP_IRQ_TRANSLATION_FAILED (0x2A1)] Error Code 674 Driver %2 returned invalid ID for a child device (%3). [ERROR_PNP_INVALID_ID (0x2A2)] Error Code 675 {Kernel Debugger Awakened} the system debugger was awakened by an interrupt. [ERROR_WAKE_SYSTEM_DEBUGGER (0x2A3)] Error Code 676 {Handles Closed} Handles to objects have been automatically closed as a result of the requested operation. [ERROR_HANDLES_CLOSED (0x2A4)] Error Code 677 {Too Much Information} The specified access control list (ACL) contained more information than was expected. [ERROR_EXTRANEOUS_INFORMATION (0x2A5)] Error Code 678 This warning level status indicates that the transaction state already exists for the registry sub-tree [ERROR_RXACT_COMMIT_NECESSARY (0x2A6)] Error Code 679 {Media Changed} The media may have changed. [ERROR_MEDIA_CHECK (0x2A7)] Error Code 680 {GUID Substitution} During the translation of a global identifier (GUID) to a Windows security ID (SID) [ERROR_GUID_SUBSTITUTION_MADE (0x2A8)] Error Code 681 The create operation stopped after reaching a symbolic link [ERROR_STOPPED_ON_SYMLINK (0x2A9)] Error Code 682 A long jump has been executed. [ERROR_LONGJUMP (0x2AA)] Error Code 683 The Plug and Play query operation was not successful. [ERROR_PLUGPLAY_QUERY_VETOED (0x2AB)] Error Code 684 A frame consolidation has been executed. [ERROR_UNWIND_CONSOLIDATE (0x2AC)] Error Code 685 {Registry Hive Recovered} Registry hive (file) Error Code 686 The application is attempting to run executable code from the module %hs. This may be insecure. An alternative [ERROR_DLL_MIGHT_BE_INSECURE (0x2AE)] Error Code 687 The application is loading executable code from the module %hs. This is secure [ERROR_DLL_MIGHT_BE_INCOMPATIBLE (0x2AF)] Error Code 688 Debugger did not handle the exception. [ERROR_DBG_EXCEPTION_NOT_HANDLED (0x2B0)] Error Code 689 Debugger will reply later. [ERROR_DBG_REPLY_LATER (0x2B1)] Error Code 690 Debugger cannot provide handle. [ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE (0x2B2)] Error Code 691 Debugger terminated thread. [ERROR_DBG_TERMINATE_THREAD (0x2B3)] Error Code 692 Debugger terminated process. [ERROR_DBG_TERMINATE_PROCESS (0x2B4)] Error Code 693 Debugger got control C. [ERROR_DBG_CONTROL_C (0x2B5)] Error Code 694 Debugger printed exception on control C. [ERROR_DBG_PRINTEXCEPTION_C (0x2B6)] Error Code 695 Debugger received RIP exception. [ERROR_DBG_RIPEXCEPTION (0x2B7)] Error Code 696 Debugger received control break. [ERROR_DBG_CONTROL_BREAK (0x2B8)] Error Code 697 Debugger command communication exception. [ERROR_DBG_COMMAND_EXCEPTION (0x2B9)] Error Code 698 {Object Exists} An attempt was made to create an object and the object name already existed. [ERROR_OBJECT_NAME_EXISTS (0x2BA)] Error Code 699 {Thread Suspended} A thread termination occurred while the thread was suspended. The thread was resumed [ERROR_THREAD_WAS_SUSPENDED (0x2BB)] Error Code 700 {Image Relocated} An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image. [ERROR_IMAGE_NOT_AT_BASE (0x2BC)] Error Code 701 This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created. [ERROR_RXACT_STATE_CREATED (0x2BD)] Error Code 702 {Segment Load} A virtual DOS machine (VDM) is loading [ERROR_SEGMENT_NOTIFICATION (0x2BE)] Error Code 703 {Invalid Current Directory} The process cannot switch to the startup current directory %hs. Select OK to set current directory to %hs [ERROR_BAD_CURRENT_DIRECTORY (0x2BF)] Error Code 704 {Redundant Read} To satisfy a read request [ERROR_FT_READ_RECOVERY_FROM_BACKUP (0x2C0)] Error Code 705 {Redundant Write} To satisfy a write request [ERROR_FT_WRITE_RECOVERY (0x2C1)] Error Code 706 {Machine Type Mismatch} The image file %hs is valid [ERROR_IMAGE_MACHINE_TYPE_MISMATCH (0x2C2)] Error Code 707 {Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later. [ERROR_RECEIVE_PARTIAL (0x2C3)] Error Code 708 {Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system. [ERROR_RECEIVE_EXPEDITED (0x2C4)] Error Code 709 {Partial Expedited Data Received} The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later. [ERROR_RECEIVE_PARTIAL_EXPEDITED (0x2C5)] Error Code 710 {TDI Event Done} The TDI indication has completed successfully. [ERROR_EVENT_DONE (0x2C6)] Error Code 711 {TDI Event Pending} The TDI indication has entered the pending state. [ERROR_EVENT_PENDING (0x2C7)] Error Code 712 Checking file system on %wZ [ERROR_CHECKING_FILE_SYSTEM (0x2C8)] Error Code 713 {Fatal Application Exit} %hs [ERROR_FATAL_APP_EXIT (0x2C9)] Error Code 714 The specified registry key is referenced by a predefined handle. [ERROR_PREDEFINED_HANDLE (0x2CA)] Error Code 715 {Page Unlocked} The page protection of a locked page was changed to ‘No Access’ and the page was unlocked from memory and from the process. [ERROR_WAS_UNLOCKED (0x2CB)] Error Code 716 %hs [ERROR_SERVICE_NOTIFICATION (0x2CC)] Error Code 717 {Page Locked} One of the pages to lock was already locked. [ERROR_WAS_LOCKED (0x2CD)] Error Code 718 Application popup Error Code 719 ERROR_ALREADY_WIN32 [ERROR_ALREADY_WIN32 (0x2CF)] Error Code 720 {Machine Type Mismatch} The image file %hs is valid [ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE (0x2D0)] Error Code 721 A yield execution was performed and no thread was available to run. [ERROR_NO_YIELD_PERFORMED (0x2D1)] Error Code 722 The resumable flag to a timer API was ignored. [ERROR_TIMER_RESUME_IGNORED (0x2D2)] Error Code 723 The arbiter has deferred arbitration of these resources to its parent [ERROR_ARBITRATION_UNHANDLED (0x2D3)] Error Code 724 The inserted CardBus device cannot be started because of a configuration error on «%hs». [ERROR_CARDBUS_NOT_SUPPORTED (0x2D4)] Error Code 725 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 [ERROR_MP_PROCESSOR_MISMATCH (0x2D5)] Error Code 726 The system was put into hibernation. [ERROR_HIBERNATED (0x2D6)] Error Code 727 The system was resumed from hibernation. [ERROR_RESUME_HIBERNATION (0x2D7)] Error Code 728 Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2 [ERROR_FIRMWARE_UPDATED (0x2D8)] Error Code 729 A device driver is leaking locked I/O pages causing system degradation. The system has automatically enabled tracking code in order to try and catch the culprit. [ERROR_DRIVERS_LEAKING_LOCKED_PAGES (0x2D9)] Error Code 730 The system has awoken [ERROR_WAKE_SYSTEM (0x2DA)] Error Code 731 ERROR_WAIT_1 [ERROR_WAIT_1 (0x2DB)] Error Code 732 ERROR_WAIT_2 [ERROR_WAIT_2 (0x2DC)] Error Code 733 ERROR_WAIT_3 [ERROR_WAIT_3 (0x2DD)] Error Code 734 ERROR_WAIT_63 [ERROR_WAIT_63 (0x2DE)] Error Code 735 ERROR_ABANDONED_WAIT_0 [ERROR_ABANDONED_WAIT_0 (0x2DF)] Error Code 736 ERROR_ABANDONED_WAIT_63 [ERROR_ABANDONED_WAIT_63 (0x2E0)] Error Code 737 ERROR_USER_APC [ERROR_USER_APC (0x2E1)] Error Code 738 ERROR_KERNEL_APC [ERROR_KERNEL_APC (0x2E2)] Error Code 739 ERROR_ALERTED [ERROR_ALERTED (0x2E3)] Error Code 740 The requested operation requires elevation. [ERROR_ELEVATION_REQUIRED (0x2E4)] Error Code 741 A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. [ERROR_REPARSE (0x2E5)] Error Code 742 An open/create operation completed while an oplock break is underway. [ERROR_OPLOCK_BREAK_IN_PROGRESS (0x2E6)] Error Code 743 A new volume has been mounted by a file system. [ERROR_VOLUME_MOUNTED (0x2E7)] Error Code 744 This success level status indicates that the transaction state already exists for the registry sub-tree [ERROR_RXACT_COMMITTED (0x2E8)] Error Code 745 This indicates that a notify change request has been completed due to closing the handle which made the notify change request. [ERROR_NOTIFY_CLEANUP (0x2E9)] Error Code 746 {Connect Failure on Primary Transport} An attempt was made to connect to the remote server %hs on the primary transport [ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED (0x2EA)] Error Code 747 Page fault was a transition fault. [ERROR_PAGE_FAULT_TRANSITION (0x2EB)] Error Code 748 Page fault was a demand zero fault. [ERROR_PAGE_FAULT_DEMAND_ZERO (0x2EC)] Error Code 749 Page fault was a demand zero fault. [ERROR_PAGE_FAULT_COPY_ON_WRITE (0x2ED)] Error Code 750 Page fault was a demand zero fault. [ERROR_PAGE_FAULT_GUARD_PAGE (0x2EE)] Error Code 751 Page fault was satisfied by reading from a secondary storage device. [ERROR_PAGE_FAULT_PAGING_FILE (0x2EF)] Error Code 752 Cached page was locked during operation. [ERROR_CACHE_PAGE_LOCKED (0x2F0)] Error Code 753 Crash dump exists in paging file. [ERROR_CRASH_DUMP (0x2F1)] Error Code 754 Specified buffer contains all zeros. [ERROR_BUFFER_ALL_ZEROS (0x2F2)] Error Code 755 A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. [ERROR_REPARSE_OBJECT (0x2F3)] Error Code 756 The device has succeeded a query-stop and its resource requirements have changed. [ERROR_RESOURCE_REQUIREMENTS_CHANGED (0x2F4)] Error Code 757 The translator has translated these resources into the global space and no further translations should be performed. [ERROR_TRANSLATION_COMPLETE (0x2F5)] Error Code 758 A process being terminated has no threads to terminate. [ERROR_NOTHING_TO_TERMINATE (0x2F6)] Error Code 759 The specified process is not part of a job. [ERROR_PROCESS_NOT_IN_JOB (0x2F7)] Error Code 760 The specified process is part of a job. [ERROR_PROCESS_IN_JOB (0x2F8)] Error Code 761 {Volume Shadow Copy Service} The system is now ready for hibernation. [ERROR_VOLSNAP_HIBERNATE_READY (0x2F9)] Error Code 762 A file system or file system filter driver has successfully completed an FsFilter operation. [ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY (0x2FA)] Error Code 763 The specified interrupt vector was already connected. [ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED (0x2FB)] Error Code 764 The specified interrupt vector is still connected. [ERROR_INTERRUPT_STILL_CONNECTED (0x2FC)] Error Code 765 An operation is blocked waiting for an oplock. [ERROR_WAIT_FOR_OPLOCK (0x2FD)] Error Code 766 Debugger handled exception [ERROR_DBG_EXCEPTION_HANDLED (0x2FE)] Error Code 767 Debugger continued [ERROR_DBG_CONTINUE (0x2FF)] Error Code 768 An exception occurred in a user mode callback and the kernel callback frame should be removed. [ERROR_CALLBACK_POP_STACK (0x300)] Error Code 769 Compression is disabled for this volume. [ERROR_COMPRESSION_DISABLED (0x301)] Error Code 770 The data provider cannot fetch backwards through a result set. [ERROR_CANTFETCHBACKWARDS (0x302)] Error Code 771 The data provider cannot scroll backwards through a result set. [ERROR_CANTSCROLLBACKWARDS (0x303)] Error Code 772 The data provider requires that previously fetched data is released before asking for more data. [ERROR_ROWSNOTRELEASED (0x304)] Error Code 773 The data provider was not able to interpret the flags set for a column binding in an accessor. [ERROR_BAD_ACCESSOR_FLAGS (0x305)] Error Code 774 One or more errors occurred while processing the request. [ERROR_ERRORS_ENCOUNTERED (0x306)] Error Code 775 The implementation is not capable of performing the request. [ERROR_NOT_CAPABLE (0x307)] Error Code 776 The client of a component requested an operation which is not valid given the state of the component instance. [ERROR_REQUEST_OUT_OF_SEQUENCE (0x308)] Error Code 777 A version number could not be parsed. [ERROR_VERSION_PARSE_ERROR (0x309)] Error Code 778 The iterator’s start position is invalid. [ERROR_BADSTARTPOSITION (0x30A)] Error Code 779 The hardware has reported an uncorrectable memory error. [ERROR_MEMORY_HARDWARE (0x30B)] Error Code 780 The attempted operation required self healing to be enabled. [ERROR_DISK_REPAIR_DISABLED (0x30C)] Error Code 781 The Desktop heap encountered an error while allocating session memory. There is more information in the system event log. [ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE (0x30D)] Error Code 782 The system power state is transitioning from %2 to %3. [ERROR_SYSTEM_POWERSTATE_TRANSITION (0x30E)] Error Code 783 The system power state is transitioning from %2 to %3 but could enter %4. [ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION (0x30F)] Error Code 784 A thread is getting dispatched with MCA EXCEPTION because of MCA. [ERROR_MCA_EXCEPTION (0x310)] Error Code 785 Access to %1 is monitored by policy rule %2. [ERROR_ACCESS_AUDIT_BY_POLICY (0x311)] Error Code 786 Access to %1 has been restricted by your Administrator by policy rule %2. [ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY (0x312)] Error Code 787 A valid hibernation file has been invalidated and should be abandoned. [ERROR_ABANDON_HIBERFILE (0x313)] Error Code 788 {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error may be caused by network connectivity issues. Please try to save this file elsewhere. [ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED (0x314)] Error Code 789 {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error was returned by the server on which the file exists. Please try to save this file elsewhere. [ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR (0x315)] Error Code 790 {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error may be caused if the device has been removed or the media is write-protected. [ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR (0x316)] Error Code 791 The resources required for this device conflict with the MCFG table. [ERROR_BAD_MCFG_TABLE (0x317)] Error Code 994 Access to the extended attribute was denied. [ERROR_EA_ACCESS_DENIED (0x3E2)] Error Code 995 The I/O operation has been aborted because of either a thread exit or an application request. [ERROR_OPERATION_ABORTED (0x3E3)] Error Code 996 Overlapped I/O event is not in a signaled state. [ERROR_IO_INCOMPLETE (0x3E4)] Error Code 997 Overlapped I/O operation is in progress. [ERROR_IO_PENDING (0x3E5)] Error Code 998 Invalid access to memory location. [ERROR_NOACCESS (0x3E6)] Error Code 999 Error performing inpage operation. [ERROR_SWAPERROR (0x3E7)] Error Code 1001 Recursion too deep; the stack overflowed. [ERROR_STACK_OVERFLOW (0x3E9)] Error Code 1002 The window cannot act on the sent message. [ERROR_INVALID_MESSAGE (0x3EA)] Error Code 1003 Cannot complete this function. [ERROR_CAN_NOT_COMPLETE (0x3EB)] Error Code 1004 Invalid flags. [ERROR_INVALID_FLAGS (0x3EC)] Error Code 1005 The volume does not contain a recognized file system. Please make sure that all required file system drivers are loaded and that the volume is not corrupted. [ERROR_UNRECOGNIZED_VOLUME (0x3ED)] Error Code 1006 The volume for a file has been externally altered so that the opened file is no longer valid. [ERROR_FILE_INVALID (0x3EE)] Error Code 1007 The requested operation cannot be performed in full-screen mode. [ERROR_FULLSCREEN_MODE (0x3EF)] Error Code 1008 An attempt was made to reference a token that does not exist. [ERROR_NO_TOKEN (0x3F0)] Error Code 1009 The configuration registry database is corrupt. [ERROR_BADDB (0x3F1)] Error Code 1010 The configuration registry key is invalid. [ERROR_BADKEY (0x3F2)] Error Code 1011 The configuration registry key could not be opened. [ERROR_CANTOPEN (0x3F3)] Error Code 1012 The configuration registry key could not be read. [ERROR_CANTREAD (0x3F4)] Error Code 1013 The configuration registry key could not be written. [ERROR_CANTWRITE (0x3F5)] Error Code 1014 One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful. [ERROR_REGISTRY_RECOVERED (0x3F6)] Error Code 1015 The registry is corrupted. The structure of one of the files containing registry data is corrupted or the system’s memory image of the file is corrupted or the file could not be recovered because the alternate copy or log was absent or corrupted. [ERROR_REGISTRY_CORRUPT (0x3F7)] Error Code 1016 An I/O operation initiated by the registry failed unrecoverably. The registry could not read in or write out or flush one of the files that contain the system’s image of the registry. [ERROR_REGISTRY_IO_FAILED (0x3F8)] Error Code 1017 The system has attempted to load or restore a file into the registry but the specified file is not in a registry file format. [ERROR_NOT_REGISTRY_FILE (0x3F9)] Error Code 1018 Illegal operation attempted on a registry key that has been marked for deletion. [ERROR_KEY_DELETED (0x3FA)] Error Code 1019 System could not allocate the required space in a registry log. [ERROR_NO_LOG_SPACE (0x3FB)] Error Code 1020 Cannot create a symbolic link in a registry key that already has subkeys or values. [ERROR_KEY_HAS_CHILDREN (0x3FC)] Error Code 1021 Cannot create a stable subkey under a volatile parent key. [ERROR_CHILD_MUST_BE_VOLATILE (0x3FD)] Error Code 1022 A notify change request is being completed and the information is not being returned in the caller’s buffer. The caller now needs to enumerate the files to find the changes. [ERROR_NOTIFY_ENUM_DIR (0x3FE)] Error Code 1051 A stop control has been sent to a service that other running services are dependent on. [ERROR_DEPENDENT_SERVICES_RUNNING (0x41B)] Error Code 1052 The requested control is not valid for this service. [ERROR_INVALID_SERVICE_CONTROL (0x41C)] Error Code 1053 The service did not respond to the start or control request in a timely fashion. [ERROR_SERVICE_REQUEST_TIMEOUT (0x41D)] Error Code 1054 A thread could not be created for the service. [ERROR_SERVICE_NO_THREAD (0x41E)] Error Code 1055 The service database is locked. [ERROR_SERVICE_DATABASE_LOCKED (0x41F)] Error Code 1056 An instance of the service is already running. [ERROR_SERVICE_ALREADY_RUNNING (0x420)] Error Code 1057 The account name is invalid or does not exist or the password is invalid for the account name specified. [ERROR_INVALID_SERVICE_ACCOUNT (0x421)] Error Code 1058 The service cannot be started either because it is disabled or because it has no enabled devices associated with it. [ERROR_SERVICE_DISABLED (0x422)] Error Code 1059 Circular service dependency was specified. [ERROR_CIRCULAR_DEPENDENCY (0x423)] Error Code 1060 The specified service does not exist as an installed service. [ERROR_SERVICE_DOES_NOT_EXIST (0x424)] Error Code 1061 The service cannot accept control messages at this time. [ERROR_SERVICE_CANNOT_ACCEPT_CTRL (0x425)] Error Code 1062 The service has not been started. [ERROR_SERVICE_NOT_ACTIVE (0x426)] Error Code 1063 The service process could not connect to the service controller. [ERROR_FAILED_SERVICE_CONTROLLER_CONNECT (0x427)] Error Code 1064 An exception occurred in the service when handling the control request. [ERROR_EXCEPTION_IN_SERVICE (0x428)] Error Code 1065 The database specified does not exist. [ERROR_DATABASE_DOES_NOT_EXIST (0x429)] Error Code 1066 The service has returned a service-specific error code. [ERROR_SERVICE_SPECIFIC_ERROR (0x42A)] Error Code 1067 The process terminated unexpectedly. [ERROR_PROCESS_ABORTED (0x42B)] Error Code 1068 The dependency service or group failed to start. [ERROR_SERVICE_DEPENDENCY_FAIL (0x42C)] Error Code 1069 The service did not start due to a logon failure. [ERROR_SERVICE_LOGON_FAILED (0x42D)] Error Code 1070 After starting the service hung in a start-pending state. [ERROR_SERVICE_START_HANG (0x42E)] Error Code 1071 The specified service database lock is invalid. [ERROR_INVALID_SERVICE_LOCK (0x42F)] Error Code 1072 The specified service has been marked for deletion. [ERROR_SERVICE_MARKED_FOR_DELETE (0x430)] Error Code 1073 The specified service already exists. [ERROR_SERVICE_EXISTS (0x431)] Error Code 1074 The system is currently running with the last-known-good configuration. [ERROR_ALREADY_RUNNING_LKG (0x432)] Error Code 1075 The dependency service does not exist or has been marked for deletion. [ERROR_SERVICE_DEPENDENCY_DELETED (0x433)] Error Code 1076 The current boot has already been accepted for use as the last-known-good control set. [ERROR_BOOT_ALREADY_ACCEPTED (0x434)] Error Code 1077 No attempts to start the service have been made since the last boot. [ERROR_SERVICE_NEVER_STARTED (0x435)] Error Code 1078 The name is already in use as either a service name or a service display name. [ERROR_DUPLICATE_SERVICE_NAME (0x436)] Error Code 1079 The account specified for this service is different from the account specified for other services running in the same process. [ERROR_DIFFERENT_SERVICE_ACCOUNT (0x437)] Error Code 1080 Failure actions can only be set for Win32 services not for drivers. [ERROR_CANNOT_DETECT_DRIVER_FAILURE (0x438)] Error Code 1081 This service runs in the same process as the service control manager. Therefore the service control manager cannot take action if this service’s process terminates unexpectedly. [ERROR_CANNOT_DETECT_PROCESS_ABORT (0x439)] Error Code 1082 No recovery program has been configured for this service. [ERROR_NO_RECOVERY_PROGRAM (0x43A)] Error Code 1083 The executable program that this service is configured to run in does not implement the service. [ERROR_SERVICE_NOT_IN_EXE (0x43B)] Error Code 1084 This service cannot be started in Safe Mode [ERROR_NOT_SAFEBOOT_SERVICE (0x43C)] Error Code 1100 The physical end of the tape has been reached. [ERROR_END_OF_MEDIA (0x44C)] Error Code 1101 A tape access reached a filemark. [ERROR_FILEMARK_DETECTED (0x44D)] Error Code 1102 The beginning of the tape or a partition was encountered. [ERROR_BEGINNING_OF_MEDIA (0x44E)] Error Code 1103 A tape access reached the end of a set of files. [ERROR_SETMARK_DETECTED (0x44F)] Error Code 1104 No more data is on the tape. [ERROR_NO_DATA_DETECTED (0x450)] Error Code 1105 Tape could not be partitioned. [ERROR_PARTITION_FAILURE (0x451)] Error Code 1106 When accessing a new tape of a multivolume partition the current block size is incorrect. [ERROR_INVALID_BLOCK_LENGTH (0x452)] Error Code 1107 Tape partition information could not be found when loading a tape. [ERROR_DEVICE_NOT_PARTITIONED (0x453)] Error Code 1108 Unable to lock the media eject mechanism. [ERROR_UNABLE_TO_LOCK_MEDIA (0x454)] Error Code 1109 Unable to unload the media. [ERROR_UNABLE_TO_UNLOAD_MEDIA (0x455)] Error Code 1110 The media in the drive may have changed. [ERROR_MEDIA_CHANGED (0x456)] Error Code 1111 The I/O bus was reset. [ERROR_BUS_RESET (0x457)] Error Code 1112 No media in drive. [ERROR_NO_MEDIA_IN_DRIVE (0x458)] Error Code 1113 No mapping for the Unicode character exists in the target multi-byte code page. [ERROR_NO_UNICODE_TRANSLATION (0x459)] Error Code 1114 A dynamic link library (DLL) initialization routine failed. [ERROR_DLL_INIT_FAILED (0x45A)] Error Code 1115 A system shutdown is in progress. [ERROR_SHUTDOWN_IN_PROGRESS (0x45B)] Error Code 1116 Unable to abort the system shutdown because no shutdown was in progress. [ERROR_NO_SHUTDOWN_IN_PROGRESS (0x45C)] Error Code 1117 The request could not be performed because of an I/O device error. [ERROR_IO_DEVICE (0x45D)] Error Code 1118 No serial device was successfully initialized. The serial driver will unload. [ERROR_SERIAL_NO_DEVICE (0x45E)] Error Code 1119 Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened. [ERROR_IRQ_BUSY (0x45F)] Error Code 1120 A serial I/O operation was completed by another write to the serial port. The IOCTL_SERIAL_XOFF_COUNTER reached zero.) [ERROR_MORE_WRITES (0x460)] Error Code 1121 A serial I/O operation completed because the timeout period expired. The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.) [ERROR_COUNTER_TIMEOUT (0x461)] Error Code 1122 No ID address mark was found on the floppy disk. [ERROR_FLOPPY_ID_MARK_NOT_FOUND (0x462)] Error Code 1123 Mismatch between the floppy disk sector ID field and the floppy disk controller track address. [ERROR_FLOPPY_WRONG_CYLINDER (0x463)] Error Code 1124 The floppy disk controller reported an error that is not recognized by the floppy disk driver. [ERROR_FLOPPY_UNKNOWN_ERROR (0x464)] Error Code 1125 The floppy disk controller returned inconsistent results in its registers. [ERROR_FLOPPY_BAD_REGISTERS (0x465)] Error Code 1126 While accessing the hard disk a recalibrate operation failed even after retries. [ERROR_DISK_RECALIBRATE_FAILED (0x466)] Error Code 1127 While accessing the hard disk a disk operation failed even after retries. [ERROR_DISK_OPERATION_FAILED (0x467)] Error Code 1128 While accessing the hard disk a disk controller reset was needed but even that failed. [ERROR_DISK_RESET_FAILED (0x468)] Error Code 1129 Physical end of tape encountered. [ERROR_EOM_OVERFLOW (0x469)] Error Code 1130 Not enough server storage is available to process this command. [ERROR_NOT_ENOUGH_SERVER_MEMORY (0x46A)] Error Code 1131 A potential deadlock condition has been detected. [ERROR_POSSIBLE_DEADLOCK (0x46B)] Error Code 1132 The base address or the file offset specified does not have the proper alignment. [ERROR_MAPPED_ALIGNMENT (0x46C)] Error Code 1140 An attempt to change the system power state was vetoed by another application or driver. [ERROR_SET_POWER_STATE_VETOED (0x474)] Error Code 1141 The system BIOS failed an attempt to change the system power state. [ERROR_SET_POWER_STATE_FAILED (0x475)] Error Code 1142 An attempt was made to create more links on a file than the file system supports. [ERROR_TOO_MANY_LINKS (0x476)] Error Code 1150 The specified program requires a newer version of Windows. [ERROR_OLD_WIN_VERSION (0x47E)] Error Code 1151 The specified program is not a Windows or MS-DOS program. [ERROR_APP_WRONG_OS (0x47F)] Error Code 1152 Cannot start more than one instance of the specified program. [ERROR_SINGLE_INSTANCE_APP (0x480)] Error Code 1153 The specified program was written for an earlier version of Windows. [ERROR_RMODE_APP (0x481)] Error Code 1154 One of the library files needed to run this application is damaged. [ERROR_INVALID_DLL (0x482)] Error Code 1155 No application is associated with the specified file for this operation. [ERROR_NO_ASSOCIATION (0x483)] Error Code 1156 An error occurred in sending the command to the application. [ERROR_DDE_FAIL (0x484)] Error Code 1157 One of the library files needed to run this application cannot be found. [ERROR_DLL_NOT_FOUND (0x485)] Error Code 1158 The current process has used all of its system allowance of handles for Window Manager objects. [ERROR_NO_MORE_USER_HANDLES (0x486)] Error Code 1159 The message can be used only with synchronous operations. [ERROR_MESSAGE_SYNC_ONLY (0x487)] Error Code 1160 The indicated source element has no media. [ERROR_SOURCE_ELEMENT_EMPTY (0x488)] Error Code 1161 The indicated destination element already contains media. [ERROR_DESTINATION_ELEMENT_FULL (0x489)] Error Code 1162 The indicated element does not exist. [ERROR_ILLEGAL_ELEMENT_ADDRESS (0x48A)] Error Code 1163 The indicated element is part of a magazine that is not present. [ERROR_MAGAZINE_NOT_PRESENT (0x48B)] Error Code 1164 The indicated device requires reinitialization due to hardware errors. [ERROR_DEVICE_REINITIALIZATION_NEEDED (0x48C)] Error Code 1165 The device has indicated that cleaning is required before further operations are attempted. [ERROR_DEVICE_REQUIRES_CLEANING (0x48D)] Error Code 1166 The device has indicated that its door is open. [ERROR_DEVICE_DOOR_OPEN (0x48E)] Error Code 1167 The device is not connected. [ERROR_DEVICE_NOT_CONNECTED (0x48F)] Error Code 1168 Element not found. [ERROR_NOT_FOUND (0x490)] Error Code 1169 There was no match for the specified key in the index. [ERROR_NO_MATCH (0x491)] Error Code 1170 The property set specified does not exist on the object. [ERROR_SET_NOT_FOUND (0x492)] Error Code 1171 The point passed to GetMouseMovePoints is not in the buffer. [ERROR_POINT_NOT_FOUND (0x493)] Error Code 1172 The tracking (workstation) service is not running. [ERROR_NO_TRACKING_SERVICE (0x494)] Error Code 1173 The Volume ID could not be found. [ERROR_NO_VOLUME_ID (0x495)] Error Code 1175 Unable to remove the file to be replaced. [ERROR_UNABLE_TO_REMOVE_REPLACED (0x497)] Error Code 1176 Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name. [ERROR_UNABLE_TO_MOVE_REPLACEMENT (0x498)] Error Code 1177 Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name. [ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 (0x499)] Error Code 1178 The volume change journal is being deleted. [ERROR_JOURNAL_DELETE_IN_PROGRESS (0x49A)] Error Code 1179 The volume change journal is not active. [ERROR_JOURNAL_NOT_ACTIVE (0x49B)] Error Code 1180 A file was found but it may not be the correct file. [ERROR_POTENTIAL_FILE_FOUND (0x49C)] Error Code 1181 The journal entry has been deleted from the journal. [ERROR_JOURNAL_ENTRY_DELETED (0x49D)] Error Code 1190 A system shutdown has already been scheduled. [ERROR_SHUTDOWN_IS_SCHEDULED (0x4A6)] Error Code 1191 The system shutdown cannot be initiated because there are other users logged on to the computer. [ERROR_SHUTDOWN_USERS_LOGGED_ON (0x4A7)] Error Code 1200 The specified device name is invalid. [ERROR_BAD_DEVICE (0x4B0)] Error Code 1201 The device is not currently connected but it is a remembered connection. [ERROR_CONNECTION_UNAVAIL (0x4B1)] Error Code 1202 The local device name has a remembered connection to another network resource. [ERROR_DEVICE_ALREADY_REMEMBERED (0x4B2)] Error Code 1203 The network path was either typed incorrectly does not exist or the network provider is not currently available. Please try retyping the path or contact your network administrator. [ERROR_NO_NET_OR_BAD_PATH (0x4B3)] Error Code 1204 The specified network provider name is invalid. [ERROR_BAD_PROVIDER (0x4B4)] Error Code 1205 Unable to open the network connection profile. [ERROR_CANNOT_OPEN_PROFILE (0x4B5)] Error Code 1206 The network connection profile is corrupted. [ERROR_BAD_PROFILE (0x4B6)] Error Code 1207 Cannot enumerate a noncontainer. [ERROR_NOT_CONTAINER (0x4B7)] Error Code 1208 An extended error has occurred. [ERROR_EXTENDED_ERROR (0x4B8)] Error Code 1209 The format of the specified group name is invalid. [ERROR_INVALID_GROUPNAME (0x4B9)] Error Code 1210 The format of the specified computer name is invalid. [ERROR_INVALID_COMPUTERNAME (0x4BA)] Error Code 1211 The format of the specified event name is invalid. [ERROR_INVALID_EVENTNAME (0x4BB)] Error Code 1212 The format of the specified domain name is invalid. [ERROR_INVALID_DOMAINNAME (0x4BC)] Error Code 1213 The format of the specified service name is invalid. [ERROR_INVALID_SERVICENAME (0x4BD)] Error Code 1214 The format of the specified network name is invalid. [ERROR_INVALID_NETNAME (0x4BE)] Error Code 1215 The format of the specified share name is invalid. [ERROR_INVALID_SHARENAME (0x4BF)] Error Code 1216 The format of the specified password is invalid. [ERROR_INVALID_PASSWORDNAME (0x4C0)] Error Code 1217 The format of the specified message name is invalid. [ERROR_INVALID_MESSAGENAME (0x4C1)] Error Code 1218 The format of the specified message destination is invalid. [ERROR_INVALID_MESSAGEDEST (0x4C2)] Error Code 1219 Multiple connections to a server or shared resource by the same user using more than one user name are not allowed. Disconnect all previous connections to the server or shared resource and try again. [ERROR_SESSION_CREDENTIAL_CONFLICT (0x4C3)] Error Code 1220 An attempt was made to establish a session to a network server but there are already too many sessions established to that server. [ERROR_REMOTE_SESSION_LIMIT_EXCEEDED (0x4C4)] Error Code 1221 The workgroup or domain name is already in use by another computer on the network. [ERROR_DUP_DOMAINNAME (0x4C5)] Error Code 1222 The network is not present or not started. [ERROR_NO_NETWORK (0x4C6)] Error Code 1223 The operation was canceled by the user. [ERROR_CANCELLED (0x4C7)] Error Code 1224 The requested operation cannot be performed on a file with a user-mapped section open. [ERROR_USER_MAPPED_FILE (0x4C8)] Error Code 1225 The remote computer refused the network connection. [ERROR_CONNECTION_REFUSED (0x4C9)] Error Code 1226 The network connection was gracefully closed. [ERROR_GRACEFUL_DISCONNECT (0x4CA)] Error Code 1227 The network transport endpoint already has an address associated with it. [ERROR_ADDRESS_ALREADY_ASSOCIATED (0x4CB)] Error Code 1228 An address has not yet been associated with the network endpoint. [ERROR_ADDRESS_NOT_ASSOCIATED (0x4CC)] Error Code 1229 An operation was attempted on a nonexistent network connection. [ERROR_CONNECTION_INVALID (0x4CD)] Error Code 1230 An invalid operation was attempted on an active network connection. [ERROR_CONNECTION_ACTIVE (0x4CE)] Error Code 1231 The network location cannot be reached. For information about network troubleshooting see Windows Help. [ERROR_NETWORK_UNREACHABLE (0x4CF)] Error Code 1232 The network location cannot be reached. For information about network troubleshooting see Windows Help. [ERROR_HOST_UNREACHABLE (0x4D0)] Error Code 1233 The network location cannot be reached. For information about network troubleshooting see Windows Help. [ERROR_PROTOCOL_UNREACHABLE (0x4D1)] Error Code 1234 No service is operating at the destination network endpoint on the remote system. [ERROR_PORT_UNREACHABLE (0x4D2)] Error Code 1235 The request was aborted. [ERROR_REQUEST_ABORTED (0x4D3)] Error Code 1236 The network connection was aborted by the local system. [ERROR_CONNECTION_ABORTED (0x4D4)] Error Code 1237 The operation could not be completed. A retry should be performed. [ERROR_RETRY (0x4D5)] Error Code 1238 A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached. [ERROR_CONNECTION_COUNT_LIMIT (0x4D6)] Error Code 1239 Attempting to log in during an unauthorized time of day for this account. [ERROR_LOGIN_TIME_RESTRICTION (0x4D7)] Error Code 1240 The account is not authorized to log in from this station. [ERROR_LOGIN_WKSTA_RESTRICTION (0x4D8)] Error Code 1241 The network address could not be used for the operation requested. [ERROR_INCORRECT_ADDRESS (0x4D9)] Error Code 1242 The service is already registered. [ERROR_ALREADY_REGISTERED (0x4DA)] Error Code 1243 The specified service does not exist. [ERROR_SERVICE_NOT_FOUND (0x4DB)] Error Code 1244 The operation being requested was not performed because the user has not been authenticated. [ERROR_NOT_AUTHENTICATED (0x4DC)] Error Code 1245 The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist. [ERROR_NOT_LOGGED_ON (0x4DD)] Error Code 1246 Continue with work in progress. [ERROR_CONTINUE (0x4DE)] Error Code 1247 An attempt was made to perform an initialization operation when initialization has already been completed. [ERROR_ALREADY_INITIALIZED (0x4DF)] Error Code 1248 No more local devices. [ERROR_NO_MORE_DEVICES (0x4E0)] Error Code 1249 The specified site does not exist. [ERROR_NO_SUCH_SITE (0x4E1)] Error Code 1250 A domain controller with the specified name already exists. [ERROR_DOMAIN_CONTROLLER_EXISTS (0x4E2)] Error Code 1251 This operation is supported only when you are connected to the server. [ERROR_ONLY_IF_CONNECTED (0x4E3)] Error Code 1252 The group policy framework should call the extension even if there are no changes. [ERROR_OVERRIDE_NOCHANGES (0x4E4)] Error Code 1253 The specified user does not have a valid profile. [ERROR_BAD_USER_PROFILE (0x4E5)] Error Code 1254 This operation is not supported on a computer running Windows Server 2003 for Small Business Server [ERROR_NOT_SUPPORTED_ON_SBS (0x4E6)] Error Code 1255 The server machine is shutting down. [ERROR_SERVER_SHUTDOWN_IN_PROGRESS (0x4E7)] Error Code 1256 The remote system is not available. For information about network troubleshooting see Windows Help. [ERROR_HOST_DOWN (0x4E8)] Error Code 1257 The security identifier provided is not from an account domain. [ERROR_NON_ACCOUNT_SID (0x4E9)] Error Code 1258 The security identifier provided does not have a domain component. [ERROR_NON_DOMAIN_SID (0x4EA)] Error Code 1259 AppHelp dialog canceled thus preventing the application from starting. [ERROR_APPHELP_BLOCK (0x4EB)] Error Code 1260 This program is blocked by group policy. For more information contact your system administrator. [ERROR_ACCESS_DISABLED_BY_POLICY (0x4EC)] Error Code 1261 A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific. [ERROR_REG_NAT_CONSUMPTION (0x4ED)] Error Code 1262 The share is currently offline or does not exist. [ERROR_CSCSHARE_OFFLINE (0x4EE)] Error Code 1263 The Kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. There is more information in the system event log. [ERROR_PKINIT_FAILURE (0x4EF)] Error Code 1264 The Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem. [ERROR_SMARTCARD_SUBSYSTEM_FAILURE (0x4F0)] Error Code 1265 The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you. [ERROR_DOWNGRADE_DETECTED (0x4F1)] Error Code 1271 The machine is locked and cannot be shut down without the force option. [ERROR_MACHINE_LOCKED (0x4F7)] Error Code 1273 An application-defined callback gave invalid data when called. [ERROR_CALLBACK_SUPPLIED_INVALID_DATA (0x4F9)] Error Code 1274 The group policy framework should call the extension in the synchronous foreground policy refresh. [ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED (0x4FA)] Error Code 1275 This driver has been blocked from loading [ERROR_DRIVER_BLOCKED (0x4FB)] Error Code 1276 A dynamic link library (DLL) referenced a module that was neither a DLL nor the process’s executable image. [ERROR_INVALID_IMPORT_OF_NON_DLL (0x4FC)] Error Code 1277 Windows cannot open this program since it has been disabled. [ERROR_ACCESS_DISABLED_WEBBLADE (0x4FD)] Error Code 1278 Windows cannot open this program because the license enforcement system has been tampered with or become corrupted. [ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER (0x4FE)] Error Code 1279 A transaction recover failed. [ERROR_RECOVERY_FAILURE (0x4FF)] Error Code 1280 The current thread has already been converted to a fiber. [ERROR_ALREADY_FIBER (0x500)] Error Code 1281 The current thread has already been converted from a fiber. [ERROR_ALREADY_THREAD (0x501)] Error Code 1282 The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application. [ERROR_STACK_BUFFER_OVERRUN (0x502)] Error Code 1283 Data present in one of the parameters is more than the function can operate on. [ERROR_PARAMETER_QUOTA_EXCEEDED (0x503)] Error Code 1284 An attempt to do an operation on a debug object failed because the object is in the process of being deleted. [ERROR_DEBUGGER_INACTIVE (0x504)] Error Code 1285 An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed. [ERROR_DELAY_LOAD_FAILED (0x505)] Error Code 1286 %1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator. [ERROR_VDM_DISALLOWED (0x506)] Error Code 1287 Insufficient information exists to identify the cause of failure. [ERROR_UNIDENTIFIED_ERROR (0x507)] Error Code 1288 The parameter passed to a C runtime function is incorrect. [ERROR_INVALID_CRUNTIME_PARAMETER (0x508)] Error Code 1289 The operation occurred beyond the valid data length of the file. [ERROR_BEYOND_VDL (0x509)] Error Code 1290 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. [ERROR_INCOMPATIBLE_SERVICE_SID_TYPE (0x50A)] Error Code 1291 The process hosting the driver for this device has been terminated. [ERROR_DRIVER_PROCESS_TERMINATED (0x50B)] Error Code 1292 An operation attempted to exceed an implementation-defined limit. [ERROR_IMPLEMENTATION_LIMIT (0x50C)] Error Code 1293 Either the target process or the target thread’s containing process is a protected process. [ERROR_PROCESS_IS_PROTECTED (0x50D)] Error Code 1294 The service notification client is lagging too far behind the current state of services in the machine. [ERROR_SERVICE_NOTIFY_CLIENT_LAGGING (0x50E)] Error Code 1295 The requested file operation failed because the storage quota was exceeded. To free up disk space move files to a different location or delete unnecessary files. For more information contact your system administrator. [ERROR_DISK_QUOTA_EXCEEDED (0x50F)] Error Code 1296 The requested files operation failed because the storage policy blocks that type of file. For more information contact your system administrator. [ERROR_CONTENT_BLOCKED (0x510)] Error Code 1297 A privilege that the service requires to function properly does not exist in the service account configuration. You may use the Services Microsoft Management Console (MMC) snap-in (services.msc) and the Local Security Settings MMC snap-in (secpol.msc) to view the service configuration and the account configuration. [ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE (0x511)] Error Code 1299 Indicates a particular Security ID may not be assigned as the label of an object. [ERROR_INVALID_LABEL (0x513)] Error Code 1300 Not all privileges or groups referenced are assigned to the caller. [ERROR_NOT_ALL_ASSIGNED (0x514)] Error Code 1301 Some mapping between account names and security IDs was not done. [ERROR_SOME_NOT_MAPPED (0x515)] Error Code 1302 No system quota limits are specifically set for this account. [ERROR_NO_QUOTAS_FOR_ACCOUNT (0x516)] Error Code 1303 No encryption key is available. A well-known encryption key was returned. [ERROR_LOCAL_USER_SESSION_KEY (0x517)] Error Code 1304 The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string. [ERROR_NULL_LM_PASSWORD (0x518)] Error Code 1305 The revision level is unknown. [ERROR_UNKNOWN_REVISION (0x519)] Error Code 1306 Indicates two revision levels are incompatible. [ERROR_REVISION_MISMATCH (0x51A)] Error Code 1307 This security ID may not be assigned as the owner of this object. [ERROR_INVALID_OWNER (0x51B)] Error Code 1308 This security ID may not be assigned as the primary group of an object. [ERROR_INVALID_PRIMARY_GROUP (0x51C)] Error Code 1309 An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client. [ERROR_NO_IMPERSONATION_TOKEN (0x51D)] Error Code 1310 The group may not be disabled. [ERROR_CANT_DISABLE_MANDATORY (0x51E)] Error Code 1311 There are currently no logon servers available to service the logon request. [ERROR_NO_LOGON_SERVERS (0x51F)] Error Code 1312 A specified logon session does not exist. It may already have been terminated. [ERROR_NO_SUCH_LOGON_SESSION (0x520)] Error Code 1313 A specified privilege does not exist. [ERROR_NO_SUCH_PRIVILEGE (0x521)] Error Code 1314 A required privilege is not held by the client. [ERROR_PRIVILEGE_NOT_HELD (0x522)] Error Code 1315 The name provided is not a properly formed account name. [ERROR_INVALID_ACCOUNT_NAME (0x523)] Error Code 1316 The specified account already exists. [ERROR_USER_EXISTS (0x524)] This is not the same as a 524 Error you might see in a browser. Error Code 1317 The specified account does not exist. [ERROR_NO_SUCH_USER (0x525)] Error Code 1318 The specified group already exists. [ERROR_GROUP_EXISTS (0x526)] Error Code 1319 The specified group does not exist. [ERROR_NO_SUCH_GROUP (0x527)] Error Code 1320 Either the specified user account is already a member of the specified group or the specified group cannot be deleted because it contains a member. [ERROR_MEMBER_IN_GROUP (0x528)] Error Code 1321 The specified user account is not a member of the specified group account. [ERROR_MEMBER_NOT_IN_GROUP (0x529)] Error Code 1322 The last remaining administration account cannot be disabled or deleted. [ERROR_LAST_ADMIN (0x52A)] Error Code 1323 Unable to update the password. The value provided as the current password is incorrect. [ERROR_WRONG_PASSWORD (0x52B)] Error Code 1324 Unable to update the password. The value provided for the new password contains values that are not allowed in passwords. [ERROR_ILL_FORMED_PASSWORD (0x52C)] Error Code 1325 Unable to update the password. The value provided for the new password does not meet the length complexity or history requirements of the domain. [ERROR_PASSWORD_RESTRICTION (0x52D)] Error Code 1326 Logon failure Error Code 1327 Logon failure Error Code 1328 Logon failure Error Code 1329 Logon failure Error Code 1330 Logon failure Error Code 1331 Logon failure Error Code 1332 No mapping between account names and security IDs was done. [ERROR_NONE_MAPPED (0x534)] Error Code 1333 Too many local user identifiers (LUIDs) were requested at one time. [ERROR_TOO_MANY_LUIDS_REQUESTED (0x535)] Error Code 1334 No more local user identifiers (LUIDs) are available. [ERROR_LUIDS_EXHAUSTED (0x536)] Error Code 1335 The subauthority part of a security ID is invalid for this particular use. [ERROR_INVALID_SUB_AUTHORITY (0x537)] Error Code 1336 The access control list (ACL) structure is invalid. [ERROR_INVALID_ACL (0x538)] Error Code 1337 The security ID structure is invalid. [ERROR_INVALID_SID (0x539)] Error Code 1338 The security descriptor structure is invalid. [ERROR_INVALID_SECURITY_DESCR (0x53A)] Error Code 1340 The inherited access control list (ACL) or access control entry (ACE) could not be built. [ERROR_BAD_INHERITANCE_ACL (0x53C)] Error Code 1341 The server is currently disabled. [ERROR_SERVER_DISABLED (0x53D)] Error Code 1342 The server is currently enabled. [ERROR_SERVER_NOT_DISABLED (0x53E)] Error Code 1343 The value provided was an invalid value for an identifier authority. [ERROR_INVALID_ID_AUTHORITY (0x53F)] Error Code 1344 No more memory is available for security information updates. [ERROR_ALLOTTED_SPACE_EXCEEDED (0x540)] Error Code 1345 The specified attributes are invalid or incompatible with the attributes for the group as a whole. [ERROR_INVALID_GROUP_ATTRIBUTES (0x541)] Error Code 1346 Either a required impersonation level was not provided or the provided impersonation level is invalid. [ERROR_BAD_IMPERSONATION_LEVEL (0x542)] Error Code 1347 Cannot open an anonymous level security token. [ERROR_CANT_OPEN_ANONYMOUS (0x543)] Error Code 1348 The validation information class requested was invalid. [ERROR_BAD_VALIDATION_CLASS (0x544)] Error Code 1349 The type of the token is inappropriate for its attempted use. [ERROR_BAD_TOKEN_TYPE (0x545)] Error Code 1350 Unable to perform a security operation on an object that has no associated security. [ERROR_NO_SECURITY_ON_OBJECT (0x546)] Error Code 1351 Configuration information could not be read from the domain controller either because the machine is unavailable or access has been denied. [ERROR_CANT_ACCESS_DOMAIN_INFO (0x547)] Error Code 1352 The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation. [ERROR_INVALID_SERVER_STATE (0x548)] Error Code 1353 The domain was in the wrong state to perform the security operation. [ERROR_INVALID_DOMAIN_STATE (0x549)] Error Code 1354 This operation is only allowed for the Primary Domain Controller of the domain. [ERROR_INVALID_DOMAIN_ROLE (0x54A)] Error Code 1355 The specified domain either does not exist or could not be contacted. [ERROR_NO_SUCH_DOMAIN (0x54B)] Error Code 1356 The specified domain already exists. [ERROR_DOMAIN_EXISTS (0x54C)] Error Code 1357 An attempt was made to exceed the limit on the number of domains per server. [ERROR_DOMAIN_LIMIT_EXCEEDED (0x54D)] Error Code 1358 Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk. [ERROR_INTERNAL_DB_CORRUPTION (0x54E)] Error Code 1359 An internal error occurred. [ERROR_INTERNAL_ERROR (0x54F)] Error Code 1360 Generic access types were contained in an access mask which should already be mapped to nongeneric types. [ERROR_GENERIC_NOT_MAPPED (0x550)] Error Code 1361 A security descriptor is not in the right format (absolute or self-relative). [ERROR_BAD_DESCRIPTOR_FORMAT (0x551)] Error Code 1362 The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process. [ERROR_NOT_LOGON_PROCESS (0x552)] Error Code 1363 Cannot start a new logon session with an ID that is already in use. [ERROR_LOGON_SESSION_EXISTS (0x553)] Error Code 1364 A specified authentication package is unknown. [ERROR_NO_SUCH_PACKAGE (0x554)] Error Code 1365 The logon session is not in a state that is consistent with the requested operation. [ERROR_BAD_LOGON_SESSION_STATE (0x555)] Error Code 1366 The logon session ID is already in use. [ERROR_LOGON_SESSION_COLLISION (0x556)] Error Code 1367 A logon request contained an invalid logon type value. [ERROR_INVALID_LOGON_TYPE (0x557)] Error Code 1368 Unable to impersonate using a named pipe until data has been read from that pipe. [ERROR_CANNOT_IMPERSONATE (0x558)] Error Code 1369 The transaction state of a registry subtree is incompatible with the requested operation. [ERROR_RXACT_INVALID_STATE (0x559)] Error Code 1370 An internal security database corruption has been encountered. [ERROR_RXACT_COMMIT_FAILURE (0x55A)] Error Code 1371 Cannot perform this operation on built-in accounts. [ERROR_SPECIAL_ACCOUNT (0x55B)] Error Code 1372 Cannot perform this operation on this built-in special group. [ERROR_SPECIAL_GROUP (0x55C)] Error Code 1373 Cannot perform this operation on this built-in special user. [ERROR_SPECIAL_USER (0x55D)] Error Code 1374 The user cannot be removed from a group because the group is currently the user’s primary group. [ERROR_MEMBERS_PRIMARY_GROUP (0x55E)] Error Code 1375 The token is already in use as a primary token. [ERROR_TOKEN_ALREADY_IN_USE (0x55F)] Error Code 1376 The specified local group does not exist. [ERROR_NO_SUCH_ALIAS (0x560)] Error Code 1377 The specified account name is not a member of the group. [ERROR_MEMBER_NOT_IN_ALIAS (0x561)] Error Code 1378 The specified account name is already a member of the group. [ERROR_MEMBER_IN_ALIAS (0x562)] Error Code 1379 The specified local group already exists. [ERROR_ALIAS_EXISTS (0x563)] Error Code 1380 Logon failure Error Code 1381 The maximum number of secrets that may be stored in a single system has been exceeded. [ERROR_TOO_MANY_SECRETS (0x565)] Error Code 1382 The length of a secret exceeds the maximum length allowed. [ERROR_SECRET_TOO_LONG (0x566)] Error Code 1383 The local security authority database contains an internal inconsistency. [ERROR_INTERNAL_DB_ERROR (0x567)] Error Code 1384 During a logon attempt the user’s security context accumulated too many security IDs. [ERROR_TOO_MANY_CONTEXT_IDS (0x568)] Error Code 1385 Logon failure Error Code 1386 A cross-encrypted password is necessary to change a user password. [ERROR_NT_CROSS_ENCRYPTION_REQUIRED (0x56A)] Error Code 1387 A member could not be added to or removed from the local group because the member does not exist. [ERROR_NO_SUCH_MEMBER (0x56B)] Error Code 1388 A new member could not be added to a local group because the member has the wrong account type. [ERROR_INVALID_MEMBER (0x56C)] Error Code 1389 Too many security IDs have been specified. [ERROR_TOO_MANY_SIDS (0x56D)] Error Code 1390 A cross-encrypted password is necessary to change this user password. [ERROR_LM_CROSS_ENCRYPTION_REQUIRED (0x56E)] Error Code 1391 Indicates an ACL contains no inheritable components. [ERROR_NO_INHERITANCE (0x56F)] Error Code 1392 The file or directory is corrupted and unreadable. [ERROR_FILE_CORRUPT (0x570)] Error Code 1393 The disk structure is corrupted and unreadable. [ERROR_DISK_CORRUPT (0x571)] Error Code 1394 There is no user session key for the specified logon session. [ERROR_NO_USER_SESSION_KEY (0x572)] Error Code 1395 The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because there are already as many connections as the service can accept. [ERROR_LICENSE_QUOTA_EXCEEDED (0x573)] Error Code 1396 Logon Failure Error Code 1397 Mutual Authentication failed. The server’s password is out of date at the domain controller. [ERROR_MUTUAL_AUTH_FAILED (0x575)] Error Code 1398 There is a time and/or date difference between the client and server. [ERROR_TIME_SKEW (0x576)] Error Code 1399 This operation cannot be performed on the current domain. [ERROR_CURRENT_DOMAIN_NOT_ALLOWED (0x577)] Error Code 1400 Invalid window handle. [ERROR_INVALID_WINDOW_HANDLE (0x578)] Error Code 1401 Invalid menu handle. [ERROR_INVALID_MENU_HANDLE (0x579)] Error Code 1402 Invalid cursor handle. [ERROR_INVALID_CURSOR_HANDLE (0x57A)] Error Code 1403 Invalid accelerator table handle. [ERROR_INVALID_ACCEL_HANDLE (0x57B)] Error Code 1404 Invalid hook handle. [ERROR_INVALID_HOOK_HANDLE (0x57C)] Error Code 1405 Invalid handle to a multiple-window position structure. [ERROR_INVALID_DWP_HANDLE (0x57D)] Error Code 1406 Cannot create a top-level child window. [ERROR_TLW_WITH_WSCHILD (0x57E)] Error Code 1407 Cannot find window class. [ERROR_CANNOT_FIND_WND_CLASS (0x57F)] Error Code 1408 Invalid window; it belongs to other thread. [ERROR_WINDOW_OF_OTHER_THREAD (0x580)] Error Code 1409 Hot key is already registered. [ERROR_HOTKEY_ALREADY_REGISTERED (0x581)] Error Code 1410 Class already exists. [ERROR_CLASS_ALREADY_EXISTS (0x582)] Error Code 1411 Class does not exist. [ERROR_CLASS_DOES_NOT_EXIST (0x583)] Error Code 1412 Class still has open windows. [ERROR_CLASS_HAS_WINDOWS (0x584)] Error Code 1413 Invalid index. [ERROR_INVALID_INDEX (0x585)] Error Code 1414 Invalid icon handle. [ERROR_INVALID_ICON_HANDLE (0x586)] Error Code 1415 Using private DIALOG window words. [ERROR_PRIVATE_DIALOG_INDEX (0x587)] Error Code 1416 The list box identifier was not found. [ERROR_LISTBOX_ID_NOT_FOUND (0x588)] Error Code 1417 No wildcards were found. [ERROR_NO_WILDCARD_CHARACTERS (0x589)] Error Code 1418 Thread does not have a clipboard open. [ERROR_CLIPBOARD_NOT_OPEN (0x58A)] Error Code 1419 Hot key is not registered. [ERROR_HOTKEY_NOT_REGISTERED (0x58B)] Error Code 1420 The window is not a valid dialog window. [ERROR_WINDOW_NOT_DIALOG (0x58C)] Error Code 1421 Control ID not found. [ERROR_CONTROL_ID_NOT_FOUND (0x58D)] Error Code 1422 Invalid message for a combo box because it does not have an edit control. [ERROR_INVALID_COMBOBOX_MESSAGE (0x58E)] Error Code 1423 The window is not a combo box. [ERROR_WINDOW_NOT_COMBOBOX (0x58F)] Error Code 1424 Height must be less than 256. [ERROR_INVALID_EDIT_HEIGHT (0x590)] Error Code 1425 Invalid device context (DC) handle. [ERROR_DC_NOT_FOUND (0x591)] Error Code 1426 Invalid hook procedure type. [ERROR_INVALID_HOOK_FILTER (0x592)] Error Code 1427 Invalid hook procedure. [ERROR_INVALID_FILTER_PROC (0x593)] Error Code 1428 Cannot set nonlocal hook without a module handle. [ERROR_HOOK_NEEDS_HMOD (0x594)] Error Code 1429 This hook procedure can only be set globally. [ERROR_GLOBAL_ONLY_HOOK (0x595)] Error Code 1430 The journal hook procedure is already installed. [ERROR_JOURNAL_HOOK_SET (0x596)] Error Code 1431 The hook procedure is not installed. [ERROR_HOOK_NOT_INSTALLED (0x597)] Error Code 1432 Invalid message for single-selection list box. [ERROR_INVALID_LB_MESSAGE (0x598)] Error Code 1433 LB_SETCOUNT sent to non-lazy list box. [ERROR_SETCOUNT_ON_BAD_LB (0x599)] Error Code 1434 This list box does not support tab stops. [ERROR_LB_WITHOUT_TABSTOPS (0x59A)] Error Code 1435 Cannot destroy object created by another thread. [ERROR_DESTROY_OBJECT_OF_OTHER_THREAD (0x59B)] Error Code 1436 Child windows cannot have menus. [ERROR_CHILD_WINDOW_MENU (0x59C)] Error Code 1437 The window does not have a system menu. [ERROR_NO_SYSTEM_MENU (0x59D)] Error Code 1438 Invalid message box style. [ERROR_INVALID_MSGBOX_STYLE (0x59E)] Error Code 1439 Invalid system-wide (SPI_*) parameter. [ERROR_INVALID_SPI_VALUE (0x59F)] Error Code 1440 Screen already locked. [ERROR_SCREEN_ALREADY_LOCKED (0x5A0)] Error Code 1441 All handles to windows in a multiple-window position structure must have the same parent. [ERROR_HWNDS_HAVE_DIFF_PARENT (0x5A1)] Error Code 1442 The window is not a child window. [ERROR_NOT_CHILD_WINDOW (0x5A2)] Error Code 1443 Invalid GW_* command. [ERROR_INVALID_GW_COMMAND (0x5A3)] Error Code 1444 Invalid thread identifier. [ERROR_INVALID_THREAD_ID (0x5A4)] Error Code 1445 Cannot process a message from a window that is not a multiple document interface (MDI) window. [ERROR_NON_MDICHILD_WINDOW (0x5A5)] Error Code 1446 Popup menu already active. [ERROR_POPUP_ALREADY_ACTIVE (0x5A6)] Error Code 1447 The window does not have scroll bars. [ERROR_NO_SCROLLBARS (0x5A7)] Error Code 1448 Scroll bar range cannot be greater than MAXLONG. [ERROR_INVALID_SCROLLBAR_RANGE (0x5A8)] Error Code 1449 Cannot show or remove the window in the way specified. [ERROR_INVALID_SHOWWIN_COMMAND (0x5A9)] Error Code 1450 Insufficient system resources exist to complete the requested service. [ERROR_NO_SYSTEM_RESOURCES (0x5AA)] Error Code 1451 Insufficient system resources exist to complete the requested service. [ERROR_NONPAGED_SYSTEM_RESOURCES (0x5AB)] Error Code 1452 Insufficient system resources exist to complete the requested service. [ERROR_PAGED_SYSTEM_RESOURCES (0x5AC)] Error Code 1453 Insufficient quota to complete the requested service. [ERROR_WORKING_SET_QUOTA (0x5AD)] Error Code 1454 Insufficient quota to complete the requested service. [ERROR_PAGEFILE_QUOTA (0x5AE)] Error Code 1455 The paging file is too small for this operation to complete. [ERROR_COMMITMENT_LIMIT (0x5AF)] Error Code 1456 A menu item was not found. [ERROR_MENU_ITEM_NOT_FOUND (0x5B0)] Error Code 1457 Invalid keyboard layout handle. [ERROR_INVALID_KEYBOARD_HANDLE (0x5B1)] Error Code 1458 Hook type not allowed. [ERROR_HOOK_TYPE_NOT_ALLOWED (0x5B2)] Error Code 1459 This operation requires an interactive window station. [ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION (0x5B3)] Error Code 1460 This operation returned because the timeout period expired. [ERROR_TIMEOUT (0x5B4)] Error Code 1461 Invalid monitor handle. [ERROR_INVALID_MONITOR_HANDLE (0x5B5)] Error Code 1462 Incorrect size argument. [ERROR_INCORRECT_SIZE (0x5B6)] Error Code 1463 The symbolic link cannot be followed because its type is disabled. [ERROR_SYMLINK_CLASS_DISABLED (0x5B7)] Error Code 1464 This application does not support the current operation on symbolic links. [ERROR_SYMLINK_NOT_SUPPORTED (0x5B8)] Error Code 1465 Windows was unable to parse the requested XML data. [ERROR_XML_PARSE_ERROR (0x5B9)] Error Code 1466 An error was encountered while processing an XML digital signature. [ERROR_XMLDSIG_ERROR (0x5BA)] Error Code 1467 This application must be restarted. [ERROR_RESTART_APPLICATION (0x5BB)] Error Code 1468 The caller made the connection request in the wrong routing compartment. [ERROR_WRONG_COMPARTMENT (0x5BC)] Error Code 1469 There was an AuthIP failure when attempting to connect to the remote host. [ERROR_AUTHIP_FAILURE (0x5BD)] Error Code 1500 The event log file is corrupted. [ERROR_EVENTLOG_FILE_CORRUPT (0x5DC)] Error Code 1501 No event log file could be opened so the event logging service did not start. [ERROR_EVENTLOG_CANT_START (0x5DD)] Error Code 1502 The event log file is full. [ERROR_LOG_FILE_FULL (0x5DE)] Error Code 1503 The event log file has changed between read operations. [ERROR_EVENTLOG_FILE_CHANGED (0x5DF)] Error Code 1550 The specified task name is invalid. [ERROR_INVALID_TASK_NAME (0x60E)] Error Code 1551 The specified task index is invalid. [ERROR_INVALID_TASK_INDEX (0x60F)] Error Code 1552 The specified thread is already joining a task. [ERROR_THREAD_ALREADY_IN_TASK (0x610)] Error Code 1552 The specified thread is already joining a task. [ERROR_THREAD_ALREADY_IN_TASK (0x610)] Error Code 1552 The specified thread is already joining a task. [ERROR_THREAD_ALREADY_IN_TASK (0x610)] Error Code 1552 The specified thread is already joining a task. [ERROR_THREAD_ALREADY_IN_TASK (0x610)] Error Code 1605 This action is only valid for products that are currently installed. [ERROR_UNKNOWN_PRODUCT (0x645)] Error Code 1606 Feature ID not registered. [ERROR_UNKNOWN_FEATURE (0x646)] Error Code 1607 Component ID not registered. [ERROR_UNKNOWN_COMPONENT (0x647)] Error Code 1608 Unknown property. [ERROR_UNKNOWN_PROPERTY (0x648)] Error Code 1609 A handle is in an invalid state. [ERROR_INVALID_HANDLE_STATE (0x649)] Error Code 1610 The configuration data for this product is corrupt. Contact your support personnel. [ERROR_BAD_CONFIGURATION (0x64A)] Error Code 1611 Component qualifier not present. [ERROR_INDEX_ABSENT (0x64B)] Error Code 1612 The installation source for this product is not available. Verify that the source exists and that you can access it. [ERROR_INSTALL_SOURCE_ABSENT (0x64C)] Error Code 1613 This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service. [ERROR_INSTALL_PACKAGE_VERSION (0x64D)] Error Code 1614 Product is uninstalled. [ERROR_PRODUCT_UNINSTALLED (0x64E)] Error Code 1615 SQL query syntax invalid or unsupported. [ERROR_BAD_QUERY_SYNTAX (0x64F)] Error Code 1616 Record field does not exist. [ERROR_INVALID_FIELD (0x650)] Error Code 1617 The device has been removed. [ERROR_DEVICE_REMOVED (0x651)] Error Code 1618 Another installation is already in progress. Complete that installation before proceeding with this install. [ERROR_INSTALL_ALREADY_RUNNING (0x652)] Error Code 1619 This installation package could not be opened. Verify that the package exists and that you can access it or contact the application vendor to verify that this is a valid Windows Installer package. [ERROR_INSTALL_PACKAGE_OPEN_FAILED (0x653)] Error Code 1620 This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package. [ERROR_INSTALL_PACKAGE_INVALID (0x654)] Error Code 1621 There was an error starting the Windows Installer service user interface. Contact your support personnel. [ERROR_INSTALL_UI_FAILURE (0x655)] Error Code 1622 Error opening installation log file. Verify that the specified log file location exists and that you can write to it. [ERROR_INSTALL_LOG_FAILURE (0x656)] Error Code 1623 The language of this installation package is not supported by your system. [ERROR_INSTALL_LANGUAGE_UNSUPPORTED (0x657)] Error Code 1624 Error applying transforms. Verify that the specified transform paths are valid. [ERROR_INSTALL_TRANSFORM_FAILURE (0x658)] Error Code 1625 This installation is forbidden by system policy. Contact your system administrator. [ERROR_INSTALL_PACKAGE_REJECTED (0x659)] Error Code 1626 Function could not be executed. [ERROR_FUNCTION_NOT_CALLED (0x65A)] Error Code 1627 Function failed during execution. [ERROR_FUNCTION_FAILED (0x65B)] Error Code 1628 Invalid or unknown table specified. [ERROR_INVALID_TABLE (0x65C)] Error Code 1629 Data supplied is of wrong type. [ERROR_DATATYPE_MISMATCH (0x65D)] Error Code 1630 Data of this type is not supported. [ERROR_UNSUPPORTED_TYPE (0x65E)] Error Code 1631 The Windows Installer service failed to start. Contact your support personnel. [ERROR_CREATE_FAILED (0x65F)] Error Code 1632 The Temp folder is on a drive that is full or is inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder. [ERROR_INSTALL_TEMP_UNWRITABLE (0x660)] Error Code 1633 This installation package is not supported by this processor type. Contact your product vendor. [ERROR_INSTALL_PLATFORM_UNSUPPORTED (0x661)] Error Code 1634 Component not used on this computer. [ERROR_INSTALL_NOTUSED (0x662)] Error Code 1635 This update package could not be opened. Verify that the update package exists and that you can access it or contact the application vendor to verify that this is a valid Windows Installer update package. [ERROR_PATCH_PACKAGE_OPEN_FAILED (0x663)] Error Code 1636 This update package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer update package. [ERROR_PATCH_PACKAGE_INVALID (0x664)] Error Code 1637 This update package cannot be processed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service. [ERROR_PATCH_PACKAGE_UNSUPPORTED (0x665)] Error Code 1638 Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product use Add/Remove Programs on the Control Panel. [ERROR_PRODUCT_VERSION (0x666)] Error Code 1639 Invalid command line argument. Consult the Windows Installer SDK for detailed command line help. [ERROR_INVALID_COMMAND_LINE (0x667)] Error Code 1640 Only administrators have permission to add remove or configure server software during a Terminal services remote session. If you want to install or configure software on the server contact your network administrator. [ERROR_INSTALL_REMOTE_DISALLOWED (0x668)] Error Code 1641 The requested operation completed successfully. The system will be restarted so the changes can take effect. [ERROR_SUCCESS_REBOOT_INITIATED (0x669)] Error Code 1642 The upgrade cannot be installed by the Windows Installer service because the program to be upgraded may be missing or the upgrade may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade. [ERROR_PATCH_TARGET_NOT_FOUND (0x66A)] Error Code 1643 The update package is not permitted by software restriction policy. [ERROR_PATCH_PACKAGE_REJECTED (0x66B)] Error Code 1644 One or more customizations are not permitted by software restriction policy. [ERROR_INSTALL_TRANSFORM_REJECTED (0x66C)] Error Code 1645 The Windows Installer does not permit installation from a Remote Desktop Connection. [ERROR_INSTALL_REMOTE_PROHIBITED (0x66D)] Error Code 1646 Uninstallation of the update package is not supported. [ERROR_PATCH_REMOVAL_UNSUPPORTED (0x66E)] Error Code 1647 The update is not applied to this product. [ERROR_UNKNOWN_PATCH (0x66F)] Error Code 1648 No valid sequence could be found for the set of updates. [ERROR_PATCH_NO_SEQUENCE (0x670)] Error Code 1649 Update removal was disallowed by policy. [ERROR_PATCH_REMOVAL_DISALLOWED (0x671)] Error Code 1650 The XML update data is invalid. [ERROR_INVALID_PATCH_XML (0x672)] Error Code 1651 Windows Installer does not permit updating of managed advertised products. At least one feature of the product must be installed before applying the update. [ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT (0x673)] Error Code 1652 The Windows Installer service is not accessible in Safe Mode. Please try again when your computer is not in Safe Mode or you can use System Restore to return your machine to a previous good state. [ERROR_INSTALL_SERVICE_SAFEBOOT (0x674)] Error Code 1700 The string binding is invalid. [RPC_S_INVALID_STRING_BINDING (0x6A4)] Error Code 1701 The binding handle is not the correct type. [RPC_S_WRONG_KIND_OF_BINDING (0x6A5)] Error Code 1702 The binding handle is invalid. [RPC_S_INVALID_BINDING (0x6A6)] Error Code 1703 The RPC protocol sequence is not supported. [RPC_S_PROTSEQ_NOT_SUPPORTED (0x6A7)] Error Code 1704 The RPC protocol sequence is invalid. [RPC_S_INVALID_RPC_PROTSEQ (0x6A8)] Error Code 1705 The string universal unique identifier (UUID) is invalid. [RPC_S_INVALID_STRING_UUID (0x6A9)] Error Code 1706 The endpoint format is invalid. [RPC_S_INVALID_ENDPOINT_FORMAT (0x6AA)] Error Code 1707 The network address is invalid. [RPC_S_INVALID_NET_ADDR (0x6AB)] Error Code 1708 No endpoint was found. [RPC_S_NO_ENDPOINT_FOUND (0x6AC)] Error Code 1709 The timeout value is invalid. [RPC_S_INVALID_TIMEOUT (0x6AD)] Error Code 1710 The object universal unique identifier (UUID) was not found. [RPC_S_OBJECT_NOT_FOUND (0x6AE)] Error Code 1711 The object universal unique identifier (UUID) has already been registered. [RPC_S_ALREADY_REGISTERED (0x6AF)] Error Code 1712 The type universal unique identifier (UUID) has already been registered. [RPC_S_TYPE_ALREADY_REGISTERED (0x6B0)] Error Code 1713 The RPC server is already listening. [RPC_S_ALREADY_LISTENING (0x6B1)] Error Code 1714 No protocol sequences have been registered. [RPC_S_NO_PROTSEQS_REGISTERED (0x6B2)] Error Code 1715 The RPC server is not listening. [RPC_S_NOT_LISTENING (0x6B3)] Error Code 1716 The manager type is unknown. [RPC_S_UNKNOWN_MGR_TYPE (0x6B4)] Error Code 1717 The interface is unknown. [RPC_S_UNKNOWN_IF (0x6B5)] Error Code 1718 There are no bindings. [RPC_S_NO_BINDINGS (0x6B6)] Error Code 1719 There are no protocol sequences. [RPC_S_NO_PROTSEQS (0x6B7)] Error Code 1720 The endpoint cannot be created. [RPC_S_CANT_CREATE_ENDPOINT (0x6B8)] Error Code 1721 Not enough resources are available to complete this operation. [RPC_S_OUT_OF_RESOURCES (0x6B9)] Error Code 1722 The RPC server is unavailable. [RPC_S_SERVER_UNAVAILABLE (0x6BA)] Error Code 1723 The RPC server is too busy to complete this operation. [RPC_S_SERVER_TOO_BUSY (0x6BB)] Error Code 1724 The network options are invalid. [RPC_S_INVALID_NETWORK_OPTIONS (0x6BC)] Error Code 1725 There are no remote procedure calls active on this thread. [RPC_S_NO_CALL_ACTIVE (0x6BD)] Error Code 1726 The remote procedure call failed. [RPC_S_CALL_FAILED (0x6BE)] Error Code 1727 The remote procedure call failed and did not execute. [RPC_S_CALL_FAILED_DNE (0x6BF)] Error Code 1728 A remote procedure call (RPC) protocol error occurred. [RPC_S_PROTOCOL_ERROR (0x6C0)] Error Code 1729 Access to the HTTP proxy is denied. [RPC_S_PROXY_ACCESS_DENIED (0x6C1)] Error Code 1730 The transfer syntax is not supported by the RPC server. [RPC_S_UNSUPPORTED_TRANS_SYN (0x6C2)] Error Code 1732 The universal unique identifier (UUID) type is not supported. [RPC_S_UNSUPPORTED_TYPE (0x6C4)] Error Code 1733 The tag is invalid. [RPC_S_INVALID_TAG (0x6C5)] Error Code 1734 The array bounds are invalid. [RPC_S_INVALID_BOUND (0x6C6)] Error Code 1735 The binding does not contain an entry name. [RPC_S_NO_ENTRY_NAME (0x6C7)] Error Code 1736 The name syntax is invalid. [RPC_S_INVALID_NAME_SYNTAX (0x6C8)] Error Code 1737 The name syntax is not supported. [RPC_S_UNSUPPORTED_NAME_SYNTAX (0x6C9)] Error Code 1739 No network address is available to use to construct a universal unique identifier (UUID). [RPC_S_UUID_NO_ADDRESS (0x6CB)] Error Code 1740 The endpoint is a duplicate. [RPC_S_DUPLICATE_ENDPOINT (0x6CC)] Error Code 1741 The authentication type is unknown. [RPC_S_UNKNOWN_AUTHN_TYPE (0x6CD)] Error Code 1742 The maximum number of calls is too small. [RPC_S_MAX_CALLS_TOO_SMALL (0x6CE)] Error Code 1743 The string is too long. [RPC_S_STRING_TOO_LONG (0x6CF)] Error Code 1744 The RPC protocol sequence was not found. [RPC_S_PROTSEQ_NOT_FOUND (0x6D0)] Error Code 1745 The procedure number is out of range. [RPC_S_PROCNUM_OUT_OF_RANGE (0x6D1)] Error Code 1746 The binding does not contain any authentication information. [RPC_S_BINDING_HAS_NO_AUTH (0x6D2)] Error Code 1747 The authentication service is unknown. [RPC_S_UNKNOWN_AUTHN_SERVICE (0x6D3)] Error Code 1748 The authentication level is unknown. [RPC_S_UNKNOWN_AUTHN_LEVEL (0x6D4)] Error Code 1749 The security context is invalid. [RPC_S_INVALID_AUTH_IDENTITY (0x6D5)] Error Code 1750 The authorization service is unknown. [RPC_S_UNKNOWN_AUTHZ_SERVICE (0x6D6)] Error Code 1751 The entry is invalid. [EPT_S_INVALID_ENTRY (0x6D7)] Error Code 1752 The server endpoint cannot perform the operation. [EPT_S_CANT_PERFORM_OP (0x6D8)] Error Code 1753 There are no more endpoints available from the endpoint mapper. [EPT_S_NOT_REGISTERED (0x6D9)] Error Code 1754 No interfaces have been exported. [RPC_S_NOTHING_TO_EXPORT (0x6DA)] Error Code 1755 The entry name is incomplete. [RPC_S_INCOMPLETE_NAME (0x6DB)] Error Code 1756 The version option is invalid. [RPC_S_INVALID_VERS_OPTION (0x6DC)] Error Code 1757 There are no more members. [RPC_S_NO_MORE_MEMBERS (0x6DD)] Error Code 1758 There is nothing to unexport. [RPC_S_NOT_ALL_OBJS_UNEXPORTED (0x6DE)] Error Code 1759 The interface was not found. [RPC_S_INTERFACE_NOT_FOUND (0x6DF)] Error Code 1760 The entry already exists. [RPC_S_ENTRY_ALREADY_EXISTS (0x6E0)] Error Code 1761 The entry is not found. [RPC_S_ENTRY_NOT_FOUND (0x6E1)] Error Code 1762 The name service is unavailable. [RPC_S_NAME_SERVICE_UNAVAILABLE (0x6E2)] Error Code 1763 The network address family is invalid. [RPC_S_INVALID_NAF_ID (0x6E3)] Error Code 1764 The requested operation is not supported. [RPC_S_CANNOT_SUPPORT (0x6E4)] Error Code 1765 No security context is available to allow impersonation. [RPC_S_NO_CONTEXT_AVAILABLE (0x6E5)] Error Code 1766 An internal error occurred in a remote procedure call (RPC). [RPC_S_INTERNAL_ERROR (0x6E6)] Error Code 1767 The RPC server attempted an integer division by zero. [RPC_S_ZERO_DIVIDE (0x6E7)] Error Code 1768 An addressing error occurred in the RPC server. [RPC_S_ADDRESS_ERROR (0x6E8)] Error Code 1769 A floating-point operation at the RPC server caused a division by zero. [RPC_S_FP_DIV_ZERO (0x6E9)] Error Code 1770 A floating-point underflow occurred at the RPC server. [RPC_S_FP_UNDERFLOW (0x6EA)] Error Code 1771 A floating-point overflow occurred at the RPC server. [RPC_S_FP_OVERFLOW (0x6EB)] Error Code 1772 The list of RPC servers available for the binding of auto handles has been exhausted. [RPC_X_NO_MORE_ENTRIES (0x6EC)] Error Code 1773 Unable to open the character translation table file. [RPC_X_SS_CHAR_TRANS_OPEN_FAIL (0x6ED)] Error Code 1774 The file containing the character translation table has fewer than 512 bytes. [RPC_X_SS_CHAR_TRANS_SHORT_FILE (0x6EE)] Error Code 1775 A null context handle was passed from the client to the host during a remote procedure call. [RPC_X_SS_IN_NULL_CONTEXT (0x6EF)] Error Code 1777 The context handle changed during a remote procedure call. [RPC_X_SS_CONTEXT_DAMAGED (0x6F1)] Error Code 1778 The binding handles passed to a remote procedure call do not match. [RPC_X_SS_HANDLES_MISMATCH (0x6F2)] Error Code 1779 The stub is unable to get the remote procedure call handle. [RPC_X_SS_CANNOT_GET_CALL_HANDLE (0x6F3)] Error Code 1780 A null reference pointer was passed to the stub. [RPC_X_NULL_REF_POINTER (0x6F4)] Error Code 1781 The enumeration value is out of range. [RPC_X_ENUM_VALUE_OUT_OF_RANGE (0x6F5)] Error Code 1782 The byte count is too small. [RPC_X_BYTE_COUNT_TOO_SMALL (0x6F6)] Error Code 1783 The stub received bad data. [RPC_X_BAD_STUB_DATA (0x6F7)] Error Code 1784 The supplied user buffer is not valid for the requested operation. [ERROR_INVALID_USER_BUFFER (0x6F8)] Error Code 1785 The disk media is not recognized. It may not be formatted. [ERROR_UNRECOGNIZED_MEDIA (0x6F9)] Error Code 1786 The workstation does not have a trust secret. [ERROR_NO_TRUST_LSA_SECRET (0x6FA)] Error Code 1787 The security database on the server does not have a computer account for this workstation trust relationship. [ERROR_NO_TRUST_SAM_ACCOUNT (0x6FB)] Error Code 1788 The trust relationship between the primary domain and the trusted domain failed. [ERROR_TRUSTED_DOMAIN_FAILURE (0x6FC)] Error Code 1789 The trust relationship between this workstation and the primary domain failed. [ERROR_TRUSTED_RELATIONSHIP_FAILURE (0x6FD)] Error Code 1790 The network logon failed. [ERROR_TRUST_FAILURE (0x6FE)] Error Code 1791 A remote procedure call is already in progress for this thread. [RPC_S_CALL_IN_PROGRESS (0x6FF)] Error Code 1792 An attempt was made to logon but the network logon service was not started. [ERROR_NETLOGON_NOT_STARTED (0x700)] Error Code 1793 The user’s account has expired. [ERROR_ACCOUNT_EXPIRED (0x701)] Error Code 1794 The redirector is in use and cannot be unloaded. [ERROR_REDIRECTOR_HAS_OPEN_HANDLES (0x702)] Error Code 1795 The specified printer driver is already installed. [ERROR_PRINTER_DRIVER_ALREADY_INSTALLED (0x703)] Error Code 1796 The specified port is unknown. [ERROR_UNKNOWN_PORT (0x704)] Error Code 1797 The printer driver is unknown. [ERROR_UNKNOWN_PRINTER_DRIVER (0x705)] Error Code 1798 The print processor is unknown. [ERROR_UNKNOWN_PRINTPROCESSOR (0x706)] Error Code 1799 The specified separator file is invalid. [ERROR_INVALID_SEPARATOR_FILE (0x707)] Error Code 1800 The specified priority is invalid. [ERROR_INVALID_PRIORITY (0x708)] Error Code 1801 The printer name is invalid. [ERROR_INVALID_PRINTER_NAME (0x709)] Error Code 1802 The printer already exists. [ERROR_PRINTER_ALREADY_EXISTS (0x70A)] Error Code 1803 The printer command is invalid. [ERROR_INVALID_PRINTER_COMMAND (0x70B)] Error Code 1804 The specified datatype is invalid. [ERROR_INVALID_DATATYPE (0x70C)] Error Code 1805 The environment specified is invalid. [ERROR_INVALID_ENVIRONMENT (0x70D)] Error Code 1806 There are no more bindings. [RPC_S_NO_MORE_BINDINGS (0x70E)] Error Code 1807 The account used is an interdomain trust account. Use your global user account or local user account to access this server. [ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT (0x70F)] Error Code 1808 The account used is a computer account. Use your global user account or local user account to access this server. [ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT (0x710)] Error Code 1809 The account used is a server trust account. Use your global user account or local user account to access this server. [ERROR_NOLOGON_SERVER_TRUST_ACCOUNT (0x711)] Error Code 1810 The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain. [ERROR_DOMAIN_TRUST_INCONSISTENT (0x712)] Error Code 1811 The server is in use and cannot be unloaded. [ERROR_SERVER_HAS_OPEN_HANDLES (0x713)] Error Code 1812 The specified image file did not contain a resource section. [ERROR_RESOURCE_DATA_NOT_FOUND (0x714)] Error Code 1813 The specified resource type cannot be found in the image file. [ERROR_RESOURCE_TYPE_NOT_FOUND (0x715)] Error Code 1814 The specified resource name cannot be found in the image file. [ERROR_RESOURCE_NAME_NOT_FOUND (0x716)] Error Code 1815 The specified resource language ID cannot be found in the image file. [ERROR_RESOURCE_LANG_NOT_FOUND (0x717)] Error Code 1816 Not enough quota is available to process this command. [ERROR_NOT_ENOUGH_QUOTA (0x718)] Error Code 1817 No interfaces have been registered. [RPC_S_NO_INTERFACES (0x719)] Error Code 1818 The remote procedure call was canceled. [RPC_S_CALL_CANCELLED (0x71A)] Error Code 1819 The binding handle does not contain all required information. [RPC_S_BINDING_INCOMPLETE (0x71B)] Error Code 1820 A communications failure occurred during a remote procedure call. [RPC_S_COMM_FAILURE (0x71C)] Error Code 1821 The requested authentication level is not supported. [RPC_S_UNSUPPORTED_AUTHN_LEVEL (0x71D)] Error Code 1822 No principal name registered. [RPC_S_NO_PRINC_NAME (0x71E)] Error Code 1823 The error specified is not a valid Windows RPC error code. [RPC_S_NOT_RPC_ERROR (0x71F)] Error Code 1824 A UUID that is valid only on this computer has been allocated. [RPC_S_UUID_LOCAL_ONLY (0x720)] Error Code 1825 A security package specific error occurred. [RPC_S_SEC_PKG_ERROR (0x721)] Error Code 1826 Thread is not canceled. [RPC_S_NOT_CANCELLED (0x722)] Error Code 1827 Invalid operation on the encoding/decoding handle. [RPC_X_INVALID_ES_ACTION (0x723)] Error Code 1828 Incompatible version of the serializing package. [RPC_X_WRONG_ES_VERSION (0x724)] Error Code 1829 Incompatible version of the RPC stub. [RPC_X_WRONG_STUB_VERSION (0x725)] Error Code 1830 The RPC pipe object is invalid or corrupted. [RPC_X_INVALID_PIPE_OBJECT (0x726)] Error Code 1831 An invalid operation was attempted on an RPC pipe object. [RPC_X_WRONG_PIPE_ORDER (0x727)] Error Code 1832 Unsupported RPC pipe version. [RPC_X_WRONG_PIPE_VERSION (0x728)] Error Code 1833 HTTP proxy server rejected the connection because the cookie authentication failed. [RPC_S_COOKIE_AUTH_FAILED (0x729)] Error Code 1898 The group member was not found. [RPC_S_GROUP_MEMBER_NOT_FOUND (0x76A)] Error Code 1899 The endpoint mapper database entry could not be created. [EPT_S_CANT_CREATE (0x76B)] Error Code 1900 The object universal unique identifier (UUID) is the nil UUID. [RPC_S_INVALID_OBJECT (0x76C)] Error Code 1901 The specified time is invalid. [ERROR_INVALID_TIME (0x76D)] Error Code 1902 The specified form name is invalid. [ERROR_INVALID_FORM_NAME (0x76E)] Error Code 1903 The specified form size is invalid. [ERROR_INVALID_FORM_SIZE (0x76F)] Error Code 1904 The specified printer handle is already being waited on [ERROR_ALREADY_WAITING (0x770)] Error Code 1905 The specified printer has been deleted. [ERROR_PRINTER_DELETED (0x771)] Error Code 1906 The state of the printer is invalid. [ERROR_INVALID_PRINTER_STATE (0x772)] Error Code 1907 The user’s password must be changed before logging on the first time. [ERROR_PASSWORD_MUST_CHANGE (0x773)] Error Code 1908 Could not find the domain controller for this domain. [ERROR_DOMAIN_CONTROLLER_NOT_FOUND (0x774)] Error Code 1909 The referenced account is currently locked out and may not be logged on to. [ERROR_ACCOUNT_LOCKED_OUT (0x775)] Error Code 1910 The object exporter specified was not found. [OR_INVALID_OXID (0x776)] Error Code 1911 The object specified was not found. [OR_INVALID_OID (0x777)] Error Code 1912 The object resolver set specified was not found. [OR_INVALID_SET (0x778)] Error Code 1913 Some data remains to be sent in the request buffer. [RPC_S_SEND_INCOMPLETE (0x779)] Error Code 1914 Invalid asynchronous remote procedure call handle. [RPC_S_INVALID_ASYNC_HANDLE (0x77A)] Error Code 1915 Invalid asynchronous RPC call handle for this operation. [RPC_S_INVALID_ASYNC_CALL (0x77B)] Error Code 1916 The RPC pipe object has already been closed. [RPC_X_PIPE_CLOSED (0x77C)] Error Code 1917 The RPC call completed before all pipes were processed. [RPC_X_PIPE_DISCIPLINE_ERROR (0x77D)] Error Code 1918 No more data is available from the RPC pipe. [RPC_X_PIPE_EMPTY (0x77E)] Error Code 1919 No site name is available for this machine. [ERROR_NO_SITENAME (0x77F)] Error Code 1920 The file cannot be accessed by the system. [ERROR_CANT_ACCESS_FILE (0x780)] Error Code 1921 The name of the file cannot be resolved by the system. [ERROR_CANT_RESOLVE_FILENAME (0x781)] Error Code 1922 The entry is not of the expected type. [RPC_S_ENTRY_TYPE_MISMATCH (0x782)] Error Code 1923 Not all object UUIDs could be exported to the specified entry. [RPC_S_NOT_ALL_OBJS_EXPORTED (0x783)] Error Code 1924 Interface could not be exported to the specified entry. [RPC_S_INTERFACE_NOT_EXPORTED (0x784)] Error Code 1925 The specified profile entry could not be added. [RPC_S_PROFILE_NOT_ADDED (0x785)] Error Code 1926 The specified profile element could not be added. [RPC_S_PRF_ELT_NOT_ADDED (0x786)] Error Code 1927 The specified profile element could not be removed. [RPC_S_PRF_ELT_NOT_REMOVED (0x787)] Error Code 1928 The group element could not be added. [RPC_S_GRP_ELT_NOT_ADDED (0x788)] Error Code 1929 The group element could not be removed. [RPC_S_GRP_ELT_NOT_REMOVED (0x789)] Error Code 1930 The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers. [ERROR_KM_DRIVER_BLOCKED (0x78A)] Error Code 1931 The context has expired and can no longer be used. [ERROR_CONTEXT_EXPIRED (0x78B)] Error Code 1932 The current user’s delegated trust creation quota has been exceeded. [ERROR_PER_USER_TRUST_QUOTA_EXCEEDED (0x78C)] Error Code 1933 The total delegated trust creation quota has been exceeded. [ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED (0x78D)] Error Code 1934 The current user’s delegated trust deletion quota has been exceeded. [ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED (0x78E)] Error Code 1935 Logon Failure Error Code 1936 Remote connections to the Print Spooler are blocked by a policy set on your machine. [ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED (0x790)] Error Code 1937 Authentication failed because NTLM authentication has been disabled. [ERROR_NTLM_BLOCKED (0x791)] Error Code 2000 The pixel format is invalid. [ERROR_INVALID_PIXEL_FORMAT (0x7D0)] Error Code 2001 The specified driver is invalid. [ERROR_BAD_DRIVER (0x7D1)] Error Code 2002 The window style or class attribute is invalid for this operation. [ERROR_INVALID_WINDOW_STYLE (0x7D2)] Error Code 2003 The requested metafile operation is not supported. [ERROR_METAFILE_NOT_SUPPORTED (0x7D3)] Error Code 2004 The requested transformation operation is not supported. [ERROR_TRANSFORM_NOT_SUPPORTED (0x7D4)] Error Code 2005 The requested clipping operation is not supported. [ERROR_CLIPPING_NOT_SUPPORTED (0x7D5)] Error Code 2010 The specified color management module is invalid. [ERROR_INVALID_CMM (0x7DA)] Error Code 2011 The specified color profile is invalid. [ERROR_INVALID_PROFILE (0x7DB)] Error Code 2012 The specified tag was not found. [ERROR_TAG_NOT_FOUND (0x7DC)] Error Code 2013 A required tag is not present. [ERROR_TAG_NOT_PRESENT (0x7DD)] Error Code 2014 The specified tag is already present. [ERROR_DUPLICATE_TAG (0x7DE)] Error Code 2015 The specified color profile is not associated with the specified device. [ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE (0x7DF)] Error Code 2016 The specified color profile was not found. [ERROR_PROFILE_NOT_FOUND (0x7E0)] Error Code 2017 The specified color space is invalid. [ERROR_INVALID_COLORSPACE (0x7E1)] Error Code 2018 Image Color Management is not enabled. [ERROR_ICM_NOT_ENABLED (0x7E2)] Error Code 2019 There was an error while deleting the color transform. [ERROR_DELETING_ICM_XFORM (0x7E3)] Error Code 2020 The specified color transform is invalid. [ERROR_INVALID_TRANSFORM (0x7E4)] Error Code 2021 The specified transform does not match the bitmap’s color space. [ERROR_COLORSPACE_MISMATCH (0x7E5)] Error Code 2022 The specified named color index is not present in the profile. [ERROR_INVALID_COLORINDEX (0x7E6)] Error Code 2023 The specified profile is intended for a device of a different type than the specified device. [ERROR_PROFILE_DOES_NOT_MATCH_DEVICE (0x7E7)] Error Code 2108 The network connection was made successfully but the user had to be prompted for a password other than the one originally specified. [ERROR_CONNECTED_OTHER_PASSWORD (0x83C)] Error Code 2109 The network connection was made successfully using default credentials. [ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT (0x83D)] Error Code 2202 The specified username is invalid. [ERROR_BAD_USERNAME (0x89A)] Error Code 2250 This network connection does not exist. [ERROR_NOT_CONNECTED (0x8CA)] Error Code 2401 This network connection has files open or requests pending. [ERROR_OPEN_FILES (0x961)] Error Code 2402 Active connections still exist. [ERROR_ACTIVE_CONNECTIONS (0x962)] Error Code 2404 The device is in use by an active process and cannot be disconnected. [ERROR_DEVICE_IN_USE (0x964)] Error Code 3000 The specified print monitor is unknown. [ERROR_UNKNOWN_PRINT_MONITOR (0xBB8)] Error Code 3001 The specified printer driver is currently in use. [ERROR_PRINTER_DRIVER_IN_USE (0xBB9)] Error Code 3002 The spool file was not found. [ERROR_SPOOL_FILE_NOT_FOUND (0xBBA)] Error Code 3003 A StartDocPrinter call was not issued. [ERROR_SPL_NO_STARTDOC (0xBBB)] Error Code 3004 An AddJob call was not issued. [ERROR_SPL_NO_ADDJOB (0xBBC)] Error Code 3005 The specified print processor has already been installed. [ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED (0xBBD)] Error Code 3006 The specified print monitor has already been installed. [ERROR_PRINT_MONITOR_ALREADY_INSTALLED (0xBBE)] Error Code 3007 The specified print monitor does not have the required functions. [ERROR_INVALID_PRINT_MONITOR (0xBBF)] Error Code 3008 The specified print monitor is currently in use. [ERROR_PRINT_MONITOR_IN_USE (0xBC0)] Error Code 3009 The requested operation is not allowed when there are jobs queued to the printer. [ERROR_PRINTER_HAS_JOBS_QUEUED (0xBC1)] Error Code 3010 The requested operation is successful. Changes will not be effective until the system is rebooted. [ERROR_SUCCESS_REBOOT_REQUIRED (0xBC2)] Error Code 3011 The requested operation is successful. Changes will not be effective until the service is restarted. [ERROR_SUCCESS_RESTART_REQUIRED (0xBC3)] Error Code 3012 No printers were found. [ERROR_PRINTER_NOT_FOUND (0xBC4)] Error Code 3013 The printer driver is known to be unreliable. [ERROR_PRINTER_DRIVER_WARNED (0xBC5)] Error Code 3014 The printer driver is known to harm the system. [ERROR_PRINTER_DRIVER_BLOCKED (0xBC6)] Error Code 3015 The specified printer driver package is currently in use. [ERROR_PRINTER_DRIVER_PACKAGE_IN_USE (0xBC7)] Error Code 3016 Unable to find a core driver package that is required by the printer driver package. [ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND (0xBC8)] Error Code 3017 The requested operation failed. A system reboot is required to roll back changes made. [ERROR_FAIL_REBOOT_REQUIRED (0xBC9)] Error Code 3018 The requested operation failed. A system reboot has been initiated to roll back changes made. [ERROR_FAIL_REBOOT_INITIATED (0xBCA)] Error Code 3019 The specified printer driver was not found on the system and needs to be downloaded. [ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED (0xBCB)] Error Code 3020 The requested print job has failed to print. A print system update requires the job to be resubmitted. [ERROR_PRINT_JOB_RESTART_REQUIRED (0xBCC)] Error Code 3950 Reissue the given operation as a cached I/O operation. [ERROR_IO_REISSUE_AS_CACHED (0xF6E)] Error Code 4000 WINS encountered an error while processing the command. [ERROR_WINS_INTERNAL (0xFA0)] Error Code 4001 The local WINS cannot be deleted. [ERROR_CAN_NOT_DEL_LOCAL_WINS (0xFA1)] Error Code 4002 The importation from the file failed. [ERROR_STATIC_INIT (0xFA2)] Error Code 4003 The backup failed. Was a full backup done before? [ERROR_INC_BACKUP (0xFA3)] Error Code 4004 The backup failed. Check the directory to which you are backing the database. [ERROR_FULL_BACKUP (0xFA4)] Error Code 4005 The name does not exist in the WINS database. [ERROR_REC_NON_EXISTENT (0xFA5)] Error Code 4006 Replication with a nonconfigured partner is not allowed. [ERROR_RPL_NOT_ALLOWED (0xFA6)] Error Code 4100 The DHCP client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address. [ERROR_DHCP_ADDRESS_CONFLICT (0x1004)] Error Code 4200 The GUID passed was not recognized as valid by a WMI data provider. [ERROR_WMI_GUID_NOT_FOUND (0x1068)] Error Code 4201 The instance name passed was not recognized as valid by a WMI data provider. [ERROR_WMI_INSTANCE_NOT_FOUND (0x1069)] Error Code 4202 The data item ID passed was not recognized as valid by a WMI data provider. [ERROR_WMI_ITEMID_NOT_FOUND (0x106A)] Error Code 4203 The WMI request could not be completed and should be retried. [ERROR_WMI_TRY_AGAIN (0x106B)] Error Code 4204 The WMI data provider could not be located. [ERROR_WMI_DP_NOT_FOUND (0x106C)] Error Code 4205 The WMI data provider references an instance set that has not been registered. [ERROR_WMI_UNRESOLVED_INSTANCE_REF (0x106D)] Error Code 4206 The WMI data block or event notification has already been enabled. [ERROR_WMI_ALREADY_ENABLED (0x106E)] Error Code 4207 The WMI data block is no longer available. [ERROR_WMI_GUID_DISCONNECTED (0x106F)] Error Code 4208 The WMI data service is not available. [ERROR_WMI_SERVER_UNAVAILABLE (0x1070)] Error Code 4209 The WMI data provider failed to carry out the request. [ERROR_WMI_DP_FAILED (0x1071)] Error Code 4210 The WMI MOF information is not valid. [ERROR_WMI_INVALID_MOF (0x1072)] Error Code 4211 The WMI registration information is not valid. [ERROR_WMI_INVALID_REGINFO (0x1073)] Error Code 4212 The WMI data block or event notification has already been disabled. [ERROR_WMI_ALREADY_DISABLED (0x1074)] Error Code 4213 The WMI data item or data block is read only. [ERROR_WMI_READ_ONLY (0x1075)] Error Code 4214 The WMI data item or data block could not be changed. [ERROR_WMI_SET_FAILURE (0x1076)] Error Code 4300 The media identifier does not represent a valid medium. [ERROR_INVALID_MEDIA (0x10CC)] Error Code 4301 The library identifier does not represent a valid library. [ERROR_INVALID_LIBRARY (0x10CD)] Error Code 4302 The media pool identifier does not represent a valid media pool. [ERROR_INVALID_MEDIA_POOL (0x10CE)] Error Code 4303 The drive and medium are not compatible or exist in different libraries. [ERROR_DRIVE_MEDIA_MISMATCH (0x10CF)] Error Code 4304 The medium currently exists in an offline library and must be online to perform this operation. [ERROR_MEDIA_OFFLINE (0x10D0)] Error Code 4305 The operation cannot be performed on an offline library. [ERROR_LIBRARY_OFFLINE (0x10D1)] Error Code 4306 The library drive or media pool is empty. [ERROR_EMPTY (0x10D2)] Error Code 4307 The library drive or media pool must be empty to perform this operation. [ERROR_NOT_EMPTY (0x10D3)] Error Code 4308 No media is currently available in this media pool or library. [ERROR_MEDIA_UNAVAILABLE (0x10D4)] Error Code 4309 A resource required for this operation is disabled. [ERROR_RESOURCE_DISABLED (0x10D5)] Error Code 4310 The media identifier does not represent a valid cleaner. [ERROR_INVALID_CLEANER (0x10D6)] Error Code 4311 The drive cannot be cleaned or does not support cleaning. [ERROR_UNABLE_TO_CLEAN (0x10D7)] Error Code 4312 The object identifier does not represent a valid object. [ERROR_OBJECT_NOT_FOUND (0x10D8)] Error Code 4313 Unable to read from or write to the database. [ERROR_DATABASE_FAILURE (0x10D9)] Error Code 4314 The database is full. [ERROR_DATABASE_FULL (0x10DA)] Error Code 4315 The medium is not compatible with the device or media pool. [ERROR_MEDIA_INCOMPATIBLE (0x10DB)] Error Code 4316 The resource required for this operation does not exist. [ERROR_RESOURCE_NOT_PRESENT (0x10DC)] Error Code 4317 The operation identifier is not valid. [ERROR_INVALID_OPERATION (0x10DD)] Error Code 4318 The media is not mounted or ready for use. [ERROR_MEDIA_NOT_AVAILABLE (0x10DE)] Error Code 4319 The device is not ready for use. [ERROR_DEVICE_NOT_AVAILABLE (0x10DF)] Error Code 4320 The operator or administrator has refused the request. [ERROR_REQUEST_REFUSED (0x10E0)] Error Code 4321 The drive identifier does not represent a valid drive. [ERROR_INVALID_DRIVE_OBJECT (0x10E1)] Error Code 4322 Library is full. No slot is available for use. [ERROR_LIBRARY_FULL (0x10E2)] Error Code 4323 The transport cannot access the medium. [ERROR_MEDIUM_NOT_ACCESSIBLE (0x10E3)] Error Code 4324 Unable to load the medium into the drive. [ERROR_UNABLE_TO_LOAD_MEDIUM (0x10E4)] Error Code 4325 Unable to retrieve the drive status. [ERROR_UNABLE_TO_INVENTORY_DRIVE (0x10E5)] Error Code 4326 Unable to retrieve the slot status. [ERROR_UNABLE_TO_INVENTORY_SLOT (0x10E6)] Error Code 4327 Unable to retrieve status about the transport. [ERROR_UNABLE_TO_INVENTORY_TRANSPORT (0x10E7)] Error Code 4328 Cannot use the transport because it is already in use. [ERROR_TRANSPORT_FULL (0x10E8)] Error Code 4329 Unable to open or close the inject/eject port. [ERROR_CONTROLLING_IEPORT (0x10E9)] Error Code 4330 Unable to eject the medium because it is in a drive. [ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA (0x10EA)] Error Code 4331 A cleaner slot is already reserved. [ERROR_CLEANER_SLOT_SET (0x10EB)] Error Code 4332 A cleaner slot is not reserved. [ERROR_CLEANER_SLOT_NOT_SET (0x10EC)] Error Code 4333 The cleaner cartridge has performed the maximum number of drive cleanings. [ERROR_CLEANER_CARTRIDGE_SPENT (0x10ED)] Error Code 4334 Unexpected on-medium identifier. [ERROR_UNEXPECTED_OMID (0x10EE)] Error Code 4335 The last remaining item in this group or resource cannot be deleted. [ERROR_CANT_DELETE_LAST_ITEM (0x10EF)] Error Code 4336 The message provided exceeds the maximum size allowed for this parameter. [ERROR_MESSAGE_EXCEEDS_MAX_SIZE (0x10F0)] Error Code 4337 The volume contains system or paging files. [ERROR_VOLUME_CONTAINS_SYS_FILES (0x10F1)] Error Code 4338 The media type cannot be removed from this library since at least one drive in the library reports it can support this media type. [ERROR_INDIGENOUS_TYPE (0x10F2)] Error Code 4339 This offline media cannot be mounted on this system since no enabled drives are present which can be used. [ERROR_NO_SUPPORTING_DRIVES (0x10F3)] Error Code 4340 A cleaner cartridge is present in the tape library. [ERROR_CLEANER_CARTRIDGE_INSTALLED (0x10F4)] Error Code 4341 Cannot use the inject/eject port because it is not empty. [ERROR_IEPORT_FULL (0x10F5)] Error Code 4350 The file is currently not available for use on this computer. [ERROR_FILE_OFFLINE (0x10FE)] Error Code 4351 The remote storage service is not operational at this time. [ERROR_REMOTE_STORAGE_NOT_ACTIVE (0x10FF)] Error Code 4352 The remote storage service encountered a media error. [ERROR_REMOTE_STORAGE_MEDIA_ERROR (0x1100)] Error Code 4390 The file or directory is not a reparse point. [ERROR_NOT_A_REPARSE_POINT (0x1126)] Error Code 4391 The reparse point attribute cannot be set because it conflicts with an existing attribute. [ERROR_REPARSE_ATTRIBUTE_CONFLICT (0x1127)] Error Code 4392 The data present in the reparse point buffer is invalid. [ERROR_INVALID_REPARSE_DATA (0x1128)] Error Code 4393 The tag present in the reparse point buffer is invalid. [ERROR_REPARSE_TAG_INVALID (0x1129)] Error Code 4394 There is a mismatch between the tag specified in the request and the tag present in the reparse point. [ERROR_REPARSE_TAG_MISMATCH (0x112A)] Error Code 4500 Single Instance Storage is not available on this volume. [ERROR_VOLUME_NOT_SIS_ENABLED (0x1194)] Error Code 5001 The operation cannot be completed because other resources are dependent on this resource. [ERROR_DEPENDENT_RESOURCE_EXISTS (0x1389)] Error Code 5002 The cluster resource dependency cannot be found. [ERROR_DEPENDENCY_NOT_FOUND (0x138A)] Error Code 5003 The cluster resource cannot be made dependent on the specified resource because it is already dependent. [ERROR_DEPENDENCY_ALREADY_EXISTS (0x138B)] Error Code 5004 The cluster resource is not online. [ERROR_RESOURCE_NOT_ONLINE (0x138C)] Error Code 5005 A cluster node is not available for this operation. [ERROR_HOST_NODE_NOT_AVAILABLE (0x138D)] Error Code 5006 The cluster resource is not available. [ERROR_RESOURCE_NOT_AVAILABLE (0x138E)] Error Code 5007 The cluster resource could not be found. [ERROR_RESOURCE_NOT_FOUND (0x138F)] Error Code 5008 The cluster is being shut down. [ERROR_SHUTDOWN_CLUSTER (0x1390)] Error Code 5009 A cluster node cannot be evicted from the cluster unless the node is down or it is the last node. [ERROR_CANT_EVICT_ACTIVE_NODE (0x1391)] Error Code 5010 The object already exists. [ERROR_OBJECT_ALREADY_EXISTS (0x1392)] Error Code 5011 The object is already in the list. [ERROR_OBJECT_IN_LIST (0x1393)] Error Code 5012 The cluster group is not available for any new requests. [ERROR_GROUP_NOT_AVAILABLE (0x1394)] Error Code 5013 The cluster group could not be found. [ERROR_GROUP_NOT_FOUND (0x1395)] Error Code 5014 The operation could not be completed because the cluster group is not online. [ERROR_GROUP_NOT_ONLINE (0x1396)] Error Code 5015 The operation failed because either the specified cluster node is not the owner of the resource or the node is not a possible owner of the resource. [ERROR_HOST_NODE_NOT_RESOURCE_OWNER (0x1397)] Error Code 5016 The operation failed because either the specified cluster node is not the owner of the group or the node is not a possible owner of the group. [ERROR_HOST_NODE_NOT_GROUP_OWNER (0x1398)] Error Code 5017 The cluster resource could not be created in the specified resource monitor. [ERROR_RESMON_CREATE_FAILED (0x1399)] Error Code 5018 The cluster resource could not be brought online by the resource monitor. [ERROR_RESMON_ONLINE_FAILED (0x139A)] Error Code 5019 The operation could not be completed because the cluster resource is online. [ERROR_RESOURCE_ONLINE (0x139B)] Error Code 5020 The cluster resource could not be deleted or brought offline because it is the quorum resource. [ERROR_QUORUM_RESOURCE (0x139C)] Error Code 5021 The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource. [ERROR_NOT_QUORUM_CAPABLE (0x139D)] Error Code 5022 The cluster software is shutting down. [ERROR_CLUSTER_SHUTTING_DOWN (0x139E)] Error Code 5023 The group or resource is not in the correct state to perform the requested operation. [ERROR_INVALID_STATE (0x139F)] Error Code 5024 The properties were stored but not all changes will take effect until the next time the resource is brought online. [ERROR_RESOURCE_PROPERTIES_STORED (0x13A0)] Error Code 5025 The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class. [ERROR_NOT_QUORUM_CLASS (0x13A1)] Error Code 5026 The cluster resource could not be deleted since it is a core resource. [ERROR_CORE_RESOURCE (0x13A2)] Error Code 5027 The quorum resource failed to come online. [ERROR_QUORUM_RESOURCE_ONLINE_FAILED (0x13A3)] Error Code 5028 The quorum log could not be created or mounted successfully. [ERROR_QUORUMLOG_OPEN_FAILED (0x13A4)] Error Code 5029 The cluster log is corrupt. [ERROR_CLUSTERLOG_CORRUPT (0x13A5)] Error Code 5030 The record could not be written to the cluster log since it exceeds the maximum size. [ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE (0x13A6)] Error Code 5031 The cluster log exceeds its maximum size. [ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE (0x13A7)] Error Code 5032 No checkpoint record was found in the cluster log. [ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND (0x13A8)] Error Code 5033 The minimum required disk space needed for logging is not available. [ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE (0x13A9)] Error Code 5034 The cluster node failed to take control of the quorum resource because the resource is owned by another active node. [ERROR_QUORUM_OWNER_ALIVE (0x13AA)] Error Code 5035 A cluster network is not available for this operation. [ERROR_NETWORK_NOT_AVAILABLE (0x13AB)] Error Code 5036 A cluster node is not available for this operation. [ERROR_NODE_NOT_AVAILABLE (0x13AC)] Error Code 5037 All cluster nodes must be running to perform this operation. [ERROR_ALL_NODES_NOT_AVAILABLE (0x13AD)] Error Code 5038 A cluster resource failed. [ERROR_RESOURCE_FAILED (0x13AE)] Error Code 5039 The cluster node is not valid. [ERROR_CLUSTER_INVALID_NODE (0x13AF)] Error Code 5040 The cluster node already exists. [ERROR_CLUSTER_NODE_EXISTS (0x13B0)] Error Code 5041 A node is in the process of joining the cluster. [ERROR_CLUSTER_JOIN_IN_PROGRESS (0x13B1)] Error Code 5042 The cluster node was not found. [ERROR_CLUSTER_NODE_NOT_FOUND (0x13B2)] Error Code 5043 The cluster local node information was not found. [ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND (0x13B3)] Error Code 5044 The cluster network already exists. [ERROR_CLUSTER_NETWORK_EXISTS (0x13B4)] Error Code 5045 The cluster network was not found. [ERROR_CLUSTER_NETWORK_NOT_FOUND (0x13B5)] Error Code 5046 The cluster network interface already exists. [ERROR_CLUSTER_NETINTERFACE_EXISTS (0x13B6)] Error Code 5047 The cluster network interface was not found. [ERROR_CLUSTER_NETINTERFACE_NOT_FOUND (0x13B7)] Error Code 5048 The cluster request is not valid for this object. [ERROR_CLUSTER_INVALID_REQUEST (0x13B8)] Error Code 5049 The cluster network provider is not valid. [ERROR_CLUSTER_INVALID_NETWORK_PROVIDER (0x13B9)] Error Code 5050 The cluster node is down. [ERROR_CLUSTER_NODE_DOWN (0x13BA)] Error Code 5051 The cluster node is not reachable. [ERROR_CLUSTER_NODE_UNREACHABLE (0x13BB)] Error Code 5052 The cluster node is not a member of the cluster. [ERROR_CLUSTER_NODE_NOT_MEMBER (0x13BC)] Error Code 5053 A cluster join operation is not in progress. [ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS (0x13BD)] Error Code 5054 The cluster network is not valid. [ERROR_CLUSTER_INVALID_NETWORK (0x13BE)] Error Code 5056 The cluster node is up. [ERROR_CLUSTER_NODE_UP (0x13C0)] Error Code 5057 The cluster IP address is already in use. [ERROR_CLUSTER_IPADDR_IN_USE (0x13C1)] Error Code 5058 The cluster node is not paused. [ERROR_CLUSTER_NODE_NOT_PAUSED (0x13C2)] Error Code 5059 No cluster security context is available. [ERROR_CLUSTER_NO_SECURITY_CONTEXT (0x13C3)] Error Code 5060 The cluster network is not configured for internal cluster communication. [ERROR_CLUSTER_NETWORK_NOT_INTERNAL (0x13C4)] Error Code 5061 The cluster node is already up. [ERROR_CLUSTER_NODE_ALREADY_UP (0x13C5)] Error Code 5062 The cluster node is already down. [ERROR_CLUSTER_NODE_ALREADY_DOWN (0x13C6)] Error Code 5063 The cluster network is already online. [ERROR_CLUSTER_NETWORK_ALREADY_ONLINE (0x13C7)] Error Code 5064 The cluster network is already offline. [ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE (0x13C8)] Error Code 5065 The cluster node is already a member of the cluster. [ERROR_CLUSTER_NODE_ALREADY_MEMBER (0x13C9)] Error Code 5066 The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes. The internal communication capability cannot be removed from the network. [ERROR_CLUSTER_LAST_INTERNAL_NETWORK (0x13CA)] Error Code 5067 One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network. [ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS (0x13CB)] Error Code 5068 This operation cannot be performed on the cluster resource as it the quorum resource. You may not bring the quorum resource offline or modify its possible owners list. [ERROR_INVALID_OPERATION_ON_QUORUM (0x13CC)] Error Code 5069 The cluster quorum resource is not allowed to have any dependencies. [ERROR_DEPENDENCY_NOT_ALLOWED (0x13CD)] Error Code 5070 The cluster node is paused. [ERROR_CLUSTER_NODE_PAUSED (0x13CE)] Error Code 5071 The cluster resource cannot be brought online. The owner node cannot run this resource. [ERROR_NODE_CANT_HOST_RESOURCE (0x13CF)] Error Code 5072 The cluster node is not ready to perform the requested operation. [ERROR_CLUSTER_NODE_NOT_READY (0x13D0)] Error Code 5073 The cluster node is shutting down. [ERROR_CLUSTER_NODE_SHUTTING_DOWN (0x13D1)] Error Code 5074 The cluster join operation was aborted. [ERROR_CLUSTER_JOIN_ABORTED (0x13D2)] Error Code 5075 The cluster join operation failed due to incompatible software versions between the joining node and its sponsor. [ERROR_CLUSTER_INCOMPATIBLE_VERSIONS (0x13D3)] Error Code 5076 This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor. [ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED (0x13D4)] Error Code 5077 The system configuration changed during the cluster join or form operation. The join or form operation was aborted. [ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED (0x13D5)] Error Code 5078 The specified resource type was not found. [ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND (0x13D6)] Error Code 5079 The specified node does not support a resource of this type. This may be due to version inconsistencies or due to the absence of the resource DLL on this node. [ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED (0x13D7)] Error Code 5080 The specified resource name is not supported by this resource DLL. This may be due to a bad (or changed) name supplied to the resource DLL. [ERROR_CLUSTER_RESNAME_NOT_FOUND (0x13D8)] Error Code 5081 No authentication package could be registered with the RPC server. [ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED (0x13D9)] Error Code 5082 You cannot bring the group online because the owner of the group is not in the preferred list for the group. To change the owner node for the group move the group. [ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST (0x13DA)] Error Code 5083 The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This may happen during a join operation if the cluster database was changing during the join. [ERROR_CLUSTER_DATABASE_SEQMISMATCH (0x13DB)] Error Code 5084 The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This may happen if the resource is in a pending state. [ERROR_RESMON_INVALID_STATE (0x13DC)] Error Code 5085 A non locker code got a request to reserve the lock for making global updates. [ERROR_CLUSTER_GUM_NOT_LOCKER (0x13DD)] Error Code 5086 The quorum disk could not be located by the cluster service. [ERROR_QUORUM_DISK_NOT_FOUND (0x13DE)] Error Code 5087 The backed up cluster database is possibly corrupt. [ERROR_DATABASE_BACKUP_CORRUPT (0x13DF)] Error Code 5088 A DFS root already exists in this cluster node. [ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT (0x13E0)] Error Code 5089 An attempt to modify a resource property failed because it conflicts with another existing property. [ERROR_RESOURCE_PROPERTY_UNCHANGEABLE (0x13E1)] Error Code 5890 An operation was attempted that is incompatible with the current membership state of the node. [ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE (0x1702)] Error Code 5891 The quorum resource does not contain the quorum log. [ERROR_CLUSTER_QUORUMLOG_NOT_FOUND (0x1703)] Error Code 5892 The membership engine requested shutdown of the cluster service on this node. [ERROR_CLUSTER_MEMBERSHIP_HALT (0x1704)] Error Code 5893 The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node. [ERROR_CLUSTER_INSTANCE_ID_MISMATCH (0x1705)] Error Code 5894 A matching cluster network for the specified IP address could not be found. [ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP (0x1706)] Error Code 5895 The actual data type of the property did not match the expected data type of the property. [ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH (0x1707)] Error Code 5896 The cluster node was evicted from the cluster successfully but the node was not cleaned up. To determine what cleanup steps failed and how to recover see the Failover Clustering application event log using Event Viewer. [ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP (0x1708)] Error Code 5897 Two or more parameter values specified for a resource’s properties are in conflict. [ERROR_CLUSTER_PARAMETER_MISMATCH (0x1709)] Error Code 5898 This computer cannot be made a member of a cluster. [ERROR_NODE_CANNOT_BE_CLUSTERED (0x170A)] Error Code 5899 This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed. [ERROR_CLUSTER_WRONG_OS_VERSION (0x170B)] Error Code 5900 A cluster cannot be created with the specified cluster name because that cluster name is already in use. Specify a different name for the cluster. [ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME (0x170C)] Error Code 5901 The cluster configuration action has already been committed. [ERROR_CLUSCFG_ALREADY_COMMITTED (0x170D)] Error Code 5902 The cluster configuration action could not be rolled back. [ERROR_CLUSCFG_ROLLBACK_FAILED (0x170E)] Error Code 5903 The drive letter assigned to a system disk on one node conflicted with the drive letter assigned to a disk on another node. [ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT (0x170F)] Error Code 5904 One or more nodes in the cluster are running a version of Windows that does not support this operation. [ERROR_CLUSTER_OLD_VERSION (0x1710)] Error Code 5905 The name of the corresponding computer account doesn’t match the Network Name for this resource. [ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME (0x1711)] Error Code 5906 No network adapters are available. [ERROR_CLUSTER_NO_NET_ADAPTERS (0x1712)] Error Code 5907 The cluster node has been poisoned. [ERROR_CLUSTER_POISONED (0x1713)] Error Code 5908 The group is unable to accept the request since it is moving to another node. [ERROR_CLUSTER_GROUP_MOVING (0x1714)] Error Code 5909 The resource type cannot accept the request since is too busy performing another operation. [ERROR_CLUSTER_RESOURCE_TYPE_BUSY (0x1715)] Error Code 5910 The call to the cluster resource DLL timed out. [ERROR_RESOURCE_CALL_TIMED_OUT (0x1716)] Error Code 5911 The address is not valid for an IPv6 Address resource. A global IPv6 address is required and it must match a cluster network. Compatibility addresses are not permitted. [ERROR_INVALID_CLUSTER_IPV6_ADDRESS (0x1717)] Error Code 5912 An internal cluster error occurred. A call to an invalid function was attempted. [ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION (0x1718)] Error Code 5913 A parameter value is out of acceptable range. [ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS (0x1719)] Error Code 5914 A network error occurred while sending data to another node in the cluster. The number of bytes transmitted was less than required. [ERROR_CLUSTER_PARTIAL_SEND (0x171A)] Error Code 5915 An invalid cluster registry operation was attempted. [ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION (0x171B)] Error Code 5916 An input string of characters is not properly terminated. [ERROR_CLUSTER_INVALID_STRING_TERMINATION (0x171C)] Error Code 5917 An input string of characters is not in a valid format for the data it represents. [ERROR_CLUSTER_INVALID_STRING_FORMAT (0x171D)] Error Code 5918 An internal cluster error occurred. A cluster database transaction was attempted while a transaction was already in progress. [ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS (0x171E)] Error Code 5919 An internal cluster error occurred. There was an attempt to commit a cluster database transaction while no transaction was in progress. [ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS (0x171F)] Error Code 5920 An internal cluster error occurred. Data was not properly initialized. [ERROR_CLUSTER_NULL_DATA (0x1720)] Error Code 5921 An error occurred while reading from a stream of data. An unexpected number of bytes was returned. [ERROR_CLUSTER_PARTIAL_READ (0x1721)] Error Code 5922 An error occurred while writing to a stream of data. The required number of bytes could not be written. [ERROR_CLUSTER_PARTIAL_WRITE (0x1722)] Error Code 5923 An error occurred while deserializing a stream of cluster data. [ERROR_CLUSTER_CANT_DESERIALIZE_DATA (0x1723)] Error Code 5924 One or more property values for this resource are in conflict with one or more property values associated with its dependent resource(s). [ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT (0x1724)] Error Code 5925 An quorum of cluster nodes was not present to form a cluster. [ERROR_CLUSTER_NO_QUORUM (0x1725)] Error Code 5926 The cluster network is not valid for an IPv6 Address resource or it does not match the configured address. [ERROR_CLUSTER_INVALID_IPV6_NETWORK (0x1726)] Error Code 5927 The cluster network is not valid for an IPv6 Tunnel resource. Check the configuration of the IP Address resource on which the IPv6 Tunnel resource depends. [ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK (0x1727)] Error Code 5928 Quorum resource cannot reside in the Available Storage group. [ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP (0x1728)] Error Code 5929 The dependencies for this resource are nested too deeply. [ERROR_DEPENDENCY_TREE_TOO_COMPLEX (0x1729)] Error Code 5930 The call into the resource DLL raised an unhandled exception. [ERROR_EXCEPTION_IN_RESOURCE_CALL (0x172A)] Error Code 5931 The RHS process failed to initialize. [ERROR_CLUSTER_RHS_FAILED_INITIALIZATION (0x172B)] Error Code 5932 The Failover Clustering feature is not installed on this node. [ERROR_CLUSTER_NOT_INSTALLED (0x172C)] Error Code 5933 The resources must be online on the same node for this operation. [ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE (0x172D)] Error Code 5934 A new node cannot be added since this cluster is already at its maximum number of nodes. [ERROR_CLUSTER_MAX_NODES_IN_CLUSTER (0x172E)] Error Code 5935 This cluster cannot be created since the specified number of nodes exceeds the maximum allowed limit. [ERROR_CLUSTER_TOO_MANY_NODES (0x172F)] Error Code 5936 An attempt to use the specified cluster name failed because an enabled computer object with the given name already exists in the domain. [ERROR_CLUSTER_OBJECT_ALREADY_USED (0x1730)] Error Code 5937 This cluster cannot be destroyed. It has non-core application groups which must be deleted before the cluster can be destroyed. [ERROR_NONCORE_GROUPS_FOUND (0x1731)] Error Code 5938 File share associated with file share witness resource cannot be hosted by this cluster or any of its nodes. [ERROR_FILE_SHARE_RESOURCE_CONFLICT (0x1732)] Error Code 5939 Eviction of this node is invalid at this time. Due to quorum requirements node eviction will result in cluster shutdown. If it is the last node in the cluster destroy cluster command should be used. [ERROR_CLUSTER_EVICT_INVALID_REQUEST (0x1733)] Error Code 5940 Only one instance of this resource type is allowed in the cluster. [ERROR_CLUSTER_SINGLETON_RESOURCE (0x1734)] Error Code 5941 Only one instance of this resource type is allowed per resource group. [ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE (0x1735)] Error Code 5942 The resource failed to come online due to the failure of one or more provider resources. [ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED (0x1736)] Error Code 5943 The resource has indicated that it cannot come online on any node. [ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR (0x1737)] Error Code 6000 The specified file could not be encrypted. [ERROR_ENCRYPTION_FAILED (0x1770)] Error Code 6001 The specified file could not be decrypted. [ERROR_DECRYPTION_FAILED (0x1771)] Error Code 6002 The specified file is encrypted and the user does not have the ability to decrypt it. [ERROR_FILE_ENCRYPTED (0x1772)] Error Code 6003 There is no valid encryption recovery policy configured for this system. [ERROR_NO_RECOVERY_POLICY (0x1773)] Error Code 6004 The required encryption driver is not loaded for this system. [ERROR_NO_EFS (0x1774)] Error Code 6005 The file was encrypted with a different encryption driver than is currently loaded. [ERROR_WRONG_EFS (0x1775)] Error Code 6006 There are no EFS keys defined for the user. [ERROR_NO_USER_KEYS (0x1776)] Error Code 6007 The specified file is not encrypted. [ERROR_FILE_NOT_ENCRYPTED (0x1777)] Error Code 6008 The specified file is not in the defined EFS export format. [ERROR_NOT_EXPORT_FORMAT (0x1778)] Error Code 6009 The specified file is read only. [ERROR_FILE_READ_ONLY (0x1779)] Error Code 6010 The directory has been disabled for encryption. [ERROR_DIR_EFS_DISALLOWED (0x177A)] Error Code 6011 The server is not trusted for remote encryption operation. [ERROR_EFS_SERVER_NOT_TRUSTED (0x177B)] Error Code 6012 Recovery policy configured for this system contains invalid recovery certificate. [ERROR_BAD_RECOVERY_POLICY (0x177C)] Error Code 6013 The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file. [ERROR_EFS_ALG_BLOB_TOO_BIG (0x177D)] Error Code 6014 The disk partition does not support file encryption. [ERROR_VOLUME_NOT_SUPPORT_EFS (0x177E)] Error Code 6015 This machine is disabled for file encryption. [ERROR_EFS_DISABLED (0x177F)] Error Code 6016 A newer system is required to decrypt this encrypted file. [ERROR_EFS_VERSION_NOT_SUPPORT (0x1780)] Error Code 6017 The remote server sent an invalid response for a file being opened with Client Side Encryption. [ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE (0x1781)] Error Code 6018 Client Side Encryption is not supported by the remote server even though it claims to support it. [ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER (0x1782)] Error Code 6019 File is encrypted and should be opened in Client Side Encryption mode. [ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE (0x1783)] Error Code 6020 A new encrypted file is being created and a $EFS needs to be provided. [ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE (0x1784)] Error Code 6021 The SMB client requested a CSE FSCTL on a non-CSE file. [ERROR_CS_ENCRYPTION_FILE_NOT_CSE (0x1785)] Error Code 6118 The list of servers for this workgroup is not currently available [ERROR_NO_BROWSER_SERVERS_FOUND (0x17E6)] Error Code 6200 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. [SCHED_E_SERVICE_NOT_LOCALSYSTEM (0x1838)] Error Code 6600 Log service encountered an invalid log sector. [ERROR_LOG_SECTOR_INVALID (0x19C8)] Error Code 6601 Log service encountered a log sector with invalid block parity. [ERROR_LOG_SECTOR_PARITY_INVALID (0x19C9)] Error Code 6602 Log service encountered a remapped log sector. [ERROR_LOG_SECTOR_REMAPPED (0x19CA)] Error Code 6603 Log service encountered a partial or incomplete log block. [ERROR_LOG_BLOCK_INCOMPLETE (0x19CB)] Error Code 6604 Log service encountered an attempt access data outside the active log range. [ERROR_LOG_INVALID_RANGE (0x19CC)] Error Code 6605 Log service user marshalling buffers are exhausted. [ERROR_LOG_BLOCKS_EXHAUSTED (0x19CD)] Error Code 6606 Log service encountered an attempt read from a marshalling area with an invalid read context. [ERROR_LOG_READ_CONTEXT_INVALID (0x19CE)] Error Code 6607 Log service encountered an invalid log restart area. [ERROR_LOG_RESTART_INVALID (0x19CF)] Error Code 6608 Log service encountered an invalid log block version. [ERROR_LOG_BLOCK_VERSION (0x19D0)] Error Code 6609 Log service encountered an invalid log block. [ERROR_LOG_BLOCK_INVALID (0x19D1)] Error Code 6610 Log service encountered an attempt to read the log with an invalid read mode. [ERROR_LOG_READ_MODE_INVALID (0x19D2)] Error Code 6611 Log service encountered a log stream with no restart area. [ERROR_LOG_NO_RESTART (0x19D3)] Error Code 6612 Log service encountered a corrupted metadata file. [ERROR_LOG_METADATA_CORRUPT (0x19D4)] Error Code 6613 Log service encountered a metadata file that could not be created by the log file system. [ERROR_LOG_METADATA_INVALID (0x19D5)] Error Code 6614 Log service encountered a metadata file with inconsistent data. [ERROR_LOG_METADATA_INCONSISTENT (0x19D6)] Error Code 6615 Log service encountered an attempt to erroneous allocate or dispose reservation space. [ERROR_LOG_RESERVATION_INVALID (0x19D7)] Error Code 6616 Log service cannot delete log file or file system container. [ERROR_LOG_CANT_DELETE (0x19D8)] Error Code 6617 Log service has reached the maximum allowable containers allocated to a log file. [ERROR_LOG_CONTAINER_LIMIT_EXCEEDED (0x19D9)] Error Code 6618 Log service has attempted to read or write backward past the start of the log. [ERROR_LOG_START_OF_LOG (0x19DA)] Error Code 6619 Log policy could not be installed because a policy of the same type is already present. [ERROR_LOG_POLICY_ALREADY_INSTALLED (0x19DB)] Error Code 6620 Log policy in question was not installed at the time of the request. [ERROR_LOG_POLICY_NOT_INSTALLED (0x19DC)] Error Code 6621 The installed set of policies on the log is invalid. [ERROR_LOG_POLICY_INVALID (0x19DD)] Error Code 6622 A policy on the log in question prevented the operation from completing. [ERROR_LOG_POLICY_CONFLICT (0x19DE)] Error Code 6623 Log space cannot be reclaimed because the log is pinned by the archive tail. [ERROR_LOG_PINNED_ARCHIVE_TAIL (0x19DF)] Error Code 6624 Log record is not a record in the log file. [ERROR_LOG_RECORD_NONEXISTENT (0x19E0)] Error Code 6625 The number of reserved log records or the adjustment of the number of reserved log records is invalid. [ERROR_LOG_RECORDS_RESERVED_INVALID (0x19E1)] Error Code 6626 Reserved log space or the adjustment of the log space is invalid. [ERROR_LOG_SPACE_RESERVED_INVALID (0x19E2)] Error Code 6627 An new or existing archive tail or base of the active log is invalid. [ERROR_LOG_TAIL_INVALID (0x19E3)] Error Code 6628 Log space is exhausted. [ERROR_LOG_FULL (0x19E4)] Error Code 6629 The log could not be set to the requested size. [ERROR_COULD_NOT_RESIZE_LOG (0x19E5)] Error Code 6630 Log is multiplexed no direct writes to the physical log is allowed. [ERROR_LOG_MULTIPLEXED (0x19E6)] Error Code 6631 The operation failed because the log is a dedicated log. [ERROR_LOG_DEDICATED (0x19E7)] Error Code 6632 The operation requires an archive context. [ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS (0x19E8)] Error Code 6633 Log archival is in progress. [ERROR_LOG_ARCHIVE_IN_PROGRESS (0x19E9)] Error Code 6634 The operation requires a non-ephemeral log but the log is ephemeral. [ERROR_LOG_EPHEMERAL (0x19EA)] Error Code 6635 The log must have at least two containers before it can be read from or written to. [ERROR_LOG_NOT_ENOUGH_CONTAINERS (0x19EB)] Error Code 6636 A log client has already registered on the stream. [ERROR_LOG_CLIENT_ALREADY_REGISTERED (0x19EC)] Error Code 6637 A log client has not been registered on the stream. [ERROR_LOG_CLIENT_NOT_REGISTERED (0x19ED)] Error Code 6638 A request has already been made to handle the log full condition. [ERROR_LOG_FULL_HANDLER_IN_PROGRESS (0x19EE)] Error Code 6639 Log service encountered an error when attempting to read from a log container. [ERROR_LOG_CONTAINER_READ_FAILED (0x19EF)] Error Code 6640 Log service encountered an error when attempting to write to a log container. [ERROR_LOG_CONTAINER_WRITE_FAILED (0x19F0)] Error Code 6641 Log service encountered an error when attempting open a log container. [ERROR_LOG_CONTAINER_OPEN_FAILED (0x19F1)] Error Code 6642 Log service encountered an invalid container state when attempting a requested action. [ERROR_LOG_CONTAINER_STATE_INVALID (0x19F2)] Error Code 6643 Log service is not in the correct state to perform a requested action. [ERROR_LOG_STATE_INVALID (0x19F3)] Error Code 6644 Log space cannot be reclaimed because the log is pinned. [ERROR_LOG_PINNED (0x19F4)] Error Code 6645 Log metadata flush failed. [ERROR_LOG_METADATA_FLUSH_FAILED (0x19F5)] Error Code 6646 Security on the log and its containers is inconsistent. [ERROR_LOG_INCONSISTENT_SECURITY (0x19F6)] Error Code 6647 Records were appended to the log or reservation changes were made but the log could not be flushed. [ERROR_LOG_APPENDED_FLUSH_FAILED (0x19F7)] Error Code 6648 The log is pinned due to reservation consuming most of the log space. Free some reserved records to make space available. [ERROR_LOG_PINNED_RESERVATION (0x19F8)] Error Code 6700 The transaction handle associated with this operation is not valid. [ERROR_INVALID_TRANSACTION (0x1A2C)] Error Code 6701 The requested operation was made in the context of a transaction that is no longer active. [ERROR_TRANSACTION_NOT_ACTIVE (0x1A2D)] Error Code 6702 The requested operation is not valid on the Transaction object in its current state. [ERROR_TRANSACTION_REQUEST_NOT_VALID (0x1A2E)] Error Code 6703 The caller has called a response API but the response is not expected because the TM did not issue the corresponding request to the caller. [ERROR_TRANSACTION_NOT_REQUESTED (0x1A2F)] Error Code 6704 It is too late to perform the requested operation since the Transaction has already been aborted. [ERROR_TRANSACTION_ALREADY_ABORTED (0x1A30)] Error Code 6705 It is too late to perform the requested operation since the Transaction has already been committed. [ERROR_TRANSACTION_ALREADY_COMMITTED (0x1A31)] Error Code 6706 The Transaction Manager was unable to be successfully initialized. Transacted operations are not supported. [ERROR_TM_INITIALIZATION_FAILED (0x1A32)] Error Code 6707 The specified ResourceManager made no changes or updates to the resource under this transaction. [ERROR_RESOURCEMANAGER_READ_ONLY (0x1A33)] Error Code 6708 The resource manager has attempted to prepare a transaction that it has not successfully joined. [ERROR_TRANSACTION_NOT_JOINED (0x1A34)] Error Code 6709 The Transaction object already has a superior enlistment and the caller attempted an operation that would have created a new superior. Only a single superior enlistment is allow. [ERROR_TRANSACTION_SUPERIOR_EXISTS (0x1A35)] Error Code 6710 The RM tried to register a protocol that already exists. [ERROR_CRM_PROTOCOL_ALREADY_EXISTS (0x1A36)] Error Code 6711 The attempt to propagate the Transaction failed. [ERROR_TRANSACTION_PROPAGATION_FAILED (0x1A37)] Error Code 6712 The requested propagation protocol was not registered as a CRM. [ERROR_CRM_PROTOCOL_NOT_FOUND (0x1A38)] Error Code 6713 The buffer passed in to PushTransaction or PullTransaction is not in a valid format. [ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER (0x1A39)] Error Code 6714 The current transaction context associated with the thread is not a valid handle to a transaction object. [ERROR_CURRENT_TRANSACTION_NOT_VALID (0x1A3A)] Error Code 6715 The specified Transaction object could not be opened because it was not found. [ERROR_TRANSACTION_NOT_FOUND (0x1A3B)] Error Code 6716 The specified ResourceManager object could not be opened because it was not found. [ERROR_RESOURCEMANAGER_NOT_FOUND (0x1A3C)] Error Code 6717 The specified Enlistment object could not be opened because it was not found. [ERROR_ENLISTMENT_NOT_FOUND (0x1A3D)] Error Code 6718 The specified TransactionManager object could not be opened because it was not found. The TransactionManager must be brought fully Online by calling RecoverTransactionManager to recover to the end of its LogFile before objects in its Transaction or ResourceManager namespaces can be opened. In addition errors in writing records to its LogFile can cause a TransactionManager to go offline. [ERROR_TRANSACTIONMANAGER_NOT_FOUND (0x1A3E)] Error Code 6719 The object specified could not be created or opened because its associated TransactionManager is not online. [ERROR_TRANSACTIONMANAGER_NOT_ONLINE (0x1A3F)] Error Code 6720 The specified TransactionManager was unable to create the objects contained in its logfile in the Ob namespace. Therefore the TransactionManager was unable to recover. [ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION (0x1A40)] Error Code 6721 The call to create a superior Enlistment on this Transaction object could not be completed because the Transaction object specified for the enlistment is a subordinate branch of the Transaction. Only the root of the Transaction can be enlisted on as a superior. [ERROR_TRANSACTION_NOT_ROOT (0x1A41)] Error Code 6722 Because the associated transaction manager or resource manager has been closed the handle is no longer valid. [ERROR_TRANSACTION_OBJECT_EXPIRED (0x1A42)] Error Code 6723 The specified operation could not be performed on this Superior enlistment because the enlistment was not created with the corresponding completion response in the NotificationMask. [ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED (0x1A43)] Error Code 6724 The specified operation could not be performed because the record that would be logged was too long. This can occur because of two conditions Error Code 6725 Implicit transactions are not supported. [ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED (0x1A45)] Error Code 6726 The kernel transaction manager had to abort or forget the transaction because it blocked forward progress. [ERROR_TRANSACTION_INTEGRITY_VIOLATED (0x1A46)] Error Code 6727 The TransactionManager identity that was supplied did not match the one recorded in the TransactionManager’s log file. [ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH (0x1A47)] Error Code 6728 This snapshot operation cannot continue because a transactional resource manager cannot be frozen in its current state. Please try again. [ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT (0x1A48)] Error Code 6729 The transaction cannot be enlisted on with the specified EnlistmentMask because the transaction has already completed the PrePrepare phase. In order to ensure correctness the ResourceManager must switch to a write-through mode and cease caching data within this transaction. Enlisting for only subsequent transaction phases may still succeed. [ERROR_TRANSACTION_MUST_WRITETHROUGH (0x1A49)] Error Code 6730 The transaction does not have a superior enlistment. [ERROR_TRANSACTION_NO_SUPERIOR (0x1A4A)] Error Code 6800 The function attempted to use a name that is reserved for use by another transaction. [ERROR_TRANSACTIONAL_CONFLICT (0x1A90)] Error Code 6801 Transaction support within the specified file system resource manager is not started or was shutdown due to an error. [ERROR_RM_NOT_ACTIVE (0x1A91)] Error Code 6802 The metadata of the RM has been corrupted. The RM will not function. [ERROR_RM_METADATA_CORRUPT (0x1A92)] Error Code 6803 The specified directory does not contain a resource manager. [ERROR_DIRECTORY_NOT_RM (0x1A93)] Error Code 6805 The remote server or share does not support transacted file operations. [ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE (0x1A95)] Error Code 6806 The requested log size is invalid. [ERROR_LOG_RESIZE_INVALID_SIZE (0x1A96)] Error Code 6807 The object (file stream link) corresponding to the handle has been deleted by a Transaction Savepoint Rollback. [ERROR_OBJECT_NO_LONGER_EXISTS (0x1A97)] Error Code 6808 The specified file miniversion was not found for this transacted file open. [ERROR_STREAM_MINIVERSION_NOT_FOUND (0x1A98)] Error Code 6809 The specified file miniversion was found but has been invalidated. Most likely cause is a transaction savepoint rollback. [ERROR_STREAM_MINIVERSION_NOT_VALID (0x1A99)] Error Code 6810 A miniversion may only be opened in the context of the transaction that created it. [ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION (0x1A9A)] Error Code 6811 It is not possible to open a miniversion with modify access. [ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT (0x1A9B)] Error Code 6812 It is not possible to create any more miniversions for this stream. [ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS (0x1A9C)] Error Code 6814 The remote server sent mismatching version number or Fid for a file opened with transactions. [ERROR_REMOTE_FILE_VERSION_MISMATCH (0x1A9E)] Error Code 6815 The handle has been invalidated by a transaction. The most likely cause is the presence of memory mapping on a file or an open handle when the transaction ended or rolled back to savepoint. [ERROR_HANDLE_NO_LONGER_VALID (0x1A9F)] Error Code 6816 There is no transaction metadata on the file. [ERROR_NO_TXF_METADATA (0x1AA0)] Error Code 6817 The log data is corrupt. [ERROR_LOG_CORRUPTION_DETECTED (0x1AA1)] Error Code 6818 The file can’t be recovered because there is a handle still open on it. [ERROR_CANT_RECOVER_WITH_HANDLE_OPEN (0x1AA2)] Error Code 6819 The transaction outcome is unavailable because the resource manager responsible for it has disconnected. [ERROR_RM_DISCONNECTED (0x1AA3)] Error Code 6820 The request was rejected because the enlistment in question is not a superior enlistment. [ERROR_ENLISTMENT_NOT_SUPERIOR (0x1AA4)] Error Code 6821 The transactional resource manager is already consistent. Recovery is not needed. [ERROR_RECOVERY_NOT_NEEDED (0x1AA5)] Error Code 6822 The transactional resource manager has already been started. [ERROR_RM_ALREADY_STARTED (0x1AA6)] Error Code 6823 The file cannot be opened transactionally because its identity depends on the outcome of an unresolved transaction. [ERROR_FILE_IDENTITY_NOT_PERSISTENT (0x1AA7)] Error Code 6824 The operation cannot be performed because another transaction is depending on the fact that this property will not change. [ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY (0x1AA8)] Error Code 6825 The operation would involve a single file with two transactional resource managers and is therefore not allowed. [ERROR_CANT_CROSS_RM_BOUNDARY (0x1AA9)] Error Code 6826 The $Txf directory must be empty for this operation to succeed. [ERROR_TXF_DIR_NOT_EMPTY (0x1AAA)] Error Code 6827 The operation would leave a transactional resource manager in an inconsistent state and is therefore not allowed. [ERROR_INDOUBT_TRANSACTIONS_EXIST (0x1AAB)] Error Code 6828 The operation could not be completed because the transaction manager does not have a log. [ERROR_TM_VOLATILE (0x1AAC)] Error Code 6829 A rollback could not be scheduled because a previously scheduled rollback has already executed or been queued for execution. [ERROR_ROLLBACK_TIMER_EXPIRED (0x1AAD)] Error Code 6830 The transactional metadata attribute on the file or directory is corrupt and unreadable. [ERROR_TXF_ATTRIBUTE_CORRUPT (0x1AAE)] Error Code 6831 The encryption operation could not be completed because a transaction is active. [ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION (0x1AAF)] Error Code 6832 This object is not allowed to be opened in a transaction. [ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED (0x1AB0)] Error Code 6833 An attempt to create space in the transactional resource manager’s log failed. The failure status has been recorded in the event log. [ERROR_LOG_GROWTH_FAILED (0x1AB1)] Error Code 6834 Memory mapping (creating a mapped section) a remote file under a transaction is not supported. [ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE (0x1AB2)] Error Code 6835 Transaction metadata is already present on this file and cannot be superseded. [ERROR_TXF_METADATA_ALREADY_PRESENT (0x1AB3)] Error Code 6836 A transaction scope could not be entered because the scope handler has not been initialized. [ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET (0x1AB4)] Error Code 6837 Promotion was required in order to allow the resource manager to enlist but the transaction was set to disallow it. [ERROR_TRANSACTION_REQUIRED_PROMOTION (0x1AB5)] Error Code 6838 This file is open for modification in an unresolved transaction and may be opened for execute only by a transacted reader. [ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION (0x1AB6)] Error Code 6839 The request to thaw frozen transactions was ignored because transactions had not previously been frozen. [ERROR_TRANSACTIONS_NOT_FROZEN (0x1AB7)] Error Code 6840 Transactions cannot be frozen because a freeze is already in progress. [ERROR_TRANSACTION_FREEZE_IN_PROGRESS (0x1AB8)] Error Code 6841 The target volume is not a snapshot volume. This operation is only valid on a volume mounted as a snapshot. [ERROR_NOT_SNAPSHOT_VOLUME (0x1AB9)] Error Code 6842 The savepoint operation failed because files are open on the transaction. This is not permitted. [ERROR_NO_SAVEPOINT_WITH_OPEN_FILES (0x1ABA)] Error Code 6843 Windows has discovered corruption in a file and that file has since been repaired. Data loss may have occurred. [ERROR_DATA_LOST_REPAIR (0x1ABB)] Error Code 6844 The sparse operation could not be completed because a transaction is active on the file. [ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION (0x1ABC)] Error Code 6845 The call to create a TransactionManager object failed because the Tm Identity stored in the logfile does not match the Tm Identity that was passed in as an argument. [ERROR_TM_IDENTITY_MISMATCH (0x1ABD)] Error Code 6846 I/O was attempted on a section object that has been floated as a result of a transaction ending. There is no valid data. [ERROR_FLOATED_SECTION (0x1ABE)] Error Code 6847 The transactional resource manager cannot currently accept transacted work due to a transient condition such as low resources. [ERROR_CANNOT_ACCEPT_TRANSACTED_WORK (0x1ABF)] Error Code 6848 The transactional resource manager had too many transactions outstanding that could not be aborted. The transactional resource manager has been shut down. [ERROR_CANNOT_ABORT_TRANSACTIONS (0x1AC0)] Error Code 6849 The operation could not be completed due to bad clusters on disk. [ERROR_BAD_CLUSTERS (0x1AC1)] Error Code 6850 The compression operation could not be completed because a transaction is active on the file. [ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION (0x1AC2)] Error Code 6851 The operation could not be completed because the volume is dirty. Please run chkdsk and try again. [ERROR_VOLUME_DIRTY (0x1AC3)] Error Code 6852 The link tracking operation could not be completed because a transaction is active. [ERROR_NO_LINK_TRACKING_IN_TRANSACTION (0x1AC4)] Error Code 6853 This operation cannot be performed in a transaction. [ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION (0x1AC5)] Error Code 7001 The specified session name is invalid. [ERROR_CTX_WINSTATION_NAME_INVALID (0x1B59)] Error Code 7002 The specified protocol driver is invalid. [ERROR_CTX_INVALID_PD (0x1B5A)] Error Code 7003 The specified protocol driver was not found in the system path. [ERROR_CTX_PD_NOT_FOUND (0x1B5B)] Error Code 7004 The specified terminal connection driver was not found in the system path. [ERROR_CTX_WD_NOT_FOUND (0x1B5C)] Error Code 7005 A registry key for event logging could not be created for this session. [ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY (0x1B5D)] Error Code 7006 A service with the same name already exists on the system. [ERROR_CTX_SERVICE_NAME_COLLISION (0x1B5E)] Error Code 7007 A close operation is pending on the session. [ERROR_CTX_CLOSE_PENDING (0x1B5F)] Error Code 7008 There are no free output buffers available. [ERROR_CTX_NO_OUTBUF (0x1B60)] Error Code 7009 The MODEM.INF file was not found. [ERROR_CTX_MODEM_INF_NOT_FOUND (0x1B61)] Error Code 7010 The modem name was not found in MODEM.INF. [ERROR_CTX_INVALID_MODEMNAME (0x1B62)] Error Code 7011 The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem. [ERROR_CTX_MODEM_RESPONSE_ERROR (0x1B63)] Error Code 7012 The modem did not respond to the command sent to it. Verify that the modem is properly cabled and powered on. [ERROR_CTX_MODEM_RESPONSE_TIMEOUT (0x1B64)] Error Code 7013 Carrier detect has failed or carrier has been dropped due to disconnect. [ERROR_CTX_MODEM_RESPONSE_NO_CARRIER (0x1B65)] Error Code 7014 Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional. [ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE (0x1B66)] Error Code 7015 Busy signal detected at remote site on callback. [ERROR_CTX_MODEM_RESPONSE_BUSY (0x1B67)] Error Code 7016 Voice detected at remote site on callback. [ERROR_CTX_MODEM_RESPONSE_VOICE (0x1B68)] Error Code 7017 Transport driver error [ERROR_CTX_TD_ERROR (0x1B69)] Error Code 7022 The specified session cannot be found. [ERROR_CTX_WINSTATION_NOT_FOUND (0x1B6E)] Error Code 7023 The specified session name is already in use. [ERROR_CTX_WINSTATION_ALREADY_EXISTS (0x1B6F)] Error Code 7024 The requested operation cannot be completed because the terminal connection is currently busy processing a connect disconnect reset or delete operation. [ERROR_CTX_WINSTATION_BUSY (0x1B70)] Error Code 7025 An attempt has been made to connect to a session whose video mode is not supported by the current client. [ERROR_CTX_BAD_VIDEO_MODE (0x1B71)] Error Code 7035 The application attempted to enable DOS graphics mode. DOS graphics mode is not supported. [ERROR_CTX_GRAPHICS_INVALID (0x1B7B)] Error Code 7037 Your interactive logon privilege has been disabled. Please contact your administrator. [ERROR_CTX_LOGON_DISABLED (0x1B7D)] Error Code 7038 The requested operation can be performed only on the system console. This is most often the result of a driver or system DLL requiring direct console access. [ERROR_CTX_NOT_CONSOLE (0x1B7E)] Error Code 7040 The client failed to respond to the server connect message. [ERROR_CTX_CLIENT_QUERY_TIMEOUT (0x1B80)] Error Code 7041 Disconnecting the console session is not supported. [ERROR_CTX_CONSOLE_DISCONNECT (0x1B81)] Error Code 7042 Reconnecting a disconnected session to the console is not supported. [ERROR_CTX_CONSOLE_CONNECT (0x1B82)] Error Code 7044 The request to control another session remotely was denied. [ERROR_CTX_SHADOW_DENIED (0x1B84)] Error Code 7045 The requested session access is denied. [ERROR_CTX_WINSTATION_ACCESS_DENIED (0x1B85)] Error Code 7049 The specified terminal connection driver is invalid. [ERROR_CTX_INVALID_WD (0x1B89)] Error Code 7050 The requested session cannot be controlled remotely. This may be because the session is disconnected or does not currently have a user logged on. [ERROR_CTX_SHADOW_INVALID (0x1B8A)] Error Code 7051 The requested session is not configured to allow remote control. [ERROR_CTX_SHADOW_DISABLED (0x1B8B)] Error Code 7052 Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number is currently being used by another user. Please call your system administrator to obtain a unique license number. [ERROR_CTX_CLIENT_LICENSE_IN_USE (0x1B8C)] Error Code 7053 Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number has not been entered for this copy of the Terminal Server client. Please contact your system administrator. [ERROR_CTX_CLIENT_LICENSE_NOT_SET (0x1B8D)] Error Code 7054 The number of connections to this computer is limited and all connections are in use right now. Try connecting later or contact your system administrator. [ERROR_CTX_LICENSE_NOT_AVAILABLE (0x1B8E)] Error Code 7055 The client you are using is not licensed to use this system. Your logon request is denied. [ERROR_CTX_LICENSE_CLIENT_INVALID (0x1B8F)] Error Code 7056 The system license has expired. Your logon request is denied. [ERROR_CTX_LICENSE_EXPIRED (0x1B90)] Error Code 7057 Remote control could not be terminated because the specified session is not currently being remotely controlled. [ERROR_CTX_SHADOW_NOT_RUNNING (0x1B91)] Error Code 7058 The remote control of the console was terminated because the display mode was changed. Changing the display mode in a remote control session is not supported. [ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE (0x1B92)] Error Code 7059 Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared. [ERROR_ACTIVATION_COUNT_EXCEEDED (0x1B93)] Error Code 7060 Remote logins are currently disabled. [ERROR_CTX_WINSTATIONS_DISABLED (0x1B94)] Error Code 7061 You do not have the proper encryption level to access this Session. [ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED (0x1B95)] Error Code 7062 The user %s/s is currently logged on to this computer. Only the current user or an administrator can log on to this computer. [ERROR_CTX_SESSION_IN_USE (0x1B96)] Error Code 7063 The user %s/s is already logged on to the console of this computer. You do not have permission to log in at this time. To resolve this issue contact %s/s and have them log off. [ERROR_CTX_NO_FORCE_LOGOFF (0x1B97)] Error Code 7064 Unable to log you on because of an account restriction. [ERROR_CTX_ACCOUNT_RESTRICTION (0x1B98)] Error Code 7065 The RDP protocol component %2 detected an error in the protocol stream and has disconnected the client. [ERROR_RDP_PROTOCOL_ERROR (0x1B99)] Error Code 7066 The Client Drive Mapping Service Has Connected on Terminal Connection. [ERROR_CTX_CDM_CONNECT (0x1B9A)] Error Code 7067 The Client Drive Mapping Service Has Disconnected on Terminal Connection. [ERROR_CTX_CDM_DISCONNECT (0x1B9B)] Error Code 7068 The Terminal Server security layer detected an error in the protocol stream and has disconnected the client. [ERROR_CTX_SECURITY_LAYER_ERROR (0x1B9C)] Error Code 7069 The target session is incompatible with the current session. [ERROR_TS_INCOMPATIBLE_SESSIONS (0x1B9D)] Error Code 8001 The file replication service API was called incorrectly. [FRS_ERR_INVALID_API_SEQUENCE (0x1F41)] Error Code 8002 The file replication service cannot be started. [FRS_ERR_STARTING_SERVICE (0x1F42)] Error Code 8003 The file replication service cannot be stopped. [FRS_ERR_STOPPING_SERVICE (0x1F43)] Error Code 8004 The file replication service API terminated the request. The event log may have more information. [FRS_ERR_INTERNAL_API (0x1F44)] Error Code 8005 The file replication service terminated the request. The event log may have more information. [FRS_ERR_INTERNAL (0x1F45)] Error Code 8006 The file replication service cannot be contacted. The event log may have more information. [FRS_ERR_SERVICE_COMM (0x1F46)] Error Code 8007 The file replication service cannot satisfy the request because the user has insufficient privileges. The event log may have more information. [FRS_ERR_INSUFFICIENT_PRIV (0x1F47)] Error Code 8008 The file replication service cannot satisfy the request because authenticated RPC is not available. The event log may have more information. [FRS_ERR_AUTHENTICATION (0x1F48)] Error Code 8009 The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller. The event log may have more information. [FRS_ERR_PARENT_INSUFFICIENT_PRIV (0x1F49)] Error Code 8010 The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller. The event log may have more information. [FRS_ERR_PARENT_AUTHENTICATION (0x1F4A)] Error Code 8011 The file replication service cannot communicate with the file replication service on the domain controller. The event log may have more information. [FRS_ERR_CHILD_TO_PARENT_COMM (0x1F4B)] Error Code 8012 The file replication service on the domain controller cannot communicate with the file replication service on this computer. The event log may have more information. [FRS_ERR_PARENT_TO_CHILD_COMM (0x1F4C)] Error Code 8013 The file replication service cannot populate the system volume because of an internal error. The event log may have more information. [FRS_ERR_SYSVOL_POPULATE (0x1F4D)] Error Code 8014 The file replication service cannot populate the system volume because of an internal timeout. The event log may have more information. [FRS_ERR_SYSVOL_POPULATE_TIMEOUT (0x1F4E)] Error Code 8015 The file replication service cannot process the request. The system volume is busy with a previous request. [FRS_ERR_SYSVOL_IS_BUSY (0x1F4F)] Error Code 8016 The file replication service cannot stop replicating the system volume because of an internal error. The event log may have more information. [FRS_ERR_SYSVOL_DEMOTE (0x1F50)] Error Code 8017 The file replication service detected an invalid parameter. [FRS_ERR_INVALID_SERVICE_PARAMETER (0x1F51)] Error Code 8200 An error occurred while installing the directory service. For more information see the event log. [ERROR_DS_NOT_INSTALLED (0x2008)] Error Code 8201 The directory service evaluated group memberships locally. [ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY (0x2009)] Error Code 8202 The specified directory service attribute or value does not exist. [ERROR_DS_NO_ATTRIBUTE_OR_VALUE (0x200A)] Error Code 8203 The attribute syntax specified to the directory service is invalid. [ERROR_DS_INVALID_ATTRIBUTE_SYNTAX (0x200B)] Error Code 8204 The attribute type specified to the directory service is not defined. [ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED (0x200C)] Error Code 8205 The specified directory service attribute or value already exists. [ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS (0x200D)] Error Code 8206 The directory service is busy. [ERROR_DS_BUSY (0x200E)] Error Code 8207 The directory service is unavailable. [ERROR_DS_UNAVAILABLE (0x200F)] Error Code 8208 The directory service was unable to allocate a relative identifier. [ERROR_DS_NO_RIDS_ALLOCATED (0x2010)] Error Code 8209 The directory service has exhausted the pool of relative identifiers. [ERROR_DS_NO_MORE_RIDS (0x2011)] Error Code 8210 The requested operation could not be performed because the directory service is not the primary for that type of operation. [ERROR_DS_INCORRECT_ROLE_OWNER (0x2012)] Error Code 8211 The directory service was unable to initialize the subsystem that allocates relative identifiers. [ERROR_DS_RIDMGR_INIT_ERROR (0x2013)] Error Code 8212 The requested operation did not satisfy one or more constraints associated with the class of the object. [ERROR_DS_OBJ_CLASS_VIOLATION (0x2014)] Error Code 8213 The directory service can perform the requested operation only on a leaf object. [ERROR_DS_CANT_ON_NON_LEAF (0x2015)] Error Code 8214 The directory service cannot perform the requested operation on the RDN attribute of an object. [ERROR_DS_CANT_ON_RDN (0x2016)] Error Code 8215 The directory service detected an attempt to modify the object class of an object. [ERROR_DS_CANT_MOD_OBJ_CLASS (0x2017)] Error Code 8216 The requested cross-domain move operation could not be performed. [ERROR_DS_CROSS_DOM_MOVE_ERROR (0x2018)] Error Code 8217 Unable to contact the global catalog server. [ERROR_DS_GC_NOT_AVAILABLE (0x2019)] Error Code 8218 The policy object is shared and can only be modified at the root. [ERROR_SHARED_POLICY (0x201A)] Error Code 8219 The policy object does not exist. [ERROR_POLICY_OBJECT_NOT_FOUND (0x201B)] Error Code 8220 The requested policy information is only in the directory service. [ERROR_POLICY_ONLY_IN_DS (0x201C)] Error Code 8221 A domain controller promotion is currently active. [ERROR_PROMOTION_ACTIVE (0x201D)] Error Code 8222 A domain controller promotion is not currently active [ERROR_NO_PROMOTION_ACTIVE (0x201E)] Error Code 8224 An operations error occurred. [ERROR_DS_OPERATIONS_ERROR (0x2020)] Error Code 8225 A protocol error occurred. [ERROR_DS_PROTOCOL_ERROR (0x2021)] Error Code 8226 The time limit for this request was exceeded. [ERROR_DS_TIMELIMIT_EXCEEDED (0x2022)] Error Code 8227 The size limit for this request was exceeded. [ERROR_DS_SIZELIMIT_EXCEEDED (0x2023)] Error Code 8228 The administrative limit for this request was exceeded. [ERROR_DS_ADMIN_LIMIT_EXCEEDED (0x2024)] Error Code 8229 The compare response was false. [ERROR_DS_COMPARE_FALSE (0x2025)] Error Code 8230 The compare response was true. [ERROR_DS_COMPARE_TRUE (0x2026)] Error Code 8231 The requested authentication method is not supported by the server. [ERROR_DS_AUTH_METHOD_NOT_SUPPORTED (0x2027)] Error Code 8232 A more secure authentication method is required for this server. [ERROR_DS_STRONG_AUTH_REQUIRED (0x2028)] Error Code 8233 Inappropriate authentication. [ERROR_DS_INAPPROPRIATE_AUTH (0x2029)] Error Code 8234 The authentication mechanism is unknown. [ERROR_DS_AUTH_UNKNOWN (0x202A)] Error Code 8235 A referral was returned from the server. [ERROR_DS_REFERRAL (0x202B)] Error Code 8236 The server does not support the requested critical extension. [ERROR_DS_UNAVAILABLE_CRIT_EXTENSION (0x202C)] Error Code 8237 This request requires a secure connection. [ERROR_DS_CONFIDENTIALITY_REQUIRED (0x202D)] Error Code 8238 Inappropriate matching. [ERROR_DS_INAPPROPRIATE_MATCHING (0x202E)] Error Code 8239 A constraint violation occurred. [ERROR_DS_CONSTRAINT_VIOLATION (0x202F)] Error Code 8240 There is no such object on the server. [ERROR_DS_NO_SUCH_OBJECT (0x2030)] Error Code 8241 There is an alias problem. [ERROR_DS_ALIAS_PROBLEM (0x2031)] Error Code 8242 An invalid dn syntax has been specified. [ERROR_DS_INVALID_DN_SYNTAX (0x2032)] Error Code 8243 The object is a leaf object. [ERROR_DS_IS_LEAF (0x2033)] Error Code 8244 There is an alias dereferencing problem. [ERROR_DS_ALIAS_DEREF_PROBLEM (0x2034)] Error Code 8245 The server is unwilling to process the request. [ERROR_DS_UNWILLING_TO_PERFORM (0x2035)] Error Code 8246 A loop has been detected. [ERROR_DS_LOOP_DETECT (0x2036)] Error Code 8247 There is a naming violation. [ERROR_DS_NAMING_VIOLATION (0x2037)] Error Code 8248 The result set is too large. [ERROR_DS_OBJECT_RESULTS_TOO_LARGE (0x2038)] Error Code 8249 The operation affects multiple DSAs [ERROR_DS_AFFECTS_MULTIPLE_DSAS (0x2039)] Error Code 8250 The server is not operational. [ERROR_DS_SERVER_DOWN (0x203A)] Error Code 8251 A local error has occurred. [ERROR_DS_LOCAL_ERROR (0x203B)] Error Code 8252 An encoding error has occurred. [ERROR_DS_ENCODING_ERROR (0x203C)] Error Code 8253 A decoding error has occurred. [ERROR_DS_DECODING_ERROR (0x203D)] Error Code 8254 The search filter cannot be recognized. [ERROR_DS_FILTER_UNKNOWN (0x203E)] Error Code 8255 One or more parameters are illegal. [ERROR_DS_PARAM_ERROR (0x203F)] Error Code 8256 The specified method is not supported. [ERROR_DS_NOT_SUPPORTED (0x2040)] Error Code 8257 No results were returned. [ERROR_DS_NO_RESULTS_RETURNED (0x2041)] Error Code 8258 The specified control is not supported by the server. [ERROR_DS_CONTROL_NOT_FOUND (0x2042)] Error Code 8259 A referral loop was detected by the client. [ERROR_DS_CLIENT_LOOP (0x2043)] Error Code 8260 The preset referral limit was exceeded. [ERROR_DS_REFERRAL_LIMIT_EXCEEDED (0x2044)] Error Code 8261 The search requires a SORT control. [ERROR_DS_SORT_CONTROL_MISSING (0x2045)] Error Code 8262 The search results exceed the offset range specified. [ERROR_DS_OFFSET_RANGE_ERROR (0x2046)] Error Code 8301 The root object must be the head of a naming context. The root object cannot have an instantiated parent. [ERROR_DS_ROOT_MUST_BE_NC (0x206D)] Error Code 8302 The add replica operation cannot be performed. The naming context must be writeable in order to create the replica. [ERROR_DS_ADD_REPLICA_INHIBITED (0x206E)] Error Code 8303 A reference to an attribute that is not defined in the schema occurred. [ERROR_DS_ATT_NOT_DEF_IN_SCHEMA (0x206F)] Error Code 8304 The maximum size of an object has been exceeded. [ERROR_DS_MAX_OBJ_SIZE_EXCEEDED (0x2070)] Error Code 8305 An attempt was made to add an object to the directory with a name that is already in use. [ERROR_DS_OBJ_STRING_NAME_EXISTS (0x2071)] Error Code 8306 An attempt was made to add an object of a class that does not have an RDN defined in the schema. [ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA (0x2072)] Error Code 8307 An attempt was made to add an object using an RDN that is not the RDN defined in the schema. [ERROR_DS_RDN_DOESNT_MATCH_SCHEMA (0x2073)] Error Code 8308 None of the requested attributes were found on the objects. [ERROR_DS_NO_REQUESTED_ATTS_FOUND (0x2074)] Error Code 8309 The user buffer is too small. [ERROR_DS_USER_BUFFER_TO_SMALL (0x2075)] Error Code 8310 The attribute specified in the operation is not present on the object. [ERROR_DS_ATT_IS_NOT_ON_OBJ (0x2076)] Error Code 8311 Illegal modify operation. Some aspect of the modification is not permitted. [ERROR_DS_ILLEGAL_MOD_OPERATION (0x2077)] Error Code 8312 The specified object is too large. [ERROR_DS_OBJ_TOO_LARGE (0x2078)] Error Code 8313 The specified instance type is not valid. [ERROR_DS_BAD_INSTANCE_TYPE (0x2079)] Error Code 8314 The operation must be performed at a primary DSA. [ERROR_DS_MASTERDSA_REQUIRED (0x207A)] Error Code 8315 The object class attribute must be specified. [ERROR_DS_OBJECT_CLASS_REQUIRED (0x207B)] Error Code 8316 A required attribute is missing. [ERROR_DS_MISSING_REQUIRED_ATT (0x207C)] Error Code 8317 An attempt was made to modify an object to include an attribute that is not legal for its class. [ERROR_DS_ATT_NOT_DEF_FOR_CLASS (0x207D)] Error Code 8318 The specified attribute is already present on the object. [ERROR_DS_ATT_ALREADY_EXISTS (0x207E)] Error Code 8320 The specified attribute is not present or has no values. [ERROR_DS_CANT_ADD_ATT_VALUES (0x2080)] Error Code 8321 Multiple values were specified for an attribute that can have only one value. [ERROR_DS_SINGLE_VALUE_CONSTRAINT (0x2081)] Error Code 8322 A value for the attribute was not in the acceptable range of values. [ERROR_DS_RANGE_CONSTRAINT (0x2082)] Error Code 8323 The specified value already exists. [ERROR_DS_ATT_VAL_ALREADY_EXISTS (0x2083)] Error Code 8324 The attribute cannot be removed because it is not present on the object. [ERROR_DS_CANT_REM_MISSING_ATT (0x2084)] Error Code 8325 The attribute value cannot be removed because it is not present on the object. [ERROR_DS_CANT_REM_MISSING_ATT_VAL (0x2085)] Error Code 8326 The specified root object cannot be a subref. [ERROR_DS_ROOT_CANT_BE_SUBREF (0x2086)] Error Code 8327 Chaining is not permitted. [ERROR_DS_NO_CHAINING (0x2087)] Error Code 8328 Chained evaluation is not permitted. [ERROR_DS_NO_CHAINED_EVAL (0x2088)] Error Code 8329 The operation could not be performed because the object’s parent is either uninstantiated or deleted. [ERROR_DS_NO_PARENT_OBJECT (0x2089)] Error Code 8330 Having a parent that is an alias is not permitted. Aliases are leaf objects. [ERROR_DS_PARENT_IS_AN_ALIAS (0x208A)] Error Code 8331 The object and parent must be of the same type either both primaries or both replicas. [ERROR_DS_CANT_MIX_MASTER_AND_REPS (0x208B)] Error Code 8332 The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object. [ERROR_DS_CHILDREN_EXIST (0x208C)] Error Code 8333 Directory object not found. [ERROR_DS_OBJ_NOT_FOUND (0x208D)] Error Code 8334 The aliased object is missing. [ERROR_DS_ALIASED_OBJ_MISSING (0x208E)] Error Code 8335 The object name has bad syntax. [ERROR_DS_BAD_NAME_SYNTAX (0x208F)] Error Code 8336 It is not permitted for an alias to refer to another alias. [ERROR_DS_ALIAS_POINTS_TO_ALIAS (0x2090)] Error Code 8337 The alias cannot be dereferenced. [ERROR_DS_CANT_DEREF_ALIAS (0x2091)] Error Code 8338 The operation is out of scope. [ERROR_DS_OUT_OF_SCOPE (0x2092)] Error Code 8339 The operation cannot continue because the object is in the process of being removed. [ERROR_DS_OBJECT_BEING_REMOVED (0x2093)] Error Code 8340 The DSA object cannot be deleted. [ERROR_DS_CANT_DELETE_DSA_OBJ (0x2094)] Error Code 8341 A directory service error has occurred. [ERROR_DS_GENERIC_ERROR (0x2095)] Error Code 8342 The operation can only be performed on an internal primary DSA object. [ERROR_DS_DSA_MUST_BE_INT_MASTER (0x2096)] Error Code 8343 The object must be of class DSA. [ERROR_DS_CLASS_NOT_DSA (0x2097)] Error Code 8344 Insufficient access rights to perform the operation. [ERROR_DS_INSUFF_ACCESS_RIGHTS (0x2098)] Error Code 8345 The object cannot be added because the parent is not on the list of possible superiors. [ERROR_DS_ILLEGAL_SUPERIOR (0x2099)] Error Code 8346 Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager (SAM). [ERROR_DS_ATTRIBUTE_OWNED_BY_SAM (0x209A)] Error Code 8347 The name has too many parts. [ERROR_DS_NAME_TOO_MANY_PARTS (0x209B)] Error Code 8348 The name is too long. [ERROR_DS_NAME_TOO_LONG (0x209C)] Error Code 8349 The name value is too long. [ERROR_DS_NAME_VALUE_TOO_LONG (0x209D)] Error Code 8350 The directory service encountered an error parsing a name. [ERROR_DS_NAME_UNPARSEABLE (0x209E)] Error Code 8351 The directory service cannot get the attribute type for a name. [ERROR_DS_NAME_TYPE_UNKNOWN (0x209F)] Error Code 8352 The name does not identify an object; the name identifies a phantom. [ERROR_DS_NOT_AN_OBJECT (0x20A0)] Error Code 8353 The security descriptor is too short. [ERROR_DS_SEC_DESC_TOO_SHORT (0x20A1)] Error Code 8354 The security descriptor is invalid. [ERROR_DS_SEC_DESC_INVALID (0x20A2)] Error Code 8355 Failed to create name for deleted object. [ERROR_DS_NO_DELETED_NAME (0x20A3)] Error Code 8356 The parent of a new subref must exist. [ERROR_DS_SUBREF_MUST_HAVE_PARENT (0x20A4)] Error Code 8357 The object must be a naming context. [ERROR_DS_NCNAME_MUST_BE_NC (0x20A5)] Error Code 8358 It is not permitted to add an attribute which is owned by the system. [ERROR_DS_CANT_ADD_SYSTEM_ONLY (0x20A6)] Error Code 8359 The class of the object must be structural; you cannot instantiate an abstract class. [ERROR_DS_CLASS_MUST_BE_CONCRETE (0x20A7)] Error Code 8360 The schema object could not be found. [ERROR_DS_INVALID_DMD (0x20A8)] Error Code 8361 A local object with this GUID (dead or alive) already exists. [ERROR_DS_OBJ_GUID_EXISTS (0x20A9)] Error Code 8362 The operation cannot be performed on a back link. [ERROR_DS_NOT_ON_BACKLINK (0x20AA)] Error Code 8363 The cross reference for the specified naming context could not be found. [ERROR_DS_NO_CROSSREF_FOR_NC (0x20AB)] Error Code 8364 The operation could not be performed because the directory service is shutting down. [ERROR_DS_SHUTTING_DOWN (0x20AC)] Error Code 8365 The directory service request is invalid. [ERROR_DS_UNKNOWN_OPERATION (0x20AD)] Error Code 8366 The role owner attribute could not be read. [ERROR_DS_INVALID_ROLE_OWNER (0x20AE)] Error Code 8367 The requested FSMO operation failed. The current FSMO holder could not be contacted. [ERROR_DS_COULDNT_CONTACT_FSMO (0x20AF)] Error Code 8368 Modification of a DN across a naming context is not permitted. [ERROR_DS_CROSS_NC_DN_RENAME (0x20B0)] Error Code 8369 The attribute cannot be modified because it is owned by the system. [ERROR_DS_CANT_MOD_SYSTEM_ONLY (0x20B1)] Error Code 8370 Only the replicator can perform this function. [ERROR_DS_REPLICATOR_ONLY (0x20B2)] Error Code 8371 The specified class is not defined. [ERROR_DS_OBJ_CLASS_NOT_DEFINED (0x20B3)] Error Code 8372 The specified class is not a subclass. [ERROR_DS_OBJ_CLASS_NOT_SUBCLASS (0x20B4)] Error Code 8373 The name reference is invalid. [ERROR_DS_NAME_REFERENCE_INVALID (0x20B5)] Error Code 8374 A cross reference already exists. [ERROR_DS_CROSS_REF_EXISTS (0x20B6)] Error Code 8375 It is not permitted to delete a primary cross reference. [ERROR_DS_CANT_DEL_MASTER_CROSSREF (0x20B7)] Error Code 8376 Subtree notifications are only supported on NC heads. [ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD (0x20B8)] Error Code 8377 Notification filter is too complex. [ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX (0x20B9)] Error Code 8378 Schema update failed Error Code 8379 Schema update failed Error Code 8380 Schema update failed Error Code 8381 Schema update failed Error Code 8382 Schema update failed Error Code 8383 Schema update failed Error Code 8384 Schema update failed Error Code 8385 Schema deletion failed Error Code 8386 Schema deletion failed Error Code 8387 Schema update failed Error Code 8388 Schema update failed Error Code 8389 Schema update failed Error Code 8390 Schema update failed Error Code 8391 Schema update failed Error Code 8392 Schema update failed Error Code 8393 Schema deletion failed Error Code 8394 Schema deletion failed Error Code 8395 Schema deletion failed Error Code 8396 Schema update failed in recalculating validation cache. [ERROR_DS_RECALCSCHEMA_FAILED (0x20CC)] Error Code 8397 The tree deletion is not finished. The request must be made again to continue deleting the tree. [ERROR_DS_TREE_DELETE_NOT_FINISHED (0x20CD)] Error Code 8398 The requested delete operation could not be performed. [ERROR_DS_CANT_DELETE (0x20CE)] Error Code 8399 Cannot read the governs class identifier for the schema record. [ERROR_DS_ATT_SCHEMA_REQ_ID (0x20CF)] Error Code 8400 The attribute schema has bad syntax. [ERROR_DS_BAD_ATT_SCHEMA_SYNTAX (0x20D0)] Error Code 8401 The attribute could not be cached. [ERROR_DS_CANT_CACHE_ATT (0x20D1)] Error Code 8402 The class could not be cached. [ERROR_DS_CANT_CACHE_CLASS (0x20D2)] Error Code 8403 The attribute could not be removed from the cache. [ERROR_DS_CANT_REMOVE_ATT_CACHE (0x20D3)] Error Code 8404 The class could not be removed from the cache. [ERROR_DS_CANT_REMOVE_CLASS_CACHE (0x20D4)] Error Code 8405 The distinguished name attribute could not be read. [ERROR_DS_CANT_RETRIEVE_DN (0x20D5)] Error Code 8406 No superior reference has been configured for the directory service. The directory service is therefore unable to issue referrals to objects outside this forest. [ERROR_DS_MISSING_SUPREF (0x20D6)] Error Code 8407 The instance type attribute could not be retrieved. [ERROR_DS_CANT_RETRIEVE_INSTANCE (0x20D7)] Error Code 8408 An internal error has occurred. [ERROR_DS_CODE_INCONSISTENCY (0x20D8)] Error Code 8409 A database error has occurred. [ERROR_DS_DATABASE_ERROR (0x20D9)] Error Code 8410 The attribute GOVERNSID is missing. [ERROR_DS_GOVERNSID_MISSING (0x20DA)] Error Code 8411 An expected attribute is missing. [ERROR_DS_MISSING_EXPECTED_ATT (0x20DB)] Error Code 8412 The specified naming context is missing a cross reference. [ERROR_DS_NCNAME_MISSING_CR_REF (0x20DC)] Error Code 8413 A security checking error has occurred. [ERROR_DS_SECURITY_CHECKING_ERROR (0x20DD)] Error Code 8414 The schema is not loaded. [ERROR_DS_SCHEMA_NOT_LOADED (0x20DE)] Error Code 8415 Schema allocation failed. Please check if the machine is running low on memory. [ERROR_DS_SCHEMA_ALLOC_FAILED (0x20DF)] Error Code 8416 Failed to obtain the required syntax for the attribute schema. [ERROR_DS_ATT_SCHEMA_REQ_SYNTAX (0x20E0)] Error Code 8417 The global catalog verification failed. The global catalog is not available or does not support the operation. Some part of the directory is currently not available. [ERROR_DS_GCVERIFY_ERROR (0x20E1)] Error Code 8418 The replication operation failed because of a schema mismatch between the servers involved. [ERROR_DS_DRA_SCHEMA_MISMATCH (0x20E2)] Error Code 8419 The DSA object could not be found. [ERROR_DS_CANT_FIND_DSA_OBJ (0x20E3)] Error Code 8420 The naming context could not be found. [ERROR_DS_CANT_FIND_EXPECTED_NC (0x20E4)] Error Code 8421 The naming context could not be found in the cache. [ERROR_DS_CANT_FIND_NC_IN_CACHE (0x20E5)] Error Code 8422 The child object could not be retrieved. [ERROR_DS_CANT_RETRIEVE_CHILD (0x20E6)] Error Code 8423 The modification was not permitted for security reasons. [ERROR_DS_SECURITY_ILLEGAL_MODIFY (0x20E7)] Error Code 8424 The operation cannot replace the hidden record. [ERROR_DS_CANT_REPLACE_HIDDEN_REC (0x20E8)] Error Code 8425 The hierarchy file is invalid. [ERROR_DS_BAD_HIERARCHY_FILE (0x20E9)] Error Code 8426 The attempt to build the hierarchy table failed. [ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED (0x20EA)] Error Code 8427 The directory configuration parameter is missing from the registry. [ERROR_DS_CONFIG_PARAM_MISSING (0x20EB)] Error Code 8428 The attempt to count the address book indices failed. [ERROR_DS_COUNTING_AB_INDICES_FAILED (0x20EC)] Error Code 8429 The allocation of the hierarchy table failed. [ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED (0x20ED)] Error Code 8430 The directory service encountered an internal failure. [ERROR_DS_INTERNAL_FAILURE (0x20EE)] Error Code 8431 The directory service encountered an unknown failure. [ERROR_DS_UNKNOWN_ERROR (0x20EF)] Error Code 8432 A root object requires a class of ‘top’. [ERROR_DS_ROOT_REQUIRES_CLASS_TOP (0x20F0)] Error Code 8433 This directory server is shutting down and cannot take ownership of new floating single-primary operation roles. [ERROR_DS_REFUSING_FSMO_ROLES (0x20F1)] Error Code 8434 The directory service is missing mandatory configuration information and is unable to determine the ownership of floating single-primary operation roles. [ERROR_DS_MISSING_FSMO_SETTINGS (0x20F2)] Error Code 8435 The directory service was unable to transfer ownership of one or more floating single-primary operation roles to other servers. [ERROR_DS_UNABLE_TO_SURRENDER_ROLES (0x20F3)] Error Code 8436 The replication operation failed. [ERROR_DS_DRA_GENERIC (0x20F4)] Error Code 8437 An invalid parameter was specified for this replication operation. [ERROR_DS_DRA_INVALID_PARAMETER (0x20F5)] Error Code 8438 The directory service is too busy to complete the replication operation at this time. [ERROR_DS_DRA_BUSY (0x20F6)] Error Code 8439 The distinguished name specified for this replication operation is invalid. [ERROR_DS_DRA_BAD_DN (0x20F7)] Error Code 8440 The naming context specified for this replication operation is invalid. [ERROR_DS_DRA_BAD_NC (0x20F8)] Error Code 8441 The distinguished name specified for this replication operation already exists. [ERROR_DS_DRA_DN_EXISTS (0x20F9)] Error Code 8442 The replication system encountered an internal error. [ERROR_DS_DRA_INTERNAL_ERROR (0x20FA)] Error Code 8443 The replication operation encountered a database inconsistency. [ERROR_DS_DRA_INCONSISTENT_DIT (0x20FB)] Error Code 8444 The server specified for this replication operation could not be contacted. [ERROR_DS_DRA_CONNECTION_FAILED (0x20FC)] Error Code 8445 The replication operation encountered an object with an invalid instance type. [ERROR_DS_DRA_BAD_INSTANCE_TYPE (0x20FD)] Error Code 8446 The replication operation failed to allocate memory. [ERROR_DS_DRA_OUT_OF_MEM (0x20FE)] Error Code 8447 The replication operation encountered an error with the mail system. [ERROR_DS_DRA_MAIL_PROBLEM (0x20FF)] Error Code 8448 The replication reference information for the target server already exists. [ERROR_DS_DRA_REF_ALREADY_EXISTS (0x2100)] Error Code 8449 The replication reference information for the target server does not exist. [ERROR_DS_DRA_REF_NOT_FOUND (0x2101)] Error Code 8450 The naming context cannot be removed because it is replicated to another server. [ERROR_DS_DRA_OBJ_IS_REP_SOURCE (0x2102)] Error Code 8451 The replication operation encountered a database error. [ERROR_DS_DRA_DB_ERROR (0x2103)] Error Code 8452 The naming context is in the process of being removed or is not replicated from the specified server. [ERROR_DS_DRA_NO_REPLICA (0x2104)] Error Code 8453 Replication access was denied. [ERROR_DS_DRA_ACCESS_DENIED (0x2105)] Error Code 8454 The requested operation is not supported by this version of the directory service. [ERROR_DS_DRA_NOT_SUPPORTED (0x2106)] Error Code 8455 The replication remote procedure call was canceled. [ERROR_DS_DRA_RPC_CANCELLED (0x2107)] Error Code 8456 The source server is currently rejecting replication requests. [ERROR_DS_DRA_SOURCE_DISABLED (0x2108)] Error Code 8457 The destination server is currently rejecting replication requests. [ERROR_DS_DRA_SINK_DISABLED (0x2109)] Error Code 8458 The replication operation failed due to a collision of object names. [ERROR_DS_DRA_NAME_COLLISION (0x210A)] Error Code 8459 The replication source has been reinstalled. [ERROR_DS_DRA_SOURCE_REINSTALLED (0x210B)] Error Code 8460 The replication operation failed because a required parent object is missing. [ERROR_DS_DRA_MISSING_PARENT (0x210C)] Error Code 8461 The replication operation was preempted. [ERROR_DS_DRA_PREEMPTED (0x210D)] Error Code 8462 The replication synchronization attempt was abandoned because of a lack of updates. [ERROR_DS_DRA_ABANDON_SYNC (0x210E)] Error Code 8463 The replication operation was terminated because the system is shutting down. [ERROR_DS_DRA_SHUTDOWN (0x210F)] Error Code 8464 Synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from source. This condition is normal if a recent schema change modified the partial attribute set. The destination partial attribute set is not a subset of source partial attribute set. [ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET (0x2110)] Error Code 8465 The replication synchronization attempt failed because a primary replica attempted to sync from a partial replica. [ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA (0x2111)] Error Code 8466 The server specified for this replication operation was contacted but that server was unable to contact an additional server needed to complete the operation. [ERROR_DS_DRA_EXTN_CONNECTION_FAILED (0x2112)] Error Code 8467 The version of the directory service schema of the source forest is not compatible with the version of the directory service on this computer. [ERROR_DS_INSTALL_SCHEMA_MISMATCH (0x2113)] Error Code 8468 Schema update failed Error Code 8469 Name translation Error Code 8470 Name translation Error Code 8471 Name translation Error Code 8472 Name translation Error Code 8473 Name translation Error Code 8474 Name translation Error Code 8475 Modification of a constructed attribute is not allowed. [ERROR_DS_CONSTRUCTED_ATT_MOD (0x211B)] Error Code 8476 The OM-Object-Class specified is incorrect for an attribute with the specified syntax. [ERROR_DS_WRONG_OM_OBJ_CLASS (0x211C)] Error Code 8477 The replication request has been posted; waiting for reply. [ERROR_DS_DRA_REPL_PENDING (0x211D)] Error Code 8478 The requested operation requires a directory service and none was available. [ERROR_DS_DS_REQUIRED (0x211E)] Error Code 8479 The LDAP display name of the class or attribute contains non-ASCII characters. [ERROR_DS_INVALID_LDAP_DISPLAY_NAME (0x211F)] Error Code 8480 The requested search operation is only supported for base searches. [ERROR_DS_NON_BASE_SEARCH (0x2120)] Error Code 8481 The search failed to retrieve attributes from the database. [ERROR_DS_CANT_RETRIEVE_ATTS (0x2121)] Error Code 8482 The schema update operation tried to add a backward link attribute that has no corresponding forward link. [ERROR_DS_BACKLINK_WITHOUT_LINK (0x2122)] Error Code 8483 Source and destination of a cross-domain move do not agree on the object’s epoch number. Either source or destination does not have the latest version of the object. [ERROR_DS_EPOCH_MISMATCH (0x2123)] Error Code 8484 Source and destination of a cross-domain move do not agree on the object’s current name. Either source or destination does not have the latest version of the object. [ERROR_DS_SRC_NAME_MISMATCH (0x2124)] Error Code 8485 Source and destination for the cross-domain move operation are identical. Caller should use local move operation instead of cross-domain move operation. [ERROR_DS_SRC_AND_DST_NC_IDENTICAL (0x2125)] Error Code 8486 Source and destination for a cross-domain move are not in agreement on the naming contexts in the forest. Either source or destination does not have the latest version of the Partitions container. [ERROR_DS_DST_NC_MISMATCH (0x2126)] Error Code 8487 Destination of a cross-domain move is not authoritative for the destination naming context. [ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC (0x2127)] Error Code 8488 Source and destination of a cross-domain move do not agree on the identity of the source object. Either source or destination does not have the latest version of the source object. [ERROR_DS_SRC_GUID_MISMATCH (0x2128)] Error Code 8489 Object being moved across-domains is already known to be deleted by the destination server. The source server does not have the latest version of the source object. [ERROR_DS_CANT_MOVE_DELETED_OBJECT (0x2129)] Error Code 8490 Another operation which requires exclusive access to the PDC FSMO is already in progress. [ERROR_DS_PDC_OPERATION_IN_PROGRESS (0x212A)] Error Code 8491 A cross-domain move operation failed such that two versions of the moved object exist — one each in the source and destination domains. The destination object needs to be removed to restore the system to a consistent state. [ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD (0x212B)] Error Code 8492 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. Error Code 8493 Can’t move objects with memberships across domain boundaries as once moved this would violate the membership conditions of the account group. Remove the object from any account group memberships and retry. [ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS (0x212D)] Error Code 8494 A naming context head must be the immediate child of another naming context head not of an interior node. [ERROR_DS_NC_MUST_HAVE_NC_PARENT (0x212E)] Error Code 8495 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 primary 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 primaries) [ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE (0x212F)] Error Code 8496 Destination domain must be in native mode. [ERROR_DS_DST_DOMAIN_NOT_NATIVE (0x2130)] Error Code 8497 The operation cannot be performed because the server does not have an infrastructure container in the domain of interest. [ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER (0x2131)] Error Code 8498 Cross-domain move of non-empty account groups is not allowed. [ERROR_DS_CANT_MOVE_ACCOUNT_GROUP (0x2132)] Error Code 8499 Cross-domain move of non-empty resource groups is not allowed. [ERROR_DS_CANT_MOVE_RESOURCE_GROUP (0x2133)] Error Code 8500 The search flags for the attribute are invalid. The ANR bit is valid only on attributes of Unicode or Teletex strings. [ERROR_DS_INVALID_SEARCH_FLAG (0x2134)] Error Code 8501 Tree deletions starting at an object which has an NC head as a descendant are not allowed. [ERROR_DS_NO_TREE_DELETE_ABOVE_NC (0x2135)] Error Code 8502 The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use. [ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE (0x2136)] Error Code 8503 The directory service failed to identify the list of objects to delete while attempting a tree deletion. [ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE (0x2137)] Error Code 8504 Security Accounts Manager initialization failed because of the following error Error Code 8505 Only an administrator can modify the membership list of an administrative group. [ERROR_DS_SENSITIVE_GROUP_VIOLATION (0x2139)] Error Code 8506 Cannot change the primary group ID of a domain controller account. [ERROR_DS_CANT_MOD_PRIMARYGROUPID (0x213A)] Error Code 8507 An attempt is made to modify the base schema. [ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD (0x213B)] Error Code 8508 Adding a new mandatory attribute to an existing class deleting a mandatory attribute from an existing class or adding an optional attribute to the special class Top that is not a backlink attribute (directly or through inheritance for example by adding or deleting an auxiliary class) is not allowed. [ERROR_DS_NONSAFE_SCHEMA_CHANGE (0x213C)] Error Code 8509 Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner. [ERROR_DS_SCHEMA_UPDATE_DISALLOWED (0x213D)] Error Code 8510 An object of this class cannot be created under the schema container. You can only create attribute-schema and class-schema objects under the schema container. [ERROR_DS_CANT_CREATE_UNDER_SCHEMA (0x213E)] Error Code 8511 The replica/child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it. [ERROR_DS_INSTALL_NO_SRC_SCH_VERSION (0x213F)] Error Code 8512 The replica/child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the system32 directory. [ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE (0x2140)] Error Code 8513 The specified group type is invalid. [ERROR_DS_INVALID_GROUP_TYPE (0x2141)] Error Code 8514 You cannot nest global groups in a mixed domain if the group is security-enabled. [ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN (0x2142)] Error Code 8515 You cannot nest local groups in a mixed domain if the group is security-enabled. [ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN (0x2143)] Error Code 8516 A global group cannot have a local group as a member. [ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER (0x2144)] Error Code 8517 A global group cannot have a universal group as a member. [ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER (0x2145)] Error Code 8518 A universal group cannot have a local group as a member. [ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER (0x2146)] Error Code 8519 A global group cannot have a cross-domain member. [ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER (0x2147)] Error Code 8520 A local group cannot have another cross domain local group as a member. [ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER (0x2148)] Error Code 8521 A group with primary members cannot change to a security-disabled group. [ERROR_DS_HAVE_PRIMARY_MEMBERS (0x2149)] Error Code 8522 The schema cache load failed to convert the string default SD on a class-schema object. [ERROR_DS_STRING_SD_CONVERSION_FAILED (0x214A)] Error Code 8523 Only DSAs configured to be Global Catalog servers should be allowed to hold the Domain Naming Master FSMO role. (Applies only to Windows 2000 servers) [ERROR_DS_NAMING_MASTER_GC (0x214B)] Error Code 8524 The DSA operation is unable to proceed because of a DNS lookup failure. [ERROR_DS_DNS_LOOKUP_FAILURE (0x214C)] Error Code 8525 While processing a change to the DNS Host Name for an object the Service Principal Name values could not be kept in sync. [ERROR_DS_COULDNT_UPDATE_SPNS (0x214D)] Error Code 8526 The Security Descriptor attribute could not be read. [ERROR_DS_CANT_RETRIEVE_SD (0x214E)] Error Code 8527 The object requested was not found but an object with that key was found. [ERROR_DS_KEY_NOT_UNIQUE (0x214F)] Error Code 8528 The syntax of the linked attribute being added is incorrect. Forward links can only have syntax 2.5.5.1 2.5.5.7 and 2.5.5.14 and backlinks can only have syntax 2.5.5.1 [ERROR_DS_WRONG_LINKED_ATT_SYNTAX (0x2150)] Error Code 8529 Security Account Manager needs to get the boot password. [ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD (0x2151)] Error Code 8530 Security Account Manager needs to get the boot key from floppy disk. [ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY (0x2152)] Error Code 8531 Directory Service cannot start. [ERROR_DS_CANT_START (0x2153)] Error Code 8532 Directory Services could not start. [ERROR_DS_INIT_FAILURE (0x2154)] Error Code 8533 The connection between client and server requires packet privacy or better. [ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION (0x2155)] Error Code 8534 The source domain may not be in the same forest as destination. [ERROR_DS_SOURCE_DOMAIN_IN_FOREST (0x2156)] Error Code 8535 The destination domain must be in the forest. [ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST (0x2157)] Error Code 8536 The operation requires that destination domain auditing be enabled. [ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED (0x2158)] Error Code 8537 The operation couldn’t locate a DC for the source domain. [ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN (0x2159)] Error Code 8538 The source object must be a group or user. [ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER (0x215A)] Error Code 8539 The source object’s SID already exists in destination forest. [ERROR_DS_SRC_SID_EXISTS_IN_FOREST (0x215B)] Error Code 8540 The source and destination object must be of the same type. [ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH (0x215C)] Error Code 8541 Security Accounts Manager initialization failed because of the following error Error Code 8542 Schema information could not be included in the replication request. [ERROR_DS_DRA_SCHEMA_INFO_SHIP (0x215E)] Error Code 8543 The replication operation could not be completed due to a schema incompatibility. [ERROR_DS_DRA_SCHEMA_CONFLICT (0x215F)] Error Code 8544 The replication operation could not be completed due to a previous schema incompatibility. [ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT (0x2160)] Error Code 8545 The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation. [ERROR_DS_DRA_OBJ_NC_MISMATCH (0x2161)] Error Code 8546 The requested domain could not be deleted because there exist domain controllers that still host this domain. [ERROR_DS_NC_STILL_HAS_DSAS (0x2162)] Error Code 8547 The requested operation can be performed only on a global catalog server. [ERROR_DS_GC_REQUIRED (0x2163)] Error Code 8548 A local group can only be a member of other local groups in the same domain. [ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY (0x2164)] Error Code 8549 Foreign security principals cannot be members of universal groups. [ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS (0x2165)] Error Code 8550 The attribute is not allowed to be replicated to the GC because of security reasons. [ERROR_DS_CANT_ADD_TO_GC (0x2166)] Error Code 8551 The checkpoint with the PDC could not be taken because there too many modifications being processed currently. [ERROR_DS_NO_CHECKPOINT_WITH_PDC (0x2167)] Error Code 8552 The operation requires that source domain auditing be enabled. [ERROR_DS_SOURCE_AUDITING_NOT_ENABLED (0x2168)] Error Code 8553 Security principal objects can only be created inside domain naming contexts. [ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC (0x2169)] Error Code 8554 A Service Principal Name (SPN) could not be constructed because the provided hostname is not in the necessary format. [ERROR_DS_INVALID_NAME_FOR_SPN (0x216A)] Error Code 8555 A Filter was passed that uses constructed attributes. [ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS (0x216B)] Error Code 8556 The unicodePwd attribute value must be enclosed in double quotes. [ERROR_DS_UNICODEPWD_NOT_IN_QUOTES (0x216C)] Error Code 8557 Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased. [ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED (0x216D)] Error Code 8558 For security reasons the operation must be run on the destination DC. [ERROR_DS_MUST_BE_RUN_ON_DST_DC (0x216E)] Error Code 8559 For security reasons the source DC must be NT4SP4 or greater. [ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER (0x216F)] Error Code 8560 Critical Directory Service System objects cannot be deleted during tree delete operations. The tree delete may have been partially performed. [ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ (0x2170)] Error Code 8561 Directory Services could not start because of the following error Error Code 8562 Security Accounts Manager initialization failed because of the following error Error Code 8563 The version of the operating system installed is incompatible with the current forest functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this forest. [ERROR_DS_FOREST_VERSION_TOO_HIGH (0x2173)] Error Code 8564 The version of the operating system installed is incompatible with the current domain functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this domain. [ERROR_DS_DOMAIN_VERSION_TOO_HIGH (0x2174)] Error Code 8565 The version of the operating system installed on this server no longer supports the current forest functional level. You must raise the forest functional level before this server can become a domain controller in this forest. [ERROR_DS_FOREST_VERSION_TOO_LOW (0x2175)] Error Code 8566 The version of the operating system installed on this server no longer supports the current domain functional level. You must raise the domain functional level before this server can become a domain controller in this domain. [ERROR_DS_DOMAIN_VERSION_TOO_LOW (0x2176)] Error Code 8567 The version of the operating system installed on this server is incompatible with the functional level of the domain or forest. [ERROR_DS_INCOMPATIBLE_VERSION (0x2177)] Error Code 8568 The functional level of the domain (or forest) cannot be raised to the requested value because there exist one or more domain controllers in the domain (or forest) that are at a lower incompatible functional level. [ERROR_DS_LOW_DSA_VERSION (0x2178)] Error Code 8569 The forest functional level cannot be raised to the requested value since one or more domains are still in mixed domain mode. All domains in the forest must be in native mode for you to raise the forest functional level. [ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN (0x2179)] Error Code 8570 The sort order requested is not supported. [ERROR_DS_NOT_SUPPORTED_SORT_ORDER (0x217A)] Error Code 8571 The requested name already exists as a unique identifier. [ERROR_DS_NAME_NOT_UNIQUE (0x217B)] Error Code 8572 The machine account was created pre-NT4. The account needs to be recreated. [ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4 (0x217C)] Error Code 8573 The database is out of version store. [ERROR_DS_OUT_OF_VERSION_STORE (0x217D)] Error Code 8574 Unable to continue operation because multiple conflicting controls were used. [ERROR_DS_INCOMPATIBLE_CONTROLS_USED (0x217E)] Error Code 8575 Unable to find a valid security descriptor reference domain for this partition. [ERROR_DS_NO_REF_DOMAIN (0x217F)] Error Code 8576 Schema update failed Error Code 8577 Schema update failed Error Code 8578 An account group cannot have a universal group as a member. [ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER (0x2182)] Error Code 8579 Rename or move operations on naming context heads or read-only objects are not allowed. [ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE (0x2183)] Error Code 8580 Move operations on objects in the schema naming context are not allowed. [ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC (0x2184)] Error Code 8581 A system flag has been set on the object and does not allow the object to be moved or renamed. [ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG (0x2185)] Error Code 8582 This object is not allowed to change its grandparent container. Moves are not forbidden on this object but are restricted to sibling containers. [ERROR_DS_MODIFYDN_WRONG_GRANDPARENT (0x2186)] Error Code 8583 Unable to resolve completely a referral to another forest is generated. [ERROR_DS_NAME_ERROR_TRUST_REFERRAL (0x2187)] Error Code 8584 The requested action is not supported on standard server. [ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER (0x2188)] Error Code 8585 Could not access a partition of the directory service located on a remote server. Make sure at least one server is running for the partition in question. [ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD (0x2189)] Error Code 8586 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 primary. [ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2 (0x218A)] Error Code 8587 The thread limit for this request was exceeded. [ERROR_DS_THREAD_LIMIT_EXCEEDED (0x218B)] Error Code 8588 The Global catalog server is not in the closest site. [ERROR_DS_NOT_CLOSEST (0x218C)] Error Code 8589 The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute. [ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF (0x218D)] Error Code 8590 The Directory Service failed to enter single user mode. [ERROR_DS_SINGLE_USER_MODE_FAILED (0x218E)] Error Code 8591 The Directory Service cannot parse the script because of a syntax error. [ERROR_DS_NTDSCRIPT_SYNTAX_ERROR (0x218F)] Error Code 8592 The Directory Service cannot process the script because of an error. [ERROR_DS_NTDSCRIPT_PROCESS_ERROR (0x2190)] Error Code 8593 The directory service cannot perform the requested operation because the servers involved are of different replication epochs (which is usually related to a domain rename that is in progress). [ERROR_DS_DIFFERENT_REPL_EPOCHS (0x2191)] Error Code 8594 The directory service binding must be renegotiated due to a change in the server extensions information. [ERROR_DS_DRS_EXTENSIONS_CHANGED (0x2192)] Error Code 8595 Operation not allowed on a disabled cross ref. [ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR (0x2193)] Error Code 8596 Schema update failed Error Code 8597 Schema update failed Error Code 8598 Schema deletion failed Error Code 8599 The directory service failed to authorize the request. [ERROR_DS_AUTHORIZATION_FAILED (0x2197)] Error Code 8600 The Directory Service cannot process the script because it is invalid. [ERROR_DS_INVALID_SCRIPT (0x2198)] Error Code 8601 The remote create cross reference operation failed on the Domain Naming Master FSMO. The operation’s error is in the extended data. [ERROR_DS_REMOTE_CROSSREF_OP_FAILED (0x2199)] Error Code 8602 A cross reference is in use locally with the same name. [ERROR_DS_CROSS_REF_BUSY (0x219A)] Error Code 8603 The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the server’s domain has been deleted from the forest. [ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN (0x219B)] Error Code 8604 Writeable NCs prevent this DC from demoting. [ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC (0x219C)] Error Code 8605 The requested object has a non-unique identifier and cannot be retrieved. [ERROR_DS_DUPLICATE_ID_FOUND (0x219D)] Error Code 8606 Insufficient attributes were given to create an object. This object may not exist because it may have been deleted and already garbage collected. [ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT (0x219E)] Error Code 8607 The group cannot be converted due to attribute restrictions on the requested group type. [ERROR_DS_GROUP_CONVERSION_ERROR (0x219F)] Error Code 8608 Cross-domain move of non-empty basic application groups is not allowed. [ERROR_DS_CANT_MOVE_APP_BASIC_GROUP (0x21A0)] Error Code 8609 Cross-domain move of non-empty query based application groups is not allowed. [ERROR_DS_CANT_MOVE_APP_QUERY_GROUP (0x21A1)] Error Code 8610 The FSMO role ownership could not be verified because its directory partition has not replicated successfully with at least one replication partner. [ERROR_DS_ROLE_NOT_VERIFIED (0x21A2)] Error Code 8611 The target container for a redirection of a well known object container cannot already be a special container. [ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL (0x21A3)] Error Code 8612 The Directory Service cannot perform the requested operation because a domain rename operation is in progress. [ERROR_DS_DOMAIN_RENAME_IN_PROGRESS (0x21A4)] Error Code 8613 The directory service detected a child partition below the requested new partition name. The partition hierarchy must be created in a top down method. [ERROR_DS_EXISTING_AD_CHILD_NC (0x21A5)] Error Code 8614 The directory service cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime. [ERROR_DS_REPL_LIFETIME_EXCEEDED (0x21A6)] Error Code 8615 The requested operation is not allowed on an object under the system container. [ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER (0x21A7)] Error Code 8616 The LDAP servers network send queue has filled up because the client is not processing the results of it’s requests fast enough. No more requests will be processed until the client catches up. If the client does not catch up then it will be disconnected. [ERROR_DS_LDAP_SEND_QUEUE_FULL (0x21A8)] Error Code 8617 The scheduled replication did not take place because the system was too busy to execute the request within the schedule window. The replication queue is overloaded. Consider reducing the number of partners or decreasing the scheduled replication frequency. [ERROR_DS_DRA_OUT_SCHEDULE_WINDOW (0x21A9)] Error Code 8618 At this time it cannot be determined if the branch replication policy is available on the hub domain controller. Please retry at a later time to account for replication latencies. [ERROR_DS_POLICY_NOT_KNOWN (0x21AA)] Error Code 8619 The site settings object for the specified site does not exist. [ERROR_NO_SITE_SETTINGS_OBJECT (0x21AB)] Error Code 8620 The local account store does not contain secret material for the specified account. [ERROR_NO_SECRETS (0x21AC)] Error Code 8621 Could not find a writable domain controller in the domain. [ERROR_NO_WRITABLE_DC_FOUND (0x21AD)] Error Code 8622 The server object for the domain controller does not exist. [ERROR_DS_NO_SERVER_OBJECT (0x21AE)] Error Code 8623 The NTDS Settings object for the domain controller does not exist. [ERROR_DS_NO_NTDSA_OBJECT (0x21AF)] Error Code 8624 The requested search operation is not supported for ASQ searches. [ERROR_DS_NON_ASQ_SEARCH (0x21B0)] Error Code 8625 A required audit event could not be generated for the operation. [ERROR_DS_AUDIT_FAILURE (0x21B1)] Error Code 8626 The search flags for the attribute are invalid. The subtree index bit is valid only on single valued attributes. [ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE (0x21B2)] Error Code 8627 The search flags for the attribute are invalid. The tuple index bit is valid only on attributes of Unicode strings. [ERROR_DS_INVALID_SEARCH_FLAG_TUPLE (0x21B3)] Error Code 8628 The address books are nested too deeply. Failed to build the hierarchy table. [ERROR_DS_HIERARCHY_TABLE_TOO_DEEP (0x21B4)] Error Code 8629 The specified up-to-date-ness vector is corrupt. [ERROR_DS_DRA_CORRUPT_UTD_VECTOR (0x21B5)] Error Code 8630 The request to replicate secrets is denied. [ERROR_DS_DRA_SECRETS_DENIED (0x21B6)] Error Code 8631 Schema update failed Error Code 8632 Schema update failed Error Code 8633 The replication operation failed because the required attributes of the local krbtgt object are missing. [ERROR_DS_DRA_MISSING_KRBTGT_SECRET (0x21B9)] Error Code 9001 DNS server unable to interpret format. [DNS_ERROR_RCODE_FORMAT_ERROR (0x2329)] Error Code 9002 DNS server failure. [DNS_ERROR_RCODE_SERVER_FAILURE (0x232A)] Error Code 9003 DNS name does not exist. [DNS_ERROR_RCODE_NAME_ERROR (0x232B)] Error Code 9004 DNS request not supported by name server. [DNS_ERROR_RCODE_NOT_IMPLEMENTED (0x232C)] Error Code 9005 DNS operation refused. [DNS_ERROR_RCODE_REFUSED (0x232D)] Error Code 9006 DNS name that ought not exist does exist. [DNS_ERROR_RCODE_YXDOMAIN (0x232E)] Error Code 9007 DNS RR set that ought not exist does exist. [DNS_ERROR_RCODE_YXRRSET (0x232F)] Error Code 9008 DNS RR set that ought to exist does not exist. [DNS_ERROR_RCODE_NXRRSET (0x2330)] Error Code 9009 DNS server not authoritative for zone. [DNS_ERROR_RCODE_NOTAUTH (0x2331)] Error Code 9010 DNS name in update or prereq is not in zone. [DNS_ERROR_RCODE_NOTZONE (0x2332)] Error Code 9016 DNS signature failed to verify. [DNS_ERROR_RCODE_BADSIG (0x2338)] Error Code 9017 DNS bad key. [DNS_ERROR_RCODE_BADKEY (0x2339)] Error Code 9018 DNS signature validity expired. [DNS_ERROR_RCODE_BADTIME (0x233A)] Error Code 9501 No records found for given DNS query. [DNS_INFO_NO_RECORDS (0x251D)] Error Code 9502 Bad DNS packet. [DNS_ERROR_BAD_PACKET (0x251E)] Error Code 9503 No DNS packet. [DNS_ERROR_NO_PACKET (0x251F)] Error Code 9504 DNS error check rcode. [DNS_ERROR_RCODE (0x2520)] Error Code 9505 Unsecured DNS packet. [DNS_ERROR_UNSECURE_PACKET (0x2521)] Error Code 9551 Invalid DNS type. [DNS_ERROR_INVALID_TYPE (0x254F)] Error Code 9552 Invalid IP address. [DNS_ERROR_INVALID_IP_ADDRESS (0x2550)] Error Code 9553 Invalid property. [DNS_ERROR_INVALID_PROPERTY (0x2551)] Error Code 9554 Try DNS operation again later. [DNS_ERROR_TRY_AGAIN_LATER (0x2552)] Error Code 9555 Record for given name and type is not unique. [DNS_ERROR_NOT_UNIQUE (0x2553)] Error Code 9556 DNS name does not comply with RFC specifications. [DNS_ERROR_NON_RFC_NAME (0x2554)] Error Code 9557 DNS name is a fully-qualified DNS name. [DNS_STATUS_FQDN (0x2555)] Error Code 9558 DNS name is dotted (multi-label). [DNS_STATUS_DOTTED_NAME (0x2556)] Error Code 9559 DNS name is a single-part name. [DNS_STATUS_SINGLE_PART_NAME (0x2557)] Error Code 9560 DNS name contains an invalid character. [DNS_ERROR_INVALID_NAME_CHAR (0x2558)] Error Code 9561 DNS name is entirely numeric. [DNS_ERROR_NUMERIC_NAME (0x2559)] Error Code 9562 The operation requested is not permitted on a DNS root server. [DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER (0x255A)] Error Code 9563 The record could not be created because this part of the DNS namespace has been delegated to another server. [DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION (0x255B)] Error Code 9564 The DNS server could not find a set of root hints. [DNS_ERROR_CANNOT_FIND_ROOT_HINTS (0x255C)] Error Code 9565 The DNS server found root hints but they were not consistent across all adapters. [DNS_ERROR_INCONSISTENT_ROOT_HINTS (0x255D)] Error Code 9566 The specified value is too small for this parameter. [DNS_ERROR_DWORD_VALUE_TOO_SMALL (0x255E)] Error Code 9567 The specified value is too large for this parameter. [DNS_ERROR_DWORD_VALUE_TOO_LARGE (0x255F)] Error Code 9568 This operation is not allowed while the DNS server is loading zones in the background. Please try again later. [DNS_ERROR_BACKGROUND_LOADING (0x2560)] Error Code 9569 The operation requested is not permitted on against a DNS server running on a read-only DC. [DNS_ERROR_NOT_ALLOWED_ON_RODC (0x2561)] Error Code 9570 No data is allowed to exist underneath a DNAME record. [DNS_ERROR_NOT_ALLOWED_UNDER_DNAME (0x2562)] Error Code 9571 This operation requires credentials delegation. [DNS_ERROR_DELEGATION_REQUIRED (0x2563)] Error Code 9601 DNS zone does not exist. [DNS_ERROR_ZONE_DOES_NOT_EXIST (0x2581)] Error Code 9602 DNS zone information not available. [DNS_ERROR_NO_ZONE_INFO (0x2582)] Error Code 9603 Invalid operation for DNS zone. [DNS_ERROR_INVALID_ZONE_OPERATION (0x2583)] Error Code 9604 Invalid DNS zone configuration. [DNS_ERROR_ZONE_CONFIGURATION_ERROR (0x2584)] Error Code 9605 DNS zone has no start of authority (SOA) record. [DNS_ERROR_ZONE_HAS_NO_SOA_RECORD (0x2585)] Error Code 9606 DNS zone has no Name Server (NS) record. [DNS_ERROR_ZONE_HAS_NO_NS_RECORDS (0x2586)] Error Code 9607 DNS zone is locked. [DNS_ERROR_ZONE_LOCKED (0x2587)] Error Code 9608 DNS zone creation failed. [DNS_ERROR_ZONE_CREATION_FAILED (0x2588)] Error Code 9609 DNS zone already exists. [DNS_ERROR_ZONE_ALREADY_EXISTS (0x2589)] Error Code 9610 DNS automatic zone already exists. [DNS_ERROR_AUTOZONE_ALREADY_EXISTS (0x258A)] Error Code 9611 Invalid DNS zone type. [DNS_ERROR_INVALID_ZONE_TYPE (0x258B)] Error Code 9612 Secondary DNS zone requires primary IP address. [DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP (0x258C)] Error Code 9613 DNS zone not secondary. [DNS_ERROR_ZONE_NOT_SECONDARY (0x258D)] Error Code 9614 Need secondary IP address. [DNS_ERROR_NEED_SECONDARY_ADDRESSES (0x258E)] Error Code 9615 WINS initialization failed. [DNS_ERROR_WINS_INIT_FAILED (0x258F)] Error Code 9616 Need WINS servers. [DNS_ERROR_NEED_WINS_SERVERS (0x2590)] Error Code 9617 NBTSTAT initialization call failed. [DNS_ERROR_NBSTAT_INIT_FAILED (0x2591)] Error Code 9618 Invalid delete of start of authority (SOA) [DNS_ERROR_SOA_DELETE_INVALID (0x2592)] Error Code 9619 A conditional forwarding zone already exists for that name. [DNS_ERROR_FORWARDER_ALREADY_EXISTS (0x2593)] Error Code 9620 This zone must be configured with one or more primary DNS server IP addresses. [DNS_ERROR_ZONE_REQUIRES_MASTER_IP (0x2594)] Error Code 9621 The operation cannot be performed because this zone is shut down. [DNS_ERROR_ZONE_IS_SHUTDOWN (0x2595)] Error Code 9651 Primary DNS zone requires datafile. [DNS_ERROR_PRIMARY_REQUIRES_DATAFILE (0x25B3)] Error Code 9652 Invalid data file name for DNS zone. [DNS_ERROR_INVALID_DATAFILE_NAME (0x25B4)] Error Code 9653 Failed to open datafile for DNS zone. [DNS_ERROR_DATAFILE_OPEN_FAILURE (0x25B5)] Error Code 9654 Failed to write datafile for DNS zone. [DNS_ERROR_FILE_WRITEBACK_FAILED (0x25B6)] Error Code 9655 Failure while reading datafile for DNS zone. [DNS_ERROR_DATAFILE_PARSING (0x25B7)] Error Code 9701 DNS record does not exist. [DNS_ERROR_RECORD_DOES_NOT_EXIST (0x25E5)] Error Code 9702 DNS record format error. [DNS_ERROR_RECORD_FORMAT (0x25E6)] Error Code 9703 Node creation failure in DNS. [DNS_ERROR_NODE_CREATION_FAILED (0x25E7)] Error Code 9704 Unknown DNS record type. [DNS_ERROR_UNKNOWN_RECORD_TYPE (0x25E8)] Error Code 9705 DNS record timed out. [DNS_ERROR_RECORD_TIMED_OUT (0x25E9)] Error Code 9706 Name not in DNS zone. [DNS_ERROR_NAME_NOT_IN_ZONE (0x25EA)] Error Code 9707 CNAME loop detected. [DNS_ERROR_CNAME_LOOP (0x25EB)] Error Code 9708 Node is a CNAME DNS record. [DNS_ERROR_NODE_IS_CNAME (0x25EC)] Error Code 9709 A CNAME record already exists for given name. [DNS_ERROR_CNAME_COLLISION (0x25ED)] Error Code 9710 Record only at DNS zone root. [DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT (0x25EE)] Error Code 9711 DNS record already exists. [DNS_ERROR_RECORD_ALREADY_EXISTS (0x25EF)] Error Code 9712 Secondary DNS zone data error. [DNS_ERROR_SECONDARY_DATA (0x25F0)] Error Code 9713 Could not create DNS cache data. [DNS_ERROR_NO_CREATE_CACHE_DATA (0x25F1)] Error Code 9714 DNS name does not exist. [DNS_ERROR_NAME_DOES_NOT_EXIST (0x25F2)] Error Code 9715 Could not create pointer (PTR) record. [DNS_WARNING_PTR_CREATE_FAILED (0x25F3)] Error Code 9716 DNS domain was undeleted. [DNS_WARNING_DOMAIN_UNDELETED (0x25F4)] Error Code 9717 The directory service is unavailable. [DNS_ERROR_DS_UNAVAILABLE (0x25F5)] Error Code 9718 DNS zone already exists in the directory service. [DNS_ERROR_DS_ZONE_ALREADY_EXISTS (0x25F6)] Error Code 9719 DNS server not creating or reading the boot file for the directory service integrated DNS zone. [DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE (0x25F7)] Error Code 9720 Node is a DNAME DNS record. [DNS_ERROR_NODE_IS_DNAME (0x25F8)] Error Code 9721 A DNAME record already exists for given name. [DNS_ERROR_DNAME_COLLISION (0x25F9)] Error Code 9722 An alias loop has been detected with either CNAME or DNAME records. [DNS_ERROR_ALIAS_LOOP (0x25FA)] Error Code 9751 DNS AXFR (zone transfer) complete. [DNS_INFO_AXFR_COMPLETE (0x2617)] Error Code 9752 DNS zone transfer failed. [DNS_ERROR_AXFR (0x2618)] Error Code 9753 Added local WINS server. [DNS_INFO_ADDED_LOCAL_WINS (0x2619)] Error Code 9801 Secure update call needs to continue update request. [DNS_STATUS_CONTINUE_NEEDED (0x2649)] Error Code 9851 TCP/IP network protocol not installed. [DNS_ERROR_NO_TCPIP (0x267B)] Error Code 9852 No DNS servers configured for local system. [DNS_ERROR_NO_DNS_SERVERS (0x267C)] Error Code 9901 The specified directory partition does not exist. [DNS_ERROR_DP_DOES_NOT_EXIST (0x26AD)] Error Code 9902 The specified directory partition already exists. [DNS_ERROR_DP_ALREADY_EXISTS (0x26AE)] Error Code 9903 This DNS server is not enlisted in the specified directory partition. [DNS_ERROR_DP_NOT_ENLISTED (0x26AF)] Error Code 9904 This DNS server is already enlisted in the specified directory partition. [DNS_ERROR_DP_ALREADY_ENLISTED (0x26B0)] Error Code 9905 The directory partition is not available at this time. Please wait a few minutes and try again. [DNS_ERROR_DP_NOT_AVAILABLE (0x26B1)] Error Code 9906 The application directory partition operation failed. The domain controller holding the domain naming primary role is down or unable to service the request or is not running Windows Server 2003. [DNS_ERROR_DP_FSMO_ERROR (0x26B2)] Error Code 10004 A blocking operation was interrupted by a call to WSACancelBlockingCall. [WSAEINTR (0x2714)] Error Code 10009 The file handle supplied is not valid. [WSAEBADF (0x2719)] Error Code 10013 An attempt was made to access a socket in a way forbidden by its access permissions. [WSAEACCES (0x271D)] Error Code 10014 The system detected an invalid pointer address in attempting to use a pointer argument in a call. [WSAEFAULT (0x271E)] Error Code 10022 An invalid argument was supplied. [WSAEINVAL (0x2726)] Error Code 10024 Too many open sockets. [WSAEMFILE (0x2728)] Error Code 10035 A non-blocking socket operation could not be completed immediately. [WSAEWOULDBLOCK (0x2733)] Error Code 10036 A blocking operation is currently executing. [WSAEINPROGRESS (0x2734)] Error Code 10037 An operation was attempted on a non-blocking socket that already had an operation in progress. [WSAEALREADY (0x2735)] Error Code 10038 An operation was attempted on something that is not a socket. [WSAENOTSOCK (0x2736)] Error Code 10039 A required address was omitted from an operation on a socket. [WSAEDESTADDRREQ (0x2737)] Error Code 10040 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. [WSAEMSGSIZE (0x2738)] Error Code 10041 A protocol was specified in the socket function call that does not support the semantics of the socket type requested. [WSAEPROTOTYPE (0x2739)] Error Code 10042 An unknown invalid or unsupported option or level was specified in a getsockopt or setsockopt call. [WSAENOPROTOOPT (0x273A)] Error Code 10043 The requested protocol has not been configured into the system or no implementation for it exists. [WSAEPROTONOSUPPORT (0x273B)] Error Code 10044 The support for the specified socket type does not exist in this address family. [WSAESOCKTNOSUPPORT (0x273C)] Error Code 10045 The attempted operation is not supported for the type of object referenced. [WSAEOPNOTSUPP (0x273D)] Error Code 10046 The protocol family has not been configured into the system or no implementation for it exists. [WSAEPFNOSUPPORT (0x273E)] Error Code 10047 An address incompatible with the requested protocol was used. [WSAEAFNOSUPPORT (0x273F)] Error Code 10048 Only one usage of each socket address (protocol/network address/port) is normally permitted. [WSAEADDRINUSE (0x2740)] Error Code 10049 The requested address is not valid in its context. [WSAEADDRNOTAVAIL (0x2741)] Error Code 10050 A socket operation encountered a dead network. [WSAENETDOWN (0x2742)] Error Code 10051 A socket operation was attempted to an unreachable network. [WSAENETUNREACH (0x2743)] Error Code 10052 The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. [WSAENETRESET (0x2744)] Error Code 10053 An established connection was aborted by the software in your host machine. [WSAECONNABORTED (0x2745)] Error Code 10054 An existing connection was forcibly closed by the remote host. [WSAECONNRESET (0x2746)] Error Code 10055 An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. [WSAENOBUFS (0x2747)] Error Code 10056 A connect request was made on an already connected socket. [WSAEISCONN (0x2748)] Error Code 10057 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. [WSAENOTCONN (0x2749)] Error Code 10058 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. [WSAESHUTDOWN (0x274A)] Error Code 10059 Too many references to some kernel object. [WSAETOOMANYREFS (0x274B)] Error Code 10060 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. [WSAETIMEDOUT (0x274C)] Error Code 10061 No connection could be made because the target machine actively refused it. [WSAECONNREFUSED (0x274D)] Error Code 10062 Cannot translate name. [WSAELOOP (0x274E)] Error Code 10063 Name component or name was too long. [WSAENAMETOOLONG (0x274F)] Error Code 10064 A socket operation failed because the destination host was down. [WSAEHOSTDOWN (0x2750)] Error Code 10065 A socket operation was attempted to an unreachable host. [WSAEHOSTUNREACH (0x2751)] Error Code 10066 Cannot remove a directory that is not empty. [WSAENOTEMPTY (0x2752)] Error Code 10067 A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously. [WSAEPROCLIM (0x2753)] Error Code 10068 Ran out of quota. [WSAEUSERS (0x2754)] Error Code 10069 Ran out of disk quota. [WSAEDQUOT (0x2755)] Error Code 10070 File handle reference is no longer available. [WSAESTALE (0x2756)] Error Code 10071 Item is not available locally. [WSAEREMOTE (0x2757)] Error Code 10091 WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable. [WSASYSNOTREADY (0x276B)] Error Code 10092 The Windows Sockets version requested is not supported. [WSAVERNOTSUPPORTED (0x276C)] Error Code 10093 Either the application has not called WSAStartup or WSAStartup failed. [WSANOTINITIALISED (0x276D)] Error Code 10101 Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence. [WSAEDISCON (0x2775)] Error Code 10102 No more results can be returned by WSALookupServiceNext. [WSAENOMORE (0x2776)] Error Code 10103 A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled. [WSAECANCELLED (0x2777)] Error Code 10104 The procedure call table is invalid. [WSAEINVALIDPROCTABLE (0x2778)] Error Code 10105 The requested service provider is invalid. [WSAEINVALIDPROVIDER (0x2779)] Error Code 10106 The requested service provider could not be loaded or initialized. [WSAEPROVIDERFAILEDINIT (0x277A)] Error Code 10107 A system call that should never fail has failed. [WSASYSCALLFAILURE (0x277B)] Error Code 10108 No such service is known. The service cannot be found in the specified name space. [WSASERVICE_NOT_FOUND (0x277C)] Error Code 10109 The specified class was not found. [WSATYPE_NOT_FOUND (0x277D)] Error Code 10110 No more results can be returned by WSALookupServiceNext. [WSA_E_NO_MORE (0x277E)] Error Code 10111 A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled. [WSA_E_CANCELLED (0x277F)] Error Code 10112 A database query failed because it was actively refused. [WSAEREFUSED (0x2780)] Error Code 11001 No such host is known. [WSAHOST_NOT_FOUND (0x2AF9)] Error Code 11002 This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. [WSATRY_AGAIN (0x2AFA)] Error Code 11003 A non-recoverable error occurred during a database lookup. [WSANO_RECOVERY (0x2AFB)] Error Code 11004 The requested name is valid but no data of the requested type was found. [WSANO_DATA (0x2AFC)] Error Code 11005 At least one reserve has arrived. [WSA_QOS_RECEIVERS (0x2AFD)] Error Code 11006 At least one path has arrived. [WSA_QOS_SENDERS (0x2AFE)] Error Code 11007 There are no senders. [WSA_QOS_NO_SENDERS (0x2AFF)] Error Code 11008 There are no receivers. [WSA_QOS_NO_RECEIVERS (0x2B00)] Error Code 11009 Reserve has been confirmed. [WSA_QOS_REQUEST_CONFIRMED (0x2B01)] Error Code 11010 Error due to lack of resources. [WSA_QOS_ADMISSION_FAILURE (0x2B02)] Error Code 11011 Rejected for administrative reasons — bad credentials. [WSA_QOS_POLICY_FAILURE (0x2B03)] Error Code 11012 Unknown or conflicting style. [WSA_QOS_BAD_STYLE (0x2B04)] Error Code 11013 Problem with some part of the filterspec or providerspecific buffer in general. [WSA_QOS_BAD_OBJECT (0x2B05)] Error Code 11014 Problem with some part of the flowspec. [WSA_QOS_TRAFFIC_CTRL_ERROR (0x2B06)] Error Code 11015 General QOS error. [WSA_QOS_GENERIC_ERROR (0x2B07)] Error Code 11016 An invalid or unrecognized service type was found in the flowspec. [WSA_QOS_ESERVICETYPE (0x2B08)] Error Code 11017 An invalid or inconsistent flowspec was found in the QOS structure. [WSA_QOS_EFLOWSPEC (0x2B09)] Error Code 11018 Invalid QOS provider-specific buffer. [WSA_QOS_EPROVSPECBUF (0x2B0A)] Error Code 11019 An invalid QOS filter style was used. [WSA_QOS_EFILTERSTYLE (0x2B0B)] Error Code 11020 An invalid QOS filter type was used. [WSA_QOS_EFILTERTYPE (0x2B0C)] Error Code 11021 An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR. [WSA_QOS_EFILTERCOUNT (0x2B0D)] Error Code 11022 An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer. [WSA_QOS_EOBJLENGTH (0x2B0E)] Error Code 11023 An incorrect number of flow descriptors was specified in the QOS structure. [WSA_QOS_EFLOWCOUNT (0x2B0F)] Error Code 11024 An unrecognized object was found in the QOS provider-specific buffer. [WSA_QOS_EUNKOWNPSOBJ (0x2B10)] Error Code 11025 An invalid policy object was found in the QOS provider-specific buffer. [WSA_QOS_EPOLICYOBJ (0x2B11)] Error Code 11026 An invalid QOS flow descriptor was found in the flow descriptor list. [WSA_QOS_EFLOWDESC (0x2B12)] Error Code 11027 An invalid or inconsistent flowspec was found in the QOS provider specific buffer. [WSA_QOS_EPSFLOWSPEC (0x2B13)] Error Code 11028 An invalid FILTERSPEC was found in the QOS provider-specific buffer. [WSA_QOS_EPSFILTERSPEC (0x2B14)] Error Code 11029 An invalid shape discard mode object was found in the QOS provider specific buffer. [WSA_QOS_ESDMODEOBJ (0x2B15)] Error Code 11030 An invalid shaping rate object was found in the QOS provider-specific buffer. [WSA_QOS_ESHAPERATEOBJ (0x2B16)] Error Code 11031 A reserved policy element was found in the QOS provider-specific buffer. [WSA_QOS_RESERVED_PETYPE (0x2B17)] Error Code 12001 No more handles could be generated at this time. [ERROR_INTERNET_OUT_OF_HANDLES (0x2EE1)] Error Code 12002 The request has timed out. [ERROR_INTERNET_TIMEOUT (0x2EE2)] Error Code 12003 An extended error was returned from the server. This is typically a string or buffer containing a verbose error message. Call InternetGetLastResponseInfo to retrieve the error text. [ERROR_INTERNET_EXTENDED_ERROR (0x2EE3)] Error Code 12004 An internal error has occurred. [ERROR_INTERNET_INTERNAL_ERROR (0x2EE4)] Error Code 12005 The URL is invalid. [ERROR_INTERNET_INVALID_URL (0x2EE5)] Error Code 12006 The URL scheme could not be recognized, or is not supported. [ERROR_INTERNET_UNRECOGNIZED_SCHEME (0x2EE6)] Error Code 12007 The server name could not be resolved. [ERROR_INTERNET_NAME_NOT_RESOLVED (0x2EE7)] Error Code 12008 The requested protocol could not be located. [ERROR_INTERNET_PROTOCOL_NOT_FOUND (0x2EE8)] Error Code 12009 A request to InternetQueryOption or InternetSetOption specified an invalid option value. [ERROR_INTERNET_INVALID_OPTION (0x2EE9)] Error Code 12010 The length of an option supplied to InternetQueryOption or InternetSetOption is incorrect for the type of option specified. [ERROR_INTERNET_BAD_OPTION_LENGTH (0x2EEA)] Error Code 12011 The requested option cannot be set, only queried. [ERROR_INTERNET_OPTION_NOT_SETTABLE (0x2EEB)] Error Code 12012 WinINet support is being shut down or unloaded. [ERROR_INTERNET_SHUTDOWN (0x2EEC)] Error Code 12013 The request to connect and log on to an FTP server could not be completed because the supplied user name is incorrect. [ERROR_INTERNET_INCORRECT_USER_NAME (0x2EED)] Error Code 12014 The request to connect and log on to an FTP server could not be completed because the supplied password is incorrect. [ERROR_INTERNET_INCORRECT_PASSWORD (0x2EEE)] Error Code 12015 The request to connect and log on to an FTP server failed. [ERROR_INTERNET_LOGIN_FAILURE (0x2EEF)] Error Code 12016 The requested operation is invalid. [ERROR_INTERNET_INVALID_OPERATION (0x2EF0)] Error Code 12017 The operation was canceled, usually because the handle on which the request was operating was closed before the operation completed. [ERROR_INTERNET_OPERATION_CANCELLED (0x2EF1)] Error Code 12018 The type of handle supplied is incorrect for this operation. [ERROR_INTERNET_INCORRECT_HANDLE_TYPE (0x2EF2)] Error Code 12019 The requested operation cannot be carried out because the handle supplied is not in the correct state. [ERROR_INTERNET_INCORRECT_HANDLE_STATE (0x2EF3)] Error Code 12020 The request cannot be made via a proxy. [ERROR_INTERNET_NOT_PROXY_REQUEST (0x2EF4)] Error Code 12021 A required registry value could not be located. [ERROR_INTERNET_REGISTRY_VALUE_NOT_FOUND (0x2EF5)] Error Code 12022 A required registry value was located but is an incorrect type or has an invalid value. [ERROR_INTERNET_BAD_REGISTRY_PARAMETER (0x2EF6)] Error Code 12023 Direct network access cannot be made at this time. [ERROR_INTERNET_NO_DIRECT_ACCESS (0x2EF7)] Error Code 12024 An asynchronous request could not be made because a zero context value was supplied. [ERROR_INTERNET_NO_CONTEXT (0x2EF8)] Error Code 12025 An asynchronous request could not be made because a callback function has not been set. [ERROR_INTERNET_NO_CALLBACK (0x2EF9)] Error Code 12026 The required operation could not be completed because one or more requests are pending. [ERROR_INTERNET_REQUEST_PENDING (0x2EFA)] Error Code 12027 The format of the request is invalid. [ERROR_INTERNET_INCORRECT_FORMAT (0x2EFB)] Error Code 12028 The requested item could not be located. [ERROR_INTERNET_ITEM_NOT_FOUND (0x2EFC)] Error Code 12029 The attempt to connect to the server failed. [ERROR_INTERNET_CANNOT_CONNECT (0x2EFD)] Error Code 12030 The connection with the server has been terminated. [ERROR_INTERNET_CONNECTION_ABORTED (0x2EFE)] Error Code 12031 The connection with the server has been reset. [ERROR_INTERNET_CONNECTION_RESET (0x2EFF)] Error Code 12032 The function needs to redo the request. [ERROR_INTERNET_FORCE_RETRY (0x2F00)] Error Code 12033 The request to the proxy was invalid. [ERROR_INTERNET_INVALID_PROXY_REQUEST (0x2F01)] Error Code 12034 A user interface or other blocking operation has been requested. [ERROR_INTERNET_NEED_UI (0x2F02)] Error Code 12036 The request failed because the handle already exists. [ERROR_INTERNET_HANDLE_EXISTS (0x2F04)] Error Code 12037 SSL certificate date that was received from the server is bad. The certificate is expired. [ERROR_INTERNET_SEC_CERT_DATE_INVALID (0x2F05)] Error Code 12038 SSL certificate common name (host name field) is incorrect—for example, if you entered www.server.com and the common name on the certificate says www.different.com. [ERROR_INTERNET_SEC_CERT_CN_INVALID (0x2F06)] Error Code 12039 The application is moving from a non-SSL to an SSL connection because of a redirect. [ERROR_INTERNET_HTTP_TO_HTTPS_ON_REDIR (0x2F07)] Error Code 12040 The application is moving from an SSL to an non-SSL connection because of a redirect. [ERROR_INTERNET_HTTPS_TO_HTTP_ON_REDIR (0x2F08)] Error Code 12041 The content is not entirely secure. Some of the content being viewed may have come from unsecured servers. [ERROR_INTERNET_MIXED_SECURITY (0x2F09)] Error Code 12042 The application is posting and attempting to change multiple lines of text on a server that is not secure. [ERROR_INTERNET_CHG_POST_IS_NON_SECURE (0x2F0A)] Error Code 12043 The application is posting data to a server that is not secure. [ERROR_INTERNET_POST_IS_NON_SECURE (0x2F0B)] Error Code 12044 The server is requesting client authentication. [ERROR_INTERNET_CLIENT_AUTH_CERT_NEEDED (0x2F0C)] Error Code 12045 The function is unfamiliar with the Certificate Authority that generated the server’s certificate. [ERROR_INTERNET_INVALID_CA (0x2F0D)] Error Code 12046 Client authorization is not set up on this computer. [ERROR_INTERNET_CLIENT_AUTH_NOT_SETUP (0x2F0E)] Error Code 12047 The application could not start an asynchronous thread. [ERROR_INTERNET_ASYNC_THREAD_FAILED (0x2F0F)] Error Code 12048 The function could not handle the redirection, because the scheme changed (for example, HTTP to FTP). [ERROR_INTERNET_REDIRECT_SCHEME_CHANGE (0x2F10)] Error Code 12049 Another thread has a password dialog box in progress. [ERROR_INTERNET_DIALOG_PENDING (0x2F11)] Error Code 12050 The dialog box should be retried. [ERROR_INTERNET_RETRY_DIALOG (0x2F12)] Error Code 12052 The data being submitted to an SSL connection is being redirected to a non-SSL connection. [ERROR_INTERNET_HTTPS_HTTP_SUBMIT_REDIR (0x2F14)] Error Code 12053 The request requires a CD-ROM to be inserted in the CD-ROM drive to locate the resource requested. [ERROR_INTERNET_INSERT_CDROM (0x2F15)] Error Code 12054 The requested resource requires Fortezza authentication. [ERROR_INTERNET_FORTEZZA_LOGIN_NEEDED (0x2F16)] Error Code 12055 The SSL certificate contains errors. [ERROR_INTERNET_SEC_CERT_ERRORS (0x2F17)] Error Code 12056 ERROR_INTERNET_SEC_CERT_REV_FAILED [ERROR_INTERNET_SEC_CERT_NO_REV (0x2F18)] Error Code 12110 The requested operation cannot be made on the FTP session handle because an operation is already in progress. [ERROR_FTP_TRANSFER_IN_PROGRESS (0x2F4E)] Error Code 12111 The FTP operation was not completed because the session was aborted. [ERROR_FTP_DROPPED (0x2F4F)] Error Code 12112 Passive mode is not available on the server. [ERROR_FTP_NO_PASSIVE_MODE (0x2F50)] Error Code 12130 An error was detected while parsing data returned from the Gopher server. [ERROR_GOPHER_PROTOCOL_ERROR (0x2F62)] Error Code 12131 The request must be made for a file locator. [ERROR_GOPHER_NOT_FILE (0x2F63)] Error Code 12132 An error was detected while receiving data from the Gopher server. [ERROR_GOPHER_DATA_ERROR (0x2F64)] Error Code 12133 The end of the data has been reached. [ERROR_GOPHER_END_OF_DATA (0x2F65)] Error Code 12134 The supplied locator is not valid. [ERROR_GOPHER_INVALID_LOCATOR (0x2F66)] Error Code 12135 The type of the locator is not correct for this operation. [ERROR_GOPHER_INCORRECT_LOCATOR_TYPE (0x2F67)] Error Code 12136 The requested operation can be made only against a Gopher+ server, or with a locator that specifies a Gopher+ operation. [ERROR_GOPHER_NOT_GOPHER_PLUS (0x2F68)] Error Code 12137 The requested attribute could not be located. [ERROR_GOPHER_ATTRIBUTE_NOT_FOUND (0x2F69)] Error Code 12138 The locator type is unknown. [ERROR_GOPHER_UNKNOWN_LOCATOR (0x2F6A)] Error Code 12150 The requested header could not be located. [ERROR_HTTP_HEADER_NOT_FOUND (0x2F76)] Error Code 12151 The server did not return any headers. [ERROR_HTTP_DOWNLEVEL_SERVER (0x2F77)] Error Code 12152 The server response could not be parsed. [ERROR_HTTP_INVALID_SERVER_RESPONSE (0x2F78)] Error Code 12153 The supplied header is invalid. [ERROR_HTTP_INVALID_HEADER (0x2F79)] Error Code 12154 The request made to HttpQueryInfo is invalid. [ERROR_HTTP_INVALID_QUERY_REQUEST (0x2F7A)] Error Code 12155 The header could not be added because it already exists. [ERROR_HTTP_HEADER_ALREADY_EXISTS (0x2F7B)] Error Code 12156 The redirection failed because either the scheme changed (for example, HTTP to FTP) or all attempts made to redirect failed (default is five attempts). [ERROR_HTTP_REDIRECT_FAILED (0x2F7C)] Error Code 12157 The application experienced an internal error loading the SSL libraries. [ERROR_INTERNET_SECURITY_CHANNEL_ERROR (0x2F7D)] Error Code 12158 The function was unable to cache the file. [ERROR_INTERNET_UNABLE_TO_CACHE_FILE (0x2F7E)] Error Code 12159 The required protocol stack is not loaded and the application cannot start WinSock. [ERROR_INTERNET_TCPIP_NOT_INSTALLED (0x2F7F)] Error Code 12160 The HTTP request was not redirected. [ERROR_HTTP_NOT_REDIRECTED (0x2F80)] Error Code 12161 The HTTP cookie requires confirmation. [ERROR_HTTP_COOKIE_NEEDS_CONFIRMATION (0x2F81)] Error Code 12162 The HTTP cookie was declined by the server. [ERROR_HTTP_COOKIE_DECLINED (0x2F82)] Error Code 12163 The Internet connection has been lost. [ERROR_INTERNET_DISCONNECTED (0x2F83)] Error Code 12164 The Web site or server indicated is unreachable. [ERROR_INTERNET_SERVER_UNREACHABLE (0x2F84)] Error Code 12165 The designated proxy server cannot be reached. [ERROR_INTERNET_PROXY_SERVER_UNREACHABLE (0x2F85)] Error Code 12166 There was an error in the automatic proxy configuration script. [ERROR_INTERNET_BAD_AUTO_PROXY_SCRIPT (0x2F86)] Error Code 12167 The automatic proxy configuration script could not be downloaded. The INTERNET_FLAG_MUST_CACHE_REQUEST flag was set. [ERROR_INTERNET_UNABLE_TO_DOWNLOAD_SCRIPT (0x2F87)] Error Code 12168 The redirection requires user confirmation. [ERROR_HTTP_REDIRECT_NEEDS_CONFIRMATION (0x2F88)] Error Code 12169 SSL certificate is invalid. [ERROR_INTERNET_SEC_INVALID_CERT (0x2F89)] Error Code 12170 SSL certificate was revoked. [ERROR_INTERNET_SEC_CERT_REVOKED (0x2F8A)] Error Code 12171 The function failed due to a security check. [ERROR_INTERNET_FAILED_DUETOSECURITYCHECK (0x2F8B)] Error Code 12172 Initialization of the WinINet API has not occurred. Indicates that a higher-level function, such as InternetOpen, has not been called yet. [ERROR_INTERNET_NOT_INITIALIZED (0x2F8C)] Error Code 12173 Not currently implemented. [ERROR_INTERNET_NEED_MSN_SSPI_PKG (0x2F8D)] Error Code 12174 The MS-Logoff digest header has been returned from the Web site. [ERROR_INTERNET_LOGIN_FAILURE_DISPLAY_ENTITY_BODY (0x2F8E)] Error Code 12175 WinINet failed to perform content decoding on the response. For more information, see the Content Encoding topic. [ERROR_INTERNET_DECODING_FAILED (0x2F8F)] Error Code 13000 The specified quick mode policy already exists. [ERROR_IPSEC_QM_POLICY_EXISTS (0x32C8)] Error Code 13001 The specified quick mode policy was not found. [ERROR_IPSEC_QM_POLICY_NOT_FOUND (0x32C9)] Error Code 13002 The specified quick mode policy is being used. [ERROR_IPSEC_QM_POLICY_IN_USE (0x32CA)] Error Code 13003 The specified main mode policy already exists. [ERROR_IPSEC_MM_POLICY_EXISTS (0x32CB)] Error Code 13004 The specified main mode policy was not found [ERROR_IPSEC_MM_POLICY_NOT_FOUND (0x32CC)] Error Code 13005 The specified main mode policy is being used. [ERROR_IPSEC_MM_POLICY_IN_USE (0x32CD)] Error Code 13006 The specified main mode filter already exists. [ERROR_IPSEC_MM_FILTER_EXISTS (0x32CE)] Error Code 13007 The specified main mode filter was not found. [ERROR_IPSEC_MM_FILTER_NOT_FOUND (0x32CF)] Error Code 13008 The specified transport mode filter already exists. [ERROR_IPSEC_TRANSPORT_FILTER_EXISTS (0x32D0)] Error Code 13009 The specified transport mode filter does not exist. [ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND (0x32D1)] Error Code 13010 The specified main mode authentication list exists. [ERROR_IPSEC_MM_AUTH_EXISTS (0x32D2)] Error Code 13011 The specified main mode authentication list was not found. [ERROR_IPSEC_MM_AUTH_NOT_FOUND (0x32D3)] Error Code 13012 The specified main mode authentication list is being used. [ERROR_IPSEC_MM_AUTH_IN_USE (0x32D4)] Error Code 13013 The specified default main mode policy was not found. [ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND (0x32D5)] Error Code 13014 The specified default main mode authentication list was not found. [ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND (0x32D6)] Error Code 13015 The specified default quick mode policy was not found. [ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND (0x32D7)] Error Code 13016 The specified tunnel mode filter exists. [ERROR_IPSEC_TUNNEL_FILTER_EXISTS (0x32D8)] Error Code 13017 The specified tunnel mode filter was not found. [ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND (0x32D9)] Error Code 13018 The Main Mode filter is pending deletion. [ERROR_IPSEC_MM_FILTER_PENDING_DELETION (0x32DA)] Error Code 13019 The transport filter is pending deletion. [ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION (0x32DB)] Error Code 13020 The tunnel filter is pending deletion. [ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION (0x32DC)] Error Code 13021 The Main Mode policy is pending deletion. [ERROR_IPSEC_MM_POLICY_PENDING_DELETION (0x32DD)] Error Code 13022 The Main Mode authentication bundle is pending deletion. [ERROR_IPSEC_MM_AUTH_PENDING_DELETION (0x32DE)] Error Code 13023 The Quick Mode policy is pending deletion. [ERROR_IPSEC_QM_POLICY_PENDING_DELETION (0x32DF)] Error Code 13024 The Main Mode policy was successfully added but some of the requested offers are not supported. [WARNING_IPSEC_MM_POLICY_PRUNED (0x32E0)] Error Code 13025 The Quick Mode policy was successfully added but some of the requested offers are not supported. [WARNING_IPSEC_QM_POLICY_PRUNED (0x32E1)] Error Code 13800 ERROR_IPSEC_IKE_NEG_STATUS_BEGIN [ERROR_IPSEC_IKE_NEG_STATUS_BEGIN (0x35E8)] Error Code 13801 IKE authentication credentials are unacceptable [ERROR_IPSEC_IKE_AUTH_FAIL (0x35E9)] Error Code 13802 IKE security attributes are unacceptable [ERROR_IPSEC_IKE_ATTRIB_FAIL (0x35EA)] Error Code 13803 IKE Negotiation in progress [ERROR_IPSEC_IKE_NEGOTIATION_PENDING (0x35EB)] Error Code 13804 General processing error [ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR (0x35EC)] Error Code 13805 Negotiation timed out [ERROR_IPSEC_IKE_TIMED_OUT (0x35ED)] Error Code 13806 IKE failed to find valid machine certificate. Contact your Network Security Administrator about installing a valid certificate in the appropriate Certificate Store. [ERROR_IPSEC_IKE_NO_CERT (0x35EE)] Error Code 13807 IKE SA deleted by peer before establishment completed [ERROR_IPSEC_IKE_SA_DELETED (0x35EF)] Error Code 13808 IKE SA deleted before establishment completed [ERROR_IPSEC_IKE_SA_REAPED (0x35F0)] Error Code 13809 Negotiation request sat in Queue too long [ERROR_IPSEC_IKE_MM_ACQUIRE_DROP (0x35F1)] Error Code 13810 Negotiation request sat in Queue too long [ERROR_IPSEC_IKE_QM_ACQUIRE_DROP (0x35F2)] Error Code 13811 Negotiation request sat in Queue too long [ERROR_IPSEC_IKE_QUEUE_DROP_MM (0x35F3)] Error Code 13812 Negotiation request sat in Queue too long [ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM (0x35F4)] Error Code 13813 No response from peer [ERROR_IPSEC_IKE_DROP_NO_RESPONSE (0x35F5)] Error Code 13814 Negotiation took too long [ERROR_IPSEC_IKE_MM_DELAY_DROP (0x35F6)] Error Code 13815 Negotiation took too long [ERROR_IPSEC_IKE_QM_DELAY_DROP (0x35F7)] Error Code 13816 Unknown error occurred [ERROR_IPSEC_IKE_ERROR (0x35F8)] Error Code 13817 Certificate Revocation Check failed [ERROR_IPSEC_IKE_CRL_FAILED (0x35F9)] Error Code 13818 Invalid certificate key usage [ERROR_IPSEC_IKE_INVALID_KEY_USAGE (0x35FA)] Error Code 13819 Invalid certificate type [ERROR_IPSEC_IKE_INVALID_CERT_TYPE (0x35FB)] Error Code 13820 IKE negotiation failed because the machine certificate used does not have a private key. IPsec certificates require a private key. Contact your Network Security administrator about replacing with a certificate that has a private key. [ERROR_IPSEC_IKE_NO_PRIVATE_KEY (0x35FC)] Error Code 13821 Simultaneous rekeys were detected. [ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY (0x35FD)] Error Code 13822 Failure in Diffie-Hellman computation [ERROR_IPSEC_IKE_DH_FAIL (0x35FE)] Error Code 13823 Don’t know how to process critical payload. [ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED (0x35FF)] Error Code 13824 Invalid header [ERROR_IPSEC_IKE_INVALID_HEADER (0x3600)] Error Code 13825 No policy configured [ERROR_IPSEC_IKE_NO_POLICY (0x3601)] Error Code 13826 Failed to verify signature [ERROR_IPSEC_IKE_INVALID_SIGNATURE (0x3602)] Error Code 13827 Failed to authenticate using Kerberos [ERROR_IPSEC_IKE_KERBEROS_ERROR (0x3603)] Error Code 13828 Peer’s certificate did not have a public key [ERROR_IPSEC_IKE_NO_PUBLIC_KEY (0x3604)] Error Code 13829 Error processing error payload [ERROR_IPSEC_IKE_PROCESS_ERR (0x3605)] Error Code 13830 Error processing SA payload [ERROR_IPSEC_IKE_PROCESS_ERR_SA (0x3606)] Error Code 13831 Error processing Proposal payload [ERROR_IPSEC_IKE_PROCESS_ERR_PROP (0x3607)] Error Code 13832 Error processing Transform payload [ERROR_IPSEC_IKE_PROCESS_ERR_TRANS (0x3608)] Error Code 13833 Error processing KE payload [ERROR_IPSEC_IKE_PROCESS_ERR_KE (0x3609)] Error Code 13834 Error processing ID payload [ERROR_IPSEC_IKE_PROCESS_ERR_ID (0x360A)] Error Code 13835 Error processing Cert payload [ERROR_IPSEC_IKE_PROCESS_ERR_CERT (0x360B)] Error Code 13836 Error processing Certificate Request payload [ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ (0x360C)] Error Code 13837 Error processing Hash payload [ERROR_IPSEC_IKE_PROCESS_ERR_HASH (0x360D)] Error Code 13838 Error processing Signature payload [ERROR_IPSEC_IKE_PROCESS_ERR_SIG (0x360E)] Error Code 13839 Error processing Nonce payload [ERROR_IPSEC_IKE_PROCESS_ERR_NONCE (0x360F)] Error Code 13840 Error processing Notify payload [ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY (0x3610)] Error Code 13841 Error processing Delete Payload [ERROR_IPSEC_IKE_PROCESS_ERR_DELETE (0x3611)] Error Code 13842 Error processing VendorId payload [ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR (0x3612)] Error Code 13843 Invalid payload received [ERROR_IPSEC_IKE_INVALID_PAYLOAD (0x3613)] Error Code 13844 Soft SA loaded [ERROR_IPSEC_IKE_LOAD_SOFT_SA (0x3614)] Error Code 13845 Soft SA torn down [ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN (0x3615)] Error Code 13846 Invalid cookie received. [ERROR_IPSEC_IKE_INVALID_COOKIE (0x3616)] Error Code 13847 Peer failed to send valid machine certificate [ERROR_IPSEC_IKE_NO_PEER_CERT (0x3617)] Error Code 13848 Certification Revocation check of peer’s certificate failed [ERROR_IPSEC_IKE_PEER_CRL_FAILED (0x3618)] Error Code 13849 New policy invalidated SAs formed with old policy [ERROR_IPSEC_IKE_POLICY_CHANGE (0x3619)] Error Code 13850 There is no available Main Mode IKE policy. [ERROR_IPSEC_IKE_NO_MM_POLICY (0x361A)] Error Code 13851 Failed to enabled TCB privilege. [ERROR_IPSEC_IKE_NOTCBPRIV (0x361B)] Error Code 13852 Failed to load SECURITY.DLL. [ERROR_IPSEC_IKE_SECLOADFAIL (0x361C)] Error Code 13853 Failed to obtain security function table dispatch address from SSPI. [ERROR_IPSEC_IKE_FAILSSPINIT (0x361D)] Error Code 13854 Failed to query Kerberos package to obtain max token size. [ERROR_IPSEC_IKE_FAILQUERYSSP (0x361E)] Error Code 13855 Failed to obtain Kerberos server credentials for ISAKMP/ERROR_IPSEC_IKE service. Kerberos authentication will not function. The most likely reason for this is lack of domain membership. This is normal if your computer is a member of a workgroup. [ERROR_IPSEC_IKE_SRVACQFAIL (0x361F)] Error Code 13856 Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes). [ERROR_IPSEC_IKE_SRVQUERYCRED (0x3620)] Error Code 13857 Failed to obtain new SPI for the inbound SA from Ipsec driver. The most common cause for this is that the driver does not have the correct filter. Check your policy to verify the filters. [ERROR_IPSEC_IKE_GETSPIFAIL (0x3621)] Error Code 13858 Given filter is invalid [ERROR_IPSEC_IKE_INVALID_FILTER (0x3622)] Error Code 13859 Memory allocation failed. [ERROR_IPSEC_IKE_OUT_OF_MEMORY (0x3623)] Error Code 13860 Failed to add Security Association to IPSec Driver. The most common cause for this is if the IKE negotiation took too long to complete. If the problem persists reduce the load on the faulting machine. [ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED (0x3624)] Error Code 13861 Invalid policy [ERROR_IPSEC_IKE_INVALID_POLICY (0x3625)] Error Code 13862 Invalid DOI [ERROR_IPSEC_IKE_UNKNOWN_DOI (0x3626)] Error Code 13863 Invalid situation [ERROR_IPSEC_IKE_INVALID_SITUATION (0x3627)] Error Code 13864 Diffie-Hellman failure [ERROR_IPSEC_IKE_DH_FAILURE (0x3628)] Error Code 13865 Invalid Diffie-Hellman group [ERROR_IPSEC_IKE_INVALID_GROUP (0x3629)] Error Code 13866 Error encrypting payload [ERROR_IPSEC_IKE_ENCRYPT (0x362A)] Error Code 13867 Error decrypting payload [ERROR_IPSEC_IKE_DECRYPT (0x362B)] Error Code 13868 Policy match error [ERROR_IPSEC_IKE_POLICY_MATCH (0x362C)] Error Code 13869 Unsupported ID [ERROR_IPSEC_IKE_UNSUPPORTED_ID (0x362D)] Error Code 13870 Hash verification failed [ERROR_IPSEC_IKE_INVALID_HASH (0x362E)] Error Code 13871 Invalid hash algorithm [ERROR_IPSEC_IKE_INVALID_HASH_ALG (0x362F)] Error Code 13872 Invalid hash size [ERROR_IPSEC_IKE_INVALID_HASH_SIZE (0x3630)] Error Code 13873 Invalid encryption algorithm [ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG (0x3631)] Error Code 13874 Invalid authentication algorithm [ERROR_IPSEC_IKE_INVALID_AUTH_ALG (0x3632)] Error Code 13875 Invalid certificate signature [ERROR_IPSEC_IKE_INVALID_SIG (0x3633)] Error Code 13876 Load failed [ERROR_IPSEC_IKE_LOAD_FAILED (0x3634)] Error Code 13877 Deleted via RPC call [ERROR_IPSEC_IKE_RPC_DELETE (0x3635)] Error Code 13878 Temporary state created to perform reinit. This is not a real failure. [ERROR_IPSEC_IKE_BENIGN_REINIT (0x3636)] Error Code 13879 The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value. Please fix the policy on the peer machine. [ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY (0x3637)] Error Code 13880 The recipient cannot handle version of IKE specified in the header. [ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION (0x3638)] Error Code 13881 Key length in certificate is too small for configured security requirements. [ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN (0x3639)] Error Code 13882 Max number of established MM SAs to peer exceeded. [ERROR_IPSEC_IKE_MM_LIMIT (0x363A)] Error Code 13883 IKE received a policy that disables negotiation. [ERROR_IPSEC_IKE_NEGOTIATION_DISABLED (0x363B)] Error Code 13884 Reached maximum quick mode limit for the main mode. New main mode will be started. [ERROR_IPSEC_IKE_QM_LIMIT (0x363C)] Error Code 13885 Main mode SA lifetime expired or peer sent a main mode delete. [ERROR_IPSEC_IKE_MM_EXPIRED (0x363D)] Error Code 13886 Main mode SA assumed to be invalid because peer stopped responding. [ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID (0x363E)] Error Code 13887 Certificate doesn’t chain to a trusted root in IPsec policy. [ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH (0x363F)] Error Code 13888 Received unexpected message ID. [ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID (0x3640)] Error Code 13889 Received invalid authentication offers. [ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD (0x3641)] Error Code 13890 Sent DOS cookie notify to initiator. [ERROR_IPSEC_IKE_DOS_COOKIE_SENT (0x3642)] Error Code 13891 IKE service is shutting down. [ERROR_IPSEC_IKE_SHUTTING_DOWN (0x3643)] Error Code 13892 Could not verify binding between CGA address and certificate. [ERROR_IPSEC_IKE_CGA_AUTH_FAILED (0x3644)] Error Code 13893 Error processing NatOA payload. [ERROR_IPSEC_IKE_PROCESS_ERR_NATOA (0x3645)] Error Code 13894 Parameters of the main mode are invalid for this quick mode. [ERROR_IPSEC_IKE_INVALID_MM_FOR_QM (0x3646)] Error Code 13895 Quick mode SA was expired by IPsec driver. [ERROR_IPSEC_IKE_QM_EXPIRED (0x3647)] Error Code 13896 Too many dynamically added IKEEXT filters were detected. [ERROR_IPSEC_IKE_TOO_MANY_FILTERS (0x3648)] Error Code 13897 ERROR_IPSEC_IKE_NEG_STATUS_END [ERROR_IPSEC_IKE_NEG_STATUS_END (0x3649)] Error Code 13898 NAP reauth succeeded and must delete the dummy NAP IKEv2 tunnel. [ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL (0x364A)] Error Code 13899 Error in assigning inner IP address to initiator in tunnel mode. [ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE (0x364B)] Error Code 13900 Require configuration payload missing. [ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING (0x364C)] Error Code 13901 A negotiation running as the security principle who issued the connection is in progress. [ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING (0x364D)] Error Code 13902 SA was deleted due to IKEv1/AuthIP co-existence suppress check. [ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS (0x364E)] Error Code 13903 Incoming SA request was dropped due to peer IP address rate limiting. [ERROR_IPSEC_IKE_RATELIMIT_DROP (0x364F)] Error Code 13904 Peer does not support MOBIKE. [ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE (0x3650)] Error Code 13905 SA establishment is not authorized. [ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE (0x3651)] Error Code 13906 SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential. [ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE (0x3652)] Error Code 13907 SA establishment is not authorized. You may need to enter updated or different credentials such as a smartcard. [ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY (0x3653)] Error Code 13908 SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential. This might be related to certificate-to-account mapping failure for the SA. [ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE (0x3654)] Error Code 13909 ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END [ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END (0x3655)] Error Code 13910 The SPI in the packet does not match a valid IPsec SA. [ERROR_IPSEC_BAD_SPI (0x3656)] Error Code 13911 Packet was received on an IPsec SA whose lifetime has expired. [ERROR_IPSEC_SA_LIFETIME_EXPIRED (0x3657)] Error Code 13912 Packet was received on an IPsec SA that doesn’t match the packet characteristics. [ERROR_IPSEC_WRONG_SA (0x3658)] Error Code 13913 Packet sequence number replay check failed. [ERROR_IPSEC_REPLAY_CHECK_FAILED (0x3659)] Error Code 13914 IPsec header and/or trailer in the packet is invalid. [ERROR_IPSEC_INVALID_PACKET (0x365A)] Error Code 13915 IPsec integrity check failed. [ERROR_IPSEC_INTEGRITY_CHECK_FAILED (0x365B)] Error Code 13916 IPsec dropped a clear text packet. [ERROR_IPSEC_CLEAR_TEXT_DROP (0x365C)] Error Code 13917 IPsec dropped an incoming ESP packet in authenticated firewall mode. This drop is benign. [ERROR_IPSEC_AUTH_FIREWALL_DROP (0x365D)] Error Code 13918 IPsec dropped a packet due to DoS throttling. [ERROR_IPSEC_THROTTLE_DROP (0x365E)] Error Code 13925 IPsec DoS Protection matched an explicit block rule. [ERROR_IPSEC_DOSP_BLOCK (0x3665)] Error Code 13926 IPsec DoS Protection received an IPsec specific multicast packet which is not allowed. [ERROR_IPSEC_DOSP_RECEIVED_MULTICAST (0x3666)] Error Code 13927 IPsec DoS Protection received an incorrectly formatted packet. [ERROR_IPSEC_DOSP_INVALID_PACKET (0x3667)] Error Code 13928 IPsec DoS Protection failed to look up state. [ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED (0x3668)] Error Code 13929 IPsec DoS Protection failed to create state because the maximum number of entries allowed by policy has been reached. [ERROR_IPSEC_DOSP_MAX_ENTRIES (0x3669)] Error Code 13930 IPsec DoS Protection received an IPsec negotiation packet for a keying module which is not allowed by policy. [ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED (0x366A)] Error Code 13931 IPsec DoS Protection has not been enabled. [ERROR_IPSEC_DOSP_NOT_INSTALLED (0x366B)] Error Code 13932 IPsec DoS Protection failed to create a per internal IP rate limit queue because the maximum number of queues allowed by policy has been reached. [ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES (0x366C)] Error Code 14000 The requested section was not present in the activation context. [ERROR_SXS_SECTION_NOT_FOUND (0x36B0)] Error Code 14001 The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log for more detail. [ERROR_SXS_CANT_GEN_ACTCTX (0x36B1)] Error Code 14002 The application binding data format is invalid. [ERROR_SXS_INVALID_ACTCTXDATA_FORMAT (0x36B2)] Error Code 14003 The referenced assembly is not installed on your system. [ERROR_SXS_ASSEMBLY_NOT_FOUND (0x36B3)] Error Code 14004 The manifest file does not begin with the required tag and format information. [ERROR_SXS_MANIFEST_FORMAT_ERROR (0x36B4)] Error Code 14005 The manifest file contains one or more syntax errors. [ERROR_SXS_MANIFEST_PARSE_ERROR (0x36B5)] Error Code 14006 The application attempted to activate a disabled activation context. [ERROR_SXS_ACTIVATION_CONTEXT_DISABLED (0x36B6)] Error Code 14007 The requested lookup key was not found in any active activation context. [ERROR_SXS_KEY_NOT_FOUND (0x36B7)] Error Code 14008 A component version required by the application conflicts with another component version already active. [ERROR_SXS_VERSION_CONFLICT (0x36B8)] Error Code 14009 The type requested activation context section does not match the query API used. [ERROR_SXS_WRONG_SECTION_TYPE (0x36B9)] Error Code 14010 Lack of system resources has required isolated activation to be disabled for the current thread of execution. [ERROR_SXS_THREAD_QUERIES_DISABLED (0x36BA)] Error Code 14011 An attempt to set the process default activation context failed because the process default activation context was already set. [ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET (0x36BB)] Error Code 14012 The encoding group identifier specified is not recognized. [ERROR_SXS_UNKNOWN_ENCODING_GROUP (0x36BC)] Error Code 14013 The encoding requested is not recognized. [ERROR_SXS_UNKNOWN_ENCODING (0x36BD)] Error Code 14014 The manifest contains a reference to an invalid URI. [ERROR_SXS_INVALID_XML_NAMESPACE_URI (0x36BE)] Error Code 14015 The application manifest contains a reference to a dependent assembly which is not installed [ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED (0x36BF)] Error Code 14016 The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed [ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED (0x36C0)] Error Code 14017 The manifest contains an attribute for the assembly identity which is not valid. [ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE (0x36C1)] Error Code 14018 The manifest is missing the required default namespace specification on the assembly element. [ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE (0x36C2)] Error Code 14019 The manifest has a default namespace specified on the assembly element but its value is not «urn Error Code 14020 The private manifest probed has crossed reparse-point-associated path [ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT (0x36C4)] Error Code 14021 Two or more components referenced directly or indirectly by the application manifest have files by the same name. [ERROR_SXS_DUPLICATE_DLL_NAME (0x36C5)] Error Code 14022 Two or more components referenced directly or indirectly by the application manifest have window classes with the same name. [ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME (0x36C6)] Error Code 14023 Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs. [ERROR_SXS_DUPLICATE_CLSID (0x36C7)] Error Code 14024 Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs. [ERROR_SXS_DUPLICATE_IID (0x36C8)] Error Code 14025 Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs. [ERROR_SXS_DUPLICATE_TLBID (0x36C9)] Error Code 14026 Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs. [ERROR_SXS_DUPLICATE_PROGID (0x36CA)] Error Code 14027 Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted. [ERROR_SXS_DUPLICATE_ASSEMBLY_NAME (0x36CB)] Error Code 14028 A component’s file does not match the verification information present in the component manifest. [ERROR_SXS_FILE_HASH_MISMATCH (0x36CC)] Error Code 14029 The policy manifest contains one or more syntax errors. [ERROR_SXS_POLICY_PARSE_ERROR (0x36CD)] Error Code 14030 Manifest Parse Error Error Code 14031 Manifest Parse Error Error Code 14032 Manifest Parse Error Error Code 14033 Manifest Parse Error Error Code 14034 Manifest Parse Error Error Code 14035 Manifest Parse Error Error Code 14036 Manifest Parse Error Error Code 14037 Manifest Parse Error Error Code 14038 Manifest Parse Error Error Code 14039 Manifest Parse Error Error Code 14040 Manifest Parse Error Error Code 14041 Manifest Parse Error Error Code 14042 Manifest Parse Error Error Code 14043 Manifest Parse Error Error Code 14044 Manifest Parse Error Error Code 14045 Manifest Parse Error Error Code 14046 Manifest Parse Error Error Code 14047 Manifest Parse Error Error Code 14048 Manifest Parse Error Error Code 14049 Manifest Parse Error Error Code 14050 Manifest Parse Error Error Code 14051 Manifest Parse Error Error Code 14052 Manifest Parse Error Error Code 14053 Manifest Parse Error Error Code 14054 Manifest Parse Error Error Code 14055 Manifest Parse Error Error Code 14056 Manifest Parse Error Error Code 14057 Manifest Parse Error Error Code 14058 Manifest Parse Error Error Code 14059 Manifest Parse Error Error Code 14060 Manifest Parse Error Error Code 14061 Manifest Parse Error Error Code 14062 Manifest Parse Error Error Code 14063 Manifest Parse Error Error Code 14064 Manifest Parse Error Error Code 14065 Manifest Parse Error Error Code 14066 Manifest Parse Error Error Code 14067 Manifest Parse Error Error Code 14068 Manifest Parse Error Error Code 14069 Manifest Parse Error Error Code 14070 Manifest Parse Error Error Code 14071 Manifest Parse Error Error Code 14072 Manifest Parse Error Error Code 14073 Manifest Parse Error Error Code 14074 Assembly Protection Error Error Code 14075 Assembly Protection Error Error Code 14076 Assembly Protection Error Error Code 14077 An HRESULT could not be translated to a corresponding Win32 error code. [ERROR_SXS_UNTRANSLATABLE_HRESULT (0x36FD)] Error Code 14078 Assembly Protection Error Error Code 14079 The supplied assembly identity is missing one or more attributes which must be present in this context. [ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE (0x36FF)] Error Code 14080 The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names. [ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME (0x3700)] Error Code 14081 The referenced assembly could not be found. [ERROR_SXS_ASSEMBLY_MISSING (0x3701)] Error Code 14082 The activation context activation stack for the running thread of execution is corrupt. [ERROR_SXS_CORRUPT_ACTIVATION_STACK (0x3702)] Error Code 14083 The application isolation metadata for this process or thread has become corrupt. [ERROR_SXS_CORRUPTION (0x3703)] Error Code 14084 The activation context being deactivated is not the most recently activated one. [ERROR_SXS_EARLY_DEACTIVATION (0x3704)] Error Code 14085 The activation context being deactivated is not active for the current thread of execution. [ERROR_SXS_INVALID_DEACTIVATION (0x3705)] Error Code 14086 The activation context being deactivated has already been deactivated. [ERROR_SXS_MULTIPLE_DEACTIVATION (0x3706)] Error Code 14087 A component used by the isolation facility has requested to terminate the process. [ERROR_SXS_PROCESS_TERMINATION_REQUESTED (0x3707)] Error Code 14088 A kernel mode component is releasing a reference on an activation context. [ERROR_SXS_RELEASE_ACTIVATION_CONTEXT (0x3708)] Error Code 14089 The activation context of system default assembly could not be generated. [ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY (0x3709)] Error Code 14090 The value of an attribute in an identity is not within the legal range. [ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE (0x370A)] Error Code 14091 The name of an attribute in an identity is not within the legal range. [ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME (0x370B)] Error Code 14092 An identity contains two definitions for the same attribute. [ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE (0x370C)] Error Code 14093 The identity string is malformed. This may be due to a trailing comma more than two unnamed attributes missing attribute name or missing attribute value. [ERROR_SXS_IDENTITY_PARSE_ERROR (0x370D)] Error Code 14094 A string containing localized substitutable content was malformed. Either a dollar sign ($) was followed by something other than a left parenthesis or another dollar sign or an substitution’s right parenthesis was not found. [ERROR_MALFORMED_SUBSTITUTION_STRING (0x370E)] Error Code 14095 The public key token does not correspond to the public key specified. [ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN (0x370F)] Error Code 14096 A substitution string had no mapping. [ERROR_UNMAPPED_SUBSTITUTION_STRING (0x3710)] Error Code 14097 The component must be locked before making the request. [ERROR_SXS_ASSEMBLY_NOT_LOCKED (0x3711)] Error Code 14098 The component store has been corrupted. [ERROR_SXS_COMPONENT_STORE_CORRUPT (0x3712)] Error Code 14099 An advanced installer failed during setup or servicing. [ERROR_ADVANCED_INSTALLER_FAILED (0x3713)] Error Code 14100 The character encoding in the XML declaration did not match the encoding used in the document. [ERROR_XML_ENCODING_MISMATCH (0x3714)] Error Code 14101 The identities of the manifests are identical but their contents are different. [ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT (0x3715)] Error Code 14102 The component identities are different. [ERROR_SXS_IDENTITIES_DIFFERENT (0x3716)] Error Code 14103 The assembly is not a deployment. [ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT (0x3717)] Error Code 14104 The file is not a part of the assembly. [ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY (0x3718)] Error Code 14105 The size of the manifest exceeds the maximum allowed. [ERROR_SXS_MANIFEST_TOO_BIG (0x3719)] Error Code 14106 The setting is not registered. [ERROR_SXS_SETTING_NOT_REGISTERED (0x371A)] Error Code 14107 One or more required members of the transaction are not present. [ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE (0x371B)] Error Code 14108 The SMI primitive installer failed during setup or servicing. [ERROR_SMI_PRIMITIVE_INSTALLER_FAILED (0x371C)] Error Code 14109 A generic command executable returned a result that indicates failure. [ERROR_GENERIC_COMMAND_FAILED (0x371D)] Error Code 14110 A component is missing file verification information in its manifest. [ERROR_SXS_FILE_HASH_MISSING (0x371E)] Error Code 15000 The specified channel path is invalid. [ERROR_EVT_INVALID_CHANNEL_PATH (0x3A98)] Error Code 15001 The specified query is invalid. [ERROR_EVT_INVALID_QUERY (0x3A99)] Error Code 15002 The publisher metadata cannot be found in the resource. [ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND (0x3A9A)] Error Code 15003 The template for an event definition cannot be found in the resource (error = %1). [ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND (0x3A9B)] Error Code 15004 The specified publisher name is invalid. [ERROR_EVT_INVALID_PUBLISHER_NAME (0x3A9C)] Error Code 15005 The event data raised by the publisher is not compatible with the event template definition in the publisher’s manifest [ERROR_EVT_INVALID_EVENT_DATA (0x3A9D)] Error Code 15007 The specified channel could not be found. Check channel configuration. [ERROR_EVT_CHANNEL_NOT_FOUND (0x3A9F)] Error Code 15008 The specified xml text was not well-formed. See Extended Error for more details. [ERROR_EVT_MALFORMED_XML_TEXT (0x3AA0)] Error Code 15009 The caller is trying to subscribe to a direct channel which is not allowed. The events for a direct channel go directly to a logfile and cannot be subscribed to. [ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL (0x3AA1)] Error Code 15010 Configuration error. [ERROR_EVT_CONFIGURATION_ERROR (0x3AA2)] Error Code 15011 The query result is stale / invalid. This may be due to the log being cleared or rolling over after the query result was created. Users should handle this code by releasing the query result object and reissuing the query. [ERROR_EVT_QUERY_RESULT_STALE (0x3AA3)] Error Code 15012 Query result is currently at an invalid position. [ERROR_EVT_QUERY_RESULT_INVALID_POSITION (0x3AA4)] Error Code 15013 Registered MSXML doesn’t support validation. [ERROR_EVT_NON_VALIDATING_MSXML (0x3AA5)] Error Code 15014 An expression can only be followed by a change of scope operation if it itself evaluates to a node set and is not already part of some other change of scope operation. [ERROR_EVT_FILTER_ALREADYSCOPED (0x3AA6)] Error Code 15015 Can’t perform a step operation from a term that does not represent an element set. [ERROR_EVT_FILTER_NOTELTSET (0x3AA7)] Error Code 15016 Left hand side arguments to binary operators must be either attributes nodes or variables and right hand side arguments must be constants. [ERROR_EVT_FILTER_INVARG (0x3AA8)] Error Code 15017 A step operation must involve either a node test or in the case of a predicate an algebraic expression against which to test each node in the node set identified by the preceding node set can be evaluated. [ERROR_EVT_FILTER_INVTEST (0x3AA9)] Error Code 15018 This data type is currently unsupported. [ERROR_EVT_FILTER_INVTYPE (0x3AAA)] Error Code 15019 A syntax error occurred at position %1!d! [ERROR_EVT_FILTER_PARSEERR (0x3AAB)] Error Code 15020 This operator is unsupported by this implementation of the filter. [ERROR_EVT_FILTER_UNSUPPORTEDOP (0x3AAC)] Error Code 15021 The token encountered was unexpected. [ERROR_EVT_FILTER_UNEXPECTEDTOKEN (0x3AAD)] Error Code 15022 The requested operation cannot be performed over an enabled direct channel. The channel must first be disabled before performing the requested operation. [ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL (0x3AAE)] Error Code 15023 Channel property %1!s! contains invalid value. The value has invalid type is outside of valid range can’t be updated or is not supported by this type of channel. [ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE (0x3AAF)] Error Code 15024 Publisher property %1!s! contains invalid value. The value has invalid type is outside of valid range can’t be updated or is not supported by this type of publisher. [ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE (0x3AB0)] Error Code 15025 The channel fails to activate. [ERROR_EVT_CHANNEL_CANNOT_ACTIVATE (0x3AB1)] Error Code 15026 The xpath expression exceeded supported complexity. Please simplify it or split it into two or more simple expressions. [ERROR_EVT_FILTER_TOO_COMPLEX (0x3AB2)] Error Code 15027 The message resource is present but the message is not found in the string/message table. [ERROR_EVT_MESSAGE_NOT_FOUND (0x3AB3)] Error Code 15028 The message identifier for the desired message could not be found. [ERROR_EVT_MESSAGE_ID_NOT_FOUND (0x3AB4)] Error Code 15029 The substitution string for insert index (%1) could not be found. [ERROR_EVT_UNRESOLVED_VALUE_INSERT (0x3AB5)] Error Code 15030 The description string for parameter reference (%1) could not be found. [ERROR_EVT_UNRESOLVED_PARAMETER_INSERT (0x3AB6)] Error Code 15031 The maximum number of replacements has been reached. [ERROR_EVT_MAX_INSERTS_REACHED (0x3AB7)] Error Code 15032 The event definition could not be found for the event identifier (%1). [ERROR_EVT_EVENT_DEFINITION_NOT_FOUND (0x3AB8)] Error Code 15033 The locale specific resource for the desired message is not present. [ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND (0x3AB9)] Error Code 15034 The resource is too old to be compatible. [ERROR_EVT_VERSION_TOO_OLD (0x3ABA)] Error Code 15035 The resource is too new to be compatible. [ERROR_EVT_VERSION_TOO_NEW (0x3ABB)] Error Code 15036 The channel at index %1!d! of the query cannot be opened. [ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY (0x3ABC)] Error Code 15037 The publisher has been disabled and its resource is not available. This usually occurs when the publisher is in the process of being uninstalled or upgraded. [ERROR_EVT_PUBLISHER_DISABLED (0x3ABD)] Error Code 15038 Attempted to create a numeric type that is outside of its valid range. [ERROR_EVT_FILTER_OUT_OF_RANGE (0x3ABE)] Error Code 15080 The subscription fails to activate. [ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE (0x3AE8)] Error Code 15081 The log of the subscription is in disabled state and cannot be used to forward events. The log must first be enabled before the subscription can be activated. [ERROR_EC_LOG_DISABLED (0x3AE9)] Error Code 15082 When forwarding events from local machine to itself the query of the subscription can’t contain target log of the subscription. [ERROR_EC_CIRCULAR_FORWARDING (0x3AEA)] Error Code 15083 The credential store that is used to save credentials is full. [ERROR_EC_CREDSTORE_FULL (0x3AEB)] Error Code 15084 The credential used by this subscription can’t be found in credential store. [ERROR_EC_CRED_NOT_FOUND (0x3AEC)] Error Code 15085 No active channel is found for the query. [ERROR_EC_NO_ACTIVE_CHANNEL (0x3AED)] Error Code 15100 The resource loader failed to find MUI file. [ERROR_MUI_FILE_NOT_FOUND (0x3AFC)] Error Code 15101 The resource loader failed to load MUI file because the file fail to pass validation. [ERROR_MUI_INVALID_FILE (0x3AFD)] Error Code 15102 The RC Manifest is corrupted with garbage data or unsupported version or missing required item. [ERROR_MUI_INVALID_RC_CONFIG (0x3AFE)] Error Code 15103 The RC Manifest has invalid culture name. [ERROR_MUI_INVALID_LOCALE_NAME (0x3AFF)] Error Code 15104 The RC Manifest has invalid ultimatefallback name. [ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME (0x3B00)] Error Code 15105 The resource loader cache doesn’t have loaded MUI entry. [ERROR_MUI_FILE_NOT_LOADED (0x3B01)] Error Code 15106 User stop resource enumeration. [ERROR_RESOURCE_ENUM_USER_STOP (0x3B02)] Error Code 15107 UI language installation failed. [ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED (0x3B03)] Error Code 15108 Locale installation failed. [ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME (0x3B04)] Error Code 15110 A resource does not have default or neutral value. [ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE (0x3B06)] Error Code 15111 Invalid PRI config file. [ERROR_MRM_INVALID_PRICONFIG (0x3B07)] Error Code 15112 Invalid file type. [ERROR_MRM_INVALID_FILE_TYPE (0x3B08)] Error Code 15113 Unknown qualifier. [ERROR_MRM_UNKNOWN_QUALIFIER (0x3B09)] Error Code 15114 Invalid qualifier value. [ERROR_MRM_INVALID_QUALIFIER_VALUE (0x3B0A)] Error Code 15115 No Candidate found. [ERROR_MRM_NO_CANDIDATE (0x3B0B)] Error Code 15116 The ResourceMap or NamedResource has an item that does not have default or neutral resource.. [ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE (0x3B0C)] Error Code 15117 Invalid ResourceCandidate type. [ERROR_MRM_RESOURCE_TYPE_MISMATCH (0x3B0D)] Error Code 15118 Duplicate Resource Map. [ERROR_MRM_DUPLICATE_MAP_NAME (0x3B0E)] Error Code 15119 Duplicate Entry. [ERROR_MRM_DUPLICATE_ENTRY (0x3B0F)] Error Code 15120 Invalid Resource Identifier. [ERROR_MRM_INVALID_RESOURCE_IDENTIFIER (0x3B10)] Error Code 15121 Filepath too long. [ERROR_MRM_FILEPATH_TOO_LONG (0x3B11)] Error Code 15122 Unsupported directory type. [ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE (0x3B12)] Error Code 15126 Invalid PRI File. [ERROR_MRM_INVALID_PRI_FILE (0x3B16)] Error Code 15127 NamedResource Not Found. [ERROR_MRM_NAMED_RESOURCE_NOT_FOUND (0x3B17)] Error Code 15135 ResourceMap Not Found. [ERROR_MRM_MAP_NOT_FOUND (0x3B1F)] Error Code 15136 Unsupported MRT profile type. [ERROR_MRM_UNSUPPORTED_PROFILE_TYPE (0x3B20)] Error Code 15137 Invalid qualifier operator. [ERROR_MRM_INVALID_QUALIFIER_OPERATOR (0x3B21)] Error Code 15138 Unable to determine qualifier value or qualifier value has not been set. [ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE (0x3B22)] Error Code 15139 Automerge is enabled in the PRI file. [ERROR_MRM_AUTOMERGE_ENABLED (0x3B23)] Error Code 15140 Too many resources defined for package. [ERROR_MRM_TOO_MANY_RESOURCES (0x3B24)] Error Code 15200 The monitor returned a DDC/CI capabilities string that did not comply with the ACCESS.bus 3.0 DDC/CI 1.1 or MCCS 2 Revision 1 specification. [ERROR_MCA_INVALID_CAPABILITIES_STRING (0x3B60)] Error Code 15201 The monitor’s VCP Version (0xDF) VCP code returned an invalid version value. [ERROR_MCA_INVALID_VCP_VERSION (0x3B61)] Error Code 15202 The monitor does not comply with the MCCS specification it claims to supports. [ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION (0x3B62)] Error Code 15203 The MCCS version in a monitor’s mccs_ver capability does not match the MCCS version the monitor reports when the VCP Version (0xDF) VCP code is used. [ERROR_MCA_MCCS_VERSION_MISMATCH (0x3B63)] Error Code 15204 The Monitor Configuration API only works with monitors that support the MCCS 1.0 specification MCCS 2.0 specification or the MCCS 2.0 Revision 1 specification. [ERROR_MCA_UNSUPPORTED_MCCS_VERSION (0x3B64)] Error Code 15205 An internal Monitor Configuration API error occurred. [ERROR_MCA_INTERNAL_ERROR (0x3B65)] Error Code 15206 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 the MCCS 2.0 Revision 1 specification. [ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED (0x3B66)] Error Code 15207 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 the MCCS 2.0 Revision 1 specification. [ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE (0x3B67)] Error Code 15250 The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria. [ERROR_AMBIGUOUS_SYSTEM_DEVICE (0x3B92)] Error Code 15299 The requested system device cannot be found. [ERROR_SYSTEM_DEVICE_NOT_FOUND (0x3BC3)] Error Code 15300 Hash generation for the specified hash version and hash type is not enabled on the server. [ERROR_HASH_NOT_SUPPORTED (0x3BC4)] Error Code 15301 The hash requested from the server is not available or no longer valid. [ERROR_HASH_NOT_PRESENT (0x3BC5)] Error Code 15321 The secondary interrupt controller instance that manages the specified interrupt is not registered. [ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED (0x3BD9)] Error Code 15322 The information supplied by the GPIO client driver is invalid. [ERROR_GPIO_CLIENT_INFORMATION_INVALID (0x3BDA)] Error Code 15323 The version specified by the GPIO client driver is not supported. [ERROR_GPIO_VERSION_NOT_SUPPORTED (0x3BDB)] Error Code 15324 The registration packet supplied by the GPIO client driver is not valid. [ERROR_GPIO_INVALID_REGISTRATION_PACKET (0x3BDC)] Error Code 15325 The requested operation is not suppported for the specified handle. [ERROR_GPIO_OPERATION_DENIED (0x3BDD)] Error Code 15326 The requested connect mode conflicts with an existing mode on one or more of the specified pins. [ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE (0x3BDE)] Error Code 15327 The interrupt requested to be unmasked is not masked. [ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED (0x3BDF)] Error Code 15400 The requested run level switch cannot be completed successfully. [ERROR_CANNOT_SWITCH_RUNLEVEL (0x3C28)] Error Code 15401 The service has an invalid run level setting. The run level for a service must not be higher than the run level of its dependent services. [ERROR_INVALID_RUNLEVEL_SETTING (0x3C29)] Error Code 15402 The requested run level switch cannot be completed successfully since one or more services will not stop or restart within the specified timeout. [ERROR_RUNLEVEL_SWITCH_TIMEOUT (0x3C2A)] Error Code 15403 A run level switch agent did not respond within the specified timeout. [ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT (0x3C2B)] Error Code 15404 A run level switch is currently in progress. [ERROR_RUNLEVEL_SWITCH_IN_PROGRESS (0x3C2C)] Error Code 15405 One or more services failed to start during the service startup phase of a run level switch. [ERROR_SERVICES_FAILED_AUTOSTART (0x3C2D)] Error Code 15501 The task stop request cannot be completed immediately since task needs more time to shutdown. [ERROR_COM_TASK_STOP_PENDING (0x3C8D)] Error Code 15600 Package could not be opened. [ERROR_INSTALL_OPEN_PACKAGE_FAILED (0x3CF0)] Error Code 15601 Package was not found. [ERROR_INSTALL_PACKAGE_NOT_FOUND (0x3CF1)] Error Code 15602 Package data is invalid. [ERROR_INSTALL_INVALID_PACKAGE (0x3CF2)] Error Code 15603 Package failed updates, dependency or conflict validation. [ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED (0x3CF3)] Error Code 15604 There is not enough disk space on your computer. Please free up some space and try again. [ERROR_INSTALL_OUT_OF_DISK_SPACE (0x3CF4)] Error Code 15605 There was a problem downloading your product. [ERROR_INSTALL_NETWORK_FAILURE (0x3CF5)] Error Code 15606 Package could not be registered. [ERROR_INSTALL_REGISTRATION_FAILURE (0x3CF6)] Error Code 15607 Package could not be unregistered. [ERROR_INSTALL_DEREGISTRATION_FAILURE (0x3CF7)] Error Code 15608 User cancelled the install request. [ERROR_INSTALL_CANCEL (0x3CF8)] Error Code 15609 Install failed. Please contact your software vendor. [ERROR_INSTALL_FAILED (0x3CF9)] Error Code 15610 Removal failed. Please contact your software vendor. [ERROR_REMOVE_FAILED (0x3CFA)] Error Code 15611 The provided package is already installed, and reinstallation of the package was blocked. Check the AppXDeployment-Server event log for details. [ERROR_PACKAGE_ALREADY_EXISTS (0x3CFB)] Error Code 15612 The application cannot be started. Try reinstalling the application to fix the problem. [ERROR_NEEDS_REMEDIATION (0x3CFC)] Error Code 15613 A Prerequisite for an install could not be satisfied. [ERROR_INSTALL_PREREQUISITE_FAILED (0x3CFD)] Error Code 15614 The package repository is corrupted. [ERROR_PACKAGE_REPOSITORY_CORRUPTED (0x3CFE)] Error Code 15615 To install this application you need either a Windows developer license or a sideloading-enabled system. [ERROR_INSTALL_POLICY_FAILURE (0x3CFF)] Error Code 15616 The application cannot be started because it is currently updating. [ERROR_PACKAGE_UPDATING (0x3D00)] Error Code 15617 The package deployment operation is blocked by policy. Please contact your system administrator. [ERROR_DEPLOYMENT_BLOCKED_BY_POLICY (0x3D01)] Error Code 15618 The package could not be installed because resources it modifies are currently in use. [ERROR_PACKAGES_IN_USE (0x3D02)] Error Code 15619 The package could not be recovered because necessary data for recovery have been corrupted. [ERROR_RECOVERY_FILE_CORRUPT (0x3D03)] Error Code 15620 The signature is invalid. To register in developer mode, AppxSignature.p7x and AppxBlockMap.xml must be valid or should not be present. [ERROR_INVALID_STAGED_SIGNATURE (0x3D04)] Error Code 15621 An error occurred while deleting the package’s previously existing application data. [ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED (0x3D05)] Error Code 15622 The package could not be installed because a higher version of this package is already installed. [ERROR_INSTALL_PACKAGE_DOWNGRADE (0x3D06)] Error Code 15623 An error in a system binary was detected. Try refreshing the PC to fix the problem. [ERROR_SYSTEM_NEEDS_REMEDIATION (0x3D07)] Error Code 15624 A corrupted CLR NGEN binary was detected on the system. [ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN (0x3D08)] Error Code 15625 The operation could not be resumed because necessary data for recovery have been corrupted. [ERROR_RESILIENCY_FILE_CORRUPT (0x3D09)] Error Code 15626 The package could not be installed because the Windows Firewall service is not running. Enable the Windows Firewall service and try again. [ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING (0x3D0A)] Error Code 15700 The process has no package identity. [APPMODEL_ERROR_NO_PACKAGE (0x3D54)] Error Code 15701 The package runtime information is corrupted. [APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT (0x3D55)] Error Code 15702 The package identity is corrupted. [APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT (0x3D56)] Error Code 15703 The process has no application identity. [APPMODEL_ERROR_NO_APPLICATION (0x3D57)] Error Code 15800 Loading the state store failed. [ERROR_STATE_LOAD_STORE_FAILED (0x3DB8)] Error Code 15801 Retrieving the state version for the application failed. [ERROR_STATE_GET_VERSION_FAILED (0x3DB9)] Error Code 15802 Setting the state version for the application failed. [ERROR_STATE_SET_VERSION_FAILED (0x3DBA)] Error Code 15803 Resetting the structured state of the application failed. [ERROR_STATE_STRUCTURED_RESET_FAILED (0x3DBB)] Error Code 15804 State Manager failed to open the container. [ERROR_STATE_OPEN_CONTAINER_FAILED (0x3DBC)] Error Code 15805 State Manager failed to create the container. [ERROR_STATE_CREATE_CONTAINER_FAILED (0x3DBD)] Error Code 15806 State Manager failed to delete the container. [ERROR_STATE_DELETE_CONTAINER_FAILED (0x3DBE)] Error Code 15807 State Manager failed to read the setting. [ERROR_STATE_READ_SETTING_FAILED (0x3DBF)] Error Code 15808 State Manager failed to write the setting. [ERROR_STATE_WRITE_SETTING_FAILED (0x3DC0)] Error Code 15809 State Manager failed to delete the setting. [ERROR_STATE_DELETE_SETTING_FAILED (0x3DC1)] Error Code 15810 State Manager failed to query the setting. [ERROR_STATE_QUERY_SETTING_FAILED (0x3DC2)] Error Code 15811 State Manager failed to read the composite setting. [ERROR_STATE_READ_COMPOSITE_SETTING_FAILED (0x3DC3)] Error Code 15812 State Manager failed to write the composite setting. [ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED (0x3DC4)] Error Code 15813 State Manager failed to enumerate the containers. [ERROR_STATE_ENUMERATE_CONTAINER_FAILED (0x3DC5)] Error Code 15814 State Manager failed to enumerate the settings. [ERROR_STATE_ENUMERATE_SETTINGS_FAILED (0x3DC6)] Error Code 15815 The size of the state manager composite setting value has exceeded the limit. [ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED (0x3DC7)] Error Code 15816 The size of the state manager setting value has exceeded the limit. [ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED (0x3DC8)] Error Code 15817 The length of the state manager setting name has exceeded the limit. [ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED (0x3DC9)] Error Code 15818 The length of the state manager container name has exceeded the limit. [ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED (0x3DCA)] Error Code 15841 This API cannot be used in the context of the caller’s application type. [ERROR_API_UNAVAILABLE (0x3DE1)]
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Dargon { /// <summary> /// Generated via the following procedure: /// /// var codeBody = «»; /// var keys = Object.keys(a); /// for (var i = 0; i&lt;keys.length; i++) { /// var key = keys[i]; /// var value = a[key]; /// var name = key; /// var code = parseInt(value); /// var hexCode = code.toString(16); /// hexCode = «0000».substring(4 — hexCode.length) + hexCode; /// /// var description = value.substring(value.indexOf(«:») + 1).trim().replace(/\/ g, «\\»).replace(/r / g, «\r»).replace(/n / g, «\n»).replace(/ «/g, «\»»); /// codeBody += «/// <summary>rn/// » + description + «rn///</summary>rn [Description(«» + description + «»)] » + name + » = 0x» + hexCode + «, rnrn»; /// } /// /// var codeHeader = «public enum ErrorCodes {«; /// var codeFooter = «}»; /// copy(codeHeader + codeBody + codeFooter); /// /// Where a is defined by going to each page in https://msdn.microsoft.com/en-us/library/windows/desktop/ms681384(v=vs.85).aspx running /// /// nodes = $(«#mainSection»).find(«dl»)[0].children; /// result = {}; /// for (var i = 0; i&lt;nodes.length; i+=2) { /// var dt = nodes[i]; /// var name = dt.innerText; /// var dd = nodes[i + 1]; /// var innerDl = dd.children[0]; /// var hexValue = parseInt(innerDl.children[0].innerText); /// var explanation = innerDl.children[1].innerText; /// result[name] = hexValue + «: » + explanation; /// } /// copy(result); /// /// Pasting the results into a json array and running /// /// copy(Object.assign.apply(null, a)) /// /// to aggregate all of them. /// </summary> public enum ErrorCodes : ushort { /// <summary> /// The operation completed successfully. ///</summary> [Description(«The operation completed successfully.«)] ERROR_SUCCESS = 0x00, /// <summary> /// Incorrect function. ///</summary> [Description(«Incorrect function.«)] ERROR_INVALID_FUNCTION = 0x01, /// <summary> /// The system cannot find the file specified. ///</summary> [Description(«The system cannot find the file specified.«)] ERROR_FILE_NOT_FOUND = 0x02, /// <summary> /// The system cannot find the path specified. ///</summary> [Description(«The system cannot find the path specified.«)] ERROR_PATH_NOT_FOUND = 0x03, /// <summary> /// The system cannot open the file. ///</summary> [Description(«The system cannot open the file.«)] ERROR_TOO_MANY_OPEN_FILES = 0x04, /// <summary> /// Access is denied. ///</summary> [Description(«Access is denied.«)] ERROR_ACCESS_DENIED = 0x05, /// <summary> /// The handle is invalid. ///</summary> [Description(«The handle is invalid.«)] ERROR_INVALID_HANDLE = 0x06, /// <summary> /// The storage control blocks were destroyed. ///</summary> [Description(«The storage control blocks were destroyed.«)] ERROR_ARENA_TRASHED = 0x07, /// <summary> /// Not enough storage is available to process this command. ///</summary> [Description(«Not enough storage is available to process this command.«)] ERROR_NOT_ENOUGH_MEMORY = 0x08, /// <summary> /// The storage control block address is invalid. ///</summary> [Description(«The storage control block address is invalid.«)] ERROR_INVALID_BLOCK = 0x09, /// <summary> /// The environment is incorrect. ///</summary> [Description(«The environment is incorrect.«)] ERROR_BAD_ENVIRONMENT = 0x0a, /// <summary> /// An attempt was made to load a program with an incorrect format. ///</summary> [Description(«An attempt was made to load a program with an incorrect format.«)] ERROR_BAD_FORMAT = 0x0b, /// <summary> /// The access code is invalid. ///</summary> [Description(«The access code is invalid.«)] ERROR_INVALID_ACCESS = 0x0c, /// <summary> /// The data is invalid. ///</summary> [Description(«The data is invalid.«)] ERROR_INVALID_DATA = 0x0d, /// <summary> /// Not enough storage is available to complete this operation. ///</summary> [Description(«Not enough storage is available to complete this operation.«)] ERROR_OUTOFMEMORY = 0x0e, /// <summary> /// The system cannot find the drive specified. ///</summary> [Description(«The system cannot find the drive specified.«)] ERROR_INVALID_DRIVE = 0x0f, /// <summary> /// The directory cannot be removed. ///</summary> [Description(«The directory cannot be removed.«)] ERROR_CURRENT_DIRECTORY = 0x0010, /// <summary> /// The system cannot move the file to a different disk drive. ///</summary> [Description(«The system cannot move the file to a different disk drive.«)] ERROR_NOT_SAME_DEVICE = 0x0011, /// <summary> /// There are no more files. ///</summary> [Description(«There are no more files.«)] ERROR_NO_MORE_FILES = 0x0012, /// <summary> /// The media is write protected. ///</summary> [Description(«The media is write protected.«)] ERROR_WRITE_PROTECT = 0x0013, /// <summary> /// The system cannot find the device specified. ///</summary> [Description(«The system cannot find the device specified.«)] ERROR_BAD_UNIT = 0x0014, /// <summary> /// The device is not ready. ///</summary> [Description(«The device is not ready.«)] ERROR_NOT_READY = 0x0015, /// <summary> /// The device does not recognize the command. ///</summary> [Description(«The device does not recognize the command.«)] ERROR_BAD_COMMAND = 0x0016, /// <summary> /// Data error (cyclic redundancy check). ///</summary> [Description(«Data error (cyclic redundancy check).«)] ERROR_CRC = 0x0017, /// <summary> /// The program issued a command but the command length is incorrect. ///</summary> [Description(«The program issued a command but the command length is incorrect.«)] ERROR_BAD_LENGTH = 0x0018, /// <summary> /// The drive cannot locate a specific area or track on the disk. ///</summary> [Description(«The drive cannot locate a specific area or track on the disk.«)] ERROR_SEEK = 0x0019, /// <summary> /// The specified disk or diskette cannot be accessed. ///</summary> [Description(«The specified disk or diskette cannot be accessed.«)] ERROR_NOT_DOS_DISK = 0x001a, /// <summary> /// The drive cannot find the sector requested. ///</summary> [Description(«The drive cannot find the sector requested.«)] ERROR_SECTOR_NOT_FOUND = 0x001b, /// <summary> /// The printer is out of paper. ///</summary> [Description(«The printer is out of paper.«)] ERROR_OUT_OF_PAPER = 0x001c, /// <summary> /// The system cannot write to the specified device. ///</summary> [Description(«The system cannot write to the specified device.«)] ERROR_WRITE_FAULT = 0x001d, /// <summary> /// The system cannot read from the specified device. ///</summary> [Description(«The system cannot read from the specified device.«)] ERROR_READ_FAULT = 0x001e, /// <summary> /// A device attached to the system is not functioning. ///</summary> [Description(«A device attached to the system is not functioning.«)] ERROR_GEN_FAILURE = 0x001f, /// <summary> /// The process cannot access the file because it is being used by another process. ///</summary> [Description(«The process cannot access the file because it is being used by another process.«)] ERROR_SHARING_VIOLATION = 0x0020, /// <summary> /// The process cannot access the file because another process has locked a portion of the file. ///</summary> [Description(«The process cannot access the file because another process has locked a portion of the file.«)] ERROR_LOCK_VIOLATION = 0x0021, /// <summary> /// The wrong diskette is in the drive. Insert %2 (Volume Serial Number: %3) into drive %1. ///</summary> [Description(«The wrong diskette is in the drive. Insert %2 (Volume Serial Number: %3) into drive %1.«)] ERROR_WRONG_DISK = 0x0022, /// <summary> /// Too many files opened for sharing. ///</summary> [Description(«Too many files opened for sharing.«)] ERROR_SHARING_BUFFER_EXCEEDED = 0x0024, /// <summary> /// Reached the end of the file. ///</summary> [Description(«Reached the end of the file.«)] ERROR_HANDLE_EOF = 0x0026, /// <summary> /// The disk is full. ///</summary> [Description(«The disk is full.«)] ERROR_HANDLE_DISK_FULL = 0x0027, /// <summary> /// The request is not supported. ///</summary> [Description(«The request is not supported.«)] ERROR_NOT_SUPPORTED = 0x0032, /// <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> [Description(«Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator.«)] ERROR_REM_NOT_LIST = 0x0033, /// <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> [Description(«You were not connected because a duplicate name exists on the network. If joining a domain, go to System in Control Panel to change the computer name and try again. If joining a workgroup, choose another workgroup name.«)] ERROR_DUP_NAME = 0x0034, /// <summary> /// The network path was not found. ///</summary> [Description(«The network path was not found.«)] ERROR_BAD_NETPATH = 0x0035, /// <summary> /// The network is busy. ///</summary> [Description(«The network is busy.«)] ERROR_NETWORK_BUSY = 0x0036, /// <summary> /// The specified network resource or device is no longer available. ///</summary> [Description(«The specified network resource or device is no longer available.«)] ERROR_DEV_NOT_EXIST = 0x0037, /// <summary> /// The network BIOS command limit has been reached. ///</summary> [Description(«The network BIOS command limit has been reached.«)] ERROR_TOO_MANY_CMDS = 0x0038, /// <summary> /// A network adapter hardware error occurred. ///</summary> [Description(«A network adapter hardware error occurred.«)] ERROR_ADAP_HDW_ERR = 0x0039, /// <summary> /// The specified server cannot perform the requested operation. ///</summary> [Description(«The specified server cannot perform the requested operation.«)] ERROR_BAD_NET_RESP = 0x003a, /// <summary> /// An unexpected network error occurred. ///</summary> [Description(«An unexpected network error occurred.«)] ERROR_UNEXP_NET_ERR = 0x003b, /// <summary> /// The remote adapter is not compatible. ///</summary> [Description(«The remote adapter is not compatible.«)] ERROR_BAD_REM_ADAP = 0x003c, /// <summary> /// The printer queue is full. ///</summary> [Description(«The printer queue is full.«)] ERROR_PRINTQ_FULL = 0x003d, /// <summary> /// Space to store the file waiting to be printed is not available on the server. ///</summary> [Description(«Space to store the file waiting to be printed is not available on the server.«)] ERROR_NO_SPOOL_SPACE = 0x003e, /// <summary> /// Your file waiting to be printed was deleted. ///</summary> [Description(«Your file waiting to be printed was deleted.«)] ERROR_PRINT_CANCELLED = 0x003f, /// <summary> /// The specified network name is no longer available. ///</summary> [Description(«The specified network name is no longer available.«)] ERROR_NETNAME_DELETED = 0x0040, /// <summary> /// Network access is denied. ///</summary> [Description(«Network access is denied.«)] ERROR_NETWORK_ACCESS_DENIED = 0x0041, /// <summary> /// The network resource type is not correct. ///</summary> [Description(«The network resource type is not correct.«)] ERROR_BAD_DEV_TYPE = 0x0042, /// <summary> /// The network name cannot be found. ///</summary> [Description(«The network name cannot be found.«)] ERROR_BAD_NET_NAME = 0x0043, /// <summary> /// The name limit for the local computer network adapter card was exceeded. ///</summary> [Description(«The name limit for the local computer network adapter card was exceeded.«)] ERROR_TOO_MANY_NAMES = 0x0044, /// <summary> /// The network BIOS session limit was exceeded. ///</summary> [Description(«The network BIOS session limit was exceeded.«)] ERROR_TOO_MANY_SESS = 0x0045, /// <summary> /// The remote server has been paused or is in the process of being started. ///</summary> [Description(«The remote server has been paused or is in the process of being started.«)] ERROR_SHARING_PAUSED = 0x0046, /// <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> [Description(«No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.«)] ERROR_REQ_NOT_ACCEP = 0x0047, /// <summary> /// The specified printer or disk device has been paused. ///</summary> [Description(«The specified printer or disk device has been paused.«)] ERROR_REDIR_PAUSED = 0x0048, /// <summary> /// The file exists. ///</summary> [Description(«The file exists.«)] ERROR_FILE_EXISTS = 0x0050, /// <summary> /// The directory or file cannot be created. ///</summary> [Description(«The directory or file cannot be created.«)] ERROR_CANNOT_MAKE = 0x0052, /// <summary> /// Fail on INT 24. ///</summary> [Description(«Fail on INT 24.«)] ERROR_FAIL_I24 = 0x0053, /// <summary> /// Storage to process this request is not available. ///</summary> [Description(«Storage to process this request is not available.«)] ERROR_OUT_OF_STRUCTURES = 0x0054, /// <summary> /// The local device name is already in use. ///</summary> [Description(«The local device name is already in use.«)] ERROR_ALREADY_ASSIGNED = 0x0055, /// <summary> /// The specified network password is not correct. ///</summary> [Description(«The specified network password is not correct.«)] ERROR_INVALID_PASSWORD = 0x0056, /// <summary> /// The parameter is incorrect. ///</summary> [Description(«The parameter is incorrect.«)] ERROR_INVALID_PARAMETER = 0x0057, /// <summary> /// A write fault occurred on the network. ///</summary> [Description(«A write fault occurred on the network.«)] ERROR_NET_WRITE_FAULT = 0x0058, /// <summary> /// The system cannot start another process at this time. ///</summary> [Description(«The system cannot start another process at this time.«)] ERROR_NO_PROC_SLOTS = 0x0059, /// <summary> /// Cannot create another system semaphore. ///</summary> [Description(«Cannot create another system semaphore.«)] ERROR_TOO_MANY_SEMAPHORES = 0x0064, /// <summary> /// The exclusive semaphore is owned by another process. ///</summary> [Description(«The exclusive semaphore is owned by another process.«)] ERROR_EXCL_SEM_ALREADY_OWNED = 0x0065, /// <summary> /// The semaphore is set and cannot be closed. ///</summary> [Description(«The semaphore is set and cannot be closed.«)] ERROR_SEM_IS_SET = 0x0066, /// <summary> /// The semaphore cannot be set again. ///</summary> [Description(«The semaphore cannot be set again.«)] ERROR_TOO_MANY_SEM_REQUESTS = 0x0067, /// <summary> /// Cannot request exclusive semaphores at interrupt time. ///</summary> [Description(«Cannot request exclusive semaphores at interrupt time.«)] ERROR_INVALID_AT_INTERRUPT_TIME = 0x0068, /// <summary> /// The previous ownership of this semaphore has ended. ///</summary> [Description(«The previous ownership of this semaphore has ended.«)] ERROR_SEM_OWNER_DIED = 0x0069, /// <summary> /// Insert the diskette for drive %1. ///</summary> [Description(«Insert the diskette for drive %1.«)] ERROR_SEM_USER_LIMIT = 0x006a, /// <summary> /// The program stopped because an alternate diskette was not inserted. ///</summary> [Description(«The program stopped because an alternate diskette was not inserted.«)] ERROR_DISK_CHANGE = 0x006b, /// <summary> /// The disk is in use or locked by another process. ///</summary> [Description(«The disk is in use or locked by another process.«)] ERROR_DRIVE_LOCKED = 0x006c, /// <summary> /// The pipe has been ended. ///</summary> [Description(«The pipe has been ended.«)] ERROR_BROKEN_PIPE = 0x006d, /// <summary> /// The system cannot open the device or file specified. ///</summary> [Description(«The system cannot open the device or file specified.«)] ERROR_OPEN_FAILED = 0x006e, /// <summary> /// The file name is too long. ///</summary> [Description(«The file name is too long.«)] ERROR_BUFFER_OVERFLOW = 0x006f, /// <summary> /// There is not enough space on the disk. ///</summary> [Description(«There is not enough space on the disk.«)] ERROR_DISK_FULL = 0x0070, /// <summary> /// No more internal file identifiers available. ///</summary> [Description(«No more internal file identifiers available.«)] ERROR_NO_MORE_SEARCH_HANDLES = 0x0071, /// <summary> /// The target internal file identifier is incorrect. ///</summary> [Description(«The target internal file identifier is incorrect.«)] ERROR_INVALID_TARGET_HANDLE = 0x0072, /// <summary> /// The IOCTL call made by the application program is not correct. ///</summary> [Description(«The IOCTL call made by the application program is not correct.«)] ERROR_INVALID_CATEGORY = 0x0075, /// <summary> /// The verify-on-write switch parameter value is not correct. ///</summary> [Description(«The verify-on-write switch parameter value is not correct.«)] ERROR_INVALID_VERIFY_SWITCH = 0x0076, /// <summary> /// The system does not support the command requested. ///</summary> [Description(«The system does not support the command requested.«)] ERROR_BAD_DRIVER_LEVEL = 0x0077, /// <summary> /// This function is not supported on this system. ///</summary> [Description(«This function is not supported on this system.«)] ERROR_CALL_NOT_IMPLEMENTED = 0x0078, /// <summary> /// The semaphore timeout period has expired. ///</summary> [Description(«The semaphore timeout period has expired.«)] ERROR_SEM_TIMEOUT = 0x0079, /// <summary> /// The data area passed to a system call is too small. ///</summary> [Description(«The data area passed to a system call is too small.«)] ERROR_INSUFFICIENT_BUFFER = 0x007a, /// <summary> /// The filename, directory name, or volume label syntax is incorrect. ///</summary> [Description(«The filename, directory name, or volume label syntax is incorrect.«)] ERROR_INVALID_NAME = 0x007b, /// <summary> /// The system call level is not correct. ///</summary> [Description(«The system call level is not correct.«)] ERROR_INVALID_LEVEL = 0x007c, /// <summary> /// The disk has no volume label. ///</summary> [Description(«The disk has no volume label.«)] ERROR_NO_VOLUME_LABEL = 0x007d, /// <summary> /// The specified module could not be found. ///</summary> [Description(«The specified module could not be found.«)] ERROR_MOD_NOT_FOUND = 0x007e, /// <summary> /// The specified procedure could not be found. ///</summary> [Description(«The specified procedure could not be found.«)] ERROR_PROC_NOT_FOUND = 0x007f, /// <summary> /// There are no child processes to wait for. ///</summary> [Description(«There are no child processes to wait for.«)] ERROR_WAIT_NO_CHILDREN = 0x0080, /// <summary> /// The %1 application cannot be run in Win32 mode. ///</summary> [Description(«The %1 application cannot be run in Win32 mode.«)] ERROR_CHILD_NOT_COMPLETE = 0x0081, /// <summary> /// Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O. ///</summary> [Description(«Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.«)] ERROR_DIRECT_ACCESS_HANDLE = 0x0082, /// <summary> /// An attempt was made to move the file pointer before the beginning of the file. ///</summary> [Description(«An attempt was made to move the file pointer before the beginning of the file.«)] ERROR_NEGATIVE_SEEK = 0x0083, /// <summary> /// The file pointer cannot be set on the specified device or file. ///</summary> [Description(«The file pointer cannot be set on the specified device or file.«)] ERROR_SEEK_ON_DEVICE = 0x0084, /// <summary> /// A JOIN or SUBST command cannot be used for a drive that contains previously joined drives. ///</summary> [Description(«A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.«)] ERROR_IS_JOIN_TARGET = 0x0085, /// <summary> /// An attempt was made to use a JOIN or SUBST command on a drive that has already been joined. ///</summary> [Description(«An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.«)] ERROR_IS_JOINED = 0x0086, /// <summary> /// An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted. ///</summary> [Description(«An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.«)] ERROR_IS_SUBSTED = 0x0087, /// <summary> /// The system tried to delete the JOIN of a drive that is not joined. ///</summary> [Description(«The system tried to delete the JOIN of a drive that is not joined.«)] ERROR_NOT_JOINED = 0x0088, /// <summary> /// The system tried to delete the substitution of a drive that is not substituted. ///</summary> [Description(«The system tried to delete the substitution of a drive that is not substituted.«)] ERROR_NOT_SUBSTED = 0x0089, /// <summary> /// The system tried to join a drive to a directory on a joined drive. ///</summary> [Description(«The system tried to join a drive to a directory on a joined drive.«)] ERROR_JOIN_TO_JOIN = 0x008a, /// <summary> /// The system tried to substitute a drive to a directory on a substituted drive. ///</summary> [Description(«The system tried to substitute a drive to a directory on a substituted drive.«)] ERROR_SUBST_TO_SUBST = 0x008b, /// <summary> /// The system tried to join a drive to a directory on a substituted drive. ///</summary> [Description(«The system tried to join a drive to a directory on a substituted drive.«)] ERROR_JOIN_TO_SUBST = 0x008c, /// <summary> /// The system tried to SUBST a drive to a directory on a joined drive. ///</summary> [Description(«The system tried to SUBST a drive to a directory on a joined drive.«)] ERROR_SUBST_TO_JOIN = 0x008d, /// <summary> /// The system cannot perform a JOIN or SUBST at this time. ///</summary> [Description(«The system cannot perform a JOIN or SUBST at this time.«)] ERROR_BUSY_DRIVE = 0x008e, /// <summary> /// The system cannot join or substitute a drive to or for a directory on the same drive. ///</summary> [Description(«The system cannot join or substitute a drive to or for a directory on the same drive.«)] ERROR_SAME_DRIVE = 0x008f, /// <summary> /// The directory is not a subdirectory of the root directory. ///</summary> [Description(«The directory is not a subdirectory of the root directory.«)] ERROR_DIR_NOT_ROOT = 0x0090, /// <summary> /// The directory is not empty. ///</summary> [Description(«The directory is not empty.«)] ERROR_DIR_NOT_EMPTY = 0x0091, /// <summary> /// The path specified is being used in a substitute. ///</summary> [Description(«The path specified is being used in a substitute.«)] ERROR_IS_SUBST_PATH = 0x0092, /// <summary> /// Not enough resources are available to process this command. ///</summary> [Description(«Not enough resources are available to process this command.«)] ERROR_IS_JOIN_PATH = 0x0093, /// <summary> /// The path specified cannot be used at this time. ///</summary> [Description(«The path specified cannot be used at this time.«)] ERROR_PATH_BUSY = 0x0094, /// <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> [Description(«An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.«)] ERROR_IS_SUBST_TARGET = 0x0095, /// <summary> /// System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed. ///</summary> [Description(«System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.«)] ERROR_SYSTEM_TRACE = 0x0096, /// <summary> /// The number of specified semaphore events for DosMuxSemWait is not correct. ///</summary> [Description(«The number of specified semaphore events for DosMuxSemWait is not correct.«)] ERROR_INVALID_EVENT_COUNT = 0x0097, /// <summary> /// DosMuxSemWait did not execute; too many semaphores are already set. ///</summary> [Description(«DosMuxSemWait did not execute; too many semaphores are already set.«)] ERROR_TOO_MANY_MUXWAITERS = 0x0098, /// <summary> /// The DosMuxSemWait list is not correct. ///</summary> [Description(«The DosMuxSemWait list is not correct.«)] ERROR_INVALID_LIST_FORMAT = 0x0099, /// <summary> /// The volume label you entered exceeds the label character limit of the target file system. ///</summary> [Description(«The volume label you entered exceeds the label character limit of the target file system.«)] ERROR_LABEL_TOO_LONG = 0x009a, /// <summary> /// Cannot create another thread. ///</summary> [Description(«Cannot create another thread.«)] ERROR_TOO_MANY_TCBS = 0x009b, /// <summary> /// The recipient process has refused the signal. ///</summary> [Description(«The recipient process has refused the signal.«)] ERROR_SIGNAL_REFUSED = 0x009c, /// <summary> /// The segment is already discarded and cannot be locked. ///</summary> [Description(«The segment is already discarded and cannot be locked.«)] ERROR_DISCARDED = 0x009d, /// <summary> /// The segment is already unlocked. ///</summary> [Description(«The segment is already unlocked.«)] ERROR_NOT_LOCKED = 0x009e, /// <summary> /// The address for the thread ID is not correct. ///</summary> [Description(«The address for the thread ID is not correct.«)] ERROR_BAD_THREADID_ADDR = 0x009f, /// <summary> /// One or more arguments are not correct. ///</summary> [Description(«One or more arguments are not correct.«)] ERROR_BAD_ARGUMENTS = 0x00a0, /// <summary> /// The specified path is invalid. ///</summary> [Description(«The specified path is invalid.«)] ERROR_BAD_PATHNAME = 0x00a1, /// <summary> /// A signal is already pending. ///</summary> [Description(«A signal is already pending.«)] ERROR_SIGNAL_PENDING = 0x00a2, /// <summary> /// No more threads can be created in the system. ///</summary> [Description(«No more threads can be created in the system.«)] ERROR_MAX_THRDS_REACHED = 0x00a4, /// <summary> /// Unable to lock a region of a file. ///</summary> [Description(«Unable to lock a region of a file.«)] ERROR_LOCK_FAILED = 0x00a7, /// <summary> /// The requested resource is in use. ///</summary> [Description(«The requested resource is in use.«)] ERROR_BUSY = 0x00aa, /// <summary> /// Device’s command support detection is in progress. ///</summary> [Description(«Device’s command support detection is in progress.«)] ERROR_DEVICE_SUPPORT_IN_PROGRESS = 0x00ab, /// <summary> /// A lock request was not outstanding for the supplied cancel region. ///</summary> [Description(«A lock request was not outstanding for the supplied cancel region.«)] ERROR_CANCEL_VIOLATION = 0x00ad, /// <summary> /// The file system does not support atomic changes to the lock type. ///</summary> [Description(«The file system does not support atomic changes to the lock type.«)] ERROR_ATOMIC_LOCKS_NOT_SUPPORTED = 0x00ae, /// <summary> /// The system detected a segment number that was not correct. ///</summary> [Description(«The system detected a segment number that was not correct.«)] ERROR_INVALID_SEGMENT_NUMBER = 0x00b4, /// <summary> /// The operating system cannot run %1. ///</summary> [Description(«The operating system cannot run %1.«)] ERROR_INVALID_ORDINAL = 0x00b6, /// <summary> /// Cannot create a file when that file already exists. ///</summary> [Description(«Cannot create a file when that file already exists.«)] ERROR_ALREADY_EXISTS = 0x00b7, /// <summary> /// The flag passed is not correct. ///</summary> [Description(«The flag passed is not correct.«)] ERROR_INVALID_FLAG_NUMBER = 0x00ba, /// <summary> /// The specified system semaphore name was not found. ///</summary> [Description(«The specified system semaphore name was not found.«)] ERROR_SEM_NOT_FOUND = 0x00bb, /// <summary> /// The operating system cannot run %1. ///</summary> [Description(«The operating system cannot run %1.«)] ERROR_INVALID_STARTING_CODESEG = 0x00bc, /// <summary> /// The operating system cannot run %1. ///</summary> [Description(«The operating system cannot run %1.«)] ERROR_INVALID_STACKSEG = 0x00bd, /// <summary> /// The operating system cannot run %1. ///</summary> [Description(«The operating system cannot run %1.«)] ERROR_INVALID_MODULETYPE = 0x00be, /// <summary> /// Cannot run %1 in Win32 mode. ///</summary> [Description(«Cannot run %1 in Win32 mode.«)] ERROR_INVALID_EXE_SIGNATURE = 0x00bf, /// <summary> /// The operating system cannot run %1. ///</summary> [Description(«The operating system cannot run %1.«)] ERROR_EXE_MARKED_INVALID = 0x00c0, /// <summary> /// %1 is not a valid Win32 application. ///</summary> [Description(«%1 is not a valid Win32 application.«)] ERROR_BAD_EXE_FORMAT = 0x00c1, /// <summary> /// The operating system cannot run %1. ///</summary> [Description(«The operating system cannot run %1.«)] ERROR_ITERATED_DATA_EXCEEDS_64k = 0x00c2, /// <summary> /// The operating system cannot run %1. ///</summary> [Description(«The operating system cannot run %1.«)] ERROR_INVALID_MINALLOCSIZE = 0x00c3, /// <summary> /// The operating system cannot run this application program. ///</summary> [Description(«The operating system cannot run this application program.«)] ERROR_DYNLINK_FROM_INVALID_RING = 0x00c4, /// <summary> /// The operating system is not presently configured to run this application. ///</summary> [Description(«The operating system is not presently configured to run this application.«)] ERROR_IOPL_NOT_ENABLED = 0x00c5, /// <summary> /// The operating system cannot run %1. ///</summary> [Description(«The operating system cannot run %1.«)] ERROR_INVALID_SEGDPL = 0x00c6, /// <summary> /// The operating system cannot run this application program. ///</summary> [Description(«The operating system cannot run this application program.«)] ERROR_AUTODATASEG_EXCEEDS_64k = 0x00c7, /// <summary> /// The code segment cannot be greater than or equal to 64K. ///</summary> [Description(«The code segment cannot be greater than or equal to 64K.«)] ERROR_RING2SEG_MUST_BE_MOVABLE = 0x00c8, /// <summary> /// The operating system cannot run %1. ///</summary> [Description(«The operating system cannot run %1.«)] ERROR_RELOC_CHAIN_XEEDS_SEGLIM = 0x00c9, /// <summary> /// The operating system cannot run %1. ///</summary> [Description(«The operating system cannot run %1.«)] ERROR_INFLOOP_IN_RELOC_CHAIN = 0x00ca, /// <summary> /// The system could not find the environment option that was entered. ///</summary> [Description(«The system could not find the environment option that was entered.«)] ERROR_ENVVAR_NOT_FOUND = 0x00cb, /// <summary> /// No process in the command subtree has a signal handler. ///</summary> [Description(«No process in the command subtree has a signal handler.«)] ERROR_NO_SIGNAL_SENT = 0x00cd, /// <summary> /// The filename or extension is too long. ///</summary> [Description(«The filename or extension is too long.«)] ERROR_FILENAME_EXCED_RANGE = 0x00ce, /// <summary> /// The ring 2 stack is in use. ///</summary> [Description(«The ring 2 stack is in use.«)] ERROR_RING2_STACK_IN_USE = 0x00cf, /// <summary> /// The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified. ///</summary> [Description(«The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified.«)] ERROR_META_EXPANSION_TOO_LONG = 0x00d0, /// <summary> /// The signal being posted is not correct. ///</summary> [Description(«The signal being posted is not correct.«)] ERROR_INVALID_SIGNAL_NUMBER = 0x00d1, /// <summary> /// The signal handler cannot be set. ///</summary> [Description(«The signal handler cannot be set.«)] ERROR_THREAD_1_INACTIVE = 0x00d2, /// <summary> /// The segment is locked and cannot be reallocated. ///</summary> [Description(«The segment is locked and cannot be reallocated.«)] ERROR_LOCKED = 0x00d4, /// <summary> /// Too many dynamic-link modules are attached to this program or dynamic-link module. ///</summary> [Description(«Too many dynamic-link modules are attached to this program or dynamic-link module.«)] ERROR_TOO_MANY_MODULES = 0x00d6, /// <summary> /// Cannot nest calls to LoadModule. ///</summary> [Description(«Cannot nest calls to LoadModule.«)] ERROR_NESTING_NOT_ALLOWED = 0x00d7, /// <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> [Description(«This version of %1 is not compatible with the version of Windows you’re running. Check your computer’s system information and then contact the software publisher.«)] ERROR_EXE_MACHINE_TYPE_MISMATCH = 0x00d8, /// <summary> /// The image file %1 is signed, unable to modify. ///</summary> [Description(«The image file %1 is signed, unable to modify.«)] ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY = 0x00d9, /// <summary> /// The image file %1 is strong signed, unable to modify. ///</summary> [Description(«The image file %1 is strong signed, unable to modify.«)] ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY = 0x00da, /// <summary> /// This file is checked out or locked for editing by another user. ///</summary> [Description(«This file is checked out or locked for editing by another user.«)] ERROR_FILE_CHECKED_OUT = 0x00dc, /// <summary> /// The file must be checked out before saving changes. ///</summary> [Description(«The file must be checked out before saving changes.«)] ERROR_CHECKOUT_REQUIRED = 0x00dd, /// <summary> /// The file type being saved or retrieved has been blocked. ///</summary> [Description(«The file type being saved or retrieved has been blocked.«)] ERROR_BAD_FILE_TYPE = 0x00de, /// <summary> /// The file size exceeds the limit allowed and cannot be saved. ///</summary> [Description(«The file size exceeds the limit allowed and cannot be saved.«)] ERROR_FILE_TOO_LARGE = 0x00df, /// <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> [Description(«Access Denied. Before opening files in this location, you must first add the web site to your trusted sites list, browse to the web site, and select the option to login automatically.«)] ERROR_FORMS_AUTH_REQUIRED = 0x00e0, /// <summary> /// Operation did not complete successfully because the file contains a virus or potentially unwanted software. ///</summary> [Description(«Operation did not complete successfully because the file contains a virus or potentially unwanted software.«)] ERROR_VIRUS_INFECTED = 0x00e1, /// <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> [Description(«This file contains a virus or potentially unwanted software and cannot be opened. Due to the nature of this virus or potentially unwanted software, the file has been removed from this location.«)] ERROR_VIRUS_DELETED = 0x00e2, /// <summary> /// The pipe is local. ///</summary> [Description(«The pipe is local.«)] ERROR_PIPE_LOCAL = 0x00e5, /// <summary> /// The pipe state is invalid. ///</summary> [Description(«The pipe state is invalid.«)] ERROR_BAD_PIPE = 0x00e6, /// <summary> /// All pipe instances are busy. ///</summary> [Description(«All pipe instances are busy.«)] ERROR_PIPE_BUSY = 0x00e7, /// <summary> /// The pipe is being closed. ///</summary> [Description(«The pipe is being closed.«)] ERROR_NO_DATA = 0x00e8, /// <summary> /// No process is on the other end of the pipe. ///</summary> [Description(«No process is on the other end of the pipe.«)] ERROR_PIPE_NOT_CONNECTED = 0x00e9, /// <summary> /// More data is available. ///</summary> [Description(«More data is available.«)] ERROR_MORE_DATA = 0x00ea, /// <summary> /// The session was canceled. ///</summary> [Description(«The session was canceled.«)] ERROR_VC_DISCONNECTED = 0x00f0, /// <summary> /// The specified extended attribute name was invalid. ///</summary> [Description(«The specified extended attribute name was invalid.«)] ERROR_INVALID_EA_NAME = 0x00fe, /// <summary> /// The extended attributes are inconsistent. ///</summary> [Description(«The extended attributes are inconsistent.«)] ERROR_EA_LIST_INCONSISTENT = 0x00ff, /// <summary> /// The wait operation timed out. ///</summary> [Description(«The wait operation timed out.«)] WAIT_TIMEOUT = 0x000102, /// <summary> /// No more data is available. ///</summary> [Description(«No more data is available.«)] ERROR_NO_MORE_ITEMS = 0x000103, /// <summary> /// The copy functions cannot be used. ///</summary> [Description(«The copy functions cannot be used.«)] ERROR_CANNOT_COPY = 0x00010a, /// <summary> /// The directory name is invalid. ///</summary> [Description(«The directory name is invalid.«)] ERROR_DIRECTORY = 0x00010b, /// <summary> /// The extended attributes did not fit in the buffer. ///</summary> [Description(«The extended attributes did not fit in the buffer.«)] ERROR_EAS_DIDNT_FIT = 0x000113, /// <summary> /// The extended attribute file on the mounted file system is corrupt. ///</summary> [Description(«The extended attribute file on the mounted file system is corrupt.«)] ERROR_EA_FILE_CORRUPT = 0x000114, /// <summary> /// The extended attribute table file is full. ///</summary> [Description(«The extended attribute table file is full.«)] ERROR_EA_TABLE_FULL = 0x000115, /// <summary> /// The specified extended attribute handle is invalid. ///</summary> [Description(«The specified extended attribute handle is invalid.«)] ERROR_INVALID_EA_HANDLE = 0x000116, /// <summary> /// The mounted file system does not support extended attributes. ///</summary> [Description(«The mounted file system does not support extended attributes.«)] ERROR_EAS_NOT_SUPPORTED = 0x00011a, /// <summary> /// Attempt to release mutex not owned by caller. ///</summary> [Description(«Attempt to release mutex not owned by caller.«)] ERROR_NOT_OWNER = 0x000120, /// <summary> /// Too many posts were made to a semaphore. ///</summary> [Description(«Too many posts were made to a semaphore.«)] ERROR_TOO_MANY_POSTS = 0x00012a, /// <summary> /// Only part of a ReadProcessMemory or WriteProcessMemory request was completed. ///</summary> [Description(«Only part of a ReadProcessMemory or WriteProcessMemory request was completed.«)] ERROR_PARTIAL_COPY = 0x00012b, /// <summary> /// The oplock request is denied. ///</summary> [Description(«The oplock request is denied.«)] ERROR_OPLOCK_NOT_GRANTED = 0x00012c, /// <summary> /// An invalid oplock acknowledgment was received by the system. ///</summary> [Description(«An invalid oplock acknowledgment was received by the system.«)] ERROR_INVALID_OPLOCK_PROTOCOL = 0x00012d, /// <summary> /// The volume is too fragmented to complete this operation. ///</summary> [Description(«The volume is too fragmented to complete this operation.«)] ERROR_DISK_TOO_FRAGMENTED = 0x00012e, /// <summary> /// The file cannot be opened because it is in the process of being deleted. ///</summary> [Description(«The file cannot be opened because it is in the process of being deleted.«)] ERROR_DELETE_PENDING = 0x00012f, /// <summary> /// Short name settings may not be changed on this volume due to the global registry setting. ///</summary> [Description(«Short name settings may not be changed on this volume due to the global registry setting.«)] ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING = 0x000130, /// <summary> /// Short names are not enabled on this volume. ///</summary> [Description(«Short names are not enabled on this volume.«)] ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME = 0x000131, /// <summary> /// The security stream for the given volume is in an inconsistent state. Please run CHKDSK on the volume. ///</summary> [Description(«The security stream for the given volume is in an inconsistent state. Please run CHKDSK on the volume.«)] ERROR_SECURITY_STREAM_IS_INCONSISTENT = 0x000132, /// <summary> /// A requested file lock operation cannot be processed due to an invalid byte range. ///</summary> [Description(«A requested file lock operation cannot be processed due to an invalid byte range.«)] ERROR_INVALID_LOCK_RANGE = 0x000133, /// <summary> /// The subsystem needed to support the image type is not present. ///</summary> [Description(«The subsystem needed to support the image type is not present.«)] ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT = 0x000134, /// <summary> /// The specified file already has a notification GUID associated with it. ///</summary> [Description(«The specified file already has a notification GUID associated with it.«)] ERROR_NOTIFICATION_GUID_ALREADY_DEFINED = 0x000135, /// <summary> /// An invalid exception handler routine has been detected. ///</summary> [Description(«An invalid exception handler routine has been detected.«)] ERROR_INVALID_EXCEPTION_HANDLER = 0x000136, /// <summary> /// Duplicate privileges were specified for the token. ///</summary> [Description(«Duplicate privileges were specified for the token.«)] ERROR_DUPLICATE_PRIVILEGES = 0x000137, /// <summary> /// No ranges for the specified operation were able to be processed. ///</summary> [Description(«No ranges for the specified operation were able to be processed.«)] ERROR_NO_RANGES_PROCESSED = 0x000138, /// <summary> /// Operation is not allowed on a file system internal file. ///</summary> [Description(«Operation is not allowed on a file system internal file.«)] ERROR_NOT_ALLOWED_ON_SYSTEM_FILE = 0x000139, /// <summary> /// The physical resources of this disk have been exhausted. ///</summary> [Description(«The physical resources of this disk have been exhausted.«)] ERROR_DISK_RESOURCES_EXHAUSTED = 0x00013a, /// <summary> /// The token representing the data is invalid. ///</summary> [Description(«The token representing the data is invalid.«)] ERROR_INVALID_TOKEN = 0x00013b, /// <summary> /// The device does not support the command feature. ///</summary> [Description(«The device does not support the command feature.«)] ERROR_DEVICE_FEATURE_NOT_SUPPORTED = 0x00013c, /// <summary> /// The system cannot find message text for message number 0x%1 in the message file for %2. ///</summary> [Description(«The system cannot find message text for message number 0x%1 in the message file for %2.«)] ERROR_MR_MID_NOT_FOUND = 0x00013d, /// <summary> /// The scope specified was not found. ///</summary> [Description(«The scope specified was not found.«)] ERROR_SCOPE_NOT_FOUND = 0x00013e, /// <summary> /// The Central Access Policy specified is not defined on the target machine. ///</summary> [Description(«The Central Access Policy specified is not defined on the target machine.«)] ERROR_UNDEFINED_SCOPE = 0x00013f, /// <summary> /// The Central Access Policy obtained from Active Directory is invalid. ///</summary> [Description(«The Central Access Policy obtained from Active Directory is invalid.«)] ERROR_INVALID_CAP = 0x000140, /// <summary> /// The device is unreachable. ///</summary> [Description(«The device is unreachable.«)] ERROR_DEVICE_UNREACHABLE = 0x000141, /// <summary> /// The target device has insufficient resources to complete the operation. ///</summary> [Description(«The target device has insufficient resources to complete the operation.«)] ERROR_DEVICE_NO_RESOURCES = 0x000142, /// <summary> /// A data integrity checksum error occurred. Data in the file stream is corrupt. ///</summary> [Description(«A data integrity checksum error occurred. Data in the file stream is corrupt.«)] ERROR_DATA_CHECKSUM_ERROR = 0x000143, /// <summary> /// An attempt was made to modify both a KERNEL and normal Extended Attribute (EA) in the same operation. ///</summary> [Description(«An attempt was made to modify both a KERNEL and normal Extended Attribute (EA) in the same operation.«)] ERROR_INTERMIXED_KERNEL_EA_OPERATION = 0x000144, /// <summary> /// Device does not support file-level TRIM. ///</summary> [Description(«Device does not support file-level TRIM.«)] ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED = 0x000146, /// <summary> /// The command specified a data offset that does not align to the device’s granularity/alignment. ///</summary> [Description(«The command specified a data offset that does not align to the device’s granularity/alignment.«)] ERROR_OFFSET_ALIGNMENT_VIOLATION = 0x000147, /// <summary> /// The command specified an invalid field in its parameter list. ///</summary> [Description(«The command specified an invalid field in its parameter list.«)] ERROR_INVALID_FIELD_IN_PARAMETER_LIST = 0x000148, /// <summary> /// An operation is currently in progress with the device. ///</summary> [Description(«An operation is currently in progress with the device.«)] ERROR_OPERATION_IN_PROGRESS = 0x000149, /// <summary> /// An attempt was made to send down the command via an invalid path to the target device. ///</summary> [Description(«An attempt was made to send down the command via an invalid path to the target device.«)] ERROR_BAD_DEVICE_PATH = 0x00014a, /// <summary> /// The command specified a number of descriptors that exceeded the maximum supported by the device. ///</summary> [Description(«The command specified a number of descriptors that exceeded the maximum supported by the device.«)] ERROR_TOO_MANY_DESCRIPTORS = 0x00014b, /// <summary> /// Scrub is disabled on the specified file. ///</summary> [Description(«Scrub is disabled on the specified file.«)] ERROR_SCRUB_DATA_DISABLED = 0x00014c, /// <summary> /// The storage device does not provide redundancy. ///</summary> [Description(«The storage device does not provide redundancy.«)] ERROR_NOT_REDUNDANT_STORAGE = 0x00014d, /// <summary> /// An operation is not supported on a resident file. ///</summary> [Description(«An operation is not supported on a resident file.«)] ERROR_RESIDENT_FILE_NOT_SUPPORTED = 0x00014e, /// <summary> /// An operation is not supported on a compressed file. ///</summary> [Description(«An operation is not supported on a compressed file.«)] ERROR_COMPRESSED_FILE_NOT_SUPPORTED = 0x00014f, /// <summary> /// An operation is not supported on a directory. ///</summary> [Description(«An operation is not supported on a directory.«)] ERROR_DIRECTORY_NOT_SUPPORTED = 0x000150, /// <summary> /// The specified copy of the requested data could not be read. ///</summary> [Description(«The specified copy of the requested data could not be read.«)] ERROR_NOT_READ_FROM_COPY = 0x000151, /// <summary> /// No action was taken as a system reboot is required. ///</summary> [Description(«No action was taken as a system reboot is required.«)] ERROR_FAIL_NOACTION_REBOOT = 0x00015e, /// <summary> /// The shutdown operation failed. ///</summary> [Description(«The shutdown operation failed.«)] ERROR_FAIL_SHUTDOWN = 0x00015f, /// <summary> /// The restart operation failed. ///</summary> [Description(«The restart operation failed.«)] ERROR_FAIL_RESTART = 0x000160, /// <summary> /// The maximum number of sessions has been reached. ///</summary> [Description(«The maximum number of sessions has been reached.«)] ERROR_MAX_SESSIONS_REACHED = 0x000161, /// <summary> /// The thread is already in background processing mode. ///</summary> [Description(«The thread is already in background processing mode.«)] ERROR_THREAD_MODE_ALREADY_BACKGROUND = 0x000190, /// <summary> /// The thread is not in background processing mode. ///</summary> [Description(«The thread is not in background processing mode.«)] ERROR_THREAD_MODE_NOT_BACKGROUND = 0x000191, /// <summary> /// The process is already in background processing mode. ///</summary> [Description(«The process is already in background processing mode.«)] ERROR_PROCESS_MODE_ALREADY_BACKGROUND = 0x000192, /// <summary> /// The process is not in background processing mode. ///</summary> [Description(«The process is not in background processing mode.«)] ERROR_PROCESS_MODE_NOT_BACKGROUND = 0x000193, /// <summary> /// Attempt to access invalid address. ///</summary> [Description(«Attempt to access invalid address.«)] ERROR_INVALID_ADDRESS = 0x0001e7, /// <summary> /// User profile cannot be loaded. ///</summary> [Description(«User profile cannot be loaded.«)] ERROR_USER_PROFILE_LOAD = 0x0001f4, /// <summary> /// Arithmetic result exceeded 32 bits. ///</summary> [Description(«Arithmetic result exceeded 32 bits.«)] ERROR_ARITHMETIC_OVERFLOW = 0x000216, /// <summary> /// There is a process on other end of the pipe. ///</summary> [Description(«There is a process on other end of the pipe.«)] ERROR_PIPE_CONNECTED = 0x000217, /// <summary> /// Waiting for a process to open the other end of the pipe. ///</summary> [Description(«Waiting for a process to open the other end of the pipe.«)] ERROR_PIPE_LISTENING = 0x000218, /// <summary> /// Application verifier has found an error in the current process. ///</summary> [Description(«Application verifier has found an error in the current process.«)] ERROR_VERIFIER_STOP = 0x000219, /// <summary> /// An error occurred in the ABIOS subsystem. ///</summary> [Description(«An error occurred in the ABIOS subsystem.«)] ERROR_ABIOS_ERROR = 0x00021a, /// <summary> /// A warning occurred in the WX86 subsystem. ///</summary> [Description(«A warning occurred in the WX86 subsystem.«)] ERROR_WX86_WARNING = 0x00021b, /// <summary> /// An error occurred in the WX86 subsystem. ///</summary> [Description(«An error occurred in the WX86 subsystem.«)] ERROR_WX86_ERROR = 0x00021c, /// <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> [Description(«An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine.«)] ERROR_TIMER_NOT_CANCELED = 0x00021d, /// <summary> /// Unwind exception code. ///</summary> [Description(«Unwind exception code.«)] ERROR_UNWIND = 0x00021e, /// <summary> /// An invalid or unaligned stack was encountered during an unwind operation. ///</summary> [Description(«An invalid or unaligned stack was encountered during an unwind operation.«)] ERROR_BAD_STACK = 0x00021f, /// <summary> /// An invalid unwind target was encountered during an unwind operation. ///</summary> [Description(«An invalid unwind target was encountered during an unwind operation.«)] ERROR_INVALID_UNWIND_TARGET = 0x000220, /// <summary> /// Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort ///</summary> [Description(«Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort«)] ERROR_INVALID_PORT_ATTRIBUTES = 0x000221, /// <summary> /// Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port. ///</summary> [Description(«Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.«)] ERROR_PORT_MESSAGE_TOO_LONG = 0x000222, /// <summary> /// An attempt was made to lower a quota limit below the current usage. ///</summary> [Description(«An attempt was made to lower a quota limit below the current usage.«)] ERROR_INVALID_QUOTA_LOWER = 0x000223, /// <summary> /// An attempt was made to attach to a device that was already attached to another device. ///</summary> [Description(«An attempt was made to attach to a device that was already attached to another device.«)] ERROR_DEVICE_ALREADY_ATTACHED = 0x000224, /// <summary> /// An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references. ///</summary> [Description(«An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references.«)] ERROR_INSTRUCTION_MISALIGNMENT = 0x000225, /// <summary> /// Profiling not started. ///</summary> [Description(«Profiling not started.«)] ERROR_PROFILING_NOT_STARTED = 0x000226, /// <summary> /// Profiling not stopped. ///</summary> [Description(«Profiling not stopped.«)] ERROR_PROFILING_NOT_STOPPED = 0x000227, /// <summary> /// The passed ACL did not contain the minimum required information. ///</summary> [Description(«The passed ACL did not contain the minimum required information.«)] ERROR_COULD_NOT_INTERPRET = 0x000228, /// <summary> /// The number of active profiling objects is at the maximum and no more may be started. ///</summary> [Description(«The number of active profiling objects is at the maximum and no more may be started.«)] ERROR_PROFILING_AT_LIMIT = 0x000229, /// <summary> /// Used to indicate that an operation cannot continue without blocking for I/O. ///</summary> [Description(«Used to indicate that an operation cannot continue without blocking for I/O.«)] ERROR_CANT_WAIT = 0x00022a, /// <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> [Description(«Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.«)] ERROR_CANT_TERMINATE_SELF = 0x00022b, /// <summary> /// If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception. ///</summary> [Description(«If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.«)] ERROR_UNEXPECTED_MM_CREATE_ERR = 0x00022c, /// <summary> /// If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception. ///</summary> [Description(«If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.«)] ERROR_UNEXPECTED_MM_MAP_ERROR = 0x00022d, /// <summary> /// If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception. ///</summary> [Description(«If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.«)] ERROR_UNEXPECTED_MM_EXTEND_ERR = 0x00022e, /// <summary> /// A malformed function table was encountered during an unwind operation. ///</summary> [Description(«A malformed function table was encountered during an unwind operation.«)] ERROR_BAD_FUNCTION_TABLE = 0x00022f, /// <summary> /// Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. This causes the protection attempt to fail, which may cause a file creation attempt to fail. ///</summary> [Description(«Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. This causes the protection attempt to fail, which may cause a file creation attempt to fail.«)] ERROR_NO_GUID_TRANSLATION = 0x000230, /// <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> [Description(«Indicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors.«)] ERROR_INVALID_LDT_SIZE = 0x000231, /// <summary> /// Indicates that the starting value for the LDT information was not an integral multiple of the selector size. ///</summary> [Description(«Indicates that the starting value for the LDT information was not an integral multiple of the selector size.«)] ERROR_INVALID_LDT_OFFSET = 0x000233, /// <summary> /// Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors. ///</summary> [Description(«Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors.«)] ERROR_INVALID_LDT_DESCRIPTOR = 0x000234, /// <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> [Description(«Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token may only be performed when a process has zero or one threads.«)] ERROR_TOO_MANY_THREADS = 0x000235, /// <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> [Description(«An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified.«)] ERROR_THREAD_NOT_IN_PROCESS = 0x000236, /// <summary> /// Page file quota was exceeded. ///</summary> [Description(«Page file quota was exceeded.«)] ERROR_PAGEFILE_QUOTA_EXCEEDED = 0x000237, /// <summary> /// The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role. ///</summary> [Description(«The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.«)] ERROR_LOGON_SERVER_CONFLICT = 0x000238, /// <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> [Description(«The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required.«)] ERROR_SYNCHRONIZATION_REQUIRED = 0x000239, /// <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> [Description(«The NtCreateFile API failed. This error should never be returned to an application, it is a place holder for the Windows Lan Manager Redirector to use in its internal error mapping routines.«)] ERROR_NET_OPEN_FAILED = 0x00023a, /// <summary> /// {Privilege Failed} The I/O permissions for the process could not be changed. ///</summary> [Description(«{Privilege Failed} The I/O permissions for the process could not be changed.«)] ERROR_IO_PRIVILEGE_FAILED = 0x00023b, /// <summary> /// {Application Exit by CTRL+C} The application terminated as a result of a CTRL+C. ///</summary> [Description(«{Application Exit by CTRL+C} The application terminated as a result of a CTRL+C.«)] ERROR_CONTROL_C_EXIT = 0x00023c, /// <summary> /// {Missing System File} The required system file %hs is bad or missing. ///</summary> [Description(«{Missing System File} The required system file %hs is bad or missing.«)] ERROR_MISSING_SYSTEMFILE = 0x00023d, /// <summary> /// {Application Error} The exception %s (0x%08lx) occurred in the application at location 0x%08lx. ///</summary> [Description(«{Application Error} The exception %s (0x%08lx) occurred in the application at location 0x%08lx.«)] ERROR_UNHANDLED_EXCEPTION = 0x00023e, /// <summary> /// {Application Error} The application was unable to start correctly (0x%lx). Click OK to close the application. ///</summary> [Description(«{Application Error} The application was unable to start correctly (0x%lx). Click OK to close the application.«)] ERROR_APP_INIT_FAILURE = 0x00023f, /// <summary> /// {Unable to Create Paging File} The creation of the paging file %hs failed (%lx). The requested size was %ld. ///</summary> [Description(«{Unable to Create Paging File} The creation of the paging file %hs failed (%lx). The requested size was %ld.«)] ERROR_PAGEFILE_CREATE_FAILED = 0x000240, /// <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> [Description(«Windows cannot verify the digital signature for this file. A recent hardware or software change might have installed a file that is signed incorrectly or damaged, or that might be malicious software from an unknown source.«)] ERROR_INVALID_IMAGE_HASH = 0x000241, /// <summary> /// {No Paging File Specified} No paging file was specified in the system configuration. ///</summary> [Description(«{No Paging File Specified} No paging file was specified in the system configuration.«)] ERROR_NO_PAGEFILE = 0x000242, /// <summary> /// {EXCEPTION} A real-mode application issued a floating-point instruction and floating-point hardware is not present. ///</summary> [Description(«{EXCEPTION} A real-mode application issued a floating-point instruction and floating-point hardware is not present.«)] ERROR_ILLEGAL_FLOAT_CONTEXT = 0x000243, /// <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> [Description(«An event pair synchronization operation was performed using the thread specific client/server event pair object, but no event pair object was associated with the thread.«)] ERROR_NO_EVENT_PAIR = 0x000244, /// <summary> /// A Windows Server has an incorrect configuration. ///</summary> [Description(«A Windows Server has an incorrect configuration.«)] ERROR_DOMAIN_CTRLR_CONFIG_ERROR = 0x000245, /// <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> [Description(«An illegal character was encountered. For a multi-byte character set this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE.«)] ERROR_ILLEGAL_CHARACTER = 0x000246, /// <summary> /// The Unicode character is not defined in the Unicode character set installed on the system. ///</summary> [Description(«The Unicode character is not defined in the Unicode character set installed on the system.«)] ERROR_UNDEFINED_CHARACTER = 0x000247, /// <summary> /// The paging file cannot be created on a floppy diskette. ///</summary> [Description(«The paging file cannot be created on a floppy diskette.«)] ERROR_FLOPPY_VOLUME = 0x000248, /// <summary> /// The system BIOS failed to connect a system interrupt to the device or bus for which the device is connected. ///</summary> [Description(«The system BIOS failed to connect a system interrupt to the device or bus for which the device is connected.«)] ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT = 0x000249, /// <summary> /// This operation is only allowed for the Primary Domain Controller of the domain. ///</summary> [Description(«This operation is only allowed for the Primary Domain Controller of the domain.«)] ERROR_BACKUP_CONTROLLER = 0x00024a, /// <summary> /// An attempt was made to acquire a mutant such that its maximum count would have been exceeded. ///</summary> [Description(«An attempt was made to acquire a mutant such that its maximum count would have been exceeded.«)] ERROR_MUTANT_LIMIT_EXCEEDED = 0x00024b, /// <summary> /// A volume has been accessed for which a file system driver is required that has not yet been loaded. ///</summary> [Description(«A volume has been accessed for which a file system driver is required that has not yet been loaded.«)] ERROR_FS_DRIVER_REQUIRED = 0x00024c, /// <summary> /// {Registry File Failure} The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable. ///</summary> [Description(«{Registry File Failure} The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable.«)] ERROR_CANNOT_LOAD_REGISTRY_FILE = 0x00024d, /// <summary> /// {Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error. ///</summary> [Description(«{Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error.«)] ERROR_DEBUG_ATTACH_FAILED = 0x00024e, /// <summary> /// {Fatal System Error} The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). The system has been shut down. ///</summary> [Description(«{Fatal System Error} The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). The system has been shut down.«)] ERROR_SYSTEM_PROCESS_TERMINATED = 0x00024f, /// <summary> /// {Data Not Accepted} The TDI client could not handle the data received during an indication. ///</summary> [Description(«{Data Not Accepted} The TDI client could not handle the data received during an indication.«)] ERROR_DATA_NOT_ACCEPTED = 0x000250, /// <summary> /// NTVDM encountered a hard error. ///</summary> [Description(«NTVDM encountered a hard error.«)] ERROR_VDM_HARD_ERROR = 0x000251, /// <summary> /// {Cancel Timeout} The driver %hs failed to complete a cancelled I/O request in the allotted time. ///</summary> [Description(«{Cancel Timeout} The driver %hs failed to complete a cancelled I/O request in the allotted time.«)] ERROR_DRIVER_CANCEL_TIMEOUT = 0x000252, /// <summary> /// {Reply Message Mismatch} An attempt was made to reply to an LPC message, but the thread specified by the client ID in the message was not waiting on that message. ///</summary> [Description(«{Reply Message Mismatch} An attempt was made to reply to an LPC message, but the thread specified by the client ID in the message was not waiting on that message.«)] ERROR_REPLY_MESSAGE_MISMATCH = 0x000253, /// <summary> /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs. The data has been lost. This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere. ///</summary> [Description(«{Delayed Write Failed} Windows was unable to save all the data for the file %hs. The data has been lost. This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere.«)] ERROR_LOST_WRITEBEHIND_DATA = 0x000254, /// <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> [Description(«The parameter(s) passed to the server in the client/server shared memory window were invalid. Too much data may have been put in the shared memory window.«)] ERROR_CLIENT_SERVER_PARAMETERS_INVALID = 0x000255, /// <summary> /// The stream is not a tiny stream. ///</summary> [Description(«The stream is not a tiny stream.«)] ERROR_NOT_TINY_STREAM = 0x000256, /// <summary> /// The request must be handled by the stack overflow code. ///</summary> [Description(«The request must be handled by the stack overflow code.«)] ERROR_STACK_OVERFLOW_READ = 0x000257, /// <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> [Description(«Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing onode is moved or the extent stream is converted to a large stream.«)] ERROR_CONVERT_TO_LARGE = 0x000258, /// <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> [Description(«The attempt to find the object found an object matching by ID on the volume but it is out of the scope of the handle used for the operation.«)] ERROR_FOUND_OUT_OF_SCOPE = 0x000259, /// <summary> /// The bucket array must be grown. Retry transaction after doing so. ///</summary> [Description(«The bucket array must be grown. Retry transaction after doing so.«)] ERROR_ALLOCATE_BUCKET = 0x00025a, /// <summary> /// The user/kernel marshalling buffer has overflowed. ///</summary> [Description(«The user/kernel marshalling buffer has overflowed.«)] ERROR_MARSHALL_OVERFLOW = 0x00025b, /// <summary> /// The supplied variant structure contains invalid data. ///</summary> [Description(«The supplied variant structure contains invalid data.«)] ERROR_INVALID_VARIANT = 0x00025c, /// <summary> /// The specified buffer contains ill-formed data. ///</summary> [Description(«The specified buffer contains ill-formed data.«)] ERROR_BAD_COMPRESSION_BUFFER = 0x00025d, /// <summary> /// {Audit Failed} An attempt to generate a security audit failed. ///</summary> [Description(«{Audit Failed} An attempt to generate a security audit failed.«)] ERROR_AUDIT_FAILED = 0x00025e, /// <summary> /// The timer resolution was not previously set by the current process. ///</summary> [Description(«The timer resolution was not previously set by the current process.«)] ERROR_TIMER_RESOLUTION_NOT_SET = 0x00025f, /// <summary> /// There is insufficient account information to log you on. ///</summary> [Description(«There is insufficient account information to log you on.«)] ERROR_INSUFFICIENT_LOGON_INFO = 0x000260, /// <summary> /// {Invalid DLL Entrypoint} The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO may cause the application to operate incorrectly. ///</summary> [Description(«{Invalid DLL Entrypoint} The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO may cause the application to operate incorrectly.«)] ERROR_BAD_DLL_ENTRYPOINT = 0x000261, /// <summary> /// {Invalid Service Callback Entrypoint} The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process may operate incorrectly. ///</summary> [Description(«{Invalid Service Callback Entrypoint} The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process may operate incorrectly.«)] ERROR_BAD_SERVICE_ENTRYPOINT = 0x000262, /// <summary> /// There is an IP address conflict with another system on the network. ///</summary> [Description(«There is an IP address conflict with another system on the network.«)] ERROR_IP_ADDRESS_CONFLICT1 = 0x000263, /// <summary> /// There is an IP address conflict with another system on the network. ///</summary> [Description(«There is an IP address conflict with another system on the network.«)] ERROR_IP_ADDRESS_CONFLICT2 = 0x000264, /// <summary> /// {Low On Registry Space} The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored. ///</summary> [Description(«{Low On Registry Space} The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored.«)] ERROR_REGISTRY_QUOTA_LIMIT = 0x000265, /// <summary> /// A callback return system service cannot be executed when no callback is active. ///</summary> [Description(«A callback return system service cannot be executed when no callback is active.«)] ERROR_NO_CALLBACK_ACTIVE = 0x000266, /// <summary> /// The password provided is too short to meet the policy of your user account. Please choose a longer password. ///</summary> [Description(«The password provided is too short to meet the policy of your user account. Please choose a longer password.«)] ERROR_PWD_TOO_SHORT = 0x000267, /// <summary> /// The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar, but potentially discovered, password. If you feel your password has been compromised then please contact your administrator immediately to have a new one assigned. ///</summary> [Description(«The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar, but potentially discovered, password. If you feel your password has been compromised then please contact your administrator immediately to have a new one assigned.«)] ERROR_PWD_TOO_RECENT = 0x000268, /// <summary> /// You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Please select a password that you have not previously used. ///</summary> [Description(«You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Please select a password that you have not previously used.«)] ERROR_PWD_HISTORY_CONFLICT = 0x000269, /// <summary> /// The specified compression format is unsupported. ///</summary> [Description(«The specified compression format is unsupported.«)] ERROR_UNSUPPORTED_COMPRESSION = 0x00026a, /// <summary> /// The specified hardware profile configuration is invalid. ///</summary> [Description(«The specified hardware profile configuration is invalid.«)] ERROR_INVALID_HW_PROFILE = 0x00026b, /// <summary> /// The specified Plug and Play registry device path is invalid. ///</summary> [Description(«The specified Plug and Play registry device path is invalid.«)] ERROR_INVALID_PLUGPLAY_DEVICE_PATH = 0x00026c, /// <summary> /// The specified quota list is internally inconsistent with its descriptor. ///</summary> [Description(«The specified quota list is internally inconsistent with its descriptor.«)] ERROR_QUOTA_LIST_INCONSISTENT = 0x00026d, /// <summary> /// {Windows Evaluation Notification} The evaluation period for this installation of Windows has expired. This system will shutdown in 1 hour. To restore access to this installation of Windows, please upgrade this installation using a licensed distribution of this product. ///</summary> [Description(«{Windows Evaluation Notification} The evaluation period for this installation of Windows has expired. This system will shutdown in 1 hour. To restore access to this installation of Windows, please upgrade this installation using a licensed distribution of this product.«)] ERROR_EVALUATION_EXPIRATION = 0x00026e, /// <summary> /// {Illegal System DLL Relocation} The system DLL %hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL %hs occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL. ///</summary> [Description(«{Illegal System DLL Relocation} The system DLL %hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL %hs occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL.«)] ERROR_ILLEGAL_DLL_RELOCATION = 0x00026f, /// <summary> /// {DLL Initialization Failed} The application failed to initialize because the window station is shutting down. ///</summary> [Description(«{DLL Initialization Failed} The application failed to initialize because the window station is shutting down.«)] ERROR_DLL_INIT_FAILED_LOGOFF = 0x000270, /// <summary> /// The validation process needs to continue on to the next step. ///</summary> [Description(«The validation process needs to continue on to the next step.«)] ERROR_VALIDATE_CONTINUE = 0x000271, /// <summary> /// There are no more matches for the current index enumeration. ///</summary> [Description(«There are no more matches for the current index enumeration.«)] ERROR_NO_MORE_MATCHES = 0x000272, /// <summary> /// The range could not be added to the range list because of a conflict. ///</summary> [Description(«The range could not be added to the range list because of a conflict.«)] ERROR_RANGE_LIST_CONFLICT = 0x000273, /// <summary> /// The server process is running under a SID different than that required by client. ///</summary> [Description(«The server process is running under a SID different than that required by client.«)] ERROR_SERVER_SID_MISMATCH = 0x000274, /// <summary> /// A group marked use for deny only cannot be enabled. ///</summary> [Description(«A group marked use for deny only cannot be enabled.«)] ERROR_CANT_ENABLE_DENY_ONLY = 0x000275, /// <summary> /// {EXCEPTION} Multiple floating point faults. ///</summary> [Description(«{EXCEPTION} Multiple floating point faults.«)] ERROR_FLOAT_MULTIPLE_FAULTS = 0x000276, /// <summary> /// {EXCEPTION} Multiple floating point traps. ///</summary> [Description(«{EXCEPTION} Multiple floating point traps.«)] ERROR_FLOAT_MULTIPLE_TRAPS = 0x000277, /// <summary> /// The requested interface is not supported. ///</summary> [Description(«The requested interface is not supported.«)] ERROR_NOINTERFACE = 0x000278, /// <summary> /// {System Standby Failed} The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode. ///</summary> [Description(«{System Standby Failed} The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode.«)] ERROR_DRIVER_FAILED_SLEEP = 0x000279, /// <summary> /// The system file %1 has become corrupt and has been replaced. ///</summary> [Description(«The system file %1 has become corrupt and has been replaced.«)] ERROR_CORRUPT_SYSTEM_FILE = 0x00027a, /// <summary> /// {Virtual Memory Minimum Too Low} Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process, memory requests for some applications may be denied. For more information, see Help. ///</summary> [Description(«{Virtual Memory Minimum Too Low} Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process, memory requests for some applications may be denied. For more information, see Help.«)] ERROR_COMMITMENT_MINIMUM = 0x00027b, /// <summary> /// A device was removed so enumeration must be restarted. ///</summary> [Description(«A device was removed so enumeration must be restarted.«)] ERROR_PNP_RESTART_ENUMERATION = 0x00027c, /// <summary> /// {Fatal System Error} The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down. ///</summary> [Description(«{Fatal System Error} The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down.«)] ERROR_SYSTEM_IMAGE_BAD_SIGNATURE = 0x00027d, /// <summary> /// Device will not start without a reboot. ///</summary> [Description(«Device will not start without a reboot.«)] ERROR_PNP_REBOOT_REQUIRED = 0x00027e, /// <summary> /// There is not enough power to complete the requested operation. ///</summary> [Description(«There is not enough power to complete the requested operation.«)] ERROR_INSUFFICIENT_POWER = 0x00027f, /// <summary> /// ERROR_MULTIPLE_FAULT_VIOLATION ///</summary> [Description(«ERROR_MULTIPLE_FAULT_VIOLATION«)] ERROR_MULTIPLE_FAULT_VIOLATION = 0x000280, /// <summary> /// The system is in the process of shutting down. ///</summary> [Description(«The system is in the process of shutting down.«)] ERROR_SYSTEM_SHUTDOWN = 0x000281, /// <summary> /// An attempt to remove a processes DebugPort was made, but a port was not already associated with the process. ///</summary> [Description(«An attempt to remove a processes DebugPort was made, but a port was not already associated with the process.«)] ERROR_PORT_NOT_SET = 0x000282, /// <summary> /// This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller. ///</summary> [Description(«This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller.«)] ERROR_DS_VERSION_CHECK_FAILURE = 0x000283, /// <summary> /// The specified range could not be found in the range list. ///</summary> [Description(«The specified range could not be found in the range list.«)] ERROR_RANGE_NOT_FOUND = 0x000284, /// <summary> /// The driver was not loaded because the system is booting into safe mode. ///</summary> [Description(«The driver was not loaded because the system is booting into safe mode.«)] ERROR_NOT_SAFE_MODE_DRIVER = 0x000286, /// <summary> /// The driver was not loaded because it failed its initialization call. ///</summary> [Description(«The driver was not loaded because it failed its initialization call.«)] ERROR_FAILED_DRIVER_ENTRY = 0x000287, /// <summary> /// The «%hs» encountered an error while applying power or reading the device configuration. This may be caused by a failure of your hardware or by a poor connection. ///</summary> [Description(«The «%hs« encountered an error while applying power or reading the device configuration. This may be caused by a failure of your hardware or by a poor connection.«)] ERROR_DEVICE_ENUMERATION_ERROR = 0x000288, /// <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> [Description(«The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached.«)] ERROR_MOUNT_POINT_NOT_RESOLVED = 0x000289, /// <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> [Description(«The device object parameter is either not a valid device object or is not attached to the volume specified by the file name.«)] ERROR_INVALID_DEVICE_OBJECT_PARAMETER = 0x00028a, /// <summary> /// A Machine Check Error has occurred. Please check the system eventlog for additional information. ///</summary> [Description(«A Machine Check Error has occurred. Please check the system eventlog for additional information.«)] ERROR_MCA_OCCURED = 0x00028b, /// <summary> /// There was error [%2] processing the driver database. ///</summary> [Description(«There was error [%2] processing the driver database.«)] ERROR_DRIVER_DATABASE_ERROR = 0x00028c, /// <summary> /// System hive size has exceeded its limit. ///</summary> [Description(«System hive size has exceeded its limit.«)] ERROR_SYSTEM_HIVE_TOO_LARGE = 0x00028d, /// <summary> /// The driver could not be loaded because a previous version of the driver is still in memory. ///</summary> [Description(«The driver could not be loaded because a previous version of the driver is still in memory.«)] ERROR_DRIVER_FAILED_PRIOR_UNLOAD = 0x00028e, /// <summary> /// {Volume Shadow Copy Service} Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation. ///</summary> [Description(«{Volume Shadow Copy Service} Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.«)] ERROR_VOLSNAP_PREPARE_HIBERNATE = 0x00028f, /// <summary> /// The system has failed to hibernate (The error code is %hs). Hibernation will be disabled until the system is restarted. ///</summary> [Description(«The system has failed to hibernate (The error code is %hs). Hibernation will be disabled until the system is restarted.«)] ERROR_HIBERNATION_FAILURE = 0x000290, /// <summary> /// The password provided is too long to meet the policy of your user account. Please choose a shorter password. ///</summary> [Description(«The password provided is too long to meet the policy of your user account. Please choose a shorter password.«)] ERROR_PWD_TOO_LONG = 0x000291, /// <summary> /// The requested operation could not be completed due to a file system limitation. ///</summary> [Description(«The requested operation could not be completed due to a file system limitation.«)] ERROR_FILE_SYSTEM_LIMITATION = 0x000299, /// <summary> /// An assertion failure has occurred. ///</summary> [Description(«An assertion failure has occurred.«)] ERROR_ASSERTION_FAILURE = 0x00029c, /// <summary> /// An error occurred in the ACPI subsystem. ///</summary> [Description(«An error occurred in the ACPI subsystem.«)] ERROR_ACPI_ERROR = 0x00029d, /// <summary> /// WOW Assertion Error. ///</summary> [Description(«WOW Assertion Error.«)] ERROR_WOW_ASSERTION = 0x00029e, /// <summary> /// A device is missing in the system BIOS MPS table. This device will not be used. Please contact your system vendor for system BIOS update. ///</summary> [Description(«A device is missing in the system BIOS MPS table. This device will not be used. Please contact your system vendor for system BIOS update.«)] ERROR_PNP_BAD_MPS_TABLE = 0x00029f, /// <summary> /// A translator failed to translate resources. ///</summary> [Description(«A translator failed to translate resources.«)] ERROR_PNP_TRANSLATION_FAILED = 0x0002a0, /// <summary> /// A IRQ translator failed to translate resources. ///</summary> [Description(«A IRQ translator failed to translate resources.«)] ERROR_PNP_IRQ_TRANSLATION_FAILED = 0x0002a1, /// <summary> /// Driver %2 returned invalid ID for a child device (%3). ///</summary> [Description(«Driver %2 returned invalid ID for a child device (%3).«)] ERROR_PNP_INVALID_ID = 0x0002a2, /// <summary> /// {Kernel Debugger Awakened} the system debugger was awakened by an interrupt. ///</summary> [Description(«{Kernel Debugger Awakened} the system debugger was awakened by an interrupt.«)] ERROR_WAKE_SYSTEM_DEBUGGER = 0x0002a3, /// <summary> /// {Handles Closed} Handles to objects have been automatically closed as a result of the requested operation. ///</summary> [Description(«{Handles Closed} Handles to objects have been automatically closed as a result of the requested operation.«)] ERROR_HANDLES_CLOSED = 0x0002a4, /// <summary> /// {Too Much Information} The specified access control list (ACL) contained more information than was expected. ///</summary> [Description(«{Too Much Information} The specified access control list (ACL) contained more information than was expected.«)] ERROR_EXTRANEOUS_INFORMATION = 0x0002a5, /// <summary> /// This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired). ///</summary> [Description(«This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired).«)] ERROR_RXACT_COMMIT_NECESSARY = 0x0002a6, /// <summary> /// {Media Changed} The media may have changed. ///</summary> [Description(«{Media Changed} The media may have changed.«)] ERROR_MEDIA_CHECK = 0x0002a7, /// <summary> /// {GUID Substitution} During the translation of a global identifier (GUID) to a Windows security ID (SID), no administratively-defined GUID prefix was found. A substitute prefix was used, which will not compromise system security. However, this may provide a more restrictive access than intended. ///</summary> [Description(«{GUID Substitution} During the translation of a global identifier (GUID) to a Windows security ID (SID), no administratively-defined GUID prefix was found. A substitute prefix was used, which will not compromise system security. However, this may provide a more restrictive access than intended.«)] ERROR_GUID_SUBSTITUTION_MADE = 0x0002a8, /// <summary> /// The create operation stopped after reaching a symbolic link. ///</summary> [Description(«The create operation stopped after reaching a symbolic link.«)] ERROR_STOPPED_ON_SYMLINK = 0x0002a9, /// <summary> /// A long jump has been executed. ///</summary> [Description(«A long jump has been executed.«)] ERROR_LONGJUMP = 0x0002aa, /// <summary> /// The Plug and Play query operation was not successful. ///</summary> [Description(«The Plug and Play query operation was not successful.«)] ERROR_PLUGPLAY_QUERY_VETOED = 0x0002ab, /// <summary> /// A frame consolidation has been executed. ///</summary> [Description(«A frame consolidation has been executed.«)] ERROR_UNWIND_CONSOLIDATE = 0x0002ac, /// <summary> /// {Registry Hive Recovered} Registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost. ///</summary> [Description(«{Registry Hive Recovered} Registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost.«)] ERROR_REGISTRY_HIVE_RECOVERED = 0x0002ad, /// <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> [Description(«The application is attempting to run executable code from the module %hs. This may be insecure. An alternative, %hs, is available. Should the application use the secure module %hs?«)] ERROR_DLL_MIGHT_BE_INSECURE = 0x0002ae, /// <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> [Description(«The application is loading executable code from the module %hs. This is secure, but may be incompatible with previous releases of the operating system. An alternative, %hs, is available. Should the application use the secure module %hs?«)] ERROR_DLL_MIGHT_BE_INCOMPATIBLE = 0x0002af, /// <summary> /// Debugger did not handle the exception. ///</summary> [Description(«Debugger did not handle the exception.«)] ERROR_DBG_EXCEPTION_NOT_HANDLED = 0x0002b0, /// <summary> /// Debugger will reply later. ///</summary> [Description(«Debugger will reply later.«)] ERROR_DBG_REPLY_LATER = 0x0002b1, /// <summary> /// Debugger cannot provide handle. ///</summary> [Description(«Debugger cannot provide handle.«)] ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE = 0x0002b2, /// <summary> /// Debugger terminated thread. ///</summary> [Description(«Debugger terminated thread.«)] ERROR_DBG_TERMINATE_THREAD = 0x0002b3, /// <summary> /// Debugger terminated process. ///</summary> [Description(«Debugger terminated process.«)] ERROR_DBG_TERMINATE_PROCESS = 0x0002b4, /// <summary> /// Debugger got control C. ///</summary> [Description(«Debugger got control C.«)] ERROR_DBG_CONTROL_C = 0x0002b5, /// <summary> /// Debugger printed exception on control C. ///</summary> [Description(«Debugger printed exception on control C.«)] ERROR_DBG_PRINTEXCEPTION_C = 0x0002b6, /// <summary> /// Debugger received RIP exception. ///</summary> [Description(«Debugger received RIP exception.«)] ERROR_DBG_RIPEXCEPTION = 0x0002b7, /// <summary> /// Debugger received control break. ///</summary> [Description(«Debugger received control break.«)] ERROR_DBG_CONTROL_BREAK = 0x0002b8, /// <summary> /// Debugger command communication exception. ///</summary> [Description(«Debugger command communication exception.«)] ERROR_DBG_COMMAND_EXCEPTION = 0x0002b9, /// <summary> /// {Object Exists} An attempt was made to create an object and the object name already existed. ///</summary> [Description(«{Object Exists} An attempt was made to create an object and the object name already existed.«)] ERROR_OBJECT_NAME_EXISTS = 0x0002ba, /// <summary> /// {Thread Suspended} A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded. ///</summary> [Description(«{Thread Suspended} A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded.«)] ERROR_THREAD_WAS_SUSPENDED = 0x0002bb, /// <summary> /// {Image Relocated} An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image. ///</summary> [Description(«{Image Relocated} An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image.«)] ERROR_IMAGE_NOT_AT_BASE = 0x0002bc, /// <summary> /// This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created. ///</summary> [Description(«This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created.«)] ERROR_RXACT_STATE_CREATED = 0x0002bd, /// <summary> /// {Segment Load} A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments. ///</summary> [Description(«{Segment Load} A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments.«)] ERROR_SEGMENT_NOTIFICATION = 0x0002be, /// <summary> /// {Invalid Current Directory} The process cannot switch to the startup current directory %hs. Select OK to set current directory to %hs, or select CANCEL to exit. ///</summary> [Description(«{Invalid Current Directory} The process cannot switch to the startup current directory %hs. Select OK to set current directory to %hs, or select CANCEL to exit.«)] ERROR_BAD_CURRENT_DIRECTORY = 0x0002bf, /// <summary> /// {Redundant Read} To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was unable to reassign the failing area of the device. ///</summary> [Description(«{Redundant Read} To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was unable to reassign the failing area of the device.«)] ERROR_FT_READ_RECOVERY_FROM_BACKUP = 0x0002c0, /// <summary> /// {Redundant Write} To satisfy a write request, the NT fault-tolerant file system successfully wrote a redundant copy of the information. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was not able to reassign the failing area of the device. ///</summary> [Description(«{Redundant Write} To satisfy a write request, the NT fault-tolerant file system successfully wrote a redundant copy of the information. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was not able to reassign the failing area of the device.«)] ERROR_FT_WRITE_RECOVERY = 0x0002c1, /// <summary> /// {Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load. ///</summary> [Description(«{Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load.«)] ERROR_IMAGE_MACHINE_TYPE_MISMATCH = 0x0002c2, /// <summary> /// {Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later. ///</summary> [Description(«{Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later.«)] ERROR_RECEIVE_PARTIAL = 0x0002c3, /// <summary> /// {Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system. ///</summary> [Description(«{Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system.«)] ERROR_RECEIVE_EXPEDITED = 0x0002c4, /// <summary> /// {Partial Expedited Data Received} The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later. ///</summary> [Description(«{Partial Expedited Data Received} The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later.«)] ERROR_RECEIVE_PARTIAL_EXPEDITED = 0x0002c5, /// <summary> /// {TDI Event Done} The TDI indication has completed successfully. ///</summary> [Description(«{TDI Event Done} The TDI indication has completed successfully.«)] ERROR_EVENT_DONE = 0x0002c6, /// <summary> /// {TDI Event Pending} The TDI indication has entered the pending state. ///</summary> [Description(«{TDI Event Pending} The TDI indication has entered the pending state.«)] ERROR_EVENT_PENDING = 0x0002c7, /// <summary> /// Checking file system on %wZ. ///</summary> [Description(«Checking file system on %wZ.«)] ERROR_CHECKING_FILE_SYSTEM = 0x0002c8, /// <summary> /// {Fatal Application Exit} %hs. ///</summary> [Description(«{Fatal Application Exit} %hs.«)] ERROR_FATAL_APP_EXIT = 0x0002c9, /// <summary> /// The specified registry key is referenced by a predefined handle. ///</summary> [Description(«The specified registry key is referenced by a predefined handle.«)] ERROR_PREDEFINED_HANDLE = 0x0002ca, /// <summary> /// {Page Unlocked} The page protection of a locked page was changed to ‘No Access’ and the page was unlocked from memory and from the process. ///</summary> [Description(«{Page Unlocked} The page protection of a locked page was changed to ‘No Access’ and the page was unlocked from memory and from the process.«)] ERROR_WAS_UNLOCKED = 0x0002cb, /// <summary> /// %hs ///</summary> [Description(«%hs«)] ERROR_SERVICE_NOTIFICATION = 0x0002cc, /// <summary> /// {Page Locked} One of the pages to lock was already locked. ///</summary> [Description(«{Page Locked} One of the pages to lock was already locked.«)] ERROR_WAS_LOCKED = 0x0002cd, /// <summary> /// Application popup: %1 : %2 ///</summary> [Description(«Application popup: %1 : %2«)] ERROR_LOG_HARD_ERROR = 0x0002ce, /// <summary> /// ERROR_ALREADY_WIN32 ///</summary> [Description(«ERROR_ALREADY_WIN32«)] ERROR_ALREADY_WIN32 = 0x0002cf, /// <summary> /// {Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine. ///</summary> [Description(«{Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine.«)] ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE = 0x0002d0, /// <summary> /// A yield execution was performed and no thread was available to run. ///</summary> [Description(«A yield execution was performed and no thread was available to run.«)] ERROR_NO_YIELD_PERFORMED = 0x0002d1, /// <summary> /// The resumable flag to a timer API was ignored. ///</summary> [Description(«The resumable flag to a timer API was ignored.«)] ERROR_TIMER_RESUME_IGNORED = 0x0002d2, /// <summary> /// The arbiter has deferred arbitration of these resources to its parent. ///</summary> [Description(«The arbiter has deferred arbitration of these resources to its parent.«)] ERROR_ARBITRATION_UNHANDLED = 0x0002d3, /// <summary> /// The inserted CardBus device cannot be started because of a configuration error on «%hs». ///</summary> [Description(«The inserted CardBus device cannot be started because of a configuration error on «%hs«.«)] ERROR_CARDBUS_NOT_SUPPORTED = 0x0002d4, /// <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> [Description(«The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. Should problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported.«)] ERROR_MP_PROCESSOR_MISMATCH = 0x0002d5, /// <summary> /// The system was put into hibernation. ///</summary> [Description(«The system was put into hibernation.«)] ERROR_HIBERNATED = 0x0002d6, /// <summary> /// The system was resumed from hibernation. ///</summary> [Description(«The system was resumed from hibernation.«)] ERROR_RESUME_HIBERNATION = 0x0002d7, /// <summary> /// Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3]. ///</summary> [Description(«Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3].«)] ERROR_FIRMWARE_UPDATED = 0x0002d8, /// <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> [Description(«A device driver is leaking locked I/O pages causing system degradation. The system has automatically enabled tracking code in order to try and catch the culprit.«)] ERROR_DRIVERS_LEAKING_LOCKED_PAGES = 0x0002d9, /// <summary> /// The system has awoken. ///</summary> [Description(«The system has awoken.«)] ERROR_WAKE_SYSTEM = 0x0002da, /// <summary> /// ERROR_WAIT_1 ///</summary> [Description(«ERROR_WAIT_1«)] ERROR_WAIT_1 = 0x0002db, /// <summary> /// ERROR_WAIT_2 ///</summary> [Description(«ERROR_WAIT_2«)] ERROR_WAIT_2 = 0x0002dc, /// <summary> /// ERROR_WAIT_3 ///</summary> [Description(«ERROR_WAIT_3«)] ERROR_WAIT_3 = 0x0002dd, /// <summary> /// ERROR_WAIT_63 ///</summary> [Description(«ERROR_WAIT_63«)] ERROR_WAIT_63 = 0x0002de, /// <summary> /// ERROR_ABANDONED_WAIT_0 ///</summary> [Description(«ERROR_ABANDONED_WAIT_0«)] ERROR_ABANDONED_WAIT_0 = 0x0002df, /// <summary> /// ERROR_ABANDONED_WAIT_63 ///</summary> [Description(«ERROR_ABANDONED_WAIT_63«)] ERROR_ABANDONED_WAIT_63 = 0x0002e0, /// <summary> /// ERROR_USER_APC ///</summary> [Description(«ERROR_USER_APC«)] ERROR_USER_APC = 0x0002e1, /// <summary> /// ERROR_KERNEL_APC ///</summary> [Description(«ERROR_KERNEL_APC«)] ERROR_KERNEL_APC = 0x0002e2, /// <summary> /// ERROR_ALERTED ///</summary> [Description(«ERROR_ALERTED«)] ERROR_ALERTED = 0x0002e3, /// <summary> /// The requested operation requires elevation. ///</summary> [Description(«The requested operation requires elevation.«)] ERROR_ELEVATION_REQUIRED = 0x0002e4, /// <summary> /// A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. ///</summary> [Description(«A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.«)] ERROR_REPARSE = 0x0002e5, /// <summary> /// An open/create operation completed while an oplock break is underway. ///</summary> [Description(«An open/create operation completed while an oplock break is underway.«)] ERROR_OPLOCK_BREAK_IN_PROGRESS = 0x0002e6, /// <summary> /// A new volume has been mounted by a file system. ///</summary> [Description(«A new volume has been mounted by a file system.«)] ERROR_VOLUME_MOUNTED = 0x0002e7, /// <summary> /// This success level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has now been completed. ///</summary> [Description(«This success level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has now been completed.«)] ERROR_RXACT_COMMITTED = 0x0002e8, /// <summary> /// This indicates that a notify change request has been completed due to closing the handle which made the notify change request. ///</summary> [Description(«This indicates that a notify change request has been completed due to closing the handle which made the notify change request.«)] ERROR_NOTIFY_CLEANUP = 0x0002e9, /// <summary> /// {Connect Failure on Primary Transport} An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed. The computer WAS able to connect on a secondary transport. ///</summary> [Description(«{Connect Failure on Primary Transport} An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed. The computer WAS able to connect on a secondary transport.«)] ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED = 0x0002ea, /// <summary> /// Page fault was a transition fault. ///</summary> [Description(«Page fault was a transition fault.«)] ERROR_PAGE_FAULT_TRANSITION = 0x0002eb, /// <summary> /// Page fault was a demand zero fault. ///</summary> [Description(«Page fault was a demand zero fault.«)] ERROR_PAGE_FAULT_DEMAND_ZERO = 0x0002ec, /// <summary> /// Page fault was a demand zero fault. ///</summary> [Description(«Page fault was a demand zero fault.«)] ERROR_PAGE_FAULT_COPY_ON_WRITE = 0x0002ed, /// <summary> /// Page fault was a demand zero fault. ///</summary> [Description(«Page fault was a demand zero fault.«)] ERROR_PAGE_FAULT_GUARD_PAGE = 0x0002ee, /// <summary> /// Page fault was satisfied by reading from a secondary storage device. ///</summary> [Description(«Page fault was satisfied by reading from a secondary storage device.«)] ERROR_PAGE_FAULT_PAGING_FILE = 0x0002ef, /// <summary> /// Cached page was locked during operation. ///</summary> [Description(«Cached page was locked during operation.«)] ERROR_CACHE_PAGE_LOCKED = 0x0002f0, /// <summary> /// Crash dump exists in paging file. ///</summary> [Description(«Crash dump exists in paging file.«)] ERROR_CRASH_DUMP = 0x0002f1, /// <summary> /// Specified buffer contains all zeros. ///</summary> [Description(«Specified buffer contains all zeros.«)] ERROR_BUFFER_ALL_ZEROS = 0x0002f2, /// <summary> /// A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. ///</summary> [Description(«A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.«)] ERROR_REPARSE_OBJECT = 0x0002f3, /// <summary> /// The device has succeeded a query-stop and its resource requirements have changed. ///</summary> [Description(«The device has succeeded a query-stop and its resource requirements have changed.«)] ERROR_RESOURCE_REQUIREMENTS_CHANGED = 0x0002f4, /// <summary> /// The translator has translated these resources into the global space and no further translations should be performed. ///</summary> [Description(«The translator has translated these resources into the global space and no further translations should be performed.«)] ERROR_TRANSLATION_COMPLETE = 0x0002f5, /// <summary> /// A process being terminated has no threads to terminate. ///</summary> [Description(«A process being terminated has no threads to terminate.«)] ERROR_NOTHING_TO_TERMINATE = 0x0002f6, /// <summary> /// The specified process is not part of a job. ///</summary> [Description(«The specified process is not part of a job.«)] ERROR_PROCESS_NOT_IN_JOB = 0x0002f7, /// <summary> /// The specified process is part of a job. ///</summary> [Description(«The specified process is part of a job.«)] ERROR_PROCESS_IN_JOB = 0x0002f8, /// <summary> /// {Volume Shadow Copy Service} The system is now ready for hibernation. ///</summary> [Description(«{Volume Shadow Copy Service} The system is now ready for hibernation.«)] ERROR_VOLSNAP_HIBERNATE_READY = 0x0002f9, /// <summary> /// A file system or file system filter driver has successfully completed an FsFilter operation. ///</summary> [Description(«A file system or file system filter driver has successfully completed an FsFilter operation.«)] ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY = 0x0002fa, /// <summary> /// The specified interrupt vector was already connected. ///</summary> [Description(«The specified interrupt vector was already connected.«)] ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED = 0x0002fb, /// <summary> /// The specified interrupt vector is still connected. ///</summary> [Description(«The specified interrupt vector is still connected.«)] ERROR_INTERRUPT_STILL_CONNECTED = 0x0002fc, /// <summary> /// An operation is blocked waiting for an oplock. ///</summary> [Description(«An operation is blocked waiting for an oplock.«)] ERROR_WAIT_FOR_OPLOCK = 0x0002fd, /// <summary> /// Debugger handled exception. ///</summary> [Description(«Debugger handled exception.«)] ERROR_DBG_EXCEPTION_HANDLED = 0x0002fe, /// <summary> /// Debugger continued. ///</summary> [Description(«Debugger continued.«)] ERROR_DBG_CONTINUE = 0x0002ff, /// <summary> /// An exception occurred in a user mode callback and the kernel callback frame should be removed. ///</summary> [Description(«An exception occurred in a user mode callback and the kernel callback frame should be removed.«)] ERROR_CALLBACK_POP_STACK = 0x000300, /// <summary> /// Compression is disabled for this volume. ///</summary> [Description(«Compression is disabled for this volume.«)] ERROR_COMPRESSION_DISABLED = 0x000301, /// <summary> /// The data provider cannot fetch backwards through a result set. ///</summary> [Description(«The data provider cannot fetch backwards through a result set.«)] ERROR_CANTFETCHBACKWARDS = 0x000302, /// <summary> /// The data provider cannot scroll backwards through a result set. ///</summary> [Description(«The data provider cannot scroll backwards through a result set.«)] ERROR_CANTSCROLLBACKWARDS = 0x000303, /// <summary> /// The data provider requires that previously fetched data is released before asking for more data. ///</summary> [Description(«The data provider requires that previously fetched data is released before asking for more data.«)] ERROR_ROWSNOTRELEASED = 0x000304, /// <summary> /// The data provider was not able to interpret the flags set for a column binding in an accessor. ///</summary> [Description(«The data provider was not able to interpret the flags set for a column binding in an accessor.«)] ERROR_BAD_ACCESSOR_FLAGS = 0x000305, /// <summary> /// One or more errors occurred while processing the request. ///</summary> [Description(«One or more errors occurred while processing the request.«)] ERROR_ERRORS_ENCOUNTERED = 0x000306, /// <summary> /// The implementation is not capable of performing the request. ///</summary> [Description(«The implementation is not capable of performing the request.«)] ERROR_NOT_CAPABLE = 0x000307, /// <summary> /// The client of a component requested an operation which is not valid given the state of the component instance. ///</summary> [Description(«The client of a component requested an operation which is not valid given the state of the component instance.«)] ERROR_REQUEST_OUT_OF_SEQUENCE = 0x000308, /// <summary> /// A version number could not be parsed. ///</summary> [Description(«A version number could not be parsed.«)] ERROR_VERSION_PARSE_ERROR = 0x000309, /// <summary> /// The iterator’s start position is invalid. ///</summary> [Description(«The iterator’s start position is invalid.«)] ERROR_BADSTARTPOSITION = 0x00030a, /// <summary> /// The hardware has reported an uncorrectable memory error. ///</summary> [Description(«The hardware has reported an uncorrectable memory error.«)] ERROR_MEMORY_HARDWARE = 0x00030b, /// <summary> /// The attempted operation required self healing to be enabled. ///</summary> [Description(«The attempted operation required self healing to be enabled.«)] ERROR_DISK_REPAIR_DISABLED = 0x00030c, /// <summary> /// The Desktop heap encountered an error while allocating session memory. There is more information in the system event log. ///</summary> [Description(«The Desktop heap encountered an error while allocating session memory. There is more information in the system event log.«)] ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE = 0x00030d, /// <summary> /// The system power state is transitioning from %2 to %3. ///</summary> [Description(«The system power state is transitioning from %2 to %3.«)] ERROR_SYSTEM_POWERSTATE_TRANSITION = 0x00030e, /// <summary> /// The system power state is transitioning from %2 to %3 but could enter %4. ///</summary> [Description(«The system power state is transitioning from %2 to %3 but could enter %4.«)] ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION = 0x00030f, /// <summary> /// A thread is getting dispatched with MCA EXCEPTION because of MCA. ///</summary> [Description(«A thread is getting dispatched with MCA EXCEPTION because of MCA.«)] ERROR_MCA_EXCEPTION = 0x000310, /// <summary> /// Access to %1 is monitored by policy rule %2. ///</summary> [Description(«Access to %1 is monitored by policy rule %2.«)] ERROR_ACCESS_AUDIT_BY_POLICY = 0x000311, /// <summary> /// Access to %1 has been restricted by your Administrator by policy rule %2. ///</summary> [Description(«Access to %1 has been restricted by your Administrator by policy rule %2.«)] ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY = 0x000312, /// <summary> /// A valid hibernation file has been invalidated and should be abandoned. ///</summary> [Description(«A valid hibernation file has been invalidated and should be abandoned.«)] ERROR_ABANDON_HIBERFILE = 0x000313, /// <summary> /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error may be caused by network connectivity issues. Please try to save this file elsewhere. ///</summary> [Description(«{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error may be caused by network connectivity issues. Please try to save this file elsewhere.«)] ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED = 0x000314, /// <summary> /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error was returned by the server on which the file exists. Please try to save this file elsewhere. ///</summary> [Description(«{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error was returned by the server on which the file exists. Please try to save this file elsewhere.«)] ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR = 0x000315, /// <summary> /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error may be caused if the device has been removed or the media is write-protected. ///</summary> [Description(«{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error may be caused if the device has been removed or the media is write-protected.«)] ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR = 0x000316, /// <summary> /// The resources required for this device conflict with the MCFG table. ///</summary> [Description(«The resources required for this device conflict with the MCFG table.«)] ERROR_BAD_MCFG_TABLE = 0x000317, /// <summary> /// The volume repair could not be performed while it is online. Please schedule to take the volume offline so that it can be repaired. ///</summary> [Description(«The volume repair could not be performed while it is online. Please schedule to take the volume offline so that it can be repaired.«)] ERROR_DISK_REPAIR_REDIRECTED = 0x000318, /// <summary> /// The volume repair was not successful. ///</summary> [Description(«The volume repair was not successful.«)] ERROR_DISK_REPAIR_UNSUCCESSFUL = 0x000319, /// <summary> /// One of the volume corruption logs is full. Further corruptions that may be detected won’t be logged. ///</summary> [Description(«One of the volume corruption logs is full. Further corruptions that may be detected won’t be logged.«)] ERROR_CORRUPT_LOG_OVERFULL = 0x00031a, /// <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> [Description(«One of the volume corruption logs is internally corrupted and needs to be recreated. The volume may contain undetected corruptions and must be scanned.«)] ERROR_CORRUPT_LOG_CORRUPTED = 0x00031b, /// <summary> /// One of the volume corruption logs is unavailable for being operated on. ///</summary> [Description(«One of the volume corruption logs is unavailable for being operated on.«)] ERROR_CORRUPT_LOG_UNAVAILABLE = 0x00031c, /// <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> [Description(«One of the volume corruption logs was deleted while still having corruption records in them. The volume contains detected corruptions and must be scanned.«)] ERROR_CORRUPT_LOG_DELETED_FULL = 0x00031d, /// <summary> /// One of the volume corruption logs was cleared by chkdsk and no longer contains real corruptions. ///</summary> [Description(«One of the volume corruption logs was cleared by chkdsk and no longer contains real corruptions.«)] ERROR_CORRUPT_LOG_CLEARED = 0x00031e, /// <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> [Description(«Orphaned files exist on the volume but could not be recovered because no more new names could be created in the recovery directory. Files must be moved from the recovery directory.«)] ERROR_ORPHAN_NAME_EXHAUSTED = 0x00031f, /// <summary> /// The oplock that was associated with this handle is now associated with a different handle. ///</summary> [Description(«The oplock that was associated with this handle is now associated with a different handle.«)] ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE = 0x000320, /// <summary> /// An oplock of the requested level cannot be granted. An oplock of a lower level may be available. ///</summary> [Description(«An oplock of the requested level cannot be granted. An oplock of a lower level may be available.«)] ERROR_CANNOT_GRANT_REQUESTED_OPLOCK = 0x000321, /// <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> [Description(«The operation did not complete successfully because it would cause an oplock to be broken. The caller has requested that existing oplocks not be broken.«)] ERROR_CANNOT_BREAK_OPLOCK = 0x000322, /// <summary> /// The handle with which this oplock was associated has been closed. The oplock is now broken. ///</summary> [Description(«The handle with which this oplock was associated has been closed. The oplock is now broken.«)] ERROR_OPLOCK_HANDLE_CLOSED = 0x000323, /// <summary> /// The specified access control entry (ACE) does not contain a condition. ///</summary> [Description(«The specified access control entry (ACE) does not contain a condition.«)] ERROR_NO_ACE_CONDITION = 0x000324, /// <summary> /// The specified access control entry (ACE) contains an invalid condition. ///</summary> [Description(«The specified access control entry (ACE) contains an invalid condition.«)] ERROR_INVALID_ACE_CONDITION = 0x000325, /// <summary> /// Access to the specified file handle has been revoked. ///</summary> [Description(«Access to the specified file handle has been revoked.«)] ERROR_FILE_HANDLE_REVOKED = 0x000326, /// <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> [Description(«An image file was mapped at a different address from the one specified in the image file but fixups will still be automatically performed on the image.«)] ERROR_IMAGE_AT_DIFFERENT_BASE = 0x000327, /// <summary> /// Access to the extended attribute was denied. ///</summary> [Description(«Access to the extended attribute was denied.«)] ERROR_EA_ACCESS_DENIED = 0x0003e2, /// <summary> /// The I/O operation has been aborted because of either a thread exit or an application request. ///</summary> [Description(«The I/O operation has been aborted because of either a thread exit or an application request.«)] ERROR_OPERATION_ABORTED = 0x0003e3, /// <summary> /// Overlapped I/O event is not in a signaled state. ///</summary> [Description(«Overlapped I/O event is not in a signaled state.«)] ERROR_IO_INCOMPLETE = 0x0003e4, /// <summary> /// Overlapped I/O operation is in progress. ///</summary> [Description(«Overlapped I/O operation is in progress.«)] ERROR_IO_PENDING = 0x0003e5, /// <summary> /// Invalid access to memory location. ///</summary> [Description(«Invalid access to memory location.«)] ERROR_NOACCESS = 0x0003e6, /// <summary> /// Error performing inpage operation. ///</summary> [Description(«Error performing inpage operation.«)] ERROR_SWAPERROR = 0x0003e7, /// <summary> /// Recursion too deep; the stack overflowed. ///</summary> [Description(«Recursion too deep; the stack overflowed.«)] ERROR_STACK_OVERFLOW = 0x0003e9, /// <summary> /// The window cannot act on the sent message. ///</summary> [Description(«The window cannot act on the sent message.«)] ERROR_INVALID_MESSAGE = 0x0003ea, /// <summary> /// Cannot complete this function. ///</summary> [Description(«Cannot complete this function.«)] ERROR_CAN_NOT_COMPLETE = 0x0003eb, /// <summary> /// Invalid flags. ///</summary> [Description(«Invalid flags.«)] ERROR_INVALID_FLAGS = 0x0003ec, /// <summary> /// The volume does not contain a recognized file system. Please make sure that all required file system drivers are loaded and that the volume is not corrupted. ///</summary> [Description(«The volume does not contain a recognized file system. Please make sure that all required file system drivers are loaded and that the volume is not corrupted.«)] ERROR_UNRECOGNIZED_VOLUME = 0x0003ed, /// <summary> /// The volume for a file has been externally altered so that the opened file is no longer valid. ///</summary> [Description(«The volume for a file has been externally altered so that the opened file is no longer valid.«)] ERROR_FILE_INVALID = 0x0003ee, /// <summary> /// The requested operation cannot be performed in full-screen mode. ///</summary> [Description(«The requested operation cannot be performed in full-screen mode.«)] ERROR_FULLSCREEN_MODE = 0x0003ef, /// <summary> /// An attempt was made to reference a token that does not exist. ///</summary> [Description(«An attempt was made to reference a token that does not exist.«)] ERROR_NO_TOKEN = 0x0003f0, /// <summary> /// The configuration registry database is corrupt. ///</summary> [Description(«The configuration registry database is corrupt.«)] ERROR_BADDB = 0x0003f1, /// <summary> /// The configuration registry key is invalid. ///</summary> [Description(«The configuration registry key is invalid.«)] ERROR_BADKEY = 0x0003f2, /// <summary> /// The configuration registry key could not be opened. ///</summary> [Description(«The configuration registry key could not be opened.«)] ERROR_CANTOPEN = 0x0003f3, /// <summary> /// The configuration registry key could not be read. ///</summary> [Description(«The configuration registry key could not be read.«)] ERROR_CANTREAD = 0x0003f4, /// <summary> /// The configuration registry key could not be written. ///</summary> [Description(«The configuration registry key could not be written.«)] ERROR_CANTWRITE = 0x0003f5, /// <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> [Description(«One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.«)] ERROR_REGISTRY_RECOVERED = 0x0003f6, /// <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> [Description(«The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system’s memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted.«)] ERROR_REGISTRY_CORRUPT = 0x0003f7, /// <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> [Description(«An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system’s image of the registry.«)] ERROR_REGISTRY_IO_FAILED = 0x0003f8, /// <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> [Description(«The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format.«)] ERROR_NOT_REGISTRY_FILE = 0x0003f9, /// <summary> /// Illegal operation attempted on a registry key that has been marked for deletion. ///</summary> [Description(«Illegal operation attempted on a registry key that has been marked for deletion.«)] ERROR_KEY_DELETED = 0x0003fa, /// <summary> /// System could not allocate the required space in a registry log. ///</summary> [Description(«System could not allocate the required space in a registry log.«)] ERROR_NO_LOG_SPACE = 0x0003fb, /// <summary> /// Cannot create a symbolic link in a registry key that already has subkeys or values. ///</summary> [Description(«Cannot create a symbolic link in a registry key that already has subkeys or values.«)] ERROR_KEY_HAS_CHILDREN = 0x0003fc, /// <summary> /// Cannot create a stable subkey under a volatile parent key. ///</summary> [Description(«Cannot create a stable subkey under a volatile parent key.«)] ERROR_CHILD_MUST_BE_VOLATILE = 0x0003fd, /// <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> [Description(«A notify change request is being completed and the information is not being returned in the caller’s buffer. The caller now needs to enumerate the files to find the changes.«)] ERROR_NOTIFY_ENUM_DIR = 0x0003fe, /// <summary> /// A stop control has been sent to a service that other running services are dependent on. ///</summary> [Description(«A stop control has been sent to a service that other running services are dependent on.«)] ERROR_DEPENDENT_SERVICES_RUNNING = 0x00041b, /// <summary> /// The requested control is not valid for this service. ///</summary> [Description(«The requested control is not valid for this service.«)] ERROR_INVALID_SERVICE_CONTROL = 0x00041c, /// <summary> /// The service did not respond to the start or control request in a timely fashion. ///</summary> [Description(«The service did not respond to the start or control request in a timely fashion.«)] ERROR_SERVICE_REQUEST_TIMEOUT = 0x00041d, /// <summary> /// A thread could not be created for the service. ///</summary> [Description(«A thread could not be created for the service.«)] ERROR_SERVICE_NO_THREAD = 0x00041e, /// <summary> /// The service database is locked. ///</summary> [Description(«The service database is locked.«)] ERROR_SERVICE_DATABASE_LOCKED = 0x00041f, /// <summary> /// An instance of the service is already running. ///</summary> [Description(«An instance of the service is already running.«)] ERROR_SERVICE_ALREADY_RUNNING = 0x000420, /// <summary> /// The account name is invalid or does not exist, or the password is invalid for the account name specified. ///</summary> [Description(«The account name is invalid or does not exist, or the password is invalid for the account name specified.«)] ERROR_INVALID_SERVICE_ACCOUNT = 0x000421, /// <summary> /// The service cannot be started, either because it is disabled or because it has no enabled devices associated with it. ///</summary> [Description(«The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.«)] ERROR_SERVICE_DISABLED = 0x000422, /// <summary> /// Circular service dependency was specified. ///</summary> [Description(«Circular service dependency was specified.«)] ERROR_CIRCULAR_DEPENDENCY = 0x000423, /// <summary> /// The specified service does not exist as an installed service. ///</summary> [Description(«The specified service does not exist as an installed service.«)] ERROR_SERVICE_DOES_NOT_EXIST = 0x000424, /// <summary> /// The service cannot accept control messages at this time. ///</summary> [Description(«The service cannot accept control messages at this time.«)] ERROR_SERVICE_CANNOT_ACCEPT_CTRL = 0x000425, /// <summary> /// The service has not been started. ///</summary> [Description(«The service has not been started.«)] ERROR_SERVICE_NOT_ACTIVE = 0x000426, /// <summary> /// The service process could not connect to the service controller. ///</summary> [Description(«The service process could not connect to the service controller.«)] ERROR_FAILED_SERVICE_CONTROLLER_CONNECT = 0x000427, /// <summary> /// An exception occurred in the service when handling the control request. ///</summary> [Description(«An exception occurred in the service when handling the control request.«)] ERROR_EXCEPTION_IN_SERVICE = 0x000428, /// <summary> /// The database specified does not exist. ///</summary> [Description(«The database specified does not exist.«)] ERROR_DATABASE_DOES_NOT_EXIST = 0x000429, /// <summary> /// The service has returned a service-specific error code. ///</summary> [Description(«The service has returned a service-specific error code.«)] ERROR_SERVICE_SPECIFIC_ERROR = 0x00042a, /// <summary> /// The process terminated unexpectedly. ///</summary> [Description(«The process terminated unexpectedly.«)] ERROR_PROCESS_ABORTED = 0x00042b, /// <summary> /// The dependency service or group failed to start. ///</summary> [Description(«The dependency service or group failed to start.«)] ERROR_SERVICE_DEPENDENCY_FAIL = 0x00042c, /// <summary> /// The service did not start due to a logon failure. ///</summary> [Description(«The service did not start due to a logon failure.«)] ERROR_SERVICE_LOGON_FAILED = 0x00042d, /// <summary> /// After starting, the service hung in a start-pending state. ///</summary> [Description(«After starting, the service hung in a start-pending state.«)] ERROR_SERVICE_START_HANG = 0x00042e, /// <summary> /// The specified service database lock is invalid. ///</summary> [Description(«The specified service database lock is invalid.«)] ERROR_INVALID_SERVICE_LOCK = 0x00042f, /// <summary> /// The specified service has been marked for deletion. ///</summary> [Description(«The specified service has been marked for deletion.«)] ERROR_SERVICE_MARKED_FOR_DELETE = 0x000430, /// <summary> /// The specified service already exists. ///</summary> [Description(«The specified service already exists.«)] ERROR_SERVICE_EXISTS = 0x000431, /// <summary> /// The system is currently running with the last-known-good configuration. ///</summary> [Description(«The system is currently running with the last-known-good configuration.«)] ERROR_ALREADY_RUNNING_LKG = 0x000432, /// <summary> /// The dependency service does not exist or has been marked for deletion. ///</summary> [Description(«The dependency service does not exist or has been marked for deletion.«)] ERROR_SERVICE_DEPENDENCY_DELETED = 0x000433, /// <summary> /// The current boot has already been accepted for use as the last-known-good control set. ///</summary> [Description(«The current boot has already been accepted for use as the last-known-good control set.«)] ERROR_BOOT_ALREADY_ACCEPTED = 0x000434, /// <summary> /// No attempts to start the service have been made since the last boot. ///</summary> [Description(«No attempts to start the service have been made since the last boot.«)] ERROR_SERVICE_NEVER_STARTED = 0x000435, /// <summary> /// The name is already in use as either a service name or a service display name. ///</summary> [Description(«The name is already in use as either a service name or a service display name.«)] ERROR_DUPLICATE_SERVICE_NAME = 0x000436, /// <summary> /// The account specified for this service is different from the account specified for other services running in the same process. ///</summary> [Description(«The account specified for this service is different from the account specified for other services running in the same process.«)] ERROR_DIFFERENT_SERVICE_ACCOUNT = 0x000437, /// <summary> /// Failure actions can only be set for Win32 services, not for drivers. ///</summary> [Description(«Failure actions can only be set for Win32 services, not for drivers.«)] ERROR_CANNOT_DETECT_DRIVER_FAILURE = 0x000438, /// <summary> /// This service runs in the same process as the service control manager. Therefore, the service control manager cannot take action if this service’s process terminates unexpectedly. ///</summary> [Description(«This service runs in the same process as the service control manager. Therefore, the service control manager cannot take action if this service’s process terminates unexpectedly.«)] ERROR_CANNOT_DETECT_PROCESS_ABORT = 0x000439, /// <summary> /// No recovery program has been configured for this service. ///</summary> [Description(«No recovery program has been configured for this service.«)] ERROR_NO_RECOVERY_PROGRAM = 0x00043a, /// <summary> /// The executable program that this service is configured to run in does not implement the service. ///</summary> [Description(«The executable program that this service is configured to run in does not implement the service.«)] ERROR_SERVICE_NOT_IN_EXE = 0x00043b, /// <summary> /// This service cannot be started in Safe Mode. ///</summary> [Description(«This service cannot be started in Safe Mode.«)] ERROR_NOT_SAFEBOOT_SERVICE = 0x00043c, /// <summary> /// The physical end of the tape has been reached. ///</summary> [Description(«The physical end of the tape has been reached.«)] ERROR_END_OF_MEDIA = 0x00044c, /// <summary> /// A tape access reached a filemark. ///</summary> [Description(«A tape access reached a filemark.«)] ERROR_FILEMARK_DETECTED = 0x00044d, /// <summary> /// The beginning of the tape or a partition was encountered. ///</summary> [Description(«The beginning of the tape or a partition was encountered.«)] ERROR_BEGINNING_OF_MEDIA = 0x00044e, /// <summary> /// A tape access reached the end of a set of files. ///</summary> [Description(«A tape access reached the end of a set of files.«)] ERROR_SETMARK_DETECTED = 0x00044f, /// <summary> /// No more data is on the tape. ///</summary> [Description(«No more data is on the tape.«)] ERROR_NO_DATA_DETECTED = 0x000450, /// <summary> /// Tape could not be partitioned. ///</summary> [Description(«Tape could not be partitioned.«)] ERROR_PARTITION_FAILURE = 0x000451, /// <summary> /// When accessing a new tape of a multivolume partition, the current block size is incorrect. ///</summary> [Description(«When accessing a new tape of a multivolume partition, the current block size is incorrect.«)] ERROR_INVALID_BLOCK_LENGTH = 0x000452, /// <summary> /// Tape partition information could not be found when loading a tape. ///</summary> [Description(«Tape partition information could not be found when loading a tape.«)] ERROR_DEVICE_NOT_PARTITIONED = 0x000453, /// <summary> /// Unable to lock the media eject mechanism. ///</summary> [Description(«Unable to lock the media eject mechanism.«)] ERROR_UNABLE_TO_LOCK_MEDIA = 0x000454, /// <summary> /// Unable to unload the media. ///</summary> [Description(«Unable to unload the media.«)] ERROR_UNABLE_TO_UNLOAD_MEDIA = 0x000455, /// <summary> /// The media in the drive may have changed. ///</summary> [Description(«The media in the drive may have changed.«)] ERROR_MEDIA_CHANGED = 0x000456, /// <summary> /// The I/O bus was reset. ///</summary> [Description(«The I/O bus was reset.«)] ERROR_BUS_RESET = 0x000457, /// <summary> /// No media in drive. ///</summary> [Description(«No media in drive.«)] ERROR_NO_MEDIA_IN_DRIVE = 0x000458, /// <summary> /// No mapping for the Unicode character exists in the target multi-byte code page. ///</summary> [Description(«No mapping for the Unicode character exists in the target multi-byte code page.«)] ERROR_NO_UNICODE_TRANSLATION = 0x000459, /// <summary> /// A dynamic link library (DLL) initialization routine failed. ///</summary> [Description(«A dynamic link library (DLL) initialization routine failed.«)] ERROR_DLL_INIT_FAILED = 0x00045a, /// <summary> /// A system shutdown is in progress. ///</summary> [Description(«A system shutdown is in progress.«)] ERROR_SHUTDOWN_IN_PROGRESS = 0x00045b, /// <summary> /// Unable to abort the system shutdown because no shutdown was in progress. ///</summary> [Description(«Unable to abort the system shutdown because no shutdown was in progress.«)] ERROR_NO_SHUTDOWN_IN_PROGRESS = 0x00045c, /// <summary> /// The request could not be performed because of an I/O device error. ///</summary> [Description(«The request could not be performed because of an I/O device error.«)] ERROR_IO_DEVICE = 0x00045d, /// <summary> /// No serial device was successfully initialized. The serial driver will unload. ///</summary> [Description(«No serial device was successfully initialized. The serial driver will unload.«)] ERROR_SERIAL_NO_DEVICE = 0x00045e, /// <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> [Description(«Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened.«)] ERROR_IRQ_BUSY = 0x00045f, /// <summary> /// A serial I/O operation was completed by another write to the serial port. The IOCTL_SERIAL_XOFF_COUNTER reached zero.) ///</summary> [Description(«A serial I/O operation was completed by another write to the serial port. The IOCTL_SERIAL_XOFF_COUNTER reached zero.)«)] ERROR_MORE_WRITES = 0x000460, /// <summary> /// A serial I/O operation completed because the timeout period expired. The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.) ///</summary> [Description(«A serial I/O operation completed because the timeout period expired. The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)«)] ERROR_COUNTER_TIMEOUT = 0x000461, /// <summary> /// No ID address mark was found on the floppy disk. ///</summary> [Description(«No ID address mark was found on the floppy disk.«)] ERROR_FLOPPY_ID_MARK_NOT_FOUND = 0x000462, /// <summary> /// Mismatch between the floppy disk sector ID field and the floppy disk controller track address. ///</summary> [Description(«Mismatch between the floppy disk sector ID field and the floppy disk controller track address.«)] ERROR_FLOPPY_WRONG_CYLINDER = 0x000463, /// <summary> /// The floppy disk controller reported an error that is not recognized by the floppy disk driver. ///</summary> [Description(«The floppy disk controller reported an error that is not recognized by the floppy disk driver.«)] ERROR_FLOPPY_UNKNOWN_ERROR = 0x000464, /// <summary> /// The floppy disk controller returned inconsistent results in its registers. ///</summary> [Description(«The floppy disk controller returned inconsistent results in its registers.«)] ERROR_FLOPPY_BAD_REGISTERS = 0x000465, /// <summary> /// While accessing the hard disk, a recalibrate operation failed, even after retries. ///</summary> [Description(«While accessing the hard disk, a recalibrate operation failed, even after retries.«)] ERROR_DISK_RECALIBRATE_FAILED = 0x000466, /// <summary> /// While accessing the hard disk, a disk operation failed even after retries. ///</summary> [Description(«While accessing the hard disk, a disk operation failed even after retries.«)] ERROR_DISK_OPERATION_FAILED = 0x000467, /// <summary> /// While accessing the hard disk, a disk controller reset was needed, but even that failed. ///</summary> [Description(«While accessing the hard disk, a disk controller reset was needed, but even that failed.«)] ERROR_DISK_RESET_FAILED = 0x000468, /// <summary> /// Physical end of tape encountered. ///</summary> [Description(«Physical end of tape encountered.«)] ERROR_EOM_OVERFLOW = 0x000469, /// <summary> /// Not enough server storage is available to process this command. ///</summary> [Description(«Not enough server storage is available to process this command.«)] ERROR_NOT_ENOUGH_SERVER_MEMORY = 0x00046a, /// <summary> /// A potential deadlock condition has been detected. ///</summary> [Description(«A potential deadlock condition has been detected.«)] ERROR_POSSIBLE_DEADLOCK = 0x00046b, /// <summary> /// The base address or the file offset specified does not have the proper alignment. ///</summary> [Description(«The base address or the file offset specified does not have the proper alignment.«)] ERROR_MAPPED_ALIGNMENT = 0x00046c, /// <summary> /// An attempt to change the system power state was vetoed by another application or driver. ///</summary> [Description(«An attempt to change the system power state was vetoed by another application or driver.«)] ERROR_SET_POWER_STATE_VETOED = 0x000474, /// <summary> /// The system BIOS failed an attempt to change the system power state. ///</summary> [Description(«The system BIOS failed an attempt to change the system power state.«)] ERROR_SET_POWER_STATE_FAILED = 0x000475, /// <summary> /// An attempt was made to create more links on a file than the file system supports. ///</summary> [Description(«An attempt was made to create more links on a file than the file system supports.«)] ERROR_TOO_MANY_LINKS = 0x000476, /// <summary> /// The specified program requires a newer version of Windows. ///</summary> [Description(«The specified program requires a newer version of Windows.«)] ERROR_OLD_WIN_VERSION = 0x00047e, /// <summary> /// The specified program is not a Windows or MS-DOS program. ///</summary> [Description(«The specified program is not a Windows or MS-DOS program.«)] ERROR_APP_WRONG_OS = 0x00047f, /// <summary> /// Cannot start more than one instance of the specified program. ///</summary> [Description(«Cannot start more than one instance of the specified program.«)] ERROR_SINGLE_INSTANCE_APP = 0x000480, /// <summary> /// The specified program was written for an earlier version of Windows. ///</summary> [Description(«The specified program was written for an earlier version of Windows.«)] ERROR_RMODE_APP = 0x000481, /// <summary> /// One of the library files needed to run this application is damaged. ///</summary> [Description(«One of the library files needed to run this application is damaged.«)] ERROR_INVALID_DLL = 0x000482, /// <summary> /// No application is associated with the specified file for this operation. ///</summary> [Description(«No application is associated with the specified file for this operation.«)] ERROR_NO_ASSOCIATION = 0x000483, /// <summary> /// An error occurred in sending the command to the application. ///</summary> [Description(«An error occurred in sending the command to the application.«)] ERROR_DDE_FAIL = 0x000484, /// <summary> /// One of the library files needed to run this application cannot be found. ///</summary> [Description(«One of the library files needed to run this application cannot be found.«)] ERROR_DLL_NOT_FOUND = 0x000485, /// <summary> /// The current process has used all of its system allowance of handles for Window Manager objects. ///</summary> [Description(«The current process has used all of its system allowance of handles for Window Manager objects.«)] ERROR_NO_MORE_USER_HANDLES = 0x000486, /// <summary> /// The message can be used only with synchronous operations. ///</summary> [Description(«The message can be used only with synchronous operations.«)] ERROR_MESSAGE_SYNC_ONLY = 0x000487, /// <summary> /// The indicated source element has no media. ///</summary> [Description(«The indicated source element has no media.«)] ERROR_SOURCE_ELEMENT_EMPTY = 0x000488, /// <summary> /// The indicated destination element already contains media. ///</summary> [Description(«The indicated destination element already contains media.«)] ERROR_DESTINATION_ELEMENT_FULL = 0x000489, /// <summary> /// The indicated element does not exist. ///</summary> [Description(«The indicated element does not exist.«)] ERROR_ILLEGAL_ELEMENT_ADDRESS = 0x00048a, /// <summary> /// The indicated element is part of a magazine that is not present. ///</summary> [Description(«The indicated element is part of a magazine that is not present.«)] ERROR_MAGAZINE_NOT_PRESENT = 0x00048b, /// <summary> /// The indicated device requires reinitialization due to hardware errors. ///</summary> [Description(«The indicated device requires reinitialization due to hardware errors.«)] ERROR_DEVICE_REINITIALIZATION_NEEDED = 0x00048c, /// <summary> /// The device has indicated that cleaning is required before further operations are attempted. ///</summary> [Description(«The device has indicated that cleaning is required before further operations are attempted.«)] ERROR_DEVICE_REQUIRES_CLEANING = 0x00048d, /// <summary> /// The device has indicated that its door is open. ///</summary> [Description(«The device has indicated that its door is open.«)] ERROR_DEVICE_DOOR_OPEN = 0x00048e, /// <summary> /// The device is not connected. ///</summary> [Description(«The device is not connected.«)] ERROR_DEVICE_NOT_CONNECTED = 0x00048f, /// <summary> /// Element not found. ///</summary> [Description(«Element not found.«)] ERROR_NOT_FOUND = 0x000490, /// <summary> /// There was no match for the specified key in the index. ///</summary> [Description(«There was no match for the specified key in the index.«)] ERROR_NO_MATCH = 0x000491, /// <summary> /// The property set specified does not exist on the object. ///</summary> [Description(«The property set specified does not exist on the object.«)] ERROR_SET_NOT_FOUND = 0x000492, /// <summary> /// The point passed to GetMouseMovePoints is not in the buffer. ///</summary> [Description(«The point passed to GetMouseMovePoints is not in the buffer.«)] ERROR_POINT_NOT_FOUND = 0x000493, /// <summary> /// The tracking (workstation) service is not running. ///</summary> [Description(«The tracking (workstation) service is not running.«)] ERROR_NO_TRACKING_SERVICE = 0x000494, /// <summary> /// The Volume ID could not be found. ///</summary> [Description(«The Volume ID could not be found.«)] ERROR_NO_VOLUME_ID = 0x000495, /// <summary> /// Unable to remove the file to be replaced. ///</summary> [Description(«Unable to remove the file to be replaced.«)] ERROR_UNABLE_TO_REMOVE_REPLACED = 0x000497, /// <summary> /// Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name. ///</summary> [Description(«Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name.«)] ERROR_UNABLE_TO_MOVE_REPLACEMENT = 0x000498, /// <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> [Description(«Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name.«)] ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 = 0x000499, /// <summary> /// The volume change journal is being deleted. ///</summary> [Description(«The volume change journal is being deleted.«)] ERROR_JOURNAL_DELETE_IN_PROGRESS = 0x00049a, /// <summary> /// The volume change journal is not active. ///</summary> [Description(«The volume change journal is not active.«)] ERROR_JOURNAL_NOT_ACTIVE = 0x00049b, /// <summary> /// A file was found, but it may not be the correct file. ///</summary> [Description(«A file was found, but it may not be the correct file.«)] ERROR_POTENTIAL_FILE_FOUND = 0x00049c, /// <summary> /// The journal entry has been deleted from the journal. ///</summary> [Description(«The journal entry has been deleted from the journal.«)] ERROR_JOURNAL_ENTRY_DELETED = 0x00049d, /// <summary> /// A system shutdown has already been scheduled. ///</summary> [Description(«A system shutdown has already been scheduled.«)] ERROR_SHUTDOWN_IS_SCHEDULED = 0x0004a6, /// <summary> /// The system shutdown cannot be initiated because there are other users logged on to the computer. ///</summary> [Description(«The system shutdown cannot be initiated because there are other users logged on to the computer.«)] ERROR_SHUTDOWN_USERS_LOGGED_ON = 0x0004a7, /// <summary> /// The specified device name is invalid. ///</summary> [Description(«The specified device name is invalid.«)] ERROR_BAD_DEVICE = 0x0004b0, /// <summary> /// The device is not currently connected but it is a remembered connection. ///</summary> [Description(«The device is not currently connected but it is a remembered connection.«)] ERROR_CONNECTION_UNAVAIL = 0x0004b1, /// <summary> /// The local device name has a remembered connection to another network resource. ///</summary> [Description(«The local device name has a remembered connection to another network resource.«)] ERROR_DEVICE_ALREADY_REMEMBERED = 0x0004b2, /// <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> [Description(«The network path was either typed incorrectly, does not exist, or the network provider is not currently available. Please try retyping the path or contact your network administrator.«)] ERROR_NO_NET_OR_BAD_PATH = 0x0004b3, /// <summary> /// The specified network provider name is invalid. ///</summary> [Description(«The specified network provider name is invalid.«)] ERROR_BAD_PROVIDER = 0x0004b4, /// <summary> /// Unable to open the network connection profile. ///</summary> [Description(«Unable to open the network connection profile.«)] ERROR_CANNOT_OPEN_PROFILE = 0x0004b5, /// <summary> /// The network connection profile is corrupted. ///</summary> [Description(«The network connection profile is corrupted.«)] ERROR_BAD_PROFILE = 0x0004b6, /// <summary> /// Cannot enumerate a noncontainer. ///</summary> [Description(«Cannot enumerate a noncontainer.«)] ERROR_NOT_CONTAINER = 0x0004b7, /// <summary> /// An extended error has occurred. ///</summary> [Description(«An extended error has occurred.«)] ERROR_EXTENDED_ERROR = 0x0004b8, /// <summary> /// The format of the specified group name is invalid. ///</summary> [Description(«The format of the specified group name is invalid.«)] ERROR_INVALID_GROUPNAME = 0x0004b9, /// <summary> /// The format of the specified computer name is invalid. ///</summary> [Description(«The format of the specified computer name is invalid.«)] ERROR_INVALID_COMPUTERNAME = 0x0004ba, /// <summary> /// The format of the specified event name is invalid. ///</summary> [Description(«The format of the specified event name is invalid.«)] ERROR_INVALID_EVENTNAME = 0x0004bb, /// <summary> /// The format of the specified domain name is invalid. ///</summary> [Description(«The format of the specified domain name is invalid.«)] ERROR_INVALID_DOMAINNAME = 0x0004bc, /// <summary> /// The format of the specified service name is invalid. ///</summary> [Description(«The format of the specified service name is invalid.«)] ERROR_INVALID_SERVICENAME = 0x0004bd, /// <summary> /// The format of the specified network name is invalid. ///</summary> [Description(«The format of the specified network name is invalid.«)] ERROR_INVALID_NETNAME = 0x0004be, /// <summary> /// The format of the specified share name is invalid. ///</summary> [Description(«The format of the specified share name is invalid.«)] ERROR_INVALID_SHARENAME = 0x0004bf, /// <summary> /// The format of the specified password is invalid. ///</summary> [Description(«The format of the specified password is invalid.«)] ERROR_INVALID_PASSWORDNAME = 0x0004c0, /// <summary> /// The format of the specified message name is invalid. ///</summary> [Description(«The format of the specified message name is invalid.«)] ERROR_INVALID_MESSAGENAME = 0x0004c1, /// <summary> /// The format of the specified message destination is invalid. ///</summary> [Description(«The format of the specified message destination is invalid.«)] ERROR_INVALID_MESSAGEDEST = 0x0004c2, /// <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> [Description(«Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again.«)] ERROR_SESSION_CREDENTIAL_CONFLICT = 0x0004c3, /// <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> [Description(«An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.«)] ERROR_REMOTE_SESSION_LIMIT_EXCEEDED = 0x0004c4, /// <summary> /// The workgroup or domain name is already in use by another computer on the network. ///</summary> [Description(«The workgroup or domain name is already in use by another computer on the network.«)] ERROR_DUP_DOMAINNAME = 0x0004c5, /// <summary> /// The network is not present or not started. ///</summary> [Description(«The network is not present or not started.«)] ERROR_NO_NETWORK = 0x0004c6, /// <summary> /// The operation was canceled by the user. ///</summary> [Description(«The operation was canceled by the user.«)] ERROR_CANCELLED = 0x0004c7, /// <summary> /// The requested operation cannot be performed on a file with a user-mapped section open. ///</summary> [Description(«The requested operation cannot be performed on a file with a user-mapped section open.«)] ERROR_USER_MAPPED_FILE = 0x0004c8, /// <summary> /// The remote computer refused the network connection. ///</summary> [Description(«The remote computer refused the network connection.«)] ERROR_CONNECTION_REFUSED = 0x0004c9, /// <summary> /// The network connection was gracefully closed. ///</summary> [Description(«The network connection was gracefully closed.«)] ERROR_GRACEFUL_DISCONNECT = 0x0004ca, /// <summary> /// The network transport endpoint already has an address associated with it. ///</summary> [Description(«The network transport endpoint already has an address associated with it.«)] ERROR_ADDRESS_ALREADY_ASSOCIATED = 0x0004cb, /// <summary> /// An address has not yet been associated with the network endpoint. ///</summary> [Description(«An address has not yet been associated with the network endpoint.«)] ERROR_ADDRESS_NOT_ASSOCIATED = 0x0004cc, /// <summary> /// An operation was attempted on a nonexistent network connection. ///</summary> [Description(«An operation was attempted on a nonexistent network connection.«)] ERROR_CONNECTION_INVALID = 0x0004cd, /// <summary> /// An invalid operation was attempted on an active network connection. ///</summary> [Description(«An invalid operation was attempted on an active network connection.«)] ERROR_CONNECTION_ACTIVE = 0x0004ce, /// <summary> /// The network location cannot be reached. For information about network troubleshooting, see Windows Help. ///</summary> [Description(«The network location cannot be reached. For information about network troubleshooting, see Windows Help.«)] ERROR_NETWORK_UNREACHABLE = 0x0004cf, /// <summary> /// The network location cannot be reached. For information about network troubleshooting, see Windows Help. ///</summary> [Description(«The network location cannot be reached. For information about network troubleshooting, see Windows Help.«)] ERROR_HOST_UNREACHABLE = 0x0004d0, /// <summary> /// The network location cannot be reached. For information about network troubleshooting, see Windows Help. ///</summary> [Description(«The network location cannot be reached. For information about network troubleshooting, see Windows Help.«)] ERROR_PROTOCOL_UNREACHABLE = 0x0004d1, /// <summary> /// No service is operating at the destination network endpoint on the remote system. ///</summary> [Description(«No service is operating at the destination network endpoint on the remote system.«)] ERROR_PORT_UNREACHABLE = 0x0004d2, /// <summary> /// The request was aborted. ///</summary> [Description(«The request was aborted.«)] ERROR_REQUEST_ABORTED = 0x0004d3, /// <summary> /// The network connection was aborted by the local system. ///</summary> [Description(«The network connection was aborted by the local system.«)] ERROR_CONNECTION_ABORTED = 0x0004d4, /// <summary> /// The operation could not be completed. A retry should be performed. ///</summary> [Description(«The operation could not be completed. A retry should be performed.«)] ERROR_RETRY = 0x0004d5, /// <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> [Description(«A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.«)] ERROR_CONNECTION_COUNT_LIMIT = 0x0004d6, /// <summary> /// Attempting to log in during an unauthorized time of day for this account. ///</summary> [Description(«Attempting to log in during an unauthorized time of day for this account.«)] ERROR_LOGIN_TIME_RESTRICTION = 0x0004d7, /// <summary> /// The account is not authorized to log in from this station. ///</summary> [Description(«The account is not authorized to log in from this station.«)] ERROR_LOGIN_WKSTA_RESTRICTION = 0x0004d8, /// <summary> /// The network address could not be used for the operation requested. ///</summary> [Description(«The network address could not be used for the operation requested.«)] ERROR_INCORRECT_ADDRESS = 0x0004d9, /// <summary> /// The service is already registered. ///</summary> [Description(«The service is already registered.«)] ERROR_ALREADY_REGISTERED = 0x0004da, /// <summary> /// The specified service does not exist. ///</summary> [Description(«The specified service does not exist.«)] ERROR_SERVICE_NOT_FOUND = 0x0004db, /// <summary> /// The operation being requested was not performed because the user has not been authenticated. ///</summary> [Description(«The operation being requested was not performed because the user has not been authenticated.«)] ERROR_NOT_AUTHENTICATED = 0x0004dc, /// <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> [Description(«The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist.«)] ERROR_NOT_LOGGED_ON = 0x0004dd, /// <summary> /// Continue with work in progress. ///</summary> [Description(«Continue with work in progress.«)] ERROR_CONTINUE = 0x0004de, /// <summary> /// An attempt was made to perform an initialization operation when initialization has already been completed. ///</summary> [Description(«An attempt was made to perform an initialization operation when initialization has already been completed.«)] ERROR_ALREADY_INITIALIZED = 0x0004df, /// <summary> /// No more local devices. ///</summary> [Description(«No more local devices.«)] ERROR_NO_MORE_DEVICES = 0x0004e0, /// <summary> /// The specified site does not exist. ///</summary> [Description(«The specified site does not exist.«)] ERROR_NO_SUCH_SITE = 0x0004e1, /// <summary> /// A domain controller with the specified name already exists. ///</summary> [Description(«A domain controller with the specified name already exists.«)] ERROR_DOMAIN_CONTROLLER_EXISTS = 0x0004e2, /// <summary> /// This operation is supported only when you are connected to the server. ///</summary> [Description(«This operation is supported only when you are connected to the server.«)] ERROR_ONLY_IF_CONNECTED = 0x0004e3, /// <summary> /// The group policy framework should call the extension even if there are no changes. ///</summary> [Description(«The group policy framework should call the extension even if there are no changes.«)] ERROR_OVERRIDE_NOCHANGES = 0x0004e4, /// <summary> /// The specified user does not have a valid profile. ///</summary> [Description(«The specified user does not have a valid profile.«)] ERROR_BAD_USER_PROFILE = 0x0004e5, /// <summary> /// This operation is not supported on a computer running Windows Server 2003 for Small Business Server. ///</summary> [Description(«This operation is not supported on a computer running Windows Server 2003 for Small Business Server.«)] ERROR_NOT_SUPPORTED_ON_SBS = 0x0004e6, /// <summary> /// The server machine is shutting down. ///</summary> [Description(«The server machine is shutting down.«)] ERROR_SERVER_SHUTDOWN_IN_PROGRESS = 0x0004e7, /// <summary> /// The remote system is not available. For information about network troubleshooting, see Windows Help. ///</summary> [Description(«The remote system is not available. For information about network troubleshooting, see Windows Help.«)] ERROR_HOST_DOWN = 0x0004e8, /// <summary> /// The security identifier provided is not from an account domain. ///</summary> [Description(«The security identifier provided is not from an account domain.«)] ERROR_NON_ACCOUNT_SID = 0x0004e9, /// <summary> /// The security identifier provided does not have a domain component. ///</summary> [Description(«The security identifier provided does not have a domain component.«)] ERROR_NON_DOMAIN_SID = 0x0004ea, /// <summary> /// AppHelp dialog canceled thus preventing the application from starting. ///</summary> [Description(«AppHelp dialog canceled thus preventing the application from starting.«)] ERROR_APPHELP_BLOCK = 0x0004eb, /// <summary> /// This program is blocked by group policy. For more information, contact your system administrator. ///</summary> [Description(«This program is blocked by group policy. For more information, contact your system administrator.«)] ERROR_ACCESS_DISABLED_BY_POLICY = 0x0004ec, /// <summary> /// A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific. ///</summary> [Description(«A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific.«)] ERROR_REG_NAT_CONSUMPTION = 0x0004ed, /// <summary> /// The share is currently offline or does not exist. ///</summary> [Description(«The share is currently offline or does not exist.«)] ERROR_CSCSHARE_OFFLINE = 0x0004ee, /// <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> [Description(«The Kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. There is more information in the system event log.«)] ERROR_PKINIT_FAILURE = 0x0004ef, /// <summary> /// The Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem. ///</summary> [Description(«The Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem.«)] ERROR_SMARTCARD_SUBSYSTEM_FAILURE = 0x0004f0, /// <summary> /// The system cannot contact a domain controller to service the authentication request. Please try again later. ///</summary> [Description(«The system cannot contact a domain controller to service the authentication request. Please try again later.«)] ERROR_DOWNGRADE_DETECTED = 0x0004f1, /// <summary> /// The machine is locked and cannot be shut down without the force option. ///</summary> [Description(«The machine is locked and cannot be shut down without the force option.«)] ERROR_MACHINE_LOCKED = 0x0004f7, /// <summary> /// An application-defined callback gave invalid data when called. ///</summary> [Description(«An application-defined callback gave invalid data when called.«)] ERROR_CALLBACK_SUPPLIED_INVALID_DATA = 0x0004f9, /// <summary> /// The group policy framework should call the extension in the synchronous foreground policy refresh. ///</summary> [Description(«The group policy framework should call the extension in the synchronous foreground policy refresh.«)] ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED = 0x0004fa, /// <summary> /// This driver has been blocked from loading. ///</summary> [Description(«This driver has been blocked from loading.«)] ERROR_DRIVER_BLOCKED = 0x0004fb, /// <summary> /// A dynamic link library (DLL) referenced a module that was neither a DLL nor the process’s executable image. ///</summary> [Description(«A dynamic link library (DLL) referenced a module that was neither a DLL nor the process’s executable image.«)] ERROR_INVALID_IMPORT_OF_NON_DLL = 0x0004fc, /// <summary> /// Windows cannot open this program since it has been disabled. ///</summary> [Description(«Windows cannot open this program since it has been disabled.«)] ERROR_ACCESS_DISABLED_WEBBLADE = 0x0004fd, /// <summary> /// Windows cannot open this program because the license enforcement system has been tampered with or become corrupted. ///</summary> [Description(«Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.«)] ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER = 0x0004fe, /// <summary> /// A transaction recover failed. ///</summary> [Description(«A transaction recover failed.«)] ERROR_RECOVERY_FAILURE = 0x0004ff, /// <summary> /// The current thread has already been converted to a fiber. ///</summary> [Description(«The current thread has already been converted to a fiber.«)] ERROR_ALREADY_FIBER = 0x000500, /// <summary> /// The current thread has already been converted from a fiber. ///</summary> [Description(«The current thread has already been converted from a fiber.«)] ERROR_ALREADY_THREAD = 0x000501, /// <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> [Description(«The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application.«)] ERROR_STACK_BUFFER_OVERRUN = 0x000502, /// <summary> /// Data present in one of the parameters is more than the function can operate on. ///</summary> [Description(«Data present in one of the parameters is more than the function can operate on.«)] ERROR_PARAMETER_QUOTA_EXCEEDED = 0x000503, /// <summary> /// An attempt to do an operation on a debug object failed because the object is in the process of being deleted. ///</summary> [Description(«An attempt to do an operation on a debug object failed because the object is in the process of being deleted.«)] ERROR_DEBUGGER_INACTIVE = 0x000504, /// <summary> /// An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed. ///</summary> [Description(«An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.«)] ERROR_DELAY_LOAD_FAILED = 0x000505, /// <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> [Description(«%1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator.«)] ERROR_VDM_DISALLOWED = 0x000506, /// <summary> /// Insufficient information exists to identify the cause of failure. ///</summary> [Description(«Insufficient information exists to identify the cause of failure.«)] ERROR_UNIDENTIFIED_ERROR = 0x000507, /// <summary> /// The parameter passed to a C runtime function is incorrect. ///</summary> [Description(«The parameter passed to a C runtime function is incorrect.«)] ERROR_INVALID_CRUNTIME_PARAMETER = 0x000508, /// <summary> /// The operation occurred beyond the valid data length of the file. ///</summary> [Description(«The operation occurred beyond the valid data length of the file.«)] ERROR_BEYOND_VDL = 0x000509, /// <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.nOn Windows Server 2003 and Windows XP, an unrestricted service cannot coexist in the same process with other services. The service with the unrestricted service SID type must be moved to an owned process in order to start this service. ///</summary> [Description(«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.nOn Windows Server 2003 and Windows XP, an unrestricted service cannot coexist in the same process with other services. The service with the unrestricted service SID type must be moved to an owned process in order to start this service.«)] ERROR_INCOMPATIBLE_SERVICE_SID_TYPE = 0x00050a, /// <summary> /// The process hosting the driver for this device has been terminated. ///</summary> [Description(«The process hosting the driver for this device has been terminated.«)] ERROR_DRIVER_PROCESS_TERMINATED = 0x00050b, /// <summary> /// An operation attempted to exceed an implementation-defined limit. ///</summary> [Description(«An operation attempted to exceed an implementation-defined limit.«)] ERROR_IMPLEMENTATION_LIMIT = 0x00050c, /// <summary> /// Either the target process, or the target thread’s containing process, is a protected process. ///</summary> [Description(«Either the target process, or the target thread’s containing process, is a protected process.«)] ERROR_PROCESS_IS_PROTECTED = 0x00050d, /// <summary> /// The service notification client is lagging too far behind the current state of services in the machine. ///</summary> [Description(«The service notification client is lagging too far behind the current state of services in the machine.«)] ERROR_SERVICE_NOTIFY_CLIENT_LAGGING = 0x00050e, /// <summary> /// The requested file operation failed because the storage quota was exceeded. To free up disk space, move files to a different location or delete unnecessary files. For more information, contact your system administrator. ///</summary> [Description(«The requested file operation failed because the storage quota was exceeded. To free up disk space, move files to a different location or delete unnecessary files. For more information, contact your system administrator.«)] ERROR_DISK_QUOTA_EXCEEDED = 0x00050f, /// <summary> /// The requested file operation failed because the storage policy blocks that type of file. For more information, contact your system administrator. ///</summary> [Description(«The requested file operation failed because the storage policy blocks that type of file. For more information, contact your system administrator.«)] ERROR_CONTENT_BLOCKED = 0x000510, /// <summary> /// A privilege that the service requires to function properly does not exist in the service account configuration. You may use the Services Microsoft Management Console (MMC) snap-in (services.msc) and the Local Security Settings MMC snap-in (secpol.msc) to view the service configuration and the account configuration. ///</summary> [Description(«A privilege that the service requires to function properly does not exist in the service account configuration. You may use the Services Microsoft Management Console (MMC) snap-in (services.msc) and the Local Security Settings MMC snap-in (secpol.msc) to view the service configuration and the account configuration.«)] ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE = 0x000511, /// <summary> /// A thread involved in this operation appears to be unresponsive. ///</summary> [Description(«A thread involved in this operation appears to be unresponsive.«)] ERROR_APP_HANG = 0x000512, /// <summary> /// Indicates a particular Security ID may not be assigned as the label of an object. ///</summary> [Description(«Indicates a particular Security ID may not be assigned as the label of an object.«)] ERROR_INVALID_LABEL = 0x000513, /// <summary> /// Not all privileges or groups referenced are assigned to the caller. ///</summary> [Description(«Not all privileges or groups referenced are assigned to the caller.«)] ERROR_NOT_ALL_ASSIGNED = 0x000514, /// <summary> /// Some mapping between account names and security IDs was not done. ///</summary> [Description(«Some mapping between account names and security IDs was not done.«)] ERROR_SOME_NOT_MAPPED = 0x000515, /// <summary> /// No system quota limits are specifically set for this account. ///</summary> [Description(«No system quota limits are specifically set for this account.«)] ERROR_NO_QUOTAS_FOR_ACCOUNT = 0x000516, /// <summary> /// No encryption key is available. A well-known encryption key was returned. ///</summary> [Description(«No encryption key is available. A well-known encryption key was returned.«)] ERROR_LOCAL_USER_SESSION_KEY = 0x000517, /// <summary> /// The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string. ///</summary> [Description(«The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string.«)] ERROR_NULL_LM_PASSWORD = 0x000518, /// <summary> /// The revision level is unknown. ///</summary> [Description(«The revision level is unknown.«)] ERROR_UNKNOWN_REVISION = 0x000519, /// <summary> /// Indicates two revision levels are incompatible. ///</summary> [Description(«Indicates two revision levels are incompatible.«)] ERROR_REVISION_MISMATCH = 0x00051a, /// <summary> /// This security ID may not be assigned as the owner of this object. ///</summary> [Description(«This security ID may not be assigned as the owner of this object.«)] ERROR_INVALID_OWNER = 0x00051b, /// <summary> /// This security ID may not be assigned as the primary group of an object. ///</summary> [Description(«This security ID may not be assigned as the primary group of an object.«)] ERROR_INVALID_PRIMARY_GROUP = 0x00051c, /// <summary> /// An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client. ///</summary> [Description(«An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.«)] ERROR_NO_IMPERSONATION_TOKEN = 0x00051d, /// <summary> /// The group may not be disabled. ///</summary> [Description(«The group may not be disabled.«)] ERROR_CANT_DISABLE_MANDATORY = 0x00051e, /// <summary> /// There are currently no logon servers available to service the logon request. ///</summary> [Description(«There are currently no logon servers available to service the logon request.«)] ERROR_NO_LOGON_SERVERS = 0x00051f, /// <summary> /// A specified logon session does not exist. It may already have been terminated. ///</summary> [Description(«A specified logon session does not exist. It may already have been terminated.«)] ERROR_NO_SUCH_LOGON_SESSION = 0x000520, /// <summary> /// A specified privilege does not exist. ///</summary> [Description(«A specified privilege does not exist.«)] ERROR_NO_SUCH_PRIVILEGE = 0x000521, /// <summary> /// A required privilege is not held by the client. ///</summary> [Description(«A required privilege is not held by the client.«)] ERROR_PRIVILEGE_NOT_HELD = 0x000522, /// <summary> /// The name provided is not a properly formed account name. ///</summary> [Description(«The name provided is not a properly formed account name.«)] ERROR_INVALID_ACCOUNT_NAME = 0x000523, /// <summary> /// The specified account already exists. ///</summary> [Description(«The specified account already exists.«)] ERROR_USER_EXISTS = 0x000524, /// <summary> /// The specified account does not exist. ///</summary> [Description(«The specified account does not exist.«)] ERROR_NO_SUCH_USER = 0x000525, /// <summary> /// The specified group already exists. ///</summary> [Description(«The specified group already exists.«)] ERROR_GROUP_EXISTS = 0x000526, /// <summary> /// The specified group does not exist. ///</summary> [Description(«The specified group does not exist.«)] ERROR_NO_SUCH_GROUP = 0x000527, /// <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> [Description(«Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member.«)] ERROR_MEMBER_IN_GROUP = 0x000528, /// <summary> /// The specified user account is not a member of the specified group account. ///</summary> [Description(«The specified user account is not a member of the specified group account.«)] ERROR_MEMBER_NOT_IN_GROUP = 0x000529, /// <summary> /// This operation is disallowed as it could result in an administration account being disabled, deleted or unable to log on. ///</summary> [Description(«This operation is disallowed as it could result in an administration account being disabled, deleted or unable to log on.«)] ERROR_LAST_ADMIN = 0x00052a, /// <summary> /// Unable to update the password. The value provided as the current password is incorrect. ///</summary> [Description(«Unable to update the password. The value provided as the current password is incorrect.«)] ERROR_WRONG_PASSWORD = 0x00052b, /// <summary> /// Unable to update the password. The value provided for the new password contains values that are not allowed in passwords. ///</summary> [Description(«Unable to update the password. The value provided for the new password contains values that are not allowed in passwords.«)] ERROR_ILL_FORMED_PASSWORD = 0x00052c, /// <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> [Description(«Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirements of the domain.«)] ERROR_PASSWORD_RESTRICTION = 0x00052d, /// <summary> /// The user name or password is incorrect. ///</summary> [Description(«The user name or password is incorrect.«)] ERROR_LOGON_FAILURE = 0x00052e, /// <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> [Description(«Account restrictions are preventing this user from signing in. For example: blank passwords aren’t allowed, sign-in times are limited, or a policy restriction has been enforced.«)] ERROR_ACCOUNT_RESTRICTION = 0x00052f, /// <summary> /// Your account has time restrictions that keep you from signing in right now. ///</summary> [Description(«Your account has time restrictions that keep you from signing in right now.«)] ERROR_INVALID_LOGON_HOURS = 0x000530, /// <summary> /// This user isn’t allowed to sign in to this computer. ///</summary> [Description(«This user isn’t allowed to sign in to this computer.«)] ERROR_INVALID_WORKSTATION = 0x000531, /// <summary> /// The password for this account has expired. ///</summary> [Description(«The password for this account has expired.«)] ERROR_PASSWORD_EXPIRED = 0x000532, /// <summary> /// This user can’t sign in because this account is currently disabled. ///</summary> [Description(«This user can’t sign in because this account is currently disabled.«)] ERROR_ACCOUNT_DISABLED = 0x000533, /// <summary> /// No mapping between account names and security IDs was done. ///</summary> [Description(«No mapping between account names and security IDs was done.«)] ERROR_NONE_MAPPED = 0x000534, /// <summary> /// Too many local user identifiers (LUIDs) were requested at one time. ///</summary> [Description(«Too many local user identifiers (LUIDs) were requested at one time.«)] ERROR_TOO_MANY_LUIDS_REQUESTED = 0x000535, /// <summary> /// No more local user identifiers (LUIDs) are available. ///</summary> [Description(«No more local user identifiers (LUIDs) are available.«)] ERROR_LUIDS_EXHAUSTED = 0x000536, /// <summary> /// The subauthority part of a security ID is invalid for this particular use. ///</summary> [Description(«The subauthority part of a security ID is invalid for this particular use.«)] ERROR_INVALID_SUB_AUTHORITY = 0x000537, /// <summary> /// The access control list (ACL) structure is invalid. ///</summary> [Description(«The access control list (ACL) structure is invalid.«)] ERROR_INVALID_ACL = 0x000538, /// <summary> /// The security ID structure is invalid. ///</summary> [Description(«The security ID structure is invalid.«)] ERROR_INVALID_SID = 0x000539, /// <summary> /// The security descriptor structure is invalid. ///</summary> [Description(«The security descriptor structure is invalid.«)] ERROR_INVALID_SECURITY_DESCR = 0x00053a, /// <summary> /// The inherited access control list (ACL) or access control entry (ACE) could not be built. ///</summary> [Description(«The inherited access control list (ACL) or access control entry (ACE) could not be built.«)] ERROR_BAD_INHERITANCE_ACL = 0x00053c, /// <summary> /// The server is currently disabled. ///</summary> [Description(«The server is currently disabled.«)] ERROR_SERVER_DISABLED = 0x00053d, /// <summary> /// The server is currently enabled. ///</summary> [Description(«The server is currently enabled.«)] ERROR_SERVER_NOT_DISABLED = 0x00053e, /// <summary> /// The value provided was an invalid value for an identifier authority. ///</summary> [Description(«The value provided was an invalid value for an identifier authority.«)] ERROR_INVALID_ID_AUTHORITY = 0x00053f, /// <summary> /// No more memory is available for security information updates. ///</summary> [Description(«No more memory is available for security information updates.«)] ERROR_ALLOTTED_SPACE_EXCEEDED = 0x000540, /// <summary> /// The specified attributes are invalid, or incompatible with the attributes for the group as a whole. ///</summary> [Description(«The specified attributes are invalid, or incompatible with the attributes for the group as a whole.«)] ERROR_INVALID_GROUP_ATTRIBUTES = 0x000541, /// <summary> /// Either a required impersonation level was not provided, or the provided impersonation level is invalid. ///</summary> [Description(«Either a required impersonation level was not provided, or the provided impersonation level is invalid.«)] ERROR_BAD_IMPERSONATION_LEVEL = 0x000542, /// <summary> /// Cannot open an anonymous level security token. ///</summary> [Description(«Cannot open an anonymous level security token.«)] ERROR_CANT_OPEN_ANONYMOUS = 0x000543, /// <summary> /// The validation information class requested was invalid. ///</summary> [Description(«The validation information class requested was invalid.«)] ERROR_BAD_VALIDATION_CLASS = 0x000544, /// <summary> /// The type of the token is inappropriate for its attempted use. ///</summary> [Description(«The type of the token is inappropriate for its attempted use.«)] ERROR_BAD_TOKEN_TYPE = 0x000545, /// <summary> /// Unable to perform a security operation on an object that has no associated security. ///</summary> [Description(«Unable to perform a security operation on an object that has no associated security.«)] ERROR_NO_SECURITY_ON_OBJECT = 0x000546, /// <summary> /// Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied. ///</summary> [Description(«Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.«)] ERROR_CANT_ACCESS_DOMAIN_INFO = 0x000547, /// <summary> /// The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation. ///</summary> [Description(«The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation.«)] ERROR_INVALID_SERVER_STATE = 0x000548, /// <summary> /// The domain was in the wrong state to perform the security operation. ///</summary> [Description(«The domain was in the wrong state to perform the security operation.«)] ERROR_INVALID_DOMAIN_STATE = 0x000549, /// <summary> /// This operation is only allowed for the Primary Domain Controller of the domain. ///</summary> [Description(«This operation is only allowed for the Primary Domain Controller of the domain.«)] ERROR_INVALID_DOMAIN_ROLE = 0x00054a, /// <summary> /// The specified domain either does not exist or could not be contacted. ///</summary> [Description(«The specified domain either does not exist or could not be contacted.«)] ERROR_NO_SUCH_DOMAIN = 0x00054b, /// <summary> /// The specified domain already exists. ///</summary> [Description(«The specified domain already exists.«)] ERROR_DOMAIN_EXISTS = 0x00054c, /// <summary> /// An attempt was made to exceed the limit on the number of domains per server. ///</summary> [Description(«An attempt was made to exceed the limit on the number of domains per server.«)] ERROR_DOMAIN_LIMIT_EXCEEDED = 0x00054d, /// <summary> /// Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk. ///</summary> [Description(«Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.«)] ERROR_INTERNAL_DB_CORRUPTION = 0x00054e, /// <summary> /// An internal error occurred. ///</summary> [Description(«An internal error occurred.«)] ERROR_INTERNAL_ERROR = 0x00054f, /// <summary> /// Generic access types were contained in an access mask which should already be mapped to nongeneric types. ///</summary> [Description(«Generic access types were contained in an access mask which should already be mapped to nongeneric types.«)] ERROR_GENERIC_NOT_MAPPED = 0x000550, /// <summary> /// A security descriptor is not in the right format (absolute or self-relative). ///</summary> [Description(«A security descriptor is not in the right format (absolute or self-relative).«)] ERROR_BAD_DESCRIPTOR_FORMAT = 0x000551, /// <summary> /// The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process. ///</summary> [Description(«The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.«)] ERROR_NOT_LOGON_PROCESS = 0x000552, /// <summary> /// Cannot start a new logon session with an ID that is already in use. ///</summary> [Description(«Cannot start a new logon session with an ID that is already in use.«)] ERROR_LOGON_SESSION_EXISTS = 0x000553, /// <summary> /// A specified authentication package is unknown. ///</summary> [Description(«A specified authentication package is unknown.«)] ERROR_NO_SUCH_PACKAGE = 0x000554, /// <summary> /// The logon session is not in a state that is consistent with the requested operation. ///</summary> [Description(«The logon session is not in a state that is consistent with the requested operation.«)] ERROR_BAD_LOGON_SESSION_STATE = 0x000555, /// <summary> /// The logon session ID is already in use. ///</summary> [Description(«The logon session ID is already in use.«)] ERROR_LOGON_SESSION_COLLISION = 0x000556, /// <summary> /// A logon request contained an invalid logon type value. ///</summary> [Description(«A logon request contained an invalid logon type value.«)] ERROR_INVALID_LOGON_TYPE = 0x000557, /// <summary> /// Unable to impersonate using a named pipe until data has been read from that pipe. ///</summary> [Description(«Unable to impersonate using a named pipe until data has been read from that pipe.«)] ERROR_CANNOT_IMPERSONATE = 0x000558, /// <summary> /// The transaction state of a registry subtree is incompatible with the requested operation. ///</summary> [Description(«The transaction state of a registry subtree is incompatible with the requested operation.«)] ERROR_RXACT_INVALID_STATE = 0x000559, /// <summary> /// An internal security database corruption has been encountered. ///</summary> [Description(«An internal security database corruption has been encountered.«)] ERROR_RXACT_COMMIT_FAILURE = 0x00055a, /// <summary> /// Cannot perform this operation on built-in accounts. ///</summary> [Description(«Cannot perform this operation on built-in accounts.«)] ERROR_SPECIAL_ACCOUNT = 0x00055b, /// <summary> /// Cannot perform this operation on this built-in special group. ///</summary> [Description(«Cannot perform this operation on this built-in special group.«)] ERROR_SPECIAL_GROUP = 0x00055c, /// <summary> /// Cannot perform this operation on this built-in special user. ///</summary> [Description(«Cannot perform this operation on this built-in special user.«)] ERROR_SPECIAL_USER = 0x00055d, /// <summary> /// The user cannot be removed from a group because the group is currently the user’s primary group. ///</summary> [Description(«The user cannot be removed from a group because the group is currently the user’s primary group.«)] ERROR_MEMBERS_PRIMARY_GROUP = 0x00055e, /// <summary> /// The token is already in use as a primary token. ///</summary> [Description(«The token is already in use as a primary token.«)] ERROR_TOKEN_ALREADY_IN_USE = 0x00055f, /// <summary> /// The specified local group does not exist. ///</summary> [Description(«The specified local group does not exist.«)] ERROR_NO_SUCH_ALIAS = 0x000560, /// <summary> /// The specified account name is not a member of the group. ///</summary> [Description(«The specified account name is not a member of the group.«)] ERROR_MEMBER_NOT_IN_ALIAS = 0x000561, /// <summary> /// The specified account name is already a member of the group. ///</summary> [Description(«The specified account name is already a member of the group.«)] ERROR_MEMBER_IN_ALIAS = 0x000562, /// <summary> /// The specified local group already exists. ///</summary> [Description(«The specified local group already exists.«)] ERROR_ALIAS_EXISTS = 0x000563, /// <summary> /// Logon failure: the user has not been granted the requested logon type at this computer. ///</summary> [Description(«Logon failure: the user has not been granted the requested logon type at this computer.«)] ERROR_LOGON_NOT_GRANTED = 0x000564, /// <summary> /// The maximum number of secrets that may be stored in a single system has been exceeded. ///</summary> [Description(«The maximum number of secrets that may be stored in a single system has been exceeded.«)] ERROR_TOO_MANY_SECRETS = 0x000565, /// <summary> /// The length of a secret exceeds the maximum length allowed. ///</summary> [Description(«The length of a secret exceeds the maximum length allowed.«)] ERROR_SECRET_TOO_LONG = 0x000566, /// <summary> /// The local security authority database contains an internal inconsistency. ///</summary> [Description(«The local security authority database contains an internal inconsistency.«)] ERROR_INTERNAL_DB_ERROR = 0x000567, /// <summary> /// During a logon attempt, the user’s security context accumulated too many security IDs. ///</summary> [Description(«During a logon attempt, the user’s security context accumulated too many security IDs.«)] ERROR_TOO_MANY_CONTEXT_IDS = 0x000568, /// <summary> /// Logon failure: the user has not been granted the requested logon type at this computer. ///</summary> [Description(«Logon failure: the user has not been granted the requested logon type at this computer.«)] ERROR_LOGON_TYPE_NOT_GRANTED = 0x000569, /// <summary> /// A cross-encrypted password is necessary to change a user password. ///</summary> [Description(«A cross-encrypted password is necessary to change a user password.«)] ERROR_NT_CROSS_ENCRYPTION_REQUIRED = 0x00056a, /// <summary> /// A member could not be added to or removed from the local group because the member does not exist. ///</summary> [Description(«A member could not be added to or removed from the local group because the member does not exist.«)] ERROR_NO_SUCH_MEMBER = 0x00056b, /// <summary> /// A new member could not be added to a local group because the member has the wrong account type. ///</summary> [Description(«A new member could not be added to a local group because the member has the wrong account type.«)] ERROR_INVALID_MEMBER = 0x00056c, /// <summary> /// Too many security IDs have been specified. ///</summary> [Description(«Too many security IDs have been specified.«)] ERROR_TOO_MANY_SIDS = 0x00056d, /// <summary> /// A cross-encrypted password is necessary to change this user password. ///</summary> [Description(«A cross-encrypted password is necessary to change this user password.«)] ERROR_LM_CROSS_ENCRYPTION_REQUIRED = 0x00056e, /// <summary> /// Indicates an ACL contains no inheritable components. ///</summary> [Description(«Indicates an ACL contains no inheritable components.«)] ERROR_NO_INHERITANCE = 0x00056f, /// <summary> /// The file or directory is corrupted and unreadable. ///</summary> [Description(«The file or directory is corrupted and unreadable.«)] ERROR_FILE_CORRUPT = 0x000570, /// <summary> /// The disk structure is corrupted and unreadable. ///</summary> [Description(«The disk structure is corrupted and unreadable.«)] ERROR_DISK_CORRUPT = 0x000571, /// <summary> /// There is no user session key for the specified logon session. ///</summary> [Description(«There is no user session key for the specified logon session.«)] ERROR_NO_USER_SESSION_KEY = 0x000572, /// <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> [Description(«The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because there are already as many connections as the service can accept.«)] ERROR_LICENSE_QUOTA_EXCEEDED = 0x000573, /// <summary> /// The target account name is incorrect. ///</summary> [Description(«The target account name is incorrect.«)] ERROR_WRONG_TARGET_NAME = 0x000574, /// <summary> /// Mutual Authentication failed. The server’s password is out of date at the domain controller. ///</summary> [Description(«Mutual Authentication failed. The server’s password is out of date at the domain controller.«)] ERROR_MUTUAL_AUTH_FAILED = 0x000575, /// <summary> /// There is a time and/or date difference between the client and server. ///</summary> [Description(«There is a time and/or date difference between the client and server.«)] ERROR_TIME_SKEW = 0x000576, /// <summary> /// This operation cannot be performed on the current domain. ///</summary> [Description(«This operation cannot be performed on the current domain.«)] ERROR_CURRENT_DOMAIN_NOT_ALLOWED = 0x000577, /// <summary> /// Invalid window handle. ///</summary> [Description(«Invalid window handle.«)] ERROR_INVALID_WINDOW_HANDLE = 0x000578, /// <summary> /// Invalid menu handle. ///</summary> [Description(«Invalid menu handle.«)] ERROR_INVALID_MENU_HANDLE = 0x000579, /// <summary> /// Invalid cursor handle. ///</summary> [Description(«Invalid cursor handle.«)] ERROR_INVALID_CURSOR_HANDLE = 0x00057a, /// <summary> /// Invalid accelerator table handle. ///</summary> [Description(«Invalid accelerator table handle.«)] ERROR_INVALID_ACCEL_HANDLE = 0x00057b, /// <summary> /// Invalid hook handle. ///</summary> [Description(«Invalid hook handle.«)] ERROR_INVALID_HOOK_HANDLE = 0x00057c, /// <summary> /// Invalid handle to a multiple-window position structure. ///</summary> [Description(«Invalid handle to a multiple-window position structure.«)] ERROR_INVALID_DWP_HANDLE = 0x00057d, /// <summary> /// Cannot create a top-level child window. ///</summary> [Description(«Cannot create a top-level child window.«)] ERROR_TLW_WITH_WSCHILD = 0x00057e, /// <summary> /// Cannot find window class. ///</summary> [Description(«Cannot find window class.«)] ERROR_CANNOT_FIND_WND_CLASS = 0x00057f, /// <summary> /// Invalid window; it belongs to other thread. ///</summary> [Description(«Invalid window; it belongs to other thread.«)] ERROR_WINDOW_OF_OTHER_THREAD = 0x000580, /// <summary> /// Hot key is already registered. ///</summary> [Description(«Hot key is already registered.«)] ERROR_HOTKEY_ALREADY_REGISTERED = 0x000581, /// <summary> /// Class already exists. ///</summary> [Description(«Class already exists.«)] ERROR_CLASS_ALREADY_EXISTS = 0x000582, /// <summary> /// Class does not exist. ///</summary> [Description(«Class does not exist.«)] ERROR_CLASS_DOES_NOT_EXIST = 0x000583, /// <summary> /// Class still has open windows. ///</summary> [Description(«Class still has open windows.«)] ERROR_CLASS_HAS_WINDOWS = 0x000584, /// <summary> /// Invalid index. ///</summary> [Description(«Invalid index.«)] ERROR_INVALID_INDEX = 0x000585, /// <summary> /// Invalid icon handle. ///</summary> [Description(«Invalid icon handle.«)] ERROR_INVALID_ICON_HANDLE = 0x000586, /// <summary> /// Using private DIALOG window words. ///</summary> [Description(«Using private DIALOG window words.«)] ERROR_PRIVATE_DIALOG_INDEX = 0x000587, /// <summary> /// The list box identifier was not found. ///</summary> [Description(«The list box identifier was not found.«)] ERROR_LISTBOX_ID_NOT_FOUND = 0x000588, /// <summary> /// No wildcards were found. ///</summary> [Description(«No wildcards were found.«)] ERROR_NO_WILDCARD_CHARACTERS = 0x000589, /// <summary> /// Thread does not have a clipboard open. ///</summary> [Description(«Thread does not have a clipboard open.«)] ERROR_CLIPBOARD_NOT_OPEN = 0x00058a, /// <summary> /// Hot key is not registered. ///</summary> [Description(«Hot key is not registered.«)] ERROR_HOTKEY_NOT_REGISTERED = 0x00058b, /// <summary> /// The window is not a valid dialog window. ///</summary> [Description(«The window is not a valid dialog window.«)] ERROR_WINDOW_NOT_DIALOG = 0x00058c, /// <summary> /// Control ID not found. ///</summary> [Description(«Control ID not found.«)] ERROR_CONTROL_ID_NOT_FOUND = 0x00058d, /// <summary> /// Invalid message for a combo box because it does not have an edit control. ///</summary> [Description(«Invalid message for a combo box because it does not have an edit control.«)] ERROR_INVALID_COMBOBOX_MESSAGE = 0x00058e, /// <summary> /// The window is not a combo box. ///</summary> [Description(«The window is not a combo box.«)] ERROR_WINDOW_NOT_COMBOBOX = 0x00058f, /// <summary> /// Height must be less than 256. ///</summary> [Description(«Height must be less than 256.«)] ERROR_INVALID_EDIT_HEIGHT = 0x000590, /// <summary> /// Invalid device context (DC) handle. ///</summary> [Description(«Invalid device context (DC) handle.«)] ERROR_DC_NOT_FOUND = 0x000591, /// <summary> /// Invalid hook procedure type. ///</summary> [Description(«Invalid hook procedure type.«)] ERROR_INVALID_HOOK_FILTER = 0x000592, /// <summary> /// Invalid hook procedure. ///</summary> [Description(«Invalid hook procedure.«)] ERROR_INVALID_FILTER_PROC = 0x000593, /// <summary> /// Cannot set nonlocal hook without a module handle. ///</summary> [Description(«Cannot set nonlocal hook without a module handle.«)] ERROR_HOOK_NEEDS_HMOD = 0x000594, /// <summary> /// This hook procedure can only be set globally. ///</summary> [Description(«This hook procedure can only be set globally.«)] ERROR_GLOBAL_ONLY_HOOK = 0x000595, /// <summary> /// The journal hook procedure is already installed. ///</summary> [Description(«The journal hook procedure is already installed.«)] ERROR_JOURNAL_HOOK_SET = 0x000596, /// <summary> /// The hook procedure is not installed. ///</summary> [Description(«The hook procedure is not installed.«)] ERROR_HOOK_NOT_INSTALLED = 0x000597, /// <summary> /// Invalid message for single-selection list box. ///</summary> [Description(«Invalid message for single-selection list box.«)] ERROR_INVALID_LB_MESSAGE = 0x000598, /// <summary> /// LB_SETCOUNT sent to non-lazy list box. ///</summary> [Description(«LB_SETCOUNT sent to non-lazy list box.«)] ERROR_SETCOUNT_ON_BAD_LB = 0x000599, /// <summary> /// This list box does not support tab stops. ///</summary> [Description(«This list box does not support tab stops.«)] ERROR_LB_WITHOUT_TABSTOPS = 0x00059a, /// <summary> /// Cannot destroy object created by another thread. ///</summary> [Description(«Cannot destroy object created by another thread.«)] ERROR_DESTROY_OBJECT_OF_OTHER_THREAD = 0x00059b, /// <summary> /// Child windows cannot have menus. ///</summary> [Description(«Child windows cannot have menus.«)] ERROR_CHILD_WINDOW_MENU = 0x00059c, /// <summary> /// The window does not have a system menu. ///</summary> [Description(«The window does not have a system menu.«)] ERROR_NO_SYSTEM_MENU = 0x00059d, /// <summary> /// Invalid message box style. ///</summary> [Description(«Invalid message box style.«)] ERROR_INVALID_MSGBOX_STYLE = 0x00059e, /// <summary> /// Invalid system-wide (SPI_*) parameter. ///</summary> [Description(«Invalid system-wide (SPI_*) parameter.«)] ERROR_INVALID_SPI_VALUE = 0x00059f, /// <summary> /// Screen already locked. ///</summary> [Description(«Screen already locked.«)] ERROR_SCREEN_ALREADY_LOCKED = 0x0005a0, /// <summary> /// All handles to windows in a multiple-window position structure must have the same parent. ///</summary> [Description(«All handles to windows in a multiple-window position structure must have the same parent.«)] ERROR_HWNDS_HAVE_DIFF_PARENT = 0x0005a1, /// <summary> /// The window is not a child window. ///</summary> [Description(«The window is not a child window.«)] ERROR_NOT_CHILD_WINDOW = 0x0005a2, /// <summary> /// Invalid GW_* command. ///</summary> [Description(«Invalid GW_* command.«)] ERROR_INVALID_GW_COMMAND = 0x0005a3, /// <summary> /// Invalid thread identifier. ///</summary> [Description(«Invalid thread identifier.«)] ERROR_INVALID_THREAD_ID = 0x0005a4, /// <summary> /// Cannot process a message from a window that is not a multiple document interface (MDI) window. ///</summary> [Description(«Cannot process a message from a window that is not a multiple document interface (MDI) window.«)] ERROR_NON_MDICHILD_WINDOW = 0x0005a5, /// <summary> /// Popup menu already active. ///</summary> [Description(«Popup menu already active.«)] ERROR_POPUP_ALREADY_ACTIVE = 0x0005a6, /// <summary> /// The window does not have scroll bars. ///</summary> [Description(«The window does not have scroll bars.«)] ERROR_NO_SCROLLBARS = 0x0005a7, /// <summary> /// Scroll bar range cannot be greater than MAXLONG. ///</summary> [Description(«Scroll bar range cannot be greater than MAXLONG.«)] ERROR_INVALID_SCROLLBAR_RANGE = 0x0005a8, /// <summary> /// Cannot show or remove the window in the way specified. ///</summary> [Description(«Cannot show or remove the window in the way specified.«)] ERROR_INVALID_SHOWWIN_COMMAND = 0x0005a9, /// <summary> /// Insufficient system resources exist to complete the requested service. ///</summary> [Description(«Insufficient system resources exist to complete the requested service.«)] ERROR_NO_SYSTEM_RESOURCES = 0x0005aa, /// <summary> /// Insufficient system resources exist to complete the requested service. ///</summary> [Description(«Insufficient system resources exist to complete the requested service.«)] ERROR_NONPAGED_SYSTEM_RESOURCES = 0x0005ab, /// <summary> /// Insufficient system resources exist to complete the requested service. ///</summary> [Description(«Insufficient system resources exist to complete the requested service.«)] ERROR_PAGED_SYSTEM_RESOURCES = 0x0005ac, /// <summary> /// Insufficient quota to complete the requested service. ///</summary> [Description(«Insufficient quota to complete the requested service.«)] ERROR_WORKING_SET_QUOTA = 0x0005ad, /// <summary> /// Insufficient quota to complete the requested service. ///</summary> [Description(«Insufficient quota to complete the requested service.«)] ERROR_PAGEFILE_QUOTA = 0x0005ae, /// <summary> /// The paging file is too small for this operation to complete. ///</summary> [Description(«The paging file is too small for this operation to complete.«)] ERROR_COMMITMENT_LIMIT = 0x0005af, /// <summary> /// A menu item was not found. ///</summary> [Description(«A menu item was not found.«)] ERROR_MENU_ITEM_NOT_FOUND = 0x0005b0, /// <summary> /// Invalid keyboard layout handle. ///</summary> [Description(«Invalid keyboard layout handle.«)] ERROR_INVALID_KEYBOARD_HANDLE = 0x0005b1, /// <summary> /// Hook type not allowed. ///</summary> [Description(«Hook type not allowed.«)] ERROR_HOOK_TYPE_NOT_ALLOWED = 0x0005b2, /// <summary> /// This operation requires an interactive window station. ///</summary> [Description(«This operation requires an interactive window station.«)] ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION = 0x0005b3, /// <summary> /// This operation returned because the timeout period expired. ///</summary> [Description(«This operation returned because the timeout period expired.«)] ERROR_TIMEOUT = 0x0005b4, /// <summary> /// Invalid monitor handle. ///</summary> [Description(«Invalid monitor handle.«)] ERROR_INVALID_MONITOR_HANDLE = 0x0005b5, /// <summary> /// Incorrect size argument. ///</summary> [Description(«Incorrect size argument.«)] ERROR_INCORRECT_SIZE = 0x0005b6, /// <summary> /// The symbolic link cannot be followed because its type is disabled. ///</summary> [Description(«The symbolic link cannot be followed because its type is disabled.«)] ERROR_SYMLINK_CLASS_DISABLED = 0x0005b7, /// <summary> /// This application does not support the current operation on symbolic links. ///</summary> [Description(«This application does not support the current operation on symbolic links.«)] ERROR_SYMLINK_NOT_SUPPORTED = 0x0005b8, /// <summary> /// Windows was unable to parse the requested XML data. ///</summary> [Description(«Windows was unable to parse the requested XML data.«)] ERROR_XML_PARSE_ERROR = 0x0005b9, /// <summary> /// An error was encountered while processing an XML digital signature. ///</summary> [Description(«An error was encountered while processing an XML digital signature.«)] ERROR_XMLDSIG_ERROR = 0x0005ba, /// <summary> /// This application must be restarted. ///</summary> [Description(«This application must be restarted.«)] ERROR_RESTART_APPLICATION = 0x0005bb, /// <summary> /// The caller made the connection request in the wrong routing compartment. ///</summary> [Description(«The caller made the connection request in the wrong routing compartment.«)] ERROR_WRONG_COMPARTMENT = 0x0005bc, /// <summary> /// There was an AuthIP failure when attempting to connect to the remote host. ///</summary> [Description(«There was an AuthIP failure when attempting to connect to the remote host.«)] ERROR_AUTHIP_FAILURE = 0x0005bd, /// <summary> /// Insufficient NVRAM resources exist to complete the requested service. A reboot might be required. ///</summary> [Description(«Insufficient NVRAM resources exist to complete the requested service. A reboot might be required.«)] ERROR_NO_NVRAM_RESOURCES = 0x0005be, /// <summary> /// Unable to finish the requested operation because the specified process is not a GUI process. ///</summary> [Description(«Unable to finish the requested operation because the specified process is not a GUI process.«)] ERROR_NOT_GUI_PROCESS = 0x0005bf, /// <summary> /// The event log file is corrupted. ///</summary> [Description(«The event log file is corrupted.«)] ERROR_EVENTLOG_FILE_CORRUPT = 0x0005dc, /// <summary> /// No event log file could be opened, so the event logging service did not start. ///</summary> [Description(«No event log file could be opened, so the event logging service did not start.«)] ERROR_EVENTLOG_CANT_START = 0x0005dd, /// <summary> /// The event log file is full. ///</summary> [Description(«The event log file is full.«)] ERROR_LOG_FILE_FULL = 0x0005de, /// <summary> /// The event log file has changed between read operations. ///</summary> [Description(«The event log file has changed between read operations.«)] ERROR_EVENTLOG_FILE_CHANGED = 0x0005df, /// <summary> /// The specified task name is invalid. ///</summary> [Description(«The specified task name is invalid.«)] ERROR_INVALID_TASK_NAME = 0x00060e, /// <summary> /// The specified task index is invalid. ///</summary> [Description(«The specified task index is invalid.«)] ERROR_INVALID_TASK_INDEX = 0x00060f, /// <summary> /// The specified thread is already joining a task. ///</summary> [Description(«The specified thread is already joining a task.«)] ERROR_THREAD_ALREADY_IN_TASK = 0x000610, /// <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> [Description(«The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance.«)] ERROR_INSTALL_SERVICE_FAILURE = 0x000641, /// <summary> /// User cancelled installation. ///</summary> [Description(«User cancelled installation.«)] ERROR_INSTALL_USEREXIT = 0x000642, /// <summary> /// Fatal error during installation. ///</summary> [Description(«Fatal error during installation.«)] ERROR_INSTALL_FAILURE = 0x000643, /// <summary> /// Installation suspended, incomplete. ///</summary> [Description(«Installation suspended, incomplete.«)] ERROR_INSTALL_SUSPEND = 0x000644, /// <summary> /// This action is only valid for products that are currently installed. ///</summary> [Description(«This action is only valid for products that are currently installed.«)] ERROR_UNKNOWN_PRODUCT = 0x000645, /// <summary> /// Feature ID not registered. ///</summary> [Description(«Feature ID not registered.«)] ERROR_UNKNOWN_FEATURE = 0x000646, /// <summary> /// Component ID not registered. ///</summary> [Description(«Component ID not registered.«)] ERROR_UNKNOWN_COMPONENT = 0x000647, /// <summary> /// Unknown property. ///</summary> [Description(«Unknown property.«)] ERROR_UNKNOWN_PROPERTY = 0x000648, /// <summary> /// Handle is in an invalid state. ///</summary> [Description(«Handle is in an invalid state.«)] ERROR_INVALID_HANDLE_STATE = 0x000649, /// <summary> /// The configuration data for this product is corrupt. Contact your support personnel. ///</summary> [Description(«The configuration data for this product is corrupt. Contact your support personnel.«)] ERROR_BAD_CONFIGURATION = 0x00064a, /// <summary> /// Component qualifier not present. ///</summary> [Description(«Component qualifier not present.«)] ERROR_INDEX_ABSENT = 0x00064b, /// <summary> /// The installation source for this product is not available. Verify that the source exists and that you can access it. ///</summary> [Description(«The installation source for this product is not available. Verify that the source exists and that you can access it.«)] ERROR_INSTALL_SOURCE_ABSENT = 0x00064c, /// <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> [Description(«This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.«)] ERROR_INSTALL_PACKAGE_VERSION = 0x00064d, /// <summary> /// Product is uninstalled. ///</summary> [Description(«Product is uninstalled.«)] ERROR_PRODUCT_UNINSTALLED = 0x00064e, /// <summary> /// SQL query syntax invalid or unsupported. ///</summary> [Description(«SQL query syntax invalid or unsupported.«)] ERROR_BAD_QUERY_SYNTAX = 0x00064f, /// <summary> /// Record field does not exist. ///</summary> [Description(«Record field does not exist.«)] ERROR_INVALID_FIELD = 0x000650, /// <summary> /// The device has been removed. ///</summary> [Description(«The device has been removed.«)] ERROR_DEVICE_REMOVED = 0x000651, /// <summary> /// Another installation is already in progress. Complete that installation before proceeding with this install. ///</summary> [Description(«Another installation is already in progress. Complete that installation before proceeding with this install.«)] ERROR_INSTALL_ALREADY_RUNNING = 0x000652, /// <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> [Description(«This installation package could not be opened. Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package.«)] ERROR_INSTALL_PACKAGE_OPEN_FAILED = 0x000653, /// <summary> /// This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package. ///</summary> [Description(«This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package.«)] ERROR_INSTALL_PACKAGE_INVALID = 0x000654, /// <summary> /// There was an error starting the Windows Installer service user interface. Contact your support personnel. ///</summary> [Description(«There was an error starting the Windows Installer service user interface. Contact your support personnel.«)] ERROR_INSTALL_UI_FAILURE = 0x000655, /// <summary> /// Error opening installation log file. Verify that the specified log file location exists and that you can write to it. ///</summary> [Description(«Error opening installation log file. Verify that the specified log file location exists and that you can write to it.«)] ERROR_INSTALL_LOG_FAILURE = 0x000656, /// <summary> /// The language of this installation package is not supported by your system. ///</summary> [Description(«The language of this installation package is not supported by your system.«)] ERROR_INSTALL_LANGUAGE_UNSUPPORTED = 0x000657, /// <summary> /// Error applying transforms. Verify that the specified transform paths are valid. ///</summary> [Description(«Error applying transforms. Verify that the specified transform paths are valid.«)] ERROR_INSTALL_TRANSFORM_FAILURE = 0x000658, /// <summary> /// This installation is forbidden by system policy. Contact your system administrator. ///</summary> [Description(«This installation is forbidden by system policy. Contact your system administrator.«)] ERROR_INSTALL_PACKAGE_REJECTED = 0x000659, /// <summary> /// Function could not be executed. ///</summary> [Description(«Function could not be executed.«)] ERROR_FUNCTION_NOT_CALLED = 0x00065a, /// <summary> /// Function failed during execution. ///</summary> [Description(«Function failed during execution.«)] ERROR_FUNCTION_FAILED = 0x00065b, /// <summary> /// Invalid or unknown table specified. ///</summary> [Description(«Invalid or unknown table specified.«)] ERROR_INVALID_TABLE = 0x00065c, /// <summary> /// Data supplied is of wrong type. ///</summary> [Description(«Data supplied is of wrong type.«)] ERROR_DATATYPE_MISMATCH = 0x00065d, /// <summary> /// Data of this type is not supported. ///</summary> [Description(«Data of this type is not supported.«)] ERROR_UNSUPPORTED_TYPE = 0x00065e, /// <summary> /// The Windows Installer service failed to start. Contact your support personnel. ///</summary> [Description(«The Windows Installer service failed to start. Contact your support personnel.«)] ERROR_CREATE_FAILED = 0x00065f, /// <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> [Description(«The Temp folder is on a drive that is full or is inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder.«)] ERROR_INSTALL_TEMP_UNWRITABLE = 0x000660, /// <summary> /// This installation package is not supported by this processor type. Contact your product vendor. ///</summary> [Description(«This installation package is not supported by this processor type. Contact your product vendor.«)] ERROR_INSTALL_PLATFORM_UNSUPPORTED = 0x000661, /// <summary> /// Component not used on this computer. ///</summary> [Description(«Component not used on this computer.«)] ERROR_INSTALL_NOTUSED = 0x000662, /// <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> [Description(«This update package could not be opened. Verify that the update package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer update package.«)] ERROR_PATCH_PACKAGE_OPEN_FAILED = 0x000663, /// <summary> /// This update package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer update package. ///</summary> [Description(«This update package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer update package.«)] ERROR_PATCH_PACKAGE_INVALID = 0x000664, /// <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> [Description(«This update package cannot be processed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.«)] ERROR_PATCH_PACKAGE_UNSUPPORTED = 0x000665, /// <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> [Description(«Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel.«)] ERROR_PRODUCT_VERSION = 0x000666, /// <summary> /// Invalid command line argument. Consult the Windows Installer SDK for detailed command line help. ///</summary> [Description(«Invalid command line argument. Consult the Windows Installer SDK for detailed command line help.«)] ERROR_INVALID_COMMAND_LINE = 0x000667, /// <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> [Description(«Only administrators have permission to add, remove, or configure server software during a Terminal services remote session. If you want to install or configure software on the server, contact your network administrator.«)] ERROR_INSTALL_REMOTE_DISALLOWED = 0x000668, /// <summary> /// The requested operation completed successfully. The system will be restarted so the changes can take effect. ///</summary> [Description(«The requested operation completed successfully. The system will be restarted so the changes can take effect.«)] ERROR_SUCCESS_REBOOT_INITIATED = 0x000669, /// <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> [Description(«The upgrade cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade.«)] ERROR_PATCH_TARGET_NOT_FOUND = 0x00066a, /// <summary> /// The update package is not permitted by software restriction policy. ///</summary> [Description(«The update package is not permitted by software restriction policy.«)] ERROR_PATCH_PACKAGE_REJECTED = 0x00066b, /// <summary> /// One or more customizations are not permitted by software restriction policy. ///</summary> [Description(«One or more customizations are not permitted by software restriction policy.«)] ERROR_INSTALL_TRANSFORM_REJECTED = 0x00066c, /// <summary> /// The Windows Installer does not permit installation from a Remote Desktop Connection. ///</summary> [Description(«The Windows Installer does not permit installation from a Remote Desktop Connection.«)] ERROR_INSTALL_REMOTE_PROHIBITED = 0x00066d, /// <summary> /// Uninstallation of the update package is not supported. ///</summary> [Description(«Uninstallation of the update package is not supported.«)] ERROR_PATCH_REMOVAL_UNSUPPORTED = 0x00066e, /// <summary> /// The update is not applied to this product. ///</summary> [Description(«The update is not applied to this product.«)] ERROR_UNKNOWN_PATCH = 0x00066f, /// <summary> /// No valid sequence could be found for the set of updates. ///</summary> [Description(«No valid sequence could be found for the set of updates.«)] ERROR_PATCH_NO_SEQUENCE = 0x000670, /// <summary> /// Update removal was disallowed by policy. ///</summary> [Description(«Update removal was disallowed by policy.«)] ERROR_PATCH_REMOVAL_DISALLOWED = 0x000671, /// <summary> /// The XML update data is invalid. ///</summary> [Description(«The XML update data is invalid.«)] ERROR_INVALID_PATCH_XML = 0x000672, /// <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> [Description(«Windows Installer does not permit updating of managed advertised products. At least one feature of the product must be installed before applying the update.«)] ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT = 0x000673, /// <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> [Description(«The Windows Installer service is not accessible in Safe Mode. Please try again when your computer is not in Safe Mode or you can use System Restore to return your machine to a previous good state.«)] ERROR_INSTALL_SERVICE_SAFEBOOT = 0x000674, /// <summary> /// A fail fast exception occurred. Exception handlers will not be invoked and the process will be terminated immediately. ///</summary> [Description(«A fail fast exception occurred. Exception handlers will not be invoked and the process will be terminated immediately.«)] ERROR_FAIL_FAST_EXCEPTION = 0x000675, /// <summary> /// The app that you are trying to run is not supported on this version of Windows. ///</summary> [Description(«The app that you are trying to run is not supported on this version of Windows.«)] ERROR_INSTALL_REJECTED = 0x000676, /// <summary> /// The string binding is invalid. ///</summary> [Description(«The string binding is invalid.«)] RPC_S_INVALID_STRING_BINDING = 0x0006a4, /// <summary> /// The binding handle is not the correct type. ///</summary> [Description(«The binding handle is not the correct type.«)] RPC_S_WRONG_KIND_OF_BINDING = 0x0006a5, /// <summary> /// The binding handle is invalid. ///</summary> [Description(«The binding handle is invalid.«)] RPC_S_INVALID_BINDING = 0x0006a6, /// <summary> /// The RPC protocol sequence is not supported. ///</summary> [Description(«The RPC protocol sequence is not supported.«)] RPC_S_PROTSEQ_NOT_SUPPORTED = 0x0006a7, /// <summary> /// The RPC protocol sequence is invalid. ///</summary> [Description(«The RPC protocol sequence is invalid.«)] RPC_S_INVALID_RPC_PROTSEQ = 0x0006a8, /// <summary> /// The string universal unique identifier (UUID) is invalid. ///</summary> [Description(«The string universal unique identifier (UUID) is invalid.«)] RPC_S_INVALID_STRING_UUID = 0x0006a9, /// <summary> /// The endpoint format is invalid. ///</summary> [Description(«The endpoint format is invalid.«)] RPC_S_INVALID_ENDPOINT_FORMAT = 0x0006aa, /// <summary> /// The network address is invalid. ///</summary> [Description(«The network address is invalid.«)] RPC_S_INVALID_NET_ADDR = 0x0006ab, /// <summary> /// No endpoint was found. ///</summary> [Description(«No endpoint was found.«)] RPC_S_NO_ENDPOINT_FOUND = 0x0006ac, /// <summary> /// The timeout value is invalid. ///</summary> [Description(«The timeout value is invalid.«)] RPC_S_INVALID_TIMEOUT = 0x0006ad, /// <summary> /// The object universal unique identifier (UUID) was not found. ///</summary> [Description(«The object universal unique identifier (UUID) was not found.«)] RPC_S_OBJECT_NOT_FOUND = 0x0006ae, /// <summary> /// The object universal unique identifier (UUID) has already been registered. ///</summary> [Description(«The object universal unique identifier (UUID) has already been registered.«)] RPC_S_ALREADY_REGISTERED = 0x0006af, /// <summary> /// The type universal unique identifier (UUID) has already been registered. ///</summary> [Description(«The type universal unique identifier (UUID) has already been registered.«)] RPC_S_TYPE_ALREADY_REGISTERED = 0x0006b0, /// <summary> /// The RPC server is already listening. ///</summary> [Description(«The RPC server is already listening.«)] RPC_S_ALREADY_LISTENING = 0x0006b1, /// <summary> /// No protocol sequences have been registered. ///</summary> [Description(«No protocol sequences have been registered.«)] RPC_S_NO_PROTSEQS_REGISTERED = 0x0006b2, /// <summary> /// The RPC server is not listening. ///</summary> [Description(«The RPC server is not listening.«)] RPC_S_NOT_LISTENING = 0x0006b3, /// <summary> /// The manager type is unknown. ///</summary> [Description(«The manager type is unknown.«)] RPC_S_UNKNOWN_MGR_TYPE = 0x0006b4, /// <summary> /// The interface is unknown. ///</summary> [Description(«The interface is unknown.«)] RPC_S_UNKNOWN_IF = 0x0006b5, /// <summary> /// There are no bindings. ///</summary> [Description(«There are no bindings.«)] RPC_S_NO_BINDINGS = 0x0006b6, /// <summary> /// There are no protocol sequences. ///</summary> [Description(«There are no protocol sequences.«)] RPC_S_NO_PROTSEQS = 0x0006b7, /// <summary> /// The endpoint cannot be created. ///</summary> [Description(«The endpoint cannot be created.«)] RPC_S_CANT_CREATE_ENDPOINT = 0x0006b8, /// <summary> /// Not enough resources are available to complete this operation. ///</summary> [Description(«Not enough resources are available to complete this operation.«)] RPC_S_OUT_OF_RESOURCES = 0x0006b9, /// <summary> /// The RPC server is unavailable. ///</summary> [Description(«The RPC server is unavailable.«)] RPC_S_SERVER_UNAVAILABLE = 0x0006ba, /// <summary> /// The RPC server is too busy to complete this operation. ///</summary> [Description(«The RPC server is too busy to complete this operation.«)] RPC_S_SERVER_TOO_BUSY = 0x0006bb, /// <summary> /// The network options are invalid. ///</summary> [Description(«The network options are invalid.«)] RPC_S_INVALID_NETWORK_OPTIONS = 0x0006bc, /// <summary> /// There are no remote procedure calls active on this thread. ///</summary> [Description(«There are no remote procedure calls active on this thread.«)] RPC_S_NO_CALL_ACTIVE = 0x0006bd, /// <summary> /// The remote procedure call failed. ///</summary> [Description(«The remote procedure call failed.«)] RPC_S_CALL_FAILED = 0x0006be, /// <summary> /// The remote procedure call failed and did not execute. ///</summary> [Description(«The remote procedure call failed and did not execute.«)] RPC_S_CALL_FAILED_DNE = 0x0006bf, /// <summary> /// A remote procedure call (RPC) protocol error occurred. ///</summary> [Description(«A remote procedure call (RPC) protocol error occurred.«)] RPC_S_PROTOCOL_ERROR = 0x0006c0, /// <summary> /// Access to the HTTP proxy is denied. ///</summary> [Description(«Access to the HTTP proxy is denied.«)] RPC_S_PROXY_ACCESS_DENIED = 0x0006c1, /// <summary> /// The transfer syntax is not supported by the RPC server. ///</summary> [Description(«The transfer syntax is not supported by the RPC server.«)] RPC_S_UNSUPPORTED_TRANS_SYN = 0x0006c2, /// <summary> /// The universal unique identifier (UUID) type is not supported. ///</summary> [Description(«The universal unique identifier (UUID) type is not supported.«)] RPC_S_UNSUPPORTED_TYPE = 0x0006c4, /// <summary> /// The tag is invalid. ///</summary> [Description(«The tag is invalid.«)] RPC_S_INVALID_TAG = 0x0006c5, /// <summary> /// The array bounds are invalid. ///</summary> [Description(«The array bounds are invalid.«)] RPC_S_INVALID_BOUND = 0x0006c6, /// <summary> /// The binding does not contain an entry name. ///</summary> [Description(«The binding does not contain an entry name.«)] RPC_S_NO_ENTRY_NAME = 0x0006c7, /// <summary> /// The name syntax is invalid. ///</summary> [Description(«The name syntax is invalid.«)] RPC_S_INVALID_NAME_SYNTAX = 0x0006c8, /// <summary> /// The name syntax is not supported. ///</summary> [Description(«The name syntax is not supported.«)] RPC_S_UNSUPPORTED_NAME_SYNTAX = 0x0006c9, /// <summary> /// No network address is available to use to construct a universal unique identifier (UUID). ///</summary> [Description(«No network address is available to use to construct a universal unique identifier (UUID).«)] RPC_S_UUID_NO_ADDRESS = 0x0006cb, /// <summary> /// The endpoint is a duplicate. ///</summary> [Description(«The endpoint is a duplicate.«)] RPC_S_DUPLICATE_ENDPOINT = 0x0006cc, /// <summary> /// The authentication type is unknown. ///</summary> [Description(«The authentication type is unknown.«)] RPC_S_UNKNOWN_AUTHN_TYPE = 0x0006cd, /// <summary> /// The maximum number of calls is too small. ///</summary> [Description(«The maximum number of calls is too small.«)] RPC_S_MAX_CALLS_TOO_SMALL = 0x0006ce, /// <summary> /// The string is too long. ///</summary> [Description(«The string is too long.«)] RPC_S_STRING_TOO_LONG = 0x0006cf, /// <summary> /// The RPC protocol sequence was not found. ///</summary> [Description(«The RPC protocol sequence was not found.«)] RPC_S_PROTSEQ_NOT_FOUND = 0x0006d0, /// <summary> /// The procedure number is out of range. ///</summary> [Description(«The procedure number is out of range.«)] RPC_S_PROCNUM_OUT_OF_RANGE = 0x0006d1, /// <summary> /// The binding does not contain any authentication information. ///</summary> [Description(«The binding does not contain any authentication information.«)] RPC_S_BINDING_HAS_NO_AUTH = 0x0006d2, /// <summary> /// The authentication service is unknown. ///</summary> [Description(«The authentication service is unknown.«)] RPC_S_UNKNOWN_AUTHN_SERVICE = 0x0006d3, /// <summary> /// The authentication level is unknown. ///</summary> [Description(«The authentication level is unknown.«)] RPC_S_UNKNOWN_AUTHN_LEVEL = 0x0006d4, /// <summary> /// The security context is invalid. ///</summary> [Description(«The security context is invalid.«)] RPC_S_INVALID_AUTH_IDENTITY = 0x0006d5, /// <summary> /// The authorization service is unknown. ///</summary> [Description(«The authorization service is unknown.«)] RPC_S_UNKNOWN_AUTHZ_SERVICE = 0x0006d6, /// <summary> /// The entry is invalid. ///</summary> [Description(«The entry is invalid.«)] EPT_S_INVALID_ENTRY = 0x0006d7, /// <summary> /// The server endpoint cannot perform the operation. ///</summary> [Description(«The server endpoint cannot perform the operation.«)] EPT_S_CANT_PERFORM_OP = 0x0006d8, /// <summary> /// There are no more endpoints available from the endpoint mapper. ///</summary> [Description(«There are no more endpoints available from the endpoint mapper.«)] EPT_S_NOT_REGISTERED = 0x0006d9, /// <summary> /// No interfaces have been exported. ///</summary> [Description(«No interfaces have been exported.«)] RPC_S_NOTHING_TO_EXPORT = 0x0006da, /// <summary> /// The entry name is incomplete. ///</summary> [Description(«The entry name is incomplete.«)] RPC_S_INCOMPLETE_NAME = 0x0006db, /// <summary> /// The version option is invalid. ///</summary> [Description(«The version option is invalid.«)] RPC_S_INVALID_VERS_OPTION = 0x0006dc, /// <summary> /// There are no more members. ///</summary> [Description(«There are no more members.«)] RPC_S_NO_MORE_MEMBERS = 0x0006dd, /// <summary> /// There is nothing to unexport. ///</summary> [Description(«There is nothing to unexport.«)] RPC_S_NOT_ALL_OBJS_UNEXPORTED = 0x0006de, /// <summary> /// The interface was not found. ///</summary> [Description(«The interface was not found.«)] RPC_S_INTERFACE_NOT_FOUND = 0x0006df, /// <summary> /// The entry already exists. ///</summary> [Description(«The entry already exists.«)] RPC_S_ENTRY_ALREADY_EXISTS = 0x0006e0, /// <summary> /// The entry is not found. ///</summary> [Description(«The entry is not found.«)] RPC_S_ENTRY_NOT_FOUND = 0x0006e1, /// <summary> /// The name service is unavailable. ///</summary> [Description(«The name service is unavailable.«)] RPC_S_NAME_SERVICE_UNAVAILABLE = 0x0006e2, /// <summary> /// The network address family is invalid. ///</summary> [Description(«The network address family is invalid.«)] RPC_S_INVALID_NAF_ID = 0x0006e3, /// <summary> /// The requested operation is not supported. ///</summary> [Description(«The requested operation is not supported.«)] RPC_S_CANNOT_SUPPORT = 0x0006e4, /// <summary> /// No security context is available to allow impersonation. ///</summary> [Description(«No security context is available to allow impersonation.«)] RPC_S_NO_CONTEXT_AVAILABLE = 0x0006e5, /// <summary> /// An internal error occurred in a remote procedure call (RPC). ///</summary> [Description(«An internal error occurred in a remote procedure call (RPC).«)] RPC_S_INTERNAL_ERROR = 0x0006e6, /// <summary> /// The RPC server attempted an integer division by zero. ///</summary> [Description(«The RPC server attempted an integer division by zero.«)] RPC_S_ZERO_DIVIDE = 0x0006e7, /// <summary> /// An addressing error occurred in the RPC server. ///</summary> [Description(«An addressing error occurred in the RPC server.«)] RPC_S_ADDRESS_ERROR = 0x0006e8, /// <summary> /// A floating-point operation at the RPC server caused a division by zero. ///</summary> [Description(«A floating-point operation at the RPC server caused a division by zero.«)] RPC_S_FP_DIV_ZERO = 0x0006e9, /// <summary> /// A floating-point underflow occurred at the RPC server. ///</summary> [Description(«A floating-point underflow occurred at the RPC server.«)] RPC_S_FP_UNDERFLOW = 0x0006ea, /// <summary> /// A floating-point overflow occurred at the RPC server. ///</summary> [Description(«A floating-point overflow occurred at the RPC server.«)] RPC_S_FP_OVERFLOW = 0x0006eb, /// <summary> /// The list of RPC servers available for the binding of auto handles has been exhausted. ///</summary> [Description(«The list of RPC servers available for the binding of auto handles has been exhausted.«)] RPC_X_NO_MORE_ENTRIES = 0x0006ec, /// <summary> /// Unable to open the character translation table file. ///</summary> [Description(«Unable to open the character translation table file.«)] RPC_X_SS_CHAR_TRANS_OPEN_FAIL = 0x0006ed, /// <summary> /// The file containing the character translation table has fewer than 512 bytes. ///</summary> [Description(«The file containing the character translation table has fewer than 512 bytes.«)] RPC_X_SS_CHAR_TRANS_SHORT_FILE = 0x0006ee, /// <summary> /// A null context handle was passed from the client to the host during a remote procedure call. ///</summary> [Description(«A null context handle was passed from the client to the host during a remote procedure call.«)] RPC_X_SS_IN_NULL_CONTEXT = 0x0006ef, /// <summary> /// The context handle changed during a remote procedure call. ///</summary> [Description(«The context handle changed during a remote procedure call.«)] RPC_X_SS_CONTEXT_DAMAGED = 0x0006f1, /// <summary> /// The binding handles passed to a remote procedure call do not match. ///</summary> [Description(«The binding handles passed to a remote procedure call do not match.«)] RPC_X_SS_HANDLES_MISMATCH = 0x0006f2, /// <summary> /// The stub is unable to get the remote procedure call handle. ///</summary> [Description(«The stub is unable to get the remote procedure call handle.«)] RPC_X_SS_CANNOT_GET_CALL_HANDLE = 0x0006f3, /// <summary> /// A null reference pointer was passed to the stub. ///</summary> [Description(«A null reference pointer was passed to the stub.«)] RPC_X_NULL_REF_POINTER = 0x0006f4, /// <summary> /// The enumeration value is out of range. ///</summary> [Description(«The enumeration value is out of range.«)] RPC_X_ENUM_VALUE_OUT_OF_RANGE = 0x0006f5, /// <summary> /// The byte count is too small. ///</summary> [Description(«The byte count is too small.«)] RPC_X_BYTE_COUNT_TOO_SMALL = 0x0006f6, /// <summary> /// The stub received bad data. ///</summary> [Description(«The stub received bad data.«)] RPC_X_BAD_STUB_DATA = 0x0006f7, /// <summary> /// The supplied user buffer is not valid for the requested operation. ///</summary> [Description(«The supplied user buffer is not valid for the requested operation.«)] ERROR_INVALID_USER_BUFFER = 0x0006f8, /// <summary> /// The disk media is not recognized. It may not be formatted. ///</summary> [Description(«The disk media is not recognized. It may not be formatted.«)] ERROR_UNRECOGNIZED_MEDIA = 0x0006f9, /// <summary> /// The workstation does not have a trust secret. ///</summary> [Description(«The workstation does not have a trust secret.«)] ERROR_NO_TRUST_LSA_SECRET = 0x0006fa, /// <summary> /// The security database on the server does not have a computer account for this workstation trust relationship. ///</summary> [Description(«The security database on the server does not have a computer account for this workstation trust relationship.«)] ERROR_NO_TRUST_SAM_ACCOUNT = 0x0006fb, /// <summary> /// The trust relationship between the primary domain and the trusted domain failed. ///</summary> [Description(«The trust relationship between the primary domain and the trusted domain failed.«)] ERROR_TRUSTED_DOMAIN_FAILURE = 0x0006fc, /// <summary> /// The trust relationship between this workstation and the primary domain failed. ///</summary> [Description(«The trust relationship between this workstation and the primary domain failed.«)] ERROR_TRUSTED_RELATIONSHIP_FAILURE = 0x0006fd, /// <summary> /// The network logon failed. ///</summary> [Description(«The network logon failed.«)] ERROR_TRUST_FAILURE = 0x0006fe, /// <summary> /// A remote procedure call is already in progress for this thread. ///</summary> [Description(«A remote procedure call is already in progress for this thread.«)] RPC_S_CALL_IN_PROGRESS = 0x0006ff, /// <summary> /// An attempt was made to logon, but the network logon service was not started. ///</summary> [Description(«An attempt was made to logon, but the network logon service was not started.«)] ERROR_NETLOGON_NOT_STARTED = 0x000700, /// <summary> /// The user’s account has expired. ///</summary> [Description(«The user’s account has expired.«)] ERROR_ACCOUNT_EXPIRED = 0x000701, /// <summary> /// The redirector is in use and cannot be unloaded. ///</summary> [Description(«The redirector is in use and cannot be unloaded.«)] ERROR_REDIRECTOR_HAS_OPEN_HANDLES = 0x000702, /// <summary> /// The specified printer driver is already installed. ///</summary> [Description(«The specified printer driver is already installed.«)] ERROR_PRINTER_DRIVER_ALREADY_INSTALLED = 0x000703, /// <summary> /// The specified port is unknown. ///</summary> [Description(«The specified port is unknown.«)] ERROR_UNKNOWN_PORT = 0x000704, /// <summary> /// The printer driver is unknown. ///</summary> [Description(«The printer driver is unknown.«)] ERROR_UNKNOWN_PRINTER_DRIVER = 0x000705, /// <summary> /// The print processor is unknown. ///</summary> [Description(«The print processor is unknown.«)] ERROR_UNKNOWN_PRINTPROCESSOR = 0x000706, /// <summary> /// The specified separator file is invalid. ///</summary> [Description(«The specified separator file is invalid.«)] ERROR_INVALID_SEPARATOR_FILE = 0x000707, /// <summary> /// The specified priority is invalid. ///</summary> [Description(«The specified priority is invalid.«)] ERROR_INVALID_PRIORITY = 0x000708, /// <summary> /// The printer name is invalid. ///</summary> [Description(«The printer name is invalid.«)] ERROR_INVALID_PRINTER_NAME = 0x000709, /// <summary> /// The printer already exists. ///</summary> [Description(«The printer already exists.«)] ERROR_PRINTER_ALREADY_EXISTS = 0x00070a, /// <summary> /// The printer command is invalid. ///</summary> [Description(«The printer command is invalid.«)] ERROR_INVALID_PRINTER_COMMAND = 0x00070b, /// <summary> /// The specified datatype is invalid. ///</summary> [Description(«The specified datatype is invalid.«)] ERROR_INVALID_DATATYPE = 0x00070c, /// <summary> /// The environment specified is invalid. ///</summary> [Description(«The environment specified is invalid.«)] ERROR_INVALID_ENVIRONMENT = 0x00070d, /// <summary> /// There are no more bindings. ///</summary> [Description(«There are no more bindings.«)] RPC_S_NO_MORE_BINDINGS = 0x00070e, /// <summary> /// The account used is an interdomain trust account. Use your global user account or local user account to access this server. ///</summary> [Description(«The account used is an interdomain trust account. Use your global user account or local user account to access this server.«)] ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT = 0x00070f, /// <summary> /// The account used is a computer account. Use your global user account or local user account to access this server. ///</summary> [Description(«The account used is a computer account. Use your global user account or local user account to access this server.«)] ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT = 0x000710, /// <summary> /// The account used is a server trust account. Use your global user account or local user account to access this server. ///</summary> [Description(«The account used is a server trust account. Use your global user account or local user account to access this server.«)] ERROR_NOLOGON_SERVER_TRUST_ACCOUNT = 0x000711, /// <summary> /// The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain. ///</summary> [Description(«The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain.«)] ERROR_DOMAIN_TRUST_INCONSISTENT = 0x000712, /// <summary> /// The server is in use and cannot be unloaded. ///</summary> [Description(«The server is in use and cannot be unloaded.«)] ERROR_SERVER_HAS_OPEN_HANDLES = 0x000713, /// <summary> /// The specified image file did not contain a resource section. ///</summary> [Description(«The specified image file did not contain a resource section.«)] ERROR_RESOURCE_DATA_NOT_FOUND = 0x000714, /// <summary> /// The specified resource type cannot be found in the image file. ///</summary> [Description(«The specified resource type cannot be found in the image file.«)] ERROR_RESOURCE_TYPE_NOT_FOUND = 0x000715, /// <summary> /// The specified resource name cannot be found in the image file. ///</summary> [Description(«The specified resource name cannot be found in the image file.«)] ERROR_RESOURCE_NAME_NOT_FOUND = 0x000716, /// <summary> /// The specified resource language ID cannot be found in the image file. ///</summary> [Description(«The specified resource language ID cannot be found in the image file.«)] ERROR_RESOURCE_LANG_NOT_FOUND = 0x000717, /// <summary> /// Not enough quota is available to process this command. ///</summary> [Description(«Not enough quota is available to process this command.«)] ERROR_NOT_ENOUGH_QUOTA = 0x000718, /// <summary> /// No interfaces have been registered. ///</summary> [Description(«No interfaces have been registered.«)] RPC_S_NO_INTERFACES = 0x000719, /// <summary> /// The remote procedure call was cancelled. ///</summary> [Description(«The remote procedure call was cancelled.«)] RPC_S_CALL_CANCELLED = 0x00071a, /// <summary> /// The binding handle does not contain all required information. ///</summary> [Description(«The binding handle does not contain all required information.«)] RPC_S_BINDING_INCOMPLETE = 0x00071b, /// <summary> /// A communications failure occurred during a remote procedure call. ///</summary> [Description(«A communications failure occurred during a remote procedure call.«)] RPC_S_COMM_FAILURE = 0x00071c, /// <summary> /// The requested authentication level is not supported. ///</summary> [Description(«The requested authentication level is not supported.«)] RPC_S_UNSUPPORTED_AUTHN_LEVEL = 0x00071d, /// <summary> /// No principal name registered. ///</summary> [Description(«No principal name registered.«)] RPC_S_NO_PRINC_NAME = 0x00071e, /// <summary> /// The error specified is not a valid Windows RPC error code. ///</summary> [Description(«The error specified is not a valid Windows RPC error code.«)] RPC_S_NOT_RPC_ERROR = 0x00071f, /// <summary> /// A UUID that is valid only on this computer has been allocated. ///</summary> [Description(«A UUID that is valid only on this computer has been allocated.«)] RPC_S_UUID_LOCAL_ONLY = 0x000720, /// <summary> /// A security package specific error occurred. ///</summary> [Description(«A security package specific error occurred.«)] RPC_S_SEC_PKG_ERROR = 0x000721, /// <summary> /// Thread is not canceled. ///</summary> [Description(«Thread is not canceled.«)] RPC_S_NOT_CANCELLED = 0x000722, /// <summary> /// Invalid operation on the encoding/decoding handle. ///</summary> [Description(«Invalid operation on the encoding/decoding handle.«)] RPC_X_INVALID_ES_ACTION = 0x000723, /// <summary> /// Incompatible version of the serializing package. ///</summary> [Description(«Incompatible version of the serializing package.«)] RPC_X_WRONG_ES_VERSION = 0x000724, /// <summary> /// Incompatible version of the RPC stub. ///</summary> [Description(«Incompatible version of the RPC stub.«)] RPC_X_WRONG_STUB_VERSION = 0x000725, /// <summary> /// The RPC pipe object is invalid or corrupted. ///</summary> [Description(«The RPC pipe object is invalid or corrupted.«)] RPC_X_INVALID_PIPE_OBJECT = 0x000726, /// <summary> /// An invalid operation was attempted on an RPC pipe object. ///</summary> [Description(«An invalid operation was attempted on an RPC pipe object.«)] RPC_X_WRONG_PIPE_ORDER = 0x000727, /// <summary> /// Unsupported RPC pipe version. ///</summary> [Description(«Unsupported RPC pipe version.«)] RPC_X_WRONG_PIPE_VERSION = 0x000728, /// <summary> /// HTTP proxy server rejected the connection because the cookie authentication failed. ///</summary> [Description(«HTTP proxy server rejected the connection because the cookie authentication failed.«)] RPC_S_COOKIE_AUTH_FAILED = 0x000729, /// <summary> /// The group member was not found. ///</summary> [Description(«The group member was not found.«)] RPC_S_GROUP_MEMBER_NOT_FOUND = 0x00076a, /// <summary> /// The endpoint mapper database entry could not be created. ///</summary> [Description(«The endpoint mapper database entry could not be created.«)] EPT_S_CANT_CREATE = 0x00076b, /// <summary> /// The object universal unique identifier (UUID) is the nil UUID. ///</summary> [Description(«The object universal unique identifier (UUID) is the nil UUID.«)] RPC_S_INVALID_OBJECT = 0x00076c, /// <summary> /// The specified time is invalid. ///</summary> [Description(«The specified time is invalid.«)] ERROR_INVALID_TIME = 0x00076d, /// <summary> /// The specified form name is invalid. ///</summary> [Description(«The specified form name is invalid.«)] ERROR_INVALID_FORM_NAME = 0x00076e, /// <summary> /// The specified form size is invalid. ///</summary> [Description(«The specified form size is invalid.«)] ERROR_INVALID_FORM_SIZE = 0x00076f, /// <summary> /// The specified printer handle is already being waited on. ///</summary> [Description(«The specified printer handle is already being waited on.«)] ERROR_ALREADY_WAITING = 0x000770, /// <summary> /// The specified printer has been deleted. ///</summary> [Description(«The specified printer has been deleted.«)] ERROR_PRINTER_DELETED = 0x000771, /// <summary> /// The state of the printer is invalid. ///</summary> [Description(«The state of the printer is invalid.«)] ERROR_INVALID_PRINTER_STATE = 0x000772, /// <summary> /// The user’s password must be changed before signing in. ///</summary> [Description(«The user’s password must be changed before signing in.«)] ERROR_PASSWORD_MUST_CHANGE = 0x000773, /// <summary> /// Could not find the domain controller for this domain. ///</summary> [Description(«Could not find the domain controller for this domain.«)] ERROR_DOMAIN_CONTROLLER_NOT_FOUND = 0x000774, /// <summary> /// The referenced account is currently locked out and may not be logged on to. ///</summary> [Description(«The referenced account is currently locked out and may not be logged on to.«)] ERROR_ACCOUNT_LOCKED_OUT = 0x000775, /// <summary> /// The object exporter specified was not found. ///</summary> [Description(«The object exporter specified was not found.«)] OR_INVALID_OXID = 0x000776, /// <summary> /// The object specified was not found. ///</summary> [Description(«The object specified was not found.«)] OR_INVALID_OID = 0x000777, /// <summary> /// The object resolver set specified was not found. ///</summary> [Description(«The object resolver set specified was not found.«)] OR_INVALID_SET = 0x000778, /// <summary> /// Some data remains to be sent in the request buffer. ///</summary> [Description(«Some data remains to be sent in the request buffer.«)] RPC_S_SEND_INCOMPLETE = 0x000779, /// <summary> /// Invalid asynchronous remote procedure call handle. ///</summary> [Description(«Invalid asynchronous remote procedure call handle.«)] RPC_S_INVALID_ASYNC_HANDLE = 0x00077a, /// <summary> /// Invalid asynchronous RPC call handle for this operation. ///</summary> [Description(«Invalid asynchronous RPC call handle for this operation.«)] RPC_S_INVALID_ASYNC_CALL = 0x00077b, /// <summary> /// The RPC pipe object has already been closed. ///</summary> [Description(«The RPC pipe object has already been closed.«)] RPC_X_PIPE_CLOSED = 0x00077c, /// <summary> /// The RPC call completed before all pipes were processed. ///</summary> [Description(«The RPC call completed before all pipes were processed.«)] RPC_X_PIPE_DISCIPLINE_ERROR = 0x00077d, /// <summary> /// No more data is available from the RPC pipe. ///</summary> [Description(«No more data is available from the RPC pipe.«)] RPC_X_PIPE_EMPTY = 0x00077e, /// <summary> /// No site name is available for this machine. ///</summary> [Description(«No site name is available for this machine.«)] ERROR_NO_SITENAME = 0x00077f, /// <summary> /// The file cannot be accessed by the system. ///</summary> [Description(«The file cannot be accessed by the system.«)] ERROR_CANT_ACCESS_FILE = 0x000780, /// <summary> /// The name of the file cannot be resolved by the system. ///</summary> [Description(«The name of the file cannot be resolved by the system.«)] ERROR_CANT_RESOLVE_FILENAME = 0x000781, /// <summary> /// The entry is not of the expected type. ///</summary> [Description(«The entry is not of the expected type.«)] RPC_S_ENTRY_TYPE_MISMATCH = 0x000782, /// <summary> /// Not all object UUIDs could be exported to the specified entry. ///</summary> [Description(«Not all object UUIDs could be exported to the specified entry.«)] RPC_S_NOT_ALL_OBJS_EXPORTED = 0x000783, /// <summary> /// Interface could not be exported to the specified entry. ///</summary> [Description(«Interface could not be exported to the specified entry.«)] RPC_S_INTERFACE_NOT_EXPORTED = 0x000784, /// <summary> /// The specified profile entry could not be added. ///</summary> [Description(«The specified profile entry could not be added.«)] RPC_S_PROFILE_NOT_ADDED = 0x000785, /// <summary> /// The specified profile element could not be added. ///</summary> [Description(«The specified profile element could not be added.«)] RPC_S_PRF_ELT_NOT_ADDED = 0x000786, /// <summary> /// The specified profile element could not be removed. ///</summary> [Description(«The specified profile element could not be removed.«)] RPC_S_PRF_ELT_NOT_REMOVED = 0x000787, /// <summary> /// The group element could not be added. ///</summary> [Description(«The group element could not be added.«)] RPC_S_GRP_ELT_NOT_ADDED = 0x000788, /// <summary> /// The group element could not be removed. ///</summary> [Description(«The group element could not be removed.«)] RPC_S_GRP_ELT_NOT_REMOVED = 0x000789, /// <summary> /// The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers. ///</summary> [Description(«The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers.«)] ERROR_KM_DRIVER_BLOCKED = 0x00078a, /// <summary> /// The context has expired and can no longer be used. ///</summary> [Description(«The context has expired and can no longer be used.«)] ERROR_CONTEXT_EXPIRED = 0x00078b, /// <summary> /// The current user’s delegated trust creation quota has been exceeded. ///</summary> [Description(«The current user’s delegated trust creation quota has been exceeded.«)] ERROR_PER_USER_TRUST_QUOTA_EXCEEDED = 0x00078c, /// <summary> /// The total delegated trust creation quota has been exceeded. ///</summary> [Description(«The total delegated trust creation quota has been exceeded.«)] ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED = 0x00078d, /// <summary> /// The current user’s delegated trust deletion quota has been exceeded. ///</summary> [Description(«The current user’s delegated trust deletion quota has been exceeded.«)] ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED = 0x00078e, /// <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> [Description(«The computer you are signing into is protected by an authentication firewall. The specified account is not allowed to authenticate to the computer.«)] ERROR_AUTHENTICATION_FIREWALL_FAILED = 0x00078f, /// <summary> /// Remote connections to the Print Spooler are blocked by a policy set on your machine. ///</summary> [Description(«Remote connections to the Print Spooler are blocked by a policy set on your machine.«)] ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED = 0x000790, /// <summary> /// Authentication failed because NTLM authentication has been disabled. ///</summary> [Description(«Authentication failed because NTLM authentication has been disabled.«)] ERROR_NTLM_BLOCKED = 0x000791, /// <summary> /// Logon Failure: EAS policy requires that the user change their password before this operation can be performed. ///</summary> [Description(«Logon Failure: EAS policy requires that the user change their password before this operation can be performed.«)] ERROR_PASSWORD_CHANGE_REQUIRED = 0x000792, /// <summary> /// The pixel format is invalid. ///</summary> [Description(«The pixel format is invalid.«)] ERROR_INVALID_PIXEL_FORMAT = 0x0007d0, /// <summary> /// The specified driver is invalid. ///</summary> [Description(«The specified driver is invalid.«)] ERROR_BAD_DRIVER = 0x0007d1, /// <summary> /// The window style or class attribute is invalid for this operation. ///</summary> [Description(«The window style or class attribute is invalid for this operation.«)] ERROR_INVALID_WINDOW_STYLE = 0x0007d2, /// <summary> /// The requested metafile operation is not supported. ///</summary> [Description(«The requested metafile operation is not supported.«)] ERROR_METAFILE_NOT_SUPPORTED = 0x0007d3, /// <summary> /// The requested transformation operation is not supported. ///</summary> [Description(«The requested transformation operation is not supported.«)] ERROR_TRANSFORM_NOT_SUPPORTED = 0x0007d4, /// <summary> /// The requested clipping operation is not supported. ///</summary> [Description(«The requested clipping operation is not supported.«)] ERROR_CLIPPING_NOT_SUPPORTED = 0x0007d5, /// <summary> /// The specified color management module is invalid. ///</summary> [Description(«The specified color management module is invalid.«)] ERROR_INVALID_CMM = 0x0007da, /// <summary> /// The specified color profile is invalid. ///</summary> [Description(«The specified color profile is invalid.«)] ERROR_INVALID_PROFILE = 0x0007db, /// <summary> /// The specified tag was not found. ///</summary> [Description(«The specified tag was not found.«)] ERROR_TAG_NOT_FOUND = 0x0007dc, /// <summary> /// A required tag is not present. ///</summary> [Description(«A required tag is not present.«)] ERROR_TAG_NOT_PRESENT = 0x0007dd, /// <summary> /// The specified tag is already present. ///</summary> [Description(«The specified tag is already present.«)] ERROR_DUPLICATE_TAG = 0x0007de, /// <summary> /// The specified color profile is not associated with the specified device. ///</summary> [Description(«The specified color profile is not associated with the specified device.«)] ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE = 0x0007df, /// <summary> /// The specified color profile was not found. ///</summary> [Description(«The specified color profile was not found.«)] ERROR_PROFILE_NOT_FOUND = 0x0007e0, /// <summary> /// The specified color space is invalid. ///</summary> [Description(«The specified color space is invalid.«)] ERROR_INVALID_COLORSPACE = 0x0007e1, /// <summary> /// Image Color Management is not enabled. ///</summary> [Description(«Image Color Management is not enabled.«)] ERROR_ICM_NOT_ENABLED = 0x0007e2, /// <summary> /// There was an error while deleting the color transform. ///</summary> [Description(«There was an error while deleting the color transform.«)] ERROR_DELETING_ICM_XFORM = 0x0007e3, /// <summary> /// The specified color transform is invalid. ///</summary> [Description(«The specified color transform is invalid.«)] ERROR_INVALID_TRANSFORM = 0x0007e4, /// <summary> /// The specified transform does not match the bitmap’s color space. ///</summary> [Description(«The specified transform does not match the bitmap’s color space.«)] ERROR_COLORSPACE_MISMATCH = 0x0007e5, /// <summary> /// The specified named color index is not present in the profile. ///</summary> [Description(«The specified named color index is not present in the profile.«)] ERROR_INVALID_COLORINDEX = 0x0007e6, /// <summary> /// The specified profile is intended for a device of a different type than the specified device. ///</summary> [Description(«The specified profile is intended for a device of a different type than the specified device.«)] ERROR_PROFILE_DOES_NOT_MATCH_DEVICE = 0x0007e7, /// <summary> /// The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified. ///</summary> [Description(«The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified.«)] ERROR_CONNECTED_OTHER_PASSWORD = 0x00083c, /// <summary> /// The network connection was made successfully using default credentials. ///</summary> [Description(«The network connection was made successfully using default credentials.«)] ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT = 0x00083d, /// <summary> /// The specified username is invalid. ///</summary> [Description(«The specified username is invalid.«)] ERROR_BAD_USERNAME = 0x00089a, /// <summary> /// This network connection does not exist. ///</summary> [Description(«This network connection does not exist.«)] ERROR_NOT_CONNECTED = 0x0008ca, /// <summary> /// This network connection has files open or requests pending. ///</summary> [Description(«This network connection has files open or requests pending.«)] ERROR_OPEN_FILES = 0x000961, /// <summary> /// Active connections still exist. ///</summary> [Description(«Active connections still exist.«)] ERROR_ACTIVE_CONNECTIONS = 0x000962, /// <summary> /// The device is in use by an active process and cannot be disconnected. ///</summary> [Description(«The device is in use by an active process and cannot be disconnected.«)] ERROR_DEVICE_IN_USE = 0x000964, /// <summary> /// The specified print monitor is unknown. ///</summary> [Description(«The specified print monitor is unknown.«)] ERROR_UNKNOWN_PRINT_MONITOR = 0x000bb8, /// <summary> /// The specified printer driver is currently in use. ///</summary> [Description(«The specified printer driver is currently in use.«)] ERROR_PRINTER_DRIVER_IN_USE = 0x000bb9, /// <summary> /// The spool file was not found. ///</summary> [Description(«The spool file was not found.«)] ERROR_SPOOL_FILE_NOT_FOUND = 0x000bba, /// <summary> /// A StartDocPrinter call was not issued. ///</summary> [Description(«A StartDocPrinter call was not issued.«)] ERROR_SPL_NO_STARTDOC = 0x000bbb, /// <summary> /// An AddJob call was not issued. ///</summary> [Description(«An AddJob call was not issued.«)] ERROR_SPL_NO_ADDJOB = 0x000bbc, /// <summary> /// The specified print processor has already been installed. ///</summary> [Description(«The specified print processor has already been installed.«)] ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED = 0x000bbd, /// <summary> /// The specified print monitor has already been installed. ///</summary> [Description(«The specified print monitor has already been installed.«)] ERROR_PRINT_MONITOR_ALREADY_INSTALLED = 0x000bbe, /// <summary> /// The specified print monitor does not have the required functions. ///</summary> [Description(«The specified print monitor does not have the required functions.«)] ERROR_INVALID_PRINT_MONITOR = 0x000bbf, /// <summary> /// The specified print monitor is currently in use. ///</summary> [Description(«The specified print monitor is currently in use.«)] ERROR_PRINT_MONITOR_IN_USE = 0x000bc0, /// <summary> /// The requested operation is not allowed when there are jobs queued to the printer. ///</summary> [Description(«The requested operation is not allowed when there are jobs queued to the printer.«)] ERROR_PRINTER_HAS_JOBS_QUEUED = 0x000bc1, /// <summary> /// The requested operation is successful. Changes will not be effective until the system is rebooted. ///</summary> [Description(«The requested operation is successful. Changes will not be effective until the system is rebooted.«)] ERROR_SUCCESS_REBOOT_REQUIRED = 0x000bc2, /// <summary> /// The requested operation is successful. Changes will not be effective until the service is restarted. ///</summary> [Description(«The requested operation is successful. Changes will not be effective until the service is restarted.«)] ERROR_SUCCESS_RESTART_REQUIRED = 0x000bc3, /// <summary> /// No printers were found. ///</summary> [Description(«No printers were found.«)] ERROR_PRINTER_NOT_FOUND = 0x000bc4, /// <summary> /// The printer driver is known to be unreliable. ///</summary> [Description(«The printer driver is known to be unreliable.«)] ERROR_PRINTER_DRIVER_WARNED = 0x000bc5, /// <summary> /// The printer driver is known to harm the system. ///</summary> [Description(«The printer driver is known to harm the system.«)] ERROR_PRINTER_DRIVER_BLOCKED = 0x000bc6, /// <summary> /// The specified printer driver package is currently in use. ///</summary> [Description(«The specified printer driver package is currently in use.«)] ERROR_PRINTER_DRIVER_PACKAGE_IN_USE = 0x000bc7, /// <summary> /// Unable to find a core driver package that is required by the printer driver package. ///</summary> [Description(«Unable to find a core driver package that is required by the printer driver package.«)] ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND = 0x000bc8, /// <summary> /// The requested operation failed. A system reboot is required to roll back changes made. ///</summary> [Description(«The requested operation failed. A system reboot is required to roll back changes made.«)] ERROR_FAIL_REBOOT_REQUIRED = 0x000bc9, /// <summary> /// The requested operation failed. A system reboot has been initiated to roll back changes made. ///</summary> [Description(«The requested operation failed. A system reboot has been initiated to roll back changes made.«)] ERROR_FAIL_REBOOT_INITIATED = 0x000bca, /// <summary> /// The specified printer driver was not found on the system and needs to be downloaded. ///</summary> [Description(«The specified printer driver was not found on the system and needs to be downloaded.«)] ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED = 0x000bcb, /// <summary> /// The requested print job has failed to print. A print system update requires the job to be resubmitted. ///</summary> [Description(«The requested print job has failed to print. A print system update requires the job to be resubmitted.«)] ERROR_PRINT_JOB_RESTART_REQUIRED = 0x000bcc, /// <summary> /// The printer driver does not contain a valid manifest, or contains too many manifests. ///</summary> [Description(«The printer driver does not contain a valid manifest, or contains too many manifests.«)] ERROR_INVALID_PRINTER_DRIVER_MANIFEST = 0x000bcd, /// <summary> /// The specified printer cannot be shared. ///</summary> [Description(«The specified printer cannot be shared.«)] ERROR_PRINTER_NOT_SHAREABLE = 0x000bce, /// <summary> /// The operation was paused. ///</summary> [Description(«The operation was paused.«)] ERROR_REQUEST_PAUSED = 0x000bea, /// <summary> /// Reissue the given operation as a cached IO operation. ///</summary> [Description(«Reissue the given operation as a cached IO operation.«)] ERROR_IO_REISSUE_AS_CACHED = 0x000f6e, /// <summary> /// WINS encountered an error while processing the command. ///</summary> [Description(«WINS encountered an error while processing the command.«)] ERROR_WINS_INTERNAL = 0x000fa0, /// <summary> /// The local WINS cannot be deleted. ///</summary> [Description(«The local WINS cannot be deleted.«)] ERROR_CAN_NOT_DEL_LOCAL_WINS = 0x000fa1, /// <summary> /// The importation from the file failed. ///</summary> [Description(«The importation from the file failed.«)] ERROR_STATIC_INIT = 0x000fa2, /// <summary> /// The backup failed. Was a full backup done before? ///</summary> [Description(«The backup failed. Was a full backup done before?«)] ERROR_INC_BACKUP = 0x000fa3, /// <summary> /// The backup failed. Check the directory to which you are backing the database. ///</summary> [Description(«The backup failed. Check the directory to which you are backing the database.«)] ERROR_FULL_BACKUP = 0x000fa4, /// <summary> /// The name does not exist in the WINS database. ///</summary> [Description(«The name does not exist in the WINS database.«)] ERROR_REC_NON_EXISTENT = 0x000fa5, /// <summary> /// Replication with a nonconfigured partner is not allowed. ///</summary> [Description(«Replication with a nonconfigured partner is not allowed.«)] ERROR_RPL_NOT_ALLOWED = 0x000fa6, /// <summary> /// The version of the supplied content information is not supported. ///</summary> [Description(«The version of the supplied content information is not supported.«)] PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED = 0x000fd2, /// <summary> /// The supplied content information is malformed. ///</summary> [Description(«The supplied content information is malformed.«)] PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO = 0x000fd3, /// <summary> /// The requested data cannot be found in local or peer caches. ///</summary> [Description(«The requested data cannot be found in local or peer caches.«)] PEERDIST_ERROR_MISSING_DATA = 0x000fd4, /// <summary> /// No more data is available or required. ///</summary> [Description(«No more data is available or required.«)] PEERDIST_ERROR_NO_MORE = 0x000fd5, /// <summary> /// The supplied object has not been initialized. ///</summary> [Description(«The supplied object has not been initialized.«)] PEERDIST_ERROR_NOT_INITIALIZED = 0x000fd6, /// <summary> /// The supplied object has already been initialized. ///</summary> [Description(«The supplied object has already been initialized.«)] PEERDIST_ERROR_ALREADY_INITIALIZED = 0x000fd7, /// <summary> /// A shutdown operation is already in progress. ///</summary> [Description(«A shutdown operation is already in progress.«)] PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS = 0x000fd8, /// <summary> /// The supplied object has already been invalidated. ///</summary> [Description(«The supplied object has already been invalidated.«)] PEERDIST_ERROR_INVALIDATED = 0x000fd9, /// <summary> /// An element already exists and was not replaced. ///</summary> [Description(«An element already exists and was not replaced.«)] PEERDIST_ERROR_ALREADY_EXISTS = 0x000fda, /// <summary> /// Can not cancel the requested operation as it has already been completed. ///</summary> [Description(«Can not cancel the requested operation as it has already been completed.«)] PEERDIST_ERROR_OPERATION_NOTFOUND = 0x000fdb, /// <summary> /// Can not perform the reqested operation because it has already been carried out. ///</summary> [Description(«Can not perform the reqested operation because it has already been carried out.«)] PEERDIST_ERROR_ALREADY_COMPLETED = 0x000fdc, /// <summary> /// An operation accessed data beyond the bounds of valid data. ///</summary> [Description(«An operation accessed data beyond the bounds of valid data.«)] PEERDIST_ERROR_OUT_OF_BOUNDS = 0x000fdd, /// <summary> /// The requested version is not supported. ///</summary> [Description(«The requested version is not supported.«)] PEERDIST_ERROR_VERSION_UNSUPPORTED = 0x000fde, /// <summary> /// A configuration value is invalid. ///</summary> [Description(«A configuration value is invalid.«)] PEERDIST_ERROR_INVALID_CONFIGURATION = 0x000fdf, /// <summary> /// The SKU is not licensed. ///</summary> [Description(«The SKU is not licensed.«)] PEERDIST_ERROR_NOT_LICENSED = 0x000fe0, /// <summary> /// PeerDist Service is still initializing and will be available shortly. ///</summary> [Description(«PeerDist Service is still initializing and will be available shortly.«)] PEERDIST_ERROR_SERVICE_UNAVAILABLE = 0x000fe1, /// <summary> /// Communication with one or more computers will be temporarily blocked due to recent errors. ///</summary> [Description(«Communication with one or more computers will be temporarily blocked due to recent errors.«)] PEERDIST_ERROR_TRUST_FAILURE = 0x000fe2, /// <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> [Description(«The DHCP client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address.«)] ERROR_DHCP_ADDRESS_CONFLICT = 0x00001004, /// <summary> /// The GUID passed was not recognized as valid by a WMI data provider. ///</summary> [Description(«The GUID passed was not recognized as valid by a WMI data provider.«)] ERROR_WMI_GUID_NOT_FOUND = 0x00001068, /// <summary> /// The instance name passed was not recognized as valid by a WMI data provider. ///</summary> [Description(«The instance name passed was not recognized as valid by a WMI data provider.«)] ERROR_WMI_INSTANCE_NOT_FOUND = 0x00001069, /// <summary> /// The data item ID passed was not recognized as valid by a WMI data provider. ///</summary> [Description(«The data item ID passed was not recognized as valid by a WMI data provider.«)] ERROR_WMI_ITEMID_NOT_FOUND = 0x0000106a, /// <summary> /// The WMI request could not be completed and should be retried. ///</summary> [Description(«The WMI request could not be completed and should be retried.«)] ERROR_WMI_TRY_AGAIN = 0x0000106b, /// <summary> /// The WMI data provider could not be located. ///</summary> [Description(«The WMI data provider could not be located.«)] ERROR_WMI_DP_NOT_FOUND = 0x0000106c, /// <summary> /// The WMI data provider references an instance set that has not been registered. ///</summary> [Description(«The WMI data provider references an instance set that has not been registered.«)] ERROR_WMI_UNRESOLVED_INSTANCE_REF = 0x0000106d, /// <summary> /// The WMI data block or event notification has already been enabled. ///</summary> [Description(«The WMI data block or event notification has already been enabled.«)] ERROR_WMI_ALREADY_ENABLED = 0x0000106e, /// <summary> /// The WMI data block is no longer available. ///</summary> [Description(«The WMI data block is no longer available.«)] ERROR_WMI_GUID_DISCONNECTED = 0x0000106f, /// <summary> /// The WMI data service is not available. ///</summary> [Description(«The WMI data service is not available.«)] ERROR_WMI_SERVER_UNAVAILABLE = 0x00001070, /// <summary> /// The WMI data provider failed to carry out the request. ///</summary> [Description(«The WMI data provider failed to carry out the request.«)] ERROR_WMI_DP_FAILED = 0x00001071, /// <summary> /// The WMI MOF information is not valid. ///</summary> [Description(«The WMI MOF information is not valid.«)] ERROR_WMI_INVALID_MOF = 0x00001072, /// <summary> /// The WMI registration information is not valid. ///</summary> [Description(«The WMI registration information is not valid.«)] ERROR_WMI_INVALID_REGINFO = 0x00001073, /// <summary> /// The WMI data block or event notification has already been disabled. ///</summary> [Description(«The WMI data block or event notification has already been disabled.«)] ERROR_WMI_ALREADY_DISABLED = 0x00001074, /// <summary> /// The WMI data item or data block is read only. ///</summary> [Description(«The WMI data item or data block is read only.«)] ERROR_WMI_READ_ONLY = 0x00001075, /// <summary> /// The WMI data item or data block could not be changed. ///</summary> [Description(«The WMI data item or data block could not be changed.«)] ERROR_WMI_SET_FAILURE = 0x00001076, /// <summary> /// This operation is only valid in the context of an app container. ///</summary> [Description(«This operation is only valid in the context of an app container.«)] ERROR_NOT_APPCONTAINER = 0x0000109a, /// <summary> /// This application can only run in the context of an app container. ///</summary> [Description(«This application can only run in the context of an app container.«)] ERROR_APPCONTAINER_REQUIRED = 0x0000109b, /// <summary> /// This functionality is not supported in the context of an app container. ///</summary> [Description(«This functionality is not supported in the context of an app container.«)] ERROR_NOT_SUPPORTED_IN_APPCONTAINER = 0x0000109c, /// <summary> /// The length of the SID supplied is not a valid length for app container SIDs. ///</summary> [Description(«The length of the SID supplied is not a valid length for app container SIDs.«)] ERROR_INVALID_PACKAGE_SID_LENGTH = 0x0000109d, /// <summary> /// The media identifier does not represent a valid medium. ///</summary> [Description(«The media identifier does not represent a valid medium.«)] ERROR_INVALID_MEDIA = 0x000010cc, /// <summary> /// The library identifier does not represent a valid library. ///</summary> [Description(«The library identifier does not represent a valid library.«)] ERROR_INVALID_LIBRARY = 0x000010cd, /// <summary> /// The media pool identifier does not represent a valid media pool. ///</summary> [Description(«The media pool identifier does not represent a valid media pool.«)] ERROR_INVALID_MEDIA_POOL = 0x000010ce, /// <summary> /// The drive and medium are not compatible or exist in different libraries. ///</summary> [Description(«The drive and medium are not compatible or exist in different libraries.«)] ERROR_DRIVE_MEDIA_MISMATCH = 0x000010cf, /// <summary> /// The medium currently exists in an offline library and must be online to perform this operation. ///</summary> [Description(«The medium currently exists in an offline library and must be online to perform this operation.«)] ERROR_MEDIA_OFFLINE = 0x000010d0, /// <summary> /// The operation cannot be performed on an offline library. ///</summary> [Description(«The operation cannot be performed on an offline library.«)] ERROR_LIBRARY_OFFLINE = 0x000010d1, /// <summary> /// The library, drive, or media pool is empty. ///</summary> [Description(«The library, drive, or media pool is empty.«)] ERROR_EMPTY = 0x000010d2, /// <summary> /// The library, drive, or media pool must be empty to perform this operation. ///</summary> [Description(«The library, drive, or media pool must be empty to perform this operation.«)] ERROR_NOT_EMPTY = 0x000010d3, /// <summary> /// No media is currently available in this media pool or library. ///</summary> [Description(«No media is currently available in this media pool or library.«)] ERROR_MEDIA_UNAVAILABLE = 0x000010d4, /// <summary> /// A resource required for this operation is disabled. ///</summary> [Description(«A resource required for this operation is disabled.«)] ERROR_RESOURCE_DISABLED = 0x000010d5, /// <summary> /// The media identifier does not represent a valid cleaner. ///</summary> [Description(«The media identifier does not represent a valid cleaner.«)] ERROR_INVALID_CLEANER = 0x000010d6, /// <summary> /// The drive cannot be cleaned or does not support cleaning. ///</summary> [Description(«The drive cannot be cleaned or does not support cleaning.«)] ERROR_UNABLE_TO_CLEAN = 0x000010d7, /// <summary> /// The object identifier does not represent a valid object. ///</summary> [Description(«The object identifier does not represent a valid object.«)] ERROR_OBJECT_NOT_FOUND = 0x000010d8, /// <summary> /// Unable to read from or write to the database. ///</summary> [Description(«Unable to read from or write to the database.«)] ERROR_DATABASE_FAILURE = 0x000010d9, /// <summary> /// The database is full. ///</summary> [Description(«The database is full.«)] ERROR_DATABASE_FULL = 0x000010da, /// <summary> /// The medium is not compatible with the device or media pool. ///</summary> [Description(«The medium is not compatible with the device or media pool.«)] ERROR_MEDIA_INCOMPATIBLE = 0x000010db, /// <summary> /// The resource required for this operation does not exist. ///</summary> [Description(«The resource required for this operation does not exist.«)] ERROR_RESOURCE_NOT_PRESENT = 0x000010dc, /// <summary> /// The operation identifier is not valid. ///</summary> [Description(«The operation identifier is not valid.«)] ERROR_INVALID_OPERATION = 0x000010dd, /// <summary> /// The media is not mounted or ready for use. ///</summary> [Description(«The media is not mounted or ready for use.«)] ERROR_MEDIA_NOT_AVAILABLE = 0x000010de, /// <summary> /// The device is not ready for use. ///</summary> [Description(«The device is not ready for use.«)] ERROR_DEVICE_NOT_AVAILABLE = 0x000010df, /// <summary> /// The operator or administrator has refused the request. ///</summary> [Description(«The operator or administrator has refused the request.«)] ERROR_REQUEST_REFUSED = 0x000010e0, /// <summary> /// The drive identifier does not represent a valid drive. ///</summary> [Description(«The drive identifier does not represent a valid drive.«)] ERROR_INVALID_DRIVE_OBJECT = 0x000010e1, /// <summary> /// Library is full. No slot is available for use. ///</summary> [Description(«Library is full. No slot is available for use.«)] ERROR_LIBRARY_FULL = 0x000010e2, /// <summary> /// The transport cannot access the medium. ///</summary> [Description(«The transport cannot access the medium.«)] ERROR_MEDIUM_NOT_ACCESSIBLE = 0x000010e3, /// <summary> /// Unable to load the medium into the drive. ///</summary> [Description(«Unable to load the medium into the drive.«)] ERROR_UNABLE_TO_LOAD_MEDIUM = 0x000010e4, /// <summary> /// Unable to retrieve the drive status. ///</summary> [Description(«Unable to retrieve the drive status.«)] ERROR_UNABLE_TO_INVENTORY_DRIVE = 0x000010e5, /// <summary> /// Unable to retrieve the slot status. ///</summary> [Description(«Unable to retrieve the slot status.«)] ERROR_UNABLE_TO_INVENTORY_SLOT = 0x000010e6, /// <summary> /// Unable to retrieve status about the transport. ///</summary> [Description(«Unable to retrieve status about the transport.«)] ERROR_UNABLE_TO_INVENTORY_TRANSPORT = 0x000010e7, /// <summary> /// Cannot use the transport because it is already in use. ///</summary> [Description(«Cannot use the transport because it is already in use.«)] ERROR_TRANSPORT_FULL = 0x000010e8, /// <summary> /// Unable to open or close the inject/eject port. ///</summary> [Description(«Unable to open or close the inject/eject port.«)] ERROR_CONTROLLING_IEPORT = 0x000010e9, /// <summary> /// Unable to eject the medium because it is in a drive. ///</summary> [Description(«Unable to eject the medium because it is in a drive.«)] ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA = 0x000010ea, /// <summary> /// A cleaner slot is already reserved. ///</summary> [Description(«A cleaner slot is already reserved.«)] ERROR_CLEANER_SLOT_SET = 0x000010eb, /// <summary> /// A cleaner slot is not reserved. ///</summary> [Description(«A cleaner slot is not reserved.«)] ERROR_CLEANER_SLOT_NOT_SET = 0x000010ec, /// <summary> /// The cleaner cartridge has performed the maximum number of drive cleanings. ///</summary> [Description(«The cleaner cartridge has performed the maximum number of drive cleanings.«)] ERROR_CLEANER_CARTRIDGE_SPENT = 0x000010ed, /// <summary> /// Unexpected on-medium identifier. ///</summary> [Description(«Unexpected on-medium identifier.«)] ERROR_UNEXPECTED_OMID = 0x000010ee, /// <summary> /// The last remaining item in this group or resource cannot be deleted. ///</summary> [Description(«The last remaining item in this group or resource cannot be deleted.«)] ERROR_CANT_DELETE_LAST_ITEM = 0x000010ef, /// <summary> /// The message provided exceeds the maximum size allowed for this parameter. ///</summary> [Description(«The message provided exceeds the maximum size allowed for this parameter.«)] ERROR_MESSAGE_EXCEEDS_MAX_SIZE = 0x000010f0, /// <summary> /// The volume contains system or paging files. ///</summary> [Description(«The volume contains system or paging files.«)] ERROR_VOLUME_CONTAINS_SYS_FILES = 0x000010f1, /// <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> [Description(«The media type cannot be removed from this library since at least one drive in the library reports it can support this media type.«)] ERROR_INDIGENOUS_TYPE = 0x000010f2, /// <summary> /// This offline media cannot be mounted on this system since no enabled drives are present which can be used. ///</summary> [Description(«This offline media cannot be mounted on this system since no enabled drives are present which can be used.«)] ERROR_NO_SUPPORTING_DRIVES = 0x000010f3, /// <summary> /// A cleaner cartridge is present in the tape library. ///</summary> [Description(«A cleaner cartridge is present in the tape library.«)] ERROR_CLEANER_CARTRIDGE_INSTALLED = 0x000010f4, /// <summary> /// Cannot use the inject/eject port because it is not empty. ///</summary> [Description(«Cannot use the inject/eject port because it is not empty.«)] ERROR_IEPORT_FULL = 0x000010f5, /// <summary> /// This file is currently not available for use on this computer. ///</summary> [Description(«This file is currently not available for use on this computer.«)] ERROR_FILE_OFFLINE = 0x000010fe, /// <summary> /// The remote storage service is not operational at this time. ///</summary> [Description(«The remote storage service is not operational at this time.«)] ERROR_REMOTE_STORAGE_NOT_ACTIVE = 0x000010ff, /// <summary> /// The remote storage service encountered a media error. ///</summary> [Description(«The remote storage service encountered a media error.«)] ERROR_REMOTE_STORAGE_MEDIA_ERROR = 0x00001100, /// <summary> /// The file or directory is not a reparse point. ///</summary> [Description(«The file or directory is not a reparse point.«)] ERROR_NOT_A_REPARSE_POINT = 0x00001126, /// <summary> /// The reparse point attribute cannot be set because it conflicts with an existing attribute. ///</summary> [Description(«The reparse point attribute cannot be set because it conflicts with an existing attribute.«)] ERROR_REPARSE_ATTRIBUTE_CONFLICT = 0x00001127, /// <summary> /// The data present in the reparse point buffer is invalid. ///</summary> [Description(«The data present in the reparse point buffer is invalid.«)] ERROR_INVALID_REPARSE_DATA = 0x00001128, /// <summary> /// The tag present in the reparse point buffer is invalid. ///</summary> [Description(«The tag present in the reparse point buffer is invalid.«)] ERROR_REPARSE_TAG_INVALID = 0x00001129, /// <summary> /// There is a mismatch between the tag specified in the request and the tag present in the reparse point. ///</summary> [Description(«There is a mismatch between the tag specified in the request and the tag present in the reparse point.«)] ERROR_REPARSE_TAG_MISMATCH = 0x0000112a, /// <summary> /// Fast Cache data not found. ///</summary> [Description(«Fast Cache data not found.«)] ERROR_APP_DATA_NOT_FOUND = 0x00001130, /// <summary> /// Fast Cache data expired. ///</summary> [Description(«Fast Cache data expired.«)] ERROR_APP_DATA_EXPIRED = 0x00001131, /// <summary> /// Fast Cache data corrupt. ///</summary> [Description(«Fast Cache data corrupt.«)] ERROR_APP_DATA_CORRUPT = 0x00001132, /// <summary> /// Fast Cache data has exceeded its max size and cannot be updated. ///</summary> [Description(«Fast Cache data has exceeded its max size and cannot be updated.«)] ERROR_APP_DATA_LIMIT_EXCEEDED = 0x00001133, /// <summary> /// Fast Cache has been ReArmed and requires a reboot until it can be updated. ///</summary> [Description(«Fast Cache has been ReArmed and requires a reboot until it can be updated.«)] ERROR_APP_DATA_REBOOT_REQUIRED = 0x00001134, /// <summary> /// Secure Boot detected that rollback of protected data has been attempted. ///</summary> [Description(«Secure Boot detected that rollback of protected data has been attempted.«)] ERROR_SECUREBOOT_ROLLBACK_DETECTED = 0x00001144, /// <summary> /// The value is protected by Secure Boot policy and cannot be modified or deleted. ///</summary> [Description(«The value is protected by Secure Boot policy and cannot be modified or deleted.«)] ERROR_SECUREBOOT_POLICY_VIOLATION = 0x00001145, /// <summary> /// The Secure Boot policy is invalid. ///</summary> [Description(«The Secure Boot policy is invalid.«)] ERROR_SECUREBOOT_INVALID_POLICY = 0x00001146, /// <summary> /// A new Secure Boot policy did not contain the current publisher on its update list. ///</summary> [Description(«A new Secure Boot policy did not contain the current publisher on its update list.«)] ERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND = 0x00001147, /// <summary> /// The Secure Boot policy is either not signed or is signed by a non-trusted signer. ///</summary> [Description(«The Secure Boot policy is either not signed or is signed by a non-trusted signer.«)] ERROR_SECUREBOOT_POLICY_NOT_SIGNED = 0x00001148, /// <summary> /// Secure Boot is not enabled on this machine. ///</summary> [Description(«Secure Boot is not enabled on this machine.«)] ERROR_SECUREBOOT_NOT_ENABLED = 0x00001149, /// <summary> /// Secure Boot requires that certain files and drivers are not replaced by other files or drivers. ///</summary> [Description(«Secure Boot requires that certain files and drivers are not replaced by other files or drivers.«)] ERROR_SECUREBOOT_FILE_REPLACED = 0x0000114a, /// <summary> /// The copy offload read operation is not supported by a filter. ///</summary> [Description(«The copy offload read operation is not supported by a filter.«)] ERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED = 0x00001158, /// <summary> /// The copy offload write operation is not supported by a filter. ///</summary> [Description(«The copy offload write operation is not supported by a filter.«)] ERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED = 0x00001159, /// <summary> /// The copy offload read operation is not supported for the file. ///</summary> [Description(«The copy offload read operation is not supported for the file.«)] ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED = 0x0000115a, /// <summary> /// The copy offload write operation is not supported for the file. ///</summary> [Description(«The copy offload write operation is not supported for the file.«)] ERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED = 0x0000115b, /// <summary> /// Single Instance Storage is not available on this volume. ///</summary> [Description(«Single Instance Storage is not available on this volume.«)] ERROR_VOLUME_NOT_SIS_ENABLED = 0x00001194, /// <summary> /// The operation cannot be completed because other resources are dependent on this resource. ///</summary> [Description(«The operation cannot be completed because other resources are dependent on this resource.«)] ERROR_DEPENDENT_RESOURCE_EXISTS = 0x00001389, /// <summary> /// The cluster resource dependency cannot be found. ///</summary> [Description(«The cluster resource dependency cannot be found.«)] ERROR_DEPENDENCY_NOT_FOUND = 0x0000138a, /// <summary> /// The cluster resource cannot be made dependent on the specified resource because it is already dependent. ///</summary> [Description(«The cluster resource cannot be made dependent on the specified resource because it is already dependent.«)] ERROR_DEPENDENCY_ALREADY_EXISTS = 0x0000138b, /// <summary> /// The cluster resource is not online. ///</summary> [Description(«The cluster resource is not online.«)] ERROR_RESOURCE_NOT_ONLINE = 0x0000138c, /// <summary> /// A cluster node is not available for this operation. ///</summary> [Description(«A cluster node is not available for this operation.«)] ERROR_HOST_NODE_NOT_AVAILABLE = 0x0000138d, /// <summary> /// The cluster resource is not available. ///</summary> [Description(«The cluster resource is not available.«)] ERROR_RESOURCE_NOT_AVAILABLE = 0x0000138e, /// <summary> /// The cluster resource could not be found. ///</summary> [Description(«The cluster resource could not be found.«)] ERROR_RESOURCE_NOT_FOUND = 0x0000138f, /// <summary> /// The cluster is being shut down. ///</summary> [Description(«The cluster is being shut down.«)] ERROR_SHUTDOWN_CLUSTER = 0x00001390, /// <summary> /// A cluster node cannot be evicted from the cluster unless the node is down or it is the last node. ///</summary> [Description(«A cluster node cannot be evicted from the cluster unless the node is down or it is the last node.«)] ERROR_CANT_EVICT_ACTIVE_NODE = 0x00001391, /// <summary> /// The object already exists. ///</summary> [Description(«The object already exists.«)] ERROR_OBJECT_ALREADY_EXISTS = 0x00001392, /// <summary> /// The object is already in the list. ///</summary> [Description(«The object is already in the list.«)] ERROR_OBJECT_IN_LIST = 0x00001393, /// <summary> /// The cluster group is not available for any new requests. ///</summary> [Description(«The cluster group is not available for any new requests.«)] ERROR_GROUP_NOT_AVAILABLE = 0x00001394, /// <summary> /// The cluster group could not be found. ///</summary> [Description(«The cluster group could not be found.«)] ERROR_GROUP_NOT_FOUND = 0x00001395, /// <summary> /// The operation could not be completed because the cluster group is not online. ///</summary> [Description(«The operation could not be completed because the cluster group is not online.«)] ERROR_GROUP_NOT_ONLINE = 0x00001396, /// <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> [Description(«The operation failed because either the specified cluster node is not the owner of the resource, or the node is not a possible owner of the resource.«)] ERROR_HOST_NODE_NOT_RESOURCE_OWNER = 0x00001397, /// <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> [Description(«The operation failed because either the specified cluster node is not the owner of the group, or the node is not a possible owner of the group.«)] ERROR_HOST_NODE_NOT_GROUP_OWNER = 0x00001398, /// <summary> /// The cluster resource could not be created in the specified resource monitor. ///</summary> [Description(«The cluster resource could not be created in the specified resource monitor.«)] ERROR_RESMON_CREATE_FAILED = 0x00001399, /// <summary> /// The cluster resource could not be brought online by the resource monitor. ///</summary> [Description(«The cluster resource could not be brought online by the resource monitor.«)] ERROR_RESMON_ONLINE_FAILED = 0x0000139a, /// <summary> /// The operation could not be completed because the cluster resource is online. ///</summary> [Description(«The operation could not be completed because the cluster resource is online.«)] ERROR_RESOURCE_ONLINE = 0x0000139b, /// <summary> /// The cluster resource could not be deleted or brought offline because it is the quorum resource. ///</summary> [Description(«The cluster resource could not be deleted or brought offline because it is the quorum resource.«)] ERROR_QUORUM_RESOURCE = 0x0000139c, /// <summary> /// The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource. ///</summary> [Description(«The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource.«)] ERROR_NOT_QUORUM_CAPABLE = 0x0000139d, /// <summary> /// The cluster software is shutting down. ///</summary> [Description(«The cluster software is shutting down.«)] ERROR_CLUSTER_SHUTTING_DOWN = 0x0000139e, /// <summary> /// The group or resource is not in the correct state to perform the requested operation. ///</summary> [Description(«The group or resource is not in the correct state to perform the requested operation.«)] ERROR_INVALID_STATE = 0x0000139f, /// <summary> /// The properties were stored but not all changes will take effect until the next time the resource is brought online. ///</summary> [Description(«The properties were stored but not all changes will take effect until the next time the resource is brought online.«)] ERROR_RESOURCE_PROPERTIES_STORED = 0x000013a0, /// <summary> /// The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class. ///</summary> [Description(«The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class.«)] ERROR_NOT_QUORUM_CLASS = 0x000013a1, /// <summary> /// The cluster resource could not be deleted since it is a core resource. ///</summary> [Description(«The cluster resource could not be deleted since it is a core resource.«)] ERROR_CORE_RESOURCE = 0x000013a2, /// <summary> /// The quorum resource failed to come online. ///</summary> [Description(«The quorum resource failed to come online.«)] ERROR_QUORUM_RESOURCE_ONLINE_FAILED = 0x000013a3, /// <summary> /// The quorum log could not be created or mounted successfully. ///</summary> [Description(«The quorum log could not be created or mounted successfully.«)] ERROR_QUORUMLOG_OPEN_FAILED = 0x000013a4, /// <summary> /// The cluster log is corrupt. ///</summary> [Description(«The cluster log is corrupt.«)] ERROR_CLUSTERLOG_CORRUPT = 0x000013a5, /// <summary> /// The record could not be written to the cluster log since it exceeds the maximum size. ///</summary> [Description(«The record could not be written to the cluster log since it exceeds the maximum size.«)] ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE = 0x000013a6, /// <summary> /// The cluster log exceeds its maximum size. ///</summary> [Description(«The cluster log exceeds its maximum size.«)] ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE = 0x000013a7, /// <summary> /// No checkpoint record was found in the cluster log. ///</summary> [Description(«No checkpoint record was found in the cluster log.«)] ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND = 0x000013a8, /// <summary> /// The minimum required disk space needed for logging is not available. ///</summary> [Description(«The minimum required disk space needed for logging is not available.«)] ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE = 0x000013a9, /// <summary> /// The cluster node failed to take control of the quorum resource because the resource is owned by another active node. ///</summary> [Description(«The cluster node failed to take control of the quorum resource because the resource is owned by another active node.«)] ERROR_QUORUM_OWNER_ALIVE = 0x000013aa, /// <summary> /// A cluster network is not available for this operation. ///</summary> [Description(«A cluster network is not available for this operation.«)] ERROR_NETWORK_NOT_AVAILABLE = 0x000013ab, /// <summary> /// A cluster node is not available for this operation. ///</summary> [Description(«A cluster node is not available for this operation.«)] ERROR_NODE_NOT_AVAILABLE = 0x000013ac, /// <summary> /// All cluster nodes must be running to perform this operation. ///</summary> [Description(«All cluster nodes must be running to perform this operation.«)] ERROR_ALL_NODES_NOT_AVAILABLE = 0x000013ad, /// <summary> /// A cluster resource failed. ///</summary> [Description(«A cluster resource failed.«)] ERROR_RESOURCE_FAILED = 0x000013ae, /// <summary> /// The cluster node is not valid. ///</summary> [Description(«The cluster node is not valid.«)] ERROR_CLUSTER_INVALID_NODE = 0x000013af, /// <summary> /// The cluster node already exists. ///</summary> [Description(«The cluster node already exists.«)] ERROR_CLUSTER_NODE_EXISTS = 0x000013b0, /// <summary> /// A node is in the process of joining the cluster. ///</summary> [Description(«A node is in the process of joining the cluster.«)] ERROR_CLUSTER_JOIN_IN_PROGRESS = 0x000013b1, /// <summary> /// The cluster node was not found. ///</summary> [Description(«The cluster node was not found.«)] ERROR_CLUSTER_NODE_NOT_FOUND = 0x000013b2, /// <summary> /// The cluster local node information was not found. ///</summary> [Description(«The cluster local node information was not found.«)] ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND = 0x000013b3, /// <summary> /// The cluster network already exists. ///</summary> [Description(«The cluster network already exists.«)] ERROR_CLUSTER_NETWORK_EXISTS = 0x000013b4, /// <summary> /// The cluster network was not found. ///</summary> [Description(«The cluster network was not found.«)] ERROR_CLUSTER_NETWORK_NOT_FOUND = 0x000013b5, /// <summary> /// The cluster network interface already exists. ///</summary> [Description(«The cluster network interface already exists.«)] ERROR_CLUSTER_NETINTERFACE_EXISTS = 0x000013b6, /// <summary> /// The cluster network interface was not found. ///</summary> [Description(«The cluster network interface was not found.«)] ERROR_CLUSTER_NETINTERFACE_NOT_FOUND = 0x000013b7, /// <summary> /// The cluster request is not valid for this object. ///</summary> [Description(«The cluster request is not valid for this object.«)] ERROR_CLUSTER_INVALID_REQUEST = 0x000013b8, /// <summary> /// The cluster network provider is not valid. ///</summary> [Description(«The cluster network provider is not valid.«)] ERROR_CLUSTER_INVALID_NETWORK_PROVIDER = 0x000013b9, /// <summary> /// The cluster node is down. ///</summary> [Description(«The cluster node is down.«)] ERROR_CLUSTER_NODE_DOWN = 0x000013ba, /// <summary> /// The cluster node is not reachable. ///</summary> [Description(«The cluster node is not reachable.«)] ERROR_CLUSTER_NODE_UNREACHABLE = 0x000013bb, /// <summary> /// The cluster node is not a member of the cluster. ///</summary> [Description(«The cluster node is not a member of the cluster.«)] ERROR_CLUSTER_NODE_NOT_MEMBER = 0x000013bc, /// <summary> /// A cluster join operation is not in progress. ///</summary> [Description(«A cluster join operation is not in progress.«)] ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS = 0x000013bd, /// <summary> /// The cluster network is not valid. ///</summary> [Description(«The cluster network is not valid.«)] ERROR_CLUSTER_INVALID_NETWORK = 0x000013be, /// <summary> /// The cluster node is up. ///</summary> [Description(«The cluster node is up.«)] ERROR_CLUSTER_NODE_UP = 0x000013c0, /// <summary> /// The cluster IP address is already in use. ///</summary> [Description(«The cluster IP address is already in use.«)] ERROR_CLUSTER_IPADDR_IN_USE = 0x000013c1, /// <summary> /// The cluster node is not paused. ///</summary> [Description(«The cluster node is not paused.«)] ERROR_CLUSTER_NODE_NOT_PAUSED = 0x000013c2, /// <summary> /// No cluster security context is available. ///</summary> [Description(«No cluster security context is available.«)] ERROR_CLUSTER_NO_SECURITY_CONTEXT = 0x000013c3, /// <summary> /// The cluster network is not configured for internal cluster communication. ///</summary> [Description(«The cluster network is not configured for internal cluster communication.«)] ERROR_CLUSTER_NETWORK_NOT_INTERNAL = 0x000013c4, /// <summary> /// The cluster node is already up. ///</summary> [Description(«The cluster node is already up.«)] ERROR_CLUSTER_NODE_ALREADY_UP = 0x000013c5, /// <summary> /// The cluster node is already down. ///</summary> [Description(«The cluster node is already down.«)] ERROR_CLUSTER_NODE_ALREADY_DOWN = 0x000013c6, /// <summary> /// The cluster network is already online. ///</summary> [Description(«The cluster network is already online.«)] ERROR_CLUSTER_NETWORK_ALREADY_ONLINE = 0x000013c7, /// <summary> /// The cluster network is already offline. ///</summary> [Description(«The cluster network is already offline.«)] ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE = 0x000013c8, /// <summary> /// The cluster node is already a member of the cluster. ///</summary> [Description(«The cluster node is already a member of the cluster.«)] ERROR_CLUSTER_NODE_ALREADY_MEMBER = 0x000013c9, /// <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> [Description(«The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes. The internal communication capability cannot be removed from the network.«)] ERROR_CLUSTER_LAST_INTERNAL_NETWORK = 0x000013ca, /// <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> [Description(«One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network.«)] ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS = 0x000013cb, /// <summary> /// This operation cannot be performed on the cluster resource as it the quorum resource. You may not bring the quorum resource offline or modify its possible owners list. ///</summary> [Description(«This operation cannot be performed on the cluster resource as it the quorum resource. You may not bring the quorum resource offline or modify its possible owners list.«)] ERROR_INVALID_OPERATION_ON_QUORUM = 0x000013cc, /// <summary> /// The cluster quorum resource is not allowed to have any dependencies. ///</summary> [Description(«The cluster quorum resource is not allowed to have any dependencies.«)] ERROR_DEPENDENCY_NOT_ALLOWED = 0x000013cd, /// <summary> /// The cluster node is paused. ///</summary> [Description(«The cluster node is paused.«)] ERROR_CLUSTER_NODE_PAUSED = 0x000013ce, /// <summary> /// The cluster resource cannot be brought online. The owner node cannot run this resource. ///</summary> [Description(«The cluster resource cannot be brought online. The owner node cannot run this resource.«)] ERROR_NODE_CANT_HOST_RESOURCE = 0x000013cf, /// <summary> /// The cluster node is not ready to perform the requested operation. ///</summary> [Description(«The cluster node is not ready to perform the requested operation.«)] ERROR_CLUSTER_NODE_NOT_READY = 0x000013d0, /// <summary> /// The cluster node is shutting down. ///</summary> [Description(«The cluster node is shutting down.«)] ERROR_CLUSTER_NODE_SHUTTING_DOWN = 0x000013d1, /// <summary> /// The cluster join operation was aborted. ///</summary> [Description(«The cluster join operation was aborted.«)] ERROR_CLUSTER_JOIN_ABORTED = 0x000013d2, /// <summary> /// The cluster join operation failed due to incompatible software versions between the joining node and its sponsor. ///</summary> [Description(«The cluster join operation failed due to incompatible software versions between the joining node and its sponsor.«)] ERROR_CLUSTER_INCOMPATIBLE_VERSIONS = 0x000013d3, /// <summary> /// This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor. ///</summary> [Description(«This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor.«)] ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED = 0x000013d4, /// <summary> /// The system configuration changed during the cluster join or form operation. The join or form operation was aborted. ///</summary> [Description(«The system configuration changed during the cluster join or form operation. The join or form operation was aborted.«)] ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED = 0x000013d5, /// <summary> /// The specified resource type was not found. ///</summary> [Description(«The specified resource type was not found.«)] ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND = 0x000013d6, /// <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> [Description(«The specified node does not support a resource of this type. This may be due to version inconsistencies or due to the absence of the resource DLL on this node.«)] ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED = 0x000013d7, /// <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> [Description(«The specified resource name is not supported by this resource DLL. This may be due to a bad (or changed) name supplied to the resource DLL.«)] ERROR_CLUSTER_RESNAME_NOT_FOUND = 0x000013d8, /// <summary> /// No authentication package could be registered with the RPC server. ///</summary> [Description(«No authentication package could be registered with the RPC server.«)] ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED = 0x000013d9, /// <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> [Description(«You cannot bring the group online because the owner of the group is not in the preferred list for the group. To change the owner node for the group, move the group.«)] ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST = 0x000013da, /// <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> [Description(«The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This may happen during a join operation if the cluster database was changing during the join.«)] ERROR_CLUSTER_DATABASE_SEQMISMATCH = 0x000013db, /// <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> [Description(«The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This may happen if the resource is in a pending state.«)] ERROR_RESMON_INVALID_STATE = 0x000013dc, /// <summary> /// A non locker code got a request to reserve the lock for making global updates. ///</summary> [Description(«A non locker code got a request to reserve the lock for making global updates.«)] ERROR_CLUSTER_GUM_NOT_LOCKER = 0x000013dd, /// <summary> /// The quorum disk could not be located by the cluster service. ///</summary> [Description(«The quorum disk could not be located by the cluster service.«)] ERROR_QUORUM_DISK_NOT_FOUND = 0x000013de, /// <summary> /// The backed up cluster database is possibly corrupt. ///</summary> [Description(«The backed up cluster database is possibly corrupt.«)] ERROR_DATABASE_BACKUP_CORRUPT = 0x000013df, /// <summary> /// A DFS root already exists in this cluster node. ///</summary> [Description(«A DFS root already exists in this cluster node.«)] ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT = 0x000013e0, /// <summary> /// An attempt to modify a resource property failed because it conflicts with another existing property. ///</summary> [Description(«An attempt to modify a resource property failed because it conflicts with another existing property.«)] ERROR_RESOURCE_PROPERTY_UNCHANGEABLE = 0x000013e1, /// <summary> /// An operation was attempted that is incompatible with the current membership state of the node. ///</summary> [Description(«An operation was attempted that is incompatible with the current membership state of the node.«)] ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE = 0x00001702, /// <summary> /// The quorum resource does not contain the quorum log. ///</summary> [Description(«The quorum resource does not contain the quorum log.«)] ERROR_CLUSTER_QUORUMLOG_NOT_FOUND = 0x00001703, /// <summary> /// The membership engine requested shutdown of the cluster service on this node. ///</summary> [Description(«The membership engine requested shutdown of the cluster service on this node.«)] ERROR_CLUSTER_MEMBERSHIP_HALT = 0x00001704, /// <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> [Description(«The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node.«)] ERROR_CLUSTER_INSTANCE_ID_MISMATCH = 0x00001705, /// <summary> /// A matching cluster network for the specified IP address could not be found. ///</summary> [Description(«A matching cluster network for the specified IP address could not be found.«)] ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP = 0x00001706, /// <summary> /// The actual data type of the property did not match the expected data type of the property. ///</summary> [Description(«The actual data type of the property did not match the expected data type of the property.«)] ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH = 0x00001707, /// <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> [Description(«The cluster node was evicted from the cluster successfully, but the node was not cleaned up. To determine what cleanup steps failed and how to recover, see the Failover Clustering application event log using Event Viewer.«)] ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP = 0x00001708, /// <summary> /// Two or more parameter values specified for a resource’s properties are in conflict. ///</summary> [Description(«Two or more parameter values specified for a resource’s properties are in conflict.«)] ERROR_CLUSTER_PARAMETER_MISMATCH = 0x00001709, /// <summary> /// This computer cannot be made a member of a cluster. ///</summary> [Description(«This computer cannot be made a member of a cluster.«)] ERROR_NODE_CANNOT_BE_CLUSTERED = 0x0000170a, /// <summary> /// This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed. ///</summary> [Description(«This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed.«)] ERROR_CLUSTER_WRONG_OS_VERSION = 0x0000170b, /// <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> [Description(«A cluster cannot be created with the specified cluster name because that cluster name is already in use. Specify a different name for the cluster.«)] ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME = 0x0000170c, /// <summary> /// The cluster configuration action has already been committed. ///</summary> [Description(«The cluster configuration action has already been committed.«)] ERROR_CLUSCFG_ALREADY_COMMITTED = 0x0000170d, /// <summary> /// The cluster configuration action could not be rolled back. ///</summary> [Description(«The cluster configuration action could not be rolled back.«)] ERROR_CLUSCFG_ROLLBACK_FAILED = 0x0000170e, /// <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> [Description(«The drive letter assigned to a system disk on one node conflicted with the drive letter assigned to a disk on another node.«)] ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT = 0x0000170f, /// <summary> /// One or more nodes in the cluster are running a version of Windows that does not support this operation. ///</summary> [Description(«One or more nodes in the cluster are running a version of Windows that does not support this operation.«)] ERROR_CLUSTER_OLD_VERSION = 0x00001710, /// <summary> /// The name of the corresponding computer account doesn’t match the Network Name for this resource. ///</summary> [Description(«The name of the corresponding computer account doesn’t match the Network Name for this resource.«)] ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME = 0x00001711, /// <summary> /// No network adapters are available. ///</summary> [Description(«No network adapters are available.«)] ERROR_CLUSTER_NO_NET_ADAPTERS = 0x00001712, /// <summary> /// The cluster node has been poisoned. ///</summary> [Description(«The cluster node has been poisoned.«)] ERROR_CLUSTER_POISONED = 0x00001713, /// <summary> /// The group is unable to accept the request since it is moving to another node. ///</summary> [Description(«The group is unable to accept the request since it is moving to another node.«)] ERROR_CLUSTER_GROUP_MOVING = 0x00001714, /// <summary> /// The resource type cannot accept the request since is too busy performing another operation. ///</summary> [Description(«The resource type cannot accept the request since is too busy performing another operation.«)] ERROR_CLUSTER_RESOURCE_TYPE_BUSY = 0x00001715, /// <summary> /// The call to the cluster resource DLL timed out. ///</summary> [Description(«The call to the cluster resource DLL timed out.«)] ERROR_RESOURCE_CALL_TIMED_OUT = 0x00001716, /// <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> [Description(«The address is not valid for an IPv6 Address resource. A global IPv6 address is required, and it must match a cluster network. Compatibility addresses are not permitted.«)] ERROR_INVALID_CLUSTER_IPV6_ADDRESS = 0x00001717, /// <summary> /// An internal cluster error occurred. A call to an invalid function was attempted. ///</summary> [Description(«An internal cluster error occurred. A call to an invalid function was attempted.«)] ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION = 0x00001718, /// <summary> /// A parameter value is out of acceptable range. ///</summary> [Description(«A parameter value is out of acceptable range.«)] ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS = 0x00001719, /// <summary> /// A network error occurred while sending data to another node in the cluster. The number of bytes transmitted was less than required. ///</summary> [Description(«A network error occurred while sending data to another node in the cluster. The number of bytes transmitted was less than required.«)] ERROR_CLUSTER_PARTIAL_SEND = 0x0000171a, /// <summary> /// An invalid cluster registry operation was attempted. ///</summary> [Description(«An invalid cluster registry operation was attempted.«)] ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION = 0x0000171b, /// <summary> /// An input string of characters is not properly terminated. ///</summary> [Description(«An input string of characters is not properly terminated.«)] ERROR_CLUSTER_INVALID_STRING_TERMINATION = 0x0000171c, /// <summary> /// An input string of characters is not in a valid format for the data it represents. ///</summary> [Description(«An input string of characters is not in a valid format for the data it represents.«)] ERROR_CLUSTER_INVALID_STRING_FORMAT = 0x0000171d, /// <summary> /// An internal cluster error occurred. A cluster database transaction was attempted while a transaction was already in progress. ///</summary> [Description(«An internal cluster error occurred. A cluster database transaction was attempted while a transaction was already in progress.«)] ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS = 0x0000171e, /// <summary> /// An internal cluster error occurred. There was an attempt to commit a cluster database transaction while no transaction was in progress. ///</summary> [Description(«An internal cluster error occurred. There was an attempt to commit a cluster database transaction while no transaction was in progress.«)] ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS = 0x0000171f, /// <summary> /// An internal cluster error occurred. Data was not properly initialized. ///</summary> [Description(«An internal cluster error occurred. Data was not properly initialized.«)] ERROR_CLUSTER_NULL_DATA = 0x00001720, /// <summary> /// An error occurred while reading from a stream of data. An unexpected number of bytes was returned. ///</summary> [Description(«An error occurred while reading from a stream of data. An unexpected number of bytes was returned.«)] ERROR_CLUSTER_PARTIAL_READ = 0x00001721, /// <summary> /// An error occurred while writing to a stream of data. The required number of bytes could not be written. ///</summary> [Description(«An error occurred while writing to a stream of data. The required number of bytes could not be written.«)] ERROR_CLUSTER_PARTIAL_WRITE = 0x00001722, /// <summary> /// An error occurred while deserializing a stream of cluster data. ///</summary> [Description(«An error occurred while deserializing a stream of cluster data.«)] ERROR_CLUSTER_CANT_DESERIALIZE_DATA = 0x00001723, /// <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> [Description(«One or more property values for this resource are in conflict with one or more property values associated with its dependent resource(s).«)] ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT = 0x00001724, /// <summary> /// A quorum of cluster nodes was not present to form a cluster. ///</summary> [Description(«A quorum of cluster nodes was not present to form a cluster.«)] ERROR_CLUSTER_NO_QUORUM = 0x00001725, /// <summary> /// The cluster network is not valid for an IPv6 Address resource, or it does not match the configured address. ///</summary> [Description(«The cluster network is not valid for an IPv6 Address resource, or it does not match the configured address.«)] ERROR_CLUSTER_INVALID_IPV6_NETWORK = 0x00001726, /// <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> [Description(«The cluster network is not valid for an IPv6 Tunnel resource. Check the configuration of the IP Address resource on which the IPv6 Tunnel resource depends.«)] ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK = 0x00001727, /// <summary> /// Quorum resource cannot reside in the Available Storage group. ///</summary> [Description(«Quorum resource cannot reside in the Available Storage group.«)] ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP = 0x00001728, /// <summary> /// The dependencies for this resource are nested too deeply. ///</summary> [Description(«The dependencies for this resource are nested too deeply.«)] ERROR_DEPENDENCY_TREE_TOO_COMPLEX = 0x00001729, /// <summary> /// The call into the resource DLL raised an unhandled exception. ///</summary> [Description(«The call into the resource DLL raised an unhandled exception.«)] ERROR_EXCEPTION_IN_RESOURCE_CALL = 0x0000172a, /// <summary> /// The RHS process failed to initialize. ///</summary> [Description(«The RHS process failed to initialize.«)] ERROR_CLUSTER_RHS_FAILED_INITIALIZATION = 0x0000172b, /// <summary> /// The Failover Clustering feature is not installed on this node. ///</summary> [Description(«The Failover Clustering feature is not installed on this node.«)] ERROR_CLUSTER_NOT_INSTALLED = 0x0000172c, /// <summary> /// The resources must be online on the same node for this operation. ///</summary> [Description(«The resources must be online on the same node for this operation.«)] ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE = 0x0000172d, /// <summary> /// A new node can not be added since this cluster is already at its maximum number of nodes. ///</summary> [Description(«A new node can not be added since this cluster is already at its maximum number of nodes.«)] ERROR_CLUSTER_MAX_NODES_IN_CLUSTER = 0x0000172e, /// <summary> /// This cluster can not be created since the specified number of nodes exceeds the maximum allowed limit. ///</summary> [Description(«This cluster can not be created since the specified number of nodes exceeds the maximum allowed limit.«)] ERROR_CLUSTER_TOO_MANY_NODES = 0x0000172f, /// <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> [Description(«An attempt to use the specified cluster name failed because an enabled computer object with the given name already exists in the domain.«)] ERROR_CLUSTER_OBJECT_ALREADY_USED = 0x00001730, /// <summary> /// This cluster cannot be destroyed. It has non-core application groups which must be deleted before the cluster can be destroyed. ///</summary> [Description(«This cluster cannot be destroyed. It has non-core application groups which must be deleted before the cluster can be destroyed.«)] ERROR_NONCORE_GROUPS_FOUND = 0x00001731, /// <summary> /// File share associated with file share witness resource cannot be hosted by this cluster or any of its nodes. ///</summary> [Description(«File share associated with file share witness resource cannot be hosted by this cluster or any of its nodes.«)] ERROR_FILE_SHARE_RESOURCE_CONFLICT = 0x00001732, /// <summary> /// Eviction of this node is invalid at this time. Due to quorum requirements node eviction will result in cluster shutdown. If it is the last node in the cluster, destroy cluster command should be used. ///</summary> [Description(«Eviction of this node is invalid at this time. Due to quorum requirements node eviction will result in cluster shutdown. If it is the last node in the cluster, destroy cluster command should be used.«)] ERROR_CLUSTER_EVICT_INVALID_REQUEST = 0x00001733, /// <summary> /// Only one instance of this resource type is allowed in the cluster. ///</summary> [Description(«Only one instance of this resource type is allowed in the cluster.«)] ERROR_CLUSTER_SINGLETON_RESOURCE = 0x00001734, /// <summary> /// Only one instance of this resource type is allowed per resource group. ///</summary> [Description(«Only one instance of this resource type is allowed per resource group.«)] ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE = 0x00001735, /// <summary> /// The resource failed to come online due to the failure of one or more provider resources. ///</summary> [Description(«The resource failed to come online due to the failure of one or more provider resources.«)] ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED = 0x00001736, /// <summary> /// The resource has indicated that it cannot come online on any node. ///</summary> [Description(«The resource has indicated that it cannot come online on any node.«)] ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR = 0x00001737, /// <summary> /// The current operation cannot be performed on this group at this time. ///</summary> [Description(«The current operation cannot be performed on this group at this time.«)] ERROR_CLUSTER_GROUP_BUSY = 0x00001738, /// <summary> /// The directory or file is not located on a cluster shared volume. ///</summary> [Description(«The directory or file is not located on a cluster shared volume.«)] ERROR_CLUSTER_NOT_SHARED_VOLUME = 0x00001739, /// <summary> /// The Security Descriptor does not meet the requirements for a cluster. ///</summary> [Description(«The Security Descriptor does not meet the requirements for a cluster.«)] ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR = 0x0000173a, /// <summary> /// There is one or more shared volumes resources configured in the cluster. Those resources must be moved to available storage in order for operation to succeed. ///</summary> [Description(«There is one or more shared volumes resources configured in the cluster. Those resources must be moved to available storage in order for operation to succeed.«)] ERROR_CLUSTER_SHARED_VOLUMES_IN_USE = 0x0000173b, /// <summary> /// This group or resource cannot be directly manipulated. Use shared volume APIs to perform desired operation. ///</summary> [Description(«This group or resource cannot be directly manipulated. Use shared volume APIs to perform desired operation.«)] ERROR_CLUSTER_USE_SHARED_VOLUMES_API = 0x0000173c, /// <summary> /// Back up is in progress. Please wait for backup completion before trying this operation again. ///</summary> [Description(«Back up is in progress. Please wait for backup completion before trying this operation again.«)] ERROR_CLUSTER_BACKUP_IN_PROGRESS = 0x0000173d, /// <summary> /// The path does not belong to a cluster shared volume. ///</summary> [Description(«The path does not belong to a cluster shared volume.«)] ERROR_NON_CSV_PATH = 0x0000173e, /// <summary> /// The cluster shared volume is not locally mounted on this node. ///</summary> [Description(«The cluster shared volume is not locally mounted on this node.«)] ERROR_CSV_VOLUME_NOT_LOCAL = 0x0000173f, /// <summary> /// The cluster watchdog is terminating. ///</summary> [Description(«The cluster watchdog is terminating.«)] ERROR_CLUSTER_WATCHDOG_TERMINATING = 0x00001740, /// <summary> /// A resource vetoed a move between two nodes because they are incompatible. ///</summary> [Description(«A resource vetoed a move between two nodes because they are incompatible.«)] ERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES = 0x00001741, /// <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> [Description(«The request is invalid either because node weight cannot be changed while the cluster is in disk-only quorum mode, or because changing the node weight would violate the minimum cluster quorum requirements.«)] ERROR_CLUSTER_INVALID_NODE_WEIGHT = 0x00001742, /// <summary> /// The resource vetoed the call. ///</summary> [Description(«The resource vetoed the call.«)] ERROR_CLUSTER_RESOURCE_VETOED_CALL = 0x00001743, /// <summary> /// Resource could not start or run because it could not reserve sufficient system resources. ///</summary> [Description(«Resource could not start or run because it could not reserve sufficient system resources.«)] ERROR_RESMON_SYSTEM_RESOURCES_LACKING = 0x00001744, /// <summary> /// A resource vetoed a move between two nodes because the destination currently does not have enough resources to complete the operation. ///</summary> [Description(«A resource vetoed a move between two nodes because the destination currently does not have enough resources to complete the operation.«)] ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION = 0x00001745, /// <summary> /// A resource vetoed a move between two nodes because the source currently does not have enough resources to complete the operation. ///</summary> [Description(«A resource vetoed a move between two nodes because the source currently does not have enough resources to complete the operation.«)] ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE = 0x00001746, /// <summary> /// The requested operation can not be completed because the group is queued for an operation. ///</summary> [Description(«The requested operation can not be completed because the group is queued for an operation.«)] ERROR_CLUSTER_GROUP_QUEUED = 0x00001747, /// <summary> /// The requested operation can not be completed because a resource has locked status. ///</summary> [Description(«The requested operation can not be completed because a resource has locked status.«)] ERROR_CLUSTER_RESOURCE_LOCKED_STATUS = 0x00001748, /// <summary> /// The resource cannot move to another node because a cluster shared volume vetoed the operation. ///</summary> [Description(«The resource cannot move to another node because a cluster shared volume vetoed the operation.«)] ERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED = 0x00001749, /// <summary> /// A node drain is already in progress.nThis value was also named ERROR_CLUSTER_NODE_EVACUATION_IN_PROGRESS ///</summary> [Description(«A node drain is already in progress.nThis value was also named ERROR_CLUSTER_NODE_EVACUATION_IN_PROGRESS«)] ERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS = 0x0000174a, /// <summary> /// Clustered storage is not connected to the node. ///</summary> [Description(«Clustered storage is not connected to the node.«)] ERROR_CLUSTER_DISK_NOT_CONNECTED = 0x0000174b, /// <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. ///</summary> [Description(«The disk is not configured in a way to be used with CSV. CSV disks must have at least one partition that is formatted with NTFS.«)] ERROR_DISK_NOT_CSV_CAPABLE = 0x0000174c, /// <summary> /// The resource must be part of the Available Storage group to complete this action. ///</summary> [Description(«The resource must be part of the Available Storage group to complete this action.«)] ERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE = 0x0000174d, /// <summary> /// CSVFS failed operation as volume is in redirected mode. ///</summary> [Description(«CSVFS failed operation as volume is in redirected mode.«)] ERROR_CLUSTER_SHARED_VOLUME_REDIRECTED = 0x0000174e, /// <summary> /// CSVFS failed operation as volume is not in redirected mode. ///</summary> [Description(«CSVFS failed operation as volume is not in redirected mode.«)] ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED = 0x0000174f, /// <summary> /// Cluster properties cannot be returned at this time. ///</summary> [Description(«Cluster properties cannot be returned at this time.«)] ERROR_CLUSTER_CANNOT_RETURN_PROPERTIES = 0x00001750, /// <summary> /// The clustered disk resource contains software snapshot diff area that are not supported for Cluster Shared Volumes. ///</summary> [Description(«The clustered disk resource contains software snapshot diff area that are not supported for Cluster Shared Volumes.«)] ERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES = 0x00001751, /// <summary> /// The operation cannot be completed because the resource is in maintenance mode. ///</summary> [Description(«The operation cannot be completed because the resource is in maintenance mode.«)] ERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE = 0x00001752, /// <summary> /// The operation cannot be completed because of cluster affinity conflicts. ///</summary> [Description(«The operation cannot be completed because of cluster affinity conflicts.«)] ERROR_CLUSTER_AFFINITY_CONFLICT = 0x00001753, /// <summary> /// The operation cannot be completed because the resource is a replica virtual machine. ///</summary> [Description(«The operation cannot be completed because the resource is a replica virtual machine.«)] ERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE = 0x00001754, /// <summary> /// The specified file could not be encrypted. ///</summary> [Description(«The specified file could not be encrypted.«)] ERROR_ENCRYPTION_FAILED = 0x00001770, /// <summary> /// The specified file could not be decrypted. ///</summary> [Description(«The specified file could not be decrypted.«)] ERROR_DECRYPTION_FAILED = 0x00001771, /// <summary> /// The specified file is encrypted and the user does not have the ability to decrypt it. ///</summary> [Description(«The specified file is encrypted and the user does not have the ability to decrypt it.«)] ERROR_FILE_ENCRYPTED = 0x00001772, /// <summary> /// There is no valid encryption recovery policy configured for this system. ///</summary> [Description(«There is no valid encryption recovery policy configured for this system.«)] ERROR_NO_RECOVERY_POLICY = 0x00001773, /// <summary> /// The required encryption driver is not loaded for this system. ///</summary> [Description(«The required encryption driver is not loaded for this system.«)] ERROR_NO_EFS = 0x00001774, /// <summary> /// The file was encrypted with a different encryption driver than is currently loaded. ///</summary> [Description(«The file was encrypted with a different encryption driver than is currently loaded.«)] ERROR_WRONG_EFS = 0x00001775, /// <summary> /// There are no EFS keys defined for the user. ///</summary> [Description(«There are no EFS keys defined for the user.«)] ERROR_NO_USER_KEYS = 0x00001776, /// <summary> /// The specified file is not encrypted. ///</summary> [Description(«The specified file is not encrypted.«)] ERROR_FILE_NOT_ENCRYPTED = 0x00001777, /// <summary> /// The specified file is not in the defined EFS export format. ///</summary> [Description(«The specified file is not in the defined EFS export format.«)] ERROR_NOT_EXPORT_FORMAT = 0x00001778, /// <summary> /// The specified file is read only. ///</summary> [Description(«The specified file is read only.«)] ERROR_FILE_READ_ONLY = 0x00001779, /// <summary> /// The directory has been disabled for encryption. ///</summary> [Description(«The directory has been disabled for encryption.«)] ERROR_DIR_EFS_DISALLOWED = 0x0000177a, /// <summary> /// The server is not trusted for remote encryption operation. ///</summary> [Description(«The server is not trusted for remote encryption operation.«)] ERROR_EFS_SERVER_NOT_TRUSTED = 0x0000177b, /// <summary> /// Recovery policy configured for this system contains invalid recovery certificate. ///</summary> [Description(«Recovery policy configured for this system contains invalid recovery certificate.«)] ERROR_BAD_RECOVERY_POLICY = 0x0000177c, /// <summary> /// The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file. ///</summary> [Description(«The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file.«)] ERROR_EFS_ALG_BLOB_TOO_BIG = 0x0000177d, /// <summary> /// The disk partition does not support file encryption. ///</summary> [Description(«The disk partition does not support file encryption.«)] ERROR_VOLUME_NOT_SUPPORT_EFS = 0x0000177e, /// <summary> /// This machine is disabled for file encryption. ///</summary> [Description(«This machine is disabled for file encryption.«)] ERROR_EFS_DISABLED = 0x0000177f, /// <summary> /// A newer system is required to decrypt this encrypted file. ///</summary> [Description(«A newer system is required to decrypt this encrypted file.«)] ERROR_EFS_VERSION_NOT_SUPPORT = 0x00001780, /// <summary> /// The remote server sent an invalid response for a file being opened with Client Side Encryption. ///</summary> [Description(«The remote server sent an invalid response for a file being opened with Client Side Encryption.«)] ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE = 0x00001781, /// <summary> /// Client Side Encryption is not supported by the remote server even though it claims to support it. ///</summary> [Description(«Client Side Encryption is not supported by the remote server even though it claims to support it.«)] ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER = 0x00001782, /// <summary> /// File is encrypted and should be opened in Client Side Encryption mode. ///</summary> [Description(«File is encrypted and should be opened in Client Side Encryption mode.«)] ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE = 0x00001783, /// <summary> /// A new encrypted file is being created and a $EFS needs to be provided. ///</summary> [Description(«A new encrypted file is being created and a $EFS needs to be provided.«)] ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE = 0x00001784, /// <summary> /// The SMB client requested a CSE FSCTL on a non-CSE file. ///</summary> [Description(«The SMB client requested a CSE FSCTL on a non-CSE file.«)] ERROR_CS_ENCRYPTION_FILE_NOT_CSE = 0x00001785, /// <summary> /// The requested operation was blocked by policy. For more information, contact your system administrator. ///</summary> [Description(«The requested operation was blocked by policy. For more information, contact your system administrator.«)] ERROR_ENCRYPTION_POLICY_DENIES_OPERATION = 0x00001786, /// <summary> /// The list of servers for this workgroup is not currently available. ///</summary> [Description(«The list of servers for this workgroup is not currently available.«)] ERROR_NO_BROWSER_SERVERS_FOUND = 0x000017e6, /// <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> [Description(«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.«)] SCHED_E_SERVICE_NOT_LOCALSYSTEM = 0x00001838, /// <summary> /// Log service encountered an invalid log sector. ///</summary> [Description(«Log service encountered an invalid log sector.«)] ERROR_LOG_SECTOR_INVALID = 0x000019c8, /// <summary> /// Log service encountered a log sector with invalid block parity. ///</summary> [Description(«Log service encountered a log sector with invalid block parity.«)] ERROR_LOG_SECTOR_PARITY_INVALID = 0x000019c9, /// <summary> /// Log service encountered a remapped log sector. ///</summary> [Description(«Log service encountered a remapped log sector.«)] ERROR_LOG_SECTOR_REMAPPED = 0x000019ca, /// <summary> /// Log service encountered a partial or incomplete log block. ///</summary> [Description(«Log service encountered a partial or incomplete log block.«)] ERROR_LOG_BLOCK_INCOMPLETE = 0x000019cb, /// <summary> /// Log service encountered an attempt access data outside the active log range. ///</summary> [Description(«Log service encountered an attempt access data outside the active log range.«)] ERROR_LOG_INVALID_RANGE = 0x000019cc, /// <summary> /// Log service user marshalling buffers are exhausted. ///</summary> [Description(«Log service user marshalling buffers are exhausted.«)] ERROR_LOG_BLOCKS_EXHAUSTED = 0x000019cd, /// <summary> /// Log service encountered an attempt read from a marshalling area with an invalid read context. ///</summary> [Description(«Log service encountered an attempt read from a marshalling area with an invalid read context.«)] ERROR_LOG_READ_CONTEXT_INVALID = 0x000019ce, /// <summary> /// Log service encountered an invalid log restart area. ///</summary> [Description(«Log service encountered an invalid log restart area.«)] ERROR_LOG_RESTART_INVALID = 0x000019cf, /// <summary> /// Log service encountered an invalid log block version. ///</summary> [Description(«Log service encountered an invalid log block version.«)] ERROR_LOG_BLOCK_VERSION = 0x000019d0, /// <summary> /// Log service encountered an invalid log block. ///</summary> [Description(«Log service encountered an invalid log block.«)] ERROR_LOG_BLOCK_INVALID = 0x000019d1, /// <summary> /// Log service encountered an attempt to read the log with an invalid read mode. ///</summary> [Description(«Log service encountered an attempt to read the log with an invalid read mode.«)] ERROR_LOG_READ_MODE_INVALID = 0x000019d2, /// <summary> /// Log service encountered a log stream with no restart area. ///</summary> [Description(«Log service encountered a log stream with no restart area.«)] ERROR_LOG_NO_RESTART = 0x000019d3, /// <summary> /// Log service encountered a corrupted metadata file. ///</summary> [Description(«Log service encountered a corrupted metadata file.«)] ERROR_LOG_METADATA_CORRUPT = 0x000019d4, /// <summary> /// Log service encountered a metadata file that could not be created by the log file system. ///</summary> [Description(«Log service encountered a metadata file that could not be created by the log file system.«)] ERROR_LOG_METADATA_INVALID = 0x000019d5, /// <summary> /// Log service encountered a metadata file with inconsistent data. ///</summary> [Description(«Log service encountered a metadata file with inconsistent data.«)] ERROR_LOG_METADATA_INCONSISTENT = 0x000019d6, /// <summary> /// Log service encountered an attempt to erroneous allocate or dispose reservation space. ///</summary> [Description(«Log service encountered an attempt to erroneous allocate or dispose reservation space.«)] ERROR_LOG_RESERVATION_INVALID = 0x000019d7, /// <summary> /// Log service cannot delete log file or file system container. ///</summary> [Description(«Log service cannot delete log file or file system container.«)] ERROR_LOG_CANT_DELETE = 0x000019d8, /// <summary> /// Log service has reached the maximum allowable containers allocated to a log file. ///</summary> [Description(«Log service has reached the maximum allowable containers allocated to a log file.«)] ERROR_LOG_CONTAINER_LIMIT_EXCEEDED = 0x000019d9, /// <summary> /// Log service has attempted to read or write backward past the start of the log. ///</summary> [Description(«Log service has attempted to read or write backward past the start of the log.«)] ERROR_LOG_START_OF_LOG = 0x000019da, /// <summary> /// Log policy could not be installed because a policy of the same type is already present. ///</summary> [Description(«Log policy could not be installed because a policy of the same type is already present.«)] ERROR_LOG_POLICY_ALREADY_INSTALLED = 0x000019db, /// <summary> /// Log policy in question was not installed at the time of the request. ///</summary> [Description(«Log policy in question was not installed at the time of the request.«)] ERROR_LOG_POLICY_NOT_INSTALLED = 0x000019dc, /// <summary> /// The installed set of policies on the log is invalid. ///</summary> [Description(«The installed set of policies on the log is invalid.«)] ERROR_LOG_POLICY_INVALID = 0x000019dd, /// <summary> /// A policy on the log in question prevented the operation from completing. ///</summary> [Description(«A policy on the log in question prevented the operation from completing.«)] ERROR_LOG_POLICY_CONFLICT = 0x000019de, /// <summary> /// Log space cannot be reclaimed because the log is pinned by the archive tail. ///</summary> [Description(«Log space cannot be reclaimed because the log is pinned by the archive tail.«)] ERROR_LOG_PINNED_ARCHIVE_TAIL = 0x000019df, /// <summary> /// Log record is not a record in the log file. ///</summary> [Description(«Log record is not a record in the log file.«)] ERROR_LOG_RECORD_NONEXISTENT = 0x000019e0, /// <summary> /// Number of reserved log records or the adjustment of the number of reserved log records is invalid. ///</summary> [Description(«Number of reserved log records or the adjustment of the number of reserved log records is invalid.«)] ERROR_LOG_RECORDS_RESERVED_INVALID = 0x000019e1, /// <summary> /// Reserved log space or the adjustment of the log space is invalid. ///</summary> [Description(«Reserved log space or the adjustment of the log space is invalid.«)] ERROR_LOG_SPACE_RESERVED_INVALID = 0x000019e2, /// <summary> /// An new or existing archive tail or base of the active log is invalid. ///</summary> [Description(«An new or existing archive tail or base of the active log is invalid.«)] ERROR_LOG_TAIL_INVALID = 0x000019e3, /// <summary> /// Log space is exhausted. ///</summary> [Description(«Log space is exhausted.«)] ERROR_LOG_FULL = 0x000019e4, /// <summary> /// The log could not be set to the requested size. ///</summary> [Description(«The log could not be set to the requested size.«)] ERROR_COULD_NOT_RESIZE_LOG = 0x000019e5, /// <summary> /// Log is multiplexed, no direct writes to the physical log is allowed. ///</summary> [Description(«Log is multiplexed, no direct writes to the physical log is allowed.«)] ERROR_LOG_MULTIPLEXED = 0x000019e6, /// <summary> /// The operation failed because the log is a dedicated log. ///</summary> [Description(«The operation failed because the log is a dedicated log.«)] ERROR_LOG_DEDICATED = 0x000019e7, /// <summary> /// The operation requires an archive context. ///</summary> [Description(«The operation requires an archive context.«)] ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS = 0x000019e8, /// <summary> /// Log archival is in progress. ///</summary> [Description(«Log archival is in progress.«)] ERROR_LOG_ARCHIVE_IN_PROGRESS = 0x000019e9, /// <summary> /// The operation requires a non-ephemeral log, but the log is ephemeral. ///</summary> [Description(«The operation requires a non-ephemeral log, but the log is ephemeral.«)] ERROR_LOG_EPHEMERAL = 0x000019ea, /// <summary> /// The log must have at least two containers before it can be read from or written to. ///</summary> [Description(«The log must have at least two containers before it can be read from or written to.«)] ERROR_LOG_NOT_ENOUGH_CONTAINERS = 0x000019eb, /// <summary> /// A log client has already registered on the stream. ///</summary> [Description(«A log client has already registered on the stream.«)] ERROR_LOG_CLIENT_ALREADY_REGISTERED = 0x000019ec, /// <summary> /// A log client has not been registered on the stream. ///</summary> [Description(«A log client has not been registered on the stream.«)] ERROR_LOG_CLIENT_NOT_REGISTERED = 0x000019ed, /// <summary> /// A request has already been made to handle the log full condition. ///</summary> [Description(«A request has already been made to handle the log full condition.«)] ERROR_LOG_FULL_HANDLER_IN_PROGRESS = 0x000019ee, /// <summary> /// Log service encountered an error when attempting to read from a log container. ///</summary> [Description(«Log service encountered an error when attempting to read from a log container.«)] ERROR_LOG_CONTAINER_READ_FAILED = 0x000019ef, /// <summary> /// Log service encountered an error when attempting to write to a log container. ///</summary> [Description(«Log service encountered an error when attempting to write to a log container.«)] ERROR_LOG_CONTAINER_WRITE_FAILED = 0x000019f0, /// <summary> /// Log service encountered an error when attempting open a log container. ///</summary> [Description(«Log service encountered an error when attempting open a log container.«)] ERROR_LOG_CONTAINER_OPEN_FAILED = 0x000019f1, /// <summary> /// Log service encountered an invalid container state when attempting a requested action. ///</summary> [Description(«Log service encountered an invalid container state when attempting a requested action.«)] ERROR_LOG_CONTAINER_STATE_INVALID = 0x000019f2, /// <summary> /// Log service is not in the correct state to perform a requested action. ///</summary> [Description(«Log service is not in the correct state to perform a requested action.«)] ERROR_LOG_STATE_INVALID = 0x000019f3, /// <summary> /// Log space cannot be reclaimed because the log is pinned. ///</summary> [Description(«Log space cannot be reclaimed because the log is pinned.«)] ERROR_LOG_PINNED = 0x000019f4, /// <summary> /// Log metadata flush failed. ///</summary> [Description(«Log metadata flush failed.«)] ERROR_LOG_METADATA_FLUSH_FAILED = 0x000019f5, /// <summary> /// Security on the log and its containers is inconsistent. ///</summary> [Description(«Security on the log and its containers is inconsistent.«)] ERROR_LOG_INCONSISTENT_SECURITY = 0x000019f6, /// <summary> /// Records were appended to the log or reservation changes were made, but the log could not be flushed. ///</summary> [Description(«Records were appended to the log or reservation changes were made, but the log could not be flushed.«)] ERROR_LOG_APPENDED_FLUSH_FAILED = 0x000019f7, /// <summary> /// The log is pinned due to reservation consuming most of the log space. Free some reserved records to make space available. ///</summary> [Description(«The log is pinned due to reservation consuming most of the log space. Free some reserved records to make space available.«)] ERROR_LOG_PINNED_RESERVATION = 0x000019f8, /// <summary> /// The transaction handle associated with this operation is not valid. ///</summary> [Description(«The transaction handle associated with this operation is not valid.«)] ERROR_INVALID_TRANSACTION = 0x00001a2c, /// <summary> /// The requested operation was made in the context of a transaction that is no longer active. ///</summary> [Description(«The requested operation was made in the context of a transaction that is no longer active.«)] ERROR_TRANSACTION_NOT_ACTIVE = 0x00001a2d, /// <summary> /// The requested operation is not valid on the Transaction object in its current state. ///</summary> [Description(«The requested operation is not valid on the Transaction object in its current state.«)] ERROR_TRANSACTION_REQUEST_NOT_VALID = 0x00001a2e, /// <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> [Description(«The caller has called a response API, but the response is not expected because the TM did not issue the corresponding request to the caller.«)] ERROR_TRANSACTION_NOT_REQUESTED = 0x00001a2f, /// <summary> /// It is too late to perform the requested operation, since the Transaction has already been aborted. ///</summary> [Description(«It is too late to perform the requested operation, since the Transaction has already been aborted.«)] ERROR_TRANSACTION_ALREADY_ABORTED = 0x00001a30, /// <summary> /// It is too late to perform the requested operation, since the Transaction has already been committed. ///</summary> [Description(«It is too late to perform the requested operation, since the Transaction has already been committed.«)] ERROR_TRANSACTION_ALREADY_COMMITTED = 0x00001a31, /// <summary> /// The Transaction Manager was unable to be successfully initialized. Transacted operations are not supported. ///</summary> [Description(«The Transaction Manager was unable to be successfully initialized. Transacted operations are not supported.«)] ERROR_TM_INITIALIZATION_FAILED = 0x00001a32, /// <summary> /// The specified ResourceManager made no changes or updates to the resource under this transaction. ///</summary> [Description(«The specified ResourceManager made no changes or updates to the resource under this transaction.«)] ERROR_RESOURCEMANAGER_READ_ONLY = 0x00001a33, /// <summary> /// The resource manager has attempted to prepare a transaction that it has not successfully joined. ///</summary> [Description(«The resource manager has attempted to prepare a transaction that it has not successfully joined.«)] ERROR_TRANSACTION_NOT_JOINED = 0x00001a34, /// <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> [Description(«The Transaction object already has a superior enlistment, and the caller attempted an operation that would have created a new superior. Only a single superior enlistment is allow.«)] ERROR_TRANSACTION_SUPERIOR_EXISTS = 0x00001a35, /// <summary> /// The RM tried to register a protocol that already exists. ///</summary> [Description(«The RM tried to register a protocol that already exists.«)] ERROR_CRM_PROTOCOL_ALREADY_EXISTS = 0x00001a36, /// <summary> /// The attempt to propagate the Transaction failed. ///</summary> [Description(«The attempt to propagate the Transaction failed.«)] ERROR_TRANSACTION_PROPAGATION_FAILED = 0x00001a37, /// <summary> /// The requested propagation protocol was not registered as a CRM. ///</summary> [Description(«The requested propagation protocol was not registered as a CRM.«)] ERROR_CRM_PROTOCOL_NOT_FOUND = 0x00001a38, /// <summary> /// The buffer passed in to PushTransaction or PullTransaction is not in a valid format. ///</summary> [Description(«The buffer passed in to PushTransaction or PullTransaction is not in a valid format.«)] ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER = 0x00001a39, /// <summary> /// The current transaction context associated with the thread is not a valid handle to a transaction object. ///</summary> [Description(«The current transaction context associated with the thread is not a valid handle to a transaction object.«)] ERROR_CURRENT_TRANSACTION_NOT_VALID = 0x00001a3a, /// <summary> /// The specified Transaction object could not be opened, because it was not found. ///</summary> [Description(«The specified Transaction object could not be opened, because it was not found.«)] ERROR_TRANSACTION_NOT_FOUND = 0x00001a3b, /// <summary> /// The specified ResourceManager object could not be opened, because it was not found. ///</summary> [Description(«The specified ResourceManager object could not be opened, because it was not found.«)] ERROR_RESOURCEMANAGER_NOT_FOUND = 0x00001a3c, /// <summary> /// The specified Enlistment object could not be opened, because it was not found. ///</summary> [Description(«The specified Enlistment object could not be opened, because it was not found.«)] ERROR_ENLISTMENT_NOT_FOUND = 0x00001a3d, /// <summary> /// The specified TransactionManager object could not be opened, because it was not found. ///</summary> [Description(«The specified TransactionManager object could not be opened, because it was not found.«)] ERROR_TRANSACTIONMANAGER_NOT_FOUND = 0x00001a3e, /// <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> [Description(«The object specified could not be created or opened, because its associated TransactionManager is not online. The TransactionManager must be brought fully Online by calling RecoverTransactionManager to recover to the end of its LogFile before objects in its Transaction or ResourceManager namespaces can be opened. In addition, errors in writing records to its LogFile can cause a TransactionManager to go offline.«)] ERROR_TRANSACTIONMANAGER_NOT_ONLINE = 0x00001a3f, /// <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> [Description(«The specified TransactionManager was unable to create the objects contained in its logfile in the Ob namespace. Therefore, the TransactionManager was unable to recover.«)] ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION = 0x00001a40, /// <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> [Description(«The call to create a superior Enlistment on this Transaction object could not be completed, because the Transaction object specified for the enlistment is a subordinate branch of the Transaction. Only the root of the Transaction can be enlisted on as a superior.«)] ERROR_TRANSACTION_NOT_ROOT = 0x00001a41, /// <summary> /// Because the associated transaction manager or resource manager has been closed, the handle is no longer valid. ///</summary> [Description(«Because the associated transaction manager or resource manager has been closed, the handle is no longer valid.«)] ERROR_TRANSACTION_OBJECT_EXPIRED = 0x00001a42, /// <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> [Description(«The specified operation could not be performed on this Superior enlistment, because the enlistment was not created with the corresponding completion response in the NotificationMask.«)] ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED = 0x00001a43, /// <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> [Description(«The specified operation could not be performed, because the record that would be logged was too long. This can occur because of two conditions: either there are too many Enlistments on this Transaction, or the combined RecoveryInformation being logged on behalf of those Enlistments is too long.«)] ERROR_TRANSACTION_RECORD_TOO_LONG = 0x00001a44, /// <summary> /// Implicit transaction are not supported. ///</summary> [Description(«Implicit transaction are not supported.«)] ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED = 0x00001a45, /// <summary> /// The kernel transaction manager had to abort or forget the transaction because it blocked forward progress. ///</summary> [Description(«The kernel transaction manager had to abort or forget the transaction because it blocked forward progress.«)] ERROR_TRANSACTION_INTEGRITY_VIOLATED = 0x00001a46, /// <summary> /// The TransactionManager identity that was supplied did not match the one recorded in the TransactionManager’s log file. ///</summary> [Description(«The TransactionManager identity that was supplied did not match the one recorded in the TransactionManager’s log file.«)] ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH = 0x00001a47, /// <summary> /// This snapshot operation cannot continue because a transactional resource manager cannot be frozen in its current state. Please try again. ///</summary> [Description(«This snapshot operation cannot continue because a transactional resource manager cannot be frozen in its current state. Please try again.«)] ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT = 0x00001a48, /// <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> [Description(«The transaction cannot be enlisted on with the specified EnlistmentMask, because the transaction has already completed the PrePrepare phase. In order to ensure correctness, the ResourceManager must switch to a write- through mode and cease caching data within this transaction. Enlisting for only subsequent transaction phases may still succeed.«)] ERROR_TRANSACTION_MUST_WRITETHROUGH = 0x00001a49, /// <summary> /// The transaction does not have a superior enlistment. ///</summary> [Description(«The transaction does not have a superior enlistment.«)] ERROR_TRANSACTION_NO_SUPERIOR = 0x00001a4a, /// <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> [Description(«The attempt to commit the Transaction completed, but it is possible that some portion of the transaction tree did not commit successfully due to heuristics. Therefore it is possible that some data modified in the transaction may not have committed, resulting in transactional inconsistency. If possible, check the consistency of the associated data.«)] ERROR_HEURISTIC_DAMAGE_POSSIBLE = 0x00001a4b, /// <summary> /// The function attempted to use a name that is reserved for use by another transaction. ///</summary> [Description(«The function attempted to use a name that is reserved for use by another transaction.«)] ERROR_TRANSACTIONAL_CONFLICT = 0x00001a90, /// <summary> /// Transaction support within the specified resource manager is not started or was shut down due to an error. ///</summary> [Description(«Transaction support within the specified resource manager is not started or was shut down due to an error.«)] ERROR_RM_NOT_ACTIVE = 0x00001a91, /// <summary> /// The metadata of the RM has been corrupted. The RM will not function. ///</summary> [Description(«The metadata of the RM has been corrupted. The RM will not function.«)] ERROR_RM_METADATA_CORRUPT = 0x00001a92, /// <summary> /// The specified directory does not contain a resource manager. ///</summary> [Description(«The specified directory does not contain a resource manager.«)] ERROR_DIRECTORY_NOT_RM = 0x00001a93, /// <summary> /// The remote server or share does not support transacted file operations. ///</summary> [Description(«The remote server or share does not support transacted file operations.«)] ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE = 0x00001a95, /// <summary> /// The requested log size is invalid. ///</summary> [Description(«The requested log size is invalid.«)] ERROR_LOG_RESIZE_INVALID_SIZE = 0x00001a96, /// <summary> /// The object (file, stream, link) corresponding to the handle has been deleted by a Transaction Savepoint Rollback. ///</summary> [Description(«The object (file, stream, link) corresponding to the handle has been deleted by a Transaction Savepoint Rollback.«)] ERROR_OBJECT_NO_LONGER_EXISTS = 0x00001a97, /// <summary> /// The specified file miniversion was not found for this transacted file open. ///</summary> [Description(«The specified file miniversion was not found for this transacted file open.«)] ERROR_STREAM_MINIVERSION_NOT_FOUND = 0x00001a98, /// <summary> /// The specified file miniversion was found but has been invalidated. Most likely cause is a transaction savepoint rollback. ///</summary> [Description(«The specified file miniversion was found but has been invalidated. Most likely cause is a transaction savepoint rollback.«)] ERROR_STREAM_MINIVERSION_NOT_VALID = 0x00001a99, /// <summary> /// A miniversion may only be opened in the context of the transaction that created it. ///</summary> [Description(«A miniversion may only be opened in the context of the transaction that created it.«)] ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION = 0x00001a9a, /// <summary> /// It is not possible to open a miniversion with modify access. ///</summary> [Description(«It is not possible to open a miniversion with modify access.«)] ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT = 0x00001a9b, /// <summary> /// It is not possible to create any more miniversions for this stream. ///</summary> [Description(«It is not possible to create any more miniversions for this stream.«)] ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS = 0x00001a9c, /// <summary> /// The remote server sent mismatching version number or Fid for a file opened with transactions. ///</summary> [Description(«The remote server sent mismatching version number or Fid for a file opened with transactions.«)] ERROR_REMOTE_FILE_VERSION_MISMATCH = 0x00001a9e, /// <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> [Description(«The handle has been invalidated by a transaction. The most likely cause is the presence of memory mapping on a file or an open handle when the transaction ended or rolled back to savepoint.«)] ERROR_HANDLE_NO_LONGER_VALID = 0x00001a9f, /// <summary> /// There is no transaction metadata on the file. ///</summary> [Description(«There is no transaction metadata on the file.«)] ERROR_NO_TXF_METADATA = 0x00001aa0, /// <summary> /// The log data is corrupt. ///</summary> [Description(«The log data is corrupt.«)] ERROR_LOG_CORRUPTION_DETECTED = 0x00001aa1, /// <summary> /// The file can’t be recovered because there is a handle still open on it. ///</summary> [Description(«The file can’t be recovered because there is a handle still open on it.«)] ERROR_CANT_RECOVER_WITH_HANDLE_OPEN = 0x00001aa2, /// <summary> /// The transaction outcome is unavailable because the resource manager responsible for it has disconnected. ///</summary> [Description(«The transaction outcome is unavailable because the resource manager responsible for it has disconnected.«)] ERROR_RM_DISCONNECTED = 0x00001aa3, /// <summary> /// The request was rejected because the enlistment in question is not a superior enlistment. ///</summary> [Description(«The request was rejected because the enlistment in question is not a superior enlistment.«)] ERROR_ENLISTMENT_NOT_SUPERIOR = 0x00001aa4, /// <summary> /// The transactional resource manager is already consistent. Recovery is not needed. ///</summary> [Description(«The transactional resource manager is already consistent. Recovery is not needed.«)] ERROR_RECOVERY_NOT_NEEDED = 0x00001aa5, /// <summary> /// The transactional resource manager has already been started. ///</summary> [Description(«The transactional resource manager has already been started.«)] ERROR_RM_ALREADY_STARTED = 0x00001aa6, /// <summary> /// The file cannot be opened transactionally, because its identity depends on the outcome of an unresolved transaction. ///</summary> [Description(«The file cannot be opened transactionally, because its identity depends on the outcome of an unresolved transaction.«)] ERROR_FILE_IDENTITY_NOT_PERSISTENT = 0x00001aa7, /// <summary> /// The operation cannot be performed because another transaction is depending on the fact that this property will not change. ///</summary> [Description(«The operation cannot be performed because another transaction is depending on the fact that this property will not change.«)] ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY = 0x00001aa8, /// <summary> /// The operation would involve a single file with two transactional resource managers and is therefore not allowed. ///</summary> [Description(«The operation would involve a single file with two transactional resource managers and is therefore not allowed.«)] ERROR_CANT_CROSS_RM_BOUNDARY = 0x00001aa9, /// <summary> /// The $Txf directory must be empty for this operation to succeed. ///</summary> [Description(«The $Txf directory must be empty for this operation to succeed.«)] ERROR_TXF_DIR_NOT_EMPTY = 0x00001aaa, /// <summary> /// The operation would leave a transactional resource manager in an inconsistent state and is therefore not allowed. ///</summary> [Description(«The operation would leave a transactional resource manager in an inconsistent state and is therefore not allowed.«)] ERROR_INDOUBT_TRANSACTIONS_EXIST = 0x00001aab, /// <summary> /// The operation could not be completed because the transaction manager does not have a log. ///</summary> [Description(«The operation could not be completed because the transaction manager does not have a log.«)] ERROR_TM_VOLATILE = 0x00001aac, /// <summary> /// A rollback could not be scheduled because a previously scheduled rollback has already executed or been queued for execution. ///</summary> [Description(«A rollback could not be scheduled because a previously scheduled rollback has already executed or been queued for execution.«)] ERROR_ROLLBACK_TIMER_EXPIRED = 0x00001aad, /// <summary> /// The transactional metadata attribute on the file or directory is corrupt and unreadable. ///</summary> [Description(«The transactional metadata attribute on the file or directory is corrupt and unreadable.«)] ERROR_TXF_ATTRIBUTE_CORRUPT = 0x00001aae, /// <summary> /// The encryption operation could not be completed because a transaction is active. ///</summary> [Description(«The encryption operation could not be completed because a transaction is active.«)] ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION = 0x00001aaf, /// <summary> /// This object is not allowed to be opened in a transaction. ///</summary> [Description(«This object is not allowed to be opened in a transaction.«)] ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED = 0x00001ab0, /// <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> [Description(«An attempt to create space in the transactional resource manager’s log failed. The failure status has been recorded in the event log.«)] ERROR_LOG_GROWTH_FAILED = 0x00001ab1, /// <summary> /// Memory mapping (creating a mapped section) a remote file under a transaction is not supported. ///</summary> [Description(«Memory mapping (creating a mapped section) a remote file under a transaction is not supported.«)] ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE = 0x00001ab2, /// <summary> /// Transaction metadata is already present on this file and cannot be superseded. ///</summary> [Description(«Transaction metadata is already present on this file and cannot be superseded.«)] ERROR_TXF_METADATA_ALREADY_PRESENT = 0x00001ab3, /// <summary> /// A transaction scope could not be entered because the scope handler has not been initialized. ///</summary> [Description(«A transaction scope could not be entered because the scope handler has not been initialized.«)] ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET = 0x00001ab4, /// <summary> /// Promotion was required in order to allow the resource manager to enlist, but the transaction was set to disallow it. ///</summary> [Description(«Promotion was required in order to allow the resource manager to enlist, but the transaction was set to disallow it.«)] ERROR_TRANSACTION_REQUIRED_PROMOTION = 0x00001ab5, /// <summary> /// This file is open for modification in an unresolved transaction and may be opened for execute only by a transacted reader. ///</summary> [Description(«This file is open for modification in an unresolved transaction and may be opened for execute only by a transacted reader.«)] ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION = 0x00001ab6, /// <summary> /// The request to thaw frozen transactions was ignored because transactions had not previously been frozen. ///</summary> [Description(«The request to thaw frozen transactions was ignored because transactions had not previously been frozen.«)] ERROR_TRANSACTIONS_NOT_FROZEN = 0x00001ab7, /// <summary> /// Transactions cannot be frozen because a freeze is already in progress. ///</summary> [Description(«Transactions cannot be frozen because a freeze is already in progress.«)] ERROR_TRANSACTION_FREEZE_IN_PROGRESS = 0x00001ab8, /// <summary> /// The target volume is not a snapshot volume. This operation is only valid on a volume mounted as a snapshot. ///</summary> [Description(«The target volume is not a snapshot volume. This operation is only valid on a volume mounted as a snapshot.«)] ERROR_NOT_SNAPSHOT_VOLUME = 0x00001ab9, /// <summary> /// The savepoint operation failed because files are open on the transaction. This is not permitted. ///</summary> [Description(«The savepoint operation failed because files are open on the transaction. This is not permitted.«)] ERROR_NO_SAVEPOINT_WITH_OPEN_FILES = 0x00001aba, /// <summary> /// Windows has discovered corruption in a file, and that file has since been repaired. Data loss may have occurred. ///</summary> [Description(«Windows has discovered corruption in a file, and that file has since been repaired. Data loss may have occurred.«)] ERROR_DATA_LOST_REPAIR = 0x00001abb, /// <summary> /// The sparse operation could not be completed because a transaction is active on the file. ///</summary> [Description(«The sparse operation could not be completed because a transaction is active on the file.«)] ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION = 0x00001abc, /// <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> [Description(«The call to create a TransactionManager object failed because the Tm Identity stored in the logfile does not match the Tm Identity that was passed in as an argument.«)] ERROR_TM_IDENTITY_MISMATCH = 0x00001abd, /// <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> [Description(«I/O was attempted on a section object that has been floated as a result of a transaction ending. There is no valid data.«)] ERROR_FLOATED_SECTION = 0x00001abe, /// <summary> /// The transactional resource manager cannot currently accept transacted work due to a transient condition such as low resources. ///</summary> [Description(«The transactional resource manager cannot currently accept transacted work due to a transient condition such as low resources.«)] ERROR_CANNOT_ACCEPT_TRANSACTED_WORK = 0x00001abf, /// <summary> /// The transactional resource manager had too many tranactions outstanding that could not be aborted. The transactional resource manger has been shut down. ///</summary> [Description(«The transactional resource manager had too many tranactions outstanding that could not be aborted. The transactional resource manger has been shut down.«)] ERROR_CANNOT_ABORT_TRANSACTIONS = 0x00001ac0, /// <summary> /// The operation could not be completed due to bad clusters on disk. ///</summary> [Description(«The operation could not be completed due to bad clusters on disk.«)] ERROR_BAD_CLUSTERS = 0x00001ac1, /// <summary> /// The compression operation could not be completed because a transaction is active on the file. ///</summary> [Description(«The compression operation could not be completed because a transaction is active on the file.«)] ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION = 0x00001ac2, /// <summary> /// The operation could not be completed because the volume is dirty. Please run chkdsk and try again. ///</summary> [Description(«The operation could not be completed because the volume is dirty. Please run chkdsk and try again.«)] ERROR_VOLUME_DIRTY = 0x00001ac3, /// <summary> /// The link tracking operation could not be completed because a transaction is active. ///</summary> [Description(«The link tracking operation could not be completed because a transaction is active.«)] ERROR_NO_LINK_TRACKING_IN_TRANSACTION = 0x00001ac4, /// <summary> /// This operation cannot be performed in a transaction. ///</summary> [Description(«This operation cannot be performed in a transaction.«)] ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION = 0x00001ac5, /// <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> [Description(«The handle is no longer properly associated with its transaction. It may have been opened in a transactional resource manager that was subsequently forced to restart. Please close the handle and open a new one.«)] ERROR_EXPIRED_HANDLE = 0x00001ac6, /// <summary> /// The specified operation could not be performed because the resource manager is not enlisted in the transaction. ///</summary> [Description(«The specified operation could not be performed because the resource manager is not enlisted in the transaction.«)] ERROR_TRANSACTION_NOT_ENLISTED = 0x00001ac7, /// <summary> /// The specified session name is invalid. ///</summary> [Description(«The specified session name is invalid.«)] ERROR_CTX_WINSTATION_NAME_INVALID = 0x00001b59, /// <summary> /// The specified protocol driver is invalid. ///</summary> [Description(«The specified protocol driver is invalid.«)] ERROR_CTX_INVALID_PD = 0x00001b5a, /// <summary> /// The specified protocol driver was not found in the system path. ///</summary> [Description(«The specified protocol driver was not found in the system path.«)] ERROR_CTX_PD_NOT_FOUND = 0x00001b5b, /// <summary> /// The specified terminal connection driver was not found in the system path. ///</summary> [Description(«The specified terminal connection driver was not found in the system path.«)] ERROR_CTX_WD_NOT_FOUND = 0x00001b5c, /// <summary> /// A registry key for event logging could not be created for this session. ///</summary> [Description(«A registry key for event logging could not be created for this session.«)] ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY = 0x00001b5d, /// <summary> /// A service with the same name already exists on the system. ///</summary> [Description(«A service with the same name already exists on the system.«)] ERROR_CTX_SERVICE_NAME_COLLISION = 0x00001b5e, /// <summary> /// A close operation is pending on the session. ///</summary> [Description(«A close operation is pending on the session.«)] ERROR_CTX_CLOSE_PENDING = 0x00001b5f, /// <summary> /// There are no free output buffers available. ///</summary> [Description(«There are no free output buffers available.«)] ERROR_CTX_NO_OUTBUF = 0x00001b60, /// <summary> /// The MODEM.INF file was not found. ///</summary> [Description(«The MODEM.INF file was not found.«)] ERROR_CTX_MODEM_INF_NOT_FOUND = 0x00001b61, /// <summary> /// The modem name was not found in MODEM.INF. ///</summary> [Description(«The modem name was not found in MODEM.INF.«)] ERROR_CTX_INVALID_MODEMNAME = 0x00001b62, /// <summary> /// The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem. ///</summary> [Description(«The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem.«)] ERROR_CTX_MODEM_RESPONSE_ERROR = 0x00001b63, /// <summary> /// The modem did not respond to the command sent to it. Verify that the modem is properly cabled and powered on. ///</summary> [Description(«The modem did not respond to the command sent to it. Verify that the modem is properly cabled and powered on.«)] ERROR_CTX_MODEM_RESPONSE_TIMEOUT = 0x00001b64, /// <summary> /// Carrier detect has failed or carrier has been dropped due to disconnect. ///</summary> [Description(«Carrier detect has failed or carrier has been dropped due to disconnect.«)] ERROR_CTX_MODEM_RESPONSE_NO_CARRIER = 0x00001b65, /// <summary> /// Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional. ///</summary> [Description(«Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional.«)] ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE = 0x00001b66, /// <summary> /// Busy signal detected at remote site on callback. ///</summary> [Description(«Busy signal detected at remote site on callback.«)] ERROR_CTX_MODEM_RESPONSE_BUSY = 0x00001b67, /// <summary> /// Voice detected at remote site on callback. ///</summary> [Description(«Voice detected at remote site on callback.«)] ERROR_CTX_MODEM_RESPONSE_VOICE = 0x00001b68, /// <summary> /// Transport driver error. ///</summary> [Description(«Transport driver error.«)] ERROR_CTX_TD_ERROR = 0x00001b69, /// <summary> /// The specified session cannot be found. ///</summary> [Description(«The specified session cannot be found.«)] ERROR_CTX_WINSTATION_NOT_FOUND = 0x00001b6e, /// <summary> /// The specified session name is already in use. ///</summary> [Description(«The specified session name is already in use.«)] ERROR_CTX_WINSTATION_ALREADY_EXISTS = 0x00001b6f, /// <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> [Description(«The task you are trying to do can’t be completed because Remote Desktop Services is currently busy. Please try again in a few minutes. Other users should still be able to log on.«)] ERROR_CTX_WINSTATION_BUSY = 0x00001b70, /// <summary> /// An attempt has been made to connect to a session whose video mode is not supported by the current client. ///</summary> [Description(«An attempt has been made to connect to a session whose video mode is not supported by the current client.«)] ERROR_CTX_BAD_VIDEO_MODE = 0x00001b71, /// <summary> /// The application attempted to enable DOS graphics mode. DOS graphics mode is not supported. ///</summary> [Description(«The application attempted to enable DOS graphics mode. DOS graphics mode is not supported.«)] ERROR_CTX_GRAPHICS_INVALID = 0x00001b7b, /// <summary> /// Your interactive logon privilege has been disabled. Please contact your administrator. ///</summary> [Description(«Your interactive logon privilege has been disabled. Please contact your administrator.«)] ERROR_CTX_LOGON_DISABLED = 0x00001b7d, /// <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> [Description(«The requested operation can be performed only on the system console. This is most often the result of a driver or system DLL requiring direct console access.«)] ERROR_CTX_NOT_CONSOLE = 0x00001b7e, /// <summary> /// The client failed to respond to the server connect message. ///</summary> [Description(«The client failed to respond to the server connect message.«)] ERROR_CTX_CLIENT_QUERY_TIMEOUT = 0x00001b80, /// <summary> /// Disconnecting the console session is not supported. ///</summary> [Description(«Disconnecting the console session is not supported.«)] ERROR_CTX_CONSOLE_DISCONNECT = 0x00001b81, /// <summary> /// Reconnecting a disconnected session to the console is not supported. ///</summary> [Description(«Reconnecting a disconnected session to the console is not supported.«)] ERROR_CTX_CONSOLE_CONNECT = 0x00001b82, /// <summary> /// The request to control another session remotely was denied. ///</summary> [Description(«The request to control another session remotely was denied.«)] ERROR_CTX_SHADOW_DENIED = 0x00001b84, /// <summary> /// The requested session access is denied. ///</summary> [Description(«The requested session access is denied.«)] ERROR_CTX_WINSTATION_ACCESS_DENIED = 0x00001b85, /// <summary> /// The specified terminal connection driver is invalid. ///</summary> [Description(«The specified terminal connection driver is invalid.«)] ERROR_CTX_INVALID_WD = 0x00001b89, /// <summary> /// The requested session cannot be controlled remotely. This may be because the session is disconnected or does not currently have a user logged on. ///</summary> [Description(«The requested session cannot be controlled remotely. This may be because the session is disconnected or does not currently have a user logged on.«)] ERROR_CTX_SHADOW_INVALID = 0x00001b8a, /// <summary> /// The requested session is not configured to allow remote control. ///</summary> [Description(«The requested session is not configured to allow remote control.«)] ERROR_CTX_SHADOW_DISABLED = 0x00001b8b, /// <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> [Description(«Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number is currently being used by another user. Please call your system administrator to obtain a unique license number.«)] ERROR_CTX_CLIENT_LICENSE_IN_USE = 0x00001b8c, /// <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> [Description(«Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number has not been entered for this copy of the Terminal Server client. Please contact your system administrator.«)] ERROR_CTX_CLIENT_LICENSE_NOT_SET = 0x00001b8d, /// <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> [Description(«The number of connections to this computer is limited and all connections are in use right now. Try connecting later or contact your system administrator.«)] ERROR_CTX_LICENSE_NOT_AVAILABLE = 0x00001b8e, /// <summary> /// The client you are using is not licensed to use this system. Your logon request is denied. ///</summary> [Description(«The client you are using is not licensed to use this system. Your logon request is denied.«)] ERROR_CTX_LICENSE_CLIENT_INVALID = 0x00001b8f, /// <summary> /// The system license has expired. Your logon request is denied. ///</summary> [Description(«The system license has expired. Your logon request is denied.«)] ERROR_CTX_LICENSE_EXPIRED = 0x00001b90, /// <summary> /// Remote control could not be terminated because the specified session is not currently being remotely controlled. ///</summary> [Description(«Remote control could not be terminated because the specified session is not currently being remotely controlled.«)] ERROR_CTX_SHADOW_NOT_RUNNING = 0x00001b91, /// <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> [Description(«The remote control of the console was terminated because the display mode was changed. Changing the display mode in a remote control session is not supported.«)] ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE = 0x00001b92, /// <summary> /// Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared. ///</summary> [Description(«Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared.«)] ERROR_ACTIVATION_COUNT_EXCEEDED = 0x00001b93, /// <summary> /// Remote logins are currently disabled. ///</summary> [Description(«Remote logins are currently disabled.«)] ERROR_CTX_WINSTATIONS_DISABLED = 0x00001b94, /// <summary> /// You do not have the proper encryption level to access this Session. ///</summary> [Description(«You do not have the proper encryption level to access this Session.«)] ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED = 0x00001b95, /// <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> [Description(«The user %s\\%s is currently logged on to this computer. Only the current user or an administrator can log on to this computer.«)] ERROR_CTX_SESSION_IN_USE = 0x00001b96, /// <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> [Description(«The user %s\\%s is already logged on to the console of this computer. You do not have permission to log in at this time. To resolve this issue, contact %s\\%s and have them log off.«)] ERROR_CTX_NO_FORCE_LOGOFF = 0x00001b97, /// <summary> /// Unable to log you on because of an account restriction. ///</summary> [Description(«Unable to log you on because of an account restriction.«)] ERROR_CTX_ACCOUNT_RESTRICTION = 0x00001b98, /// <summary> /// The RDP protocol component %2 detected an error in the protocol stream and has disconnected the client. ///</summary> [Description(«The RDP protocol component %2 detected an error in the protocol stream and has disconnected the client.«)] ERROR_RDP_PROTOCOL_ERROR = 0x00001b99, /// <summary> /// The Client Drive Mapping Service Has Connected on Terminal Connection. ///</summary> [Description(«The Client Drive Mapping Service Has Connected on Terminal Connection.«)] ERROR_CTX_CDM_CONNECT = 0x00001b9a, /// <summary> /// The Client Drive Mapping Service Has Disconnected on Terminal Connection. ///</summary> [Description(«The Client Drive Mapping Service Has Disconnected on Terminal Connection.«)] ERROR_CTX_CDM_DISCONNECT = 0x00001b9b, /// <summary> /// The Terminal Server security layer detected an error in the protocol stream and has disconnected the client. ///</summary> [Description(«The Terminal Server security layer detected an error in the protocol stream and has disconnected the client.«)] ERROR_CTX_SECURITY_LAYER_ERROR = 0x00001b9c, /// <summary> /// The target session is incompatible with the current session. ///</summary> [Description(«The target session is incompatible with the current session.«)] ERROR_TS_INCOMPATIBLE_SESSIONS = 0x00001b9d, /// <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> [Description(«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.«)] ERROR_TS_VIDEO_SUBSYSTEM_ERROR = 0x00001b9e, /// <summary> /// The file replication service API was called incorrectly. ///</summary> [Description(«The file replication service API was called incorrectly.«)] FRS_ERR_INVALID_API_SEQUENCE = 0x00001f41, /// <summary> /// The file replication service cannot be started. ///</summary> [Description(«The file replication service cannot be started.«)] FRS_ERR_STARTING_SERVICE = 0x00001f42, /// <summary> /// The file replication service cannot be stopped. ///</summary> [Description(«The file replication service cannot be stopped.«)] FRS_ERR_STOPPING_SERVICE = 0x00001f43, /// <summary> /// The file replication service API terminated the request. The event log may have more information. ///</summary> [Description(«The file replication service API terminated the request. The event log may have more information.«)] FRS_ERR_INTERNAL_API = 0x00001f44, /// <summary> /// The file replication service terminated the request. The event log may have more information. ///</summary> [Description(«The file replication service terminated the request. The event log may have more information.«)] FRS_ERR_INTERNAL = 0x00001f45, /// <summary> /// The file replication service cannot be contacted. The event log may have more information. ///</summary> [Description(«The file replication service cannot be contacted. The event log may have more information.«)] FRS_ERR_SERVICE_COMM = 0x00001f46, /// <summary> /// The file replication service cannot satisfy the request because the user has insufficient privileges. The event log may have more information. ///</summary> [Description(«The file replication service cannot satisfy the request because the user has insufficient privileges. The event log may have more information.«)] FRS_ERR_INSUFFICIENT_PRIV = 0x00001f47, /// <summary> /// The file replication service cannot satisfy the request because authenticated RPC is not available. The event log may have more information. ///</summary> [Description(«The file replication service cannot satisfy the request because authenticated RPC is not available. The event log may have more information.«)] FRS_ERR_AUTHENTICATION = 0x00001f48, /// <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> [Description(«The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller. The event log may have more information.«)] FRS_ERR_PARENT_INSUFFICIENT_PRIV = 0x00001f49, /// <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> [Description(«The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller. The event log may have more information.«)] FRS_ERR_PARENT_AUTHENTICATION = 0x00001f4a, /// <summary> /// The file replication service cannot communicate with the file replication service on the domain controller. The event log may have more information. ///</summary> [Description(«The file replication service cannot communicate with the file replication service on the domain controller. The event log may have more information.«)] FRS_ERR_CHILD_TO_PARENT_COMM = 0x00001f4b, /// <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> [Description(«The file replication service on the domain controller cannot communicate with the file replication service on this computer. The event log may have more information.«)] FRS_ERR_PARENT_TO_CHILD_COMM = 0x00001f4c, /// <summary> /// The file replication service cannot populate the system volume because of an internal error. The event log may have more information. ///</summary> [Description(«The file replication service cannot populate the system volume because of an internal error. The event log may have more information.«)] FRS_ERR_SYSVOL_POPULATE = 0x00001f4d, /// <summary> /// The file replication service cannot populate the system volume because of an internal timeout. The event log may have more information. ///</summary> [Description(«The file replication service cannot populate the system volume because of an internal timeout. The event log may have more information.«)] FRS_ERR_SYSVOL_POPULATE_TIMEOUT = 0x00001f4e, /// <summary> /// The file replication service cannot process the request. The system volume is busy with a previous request. ///</summary> [Description(«The file replication service cannot process the request. The system volume is busy with a previous request.«)] FRS_ERR_SYSVOL_IS_BUSY = 0x00001f4f, /// <summary> /// The file replication service cannot stop replicating the system volume because of an internal error. The event log may have more information. ///</summary> [Description(«The file replication service cannot stop replicating the system volume because of an internal error. The event log may have more information.«)] FRS_ERR_SYSVOL_DEMOTE = 0x00001f50, /// <summary> /// The file replication service detected an invalid parameter. ///</summary> [Description(«The file replication service detected an invalid parameter.«)] FRS_ERR_INVALID_SERVICE_PARAMETER = 0x00001f51, /// <summary> /// An error occurred while installing the directory service. For more information, see the event log. ///</summary> [Description(«An error occurred while installing the directory service. For more information, see the event log.«)] ERROR_DS_NOT_INSTALLED = 0x00002008, /// <summary> /// The directory service evaluated group memberships locally. ///</summary> [Description(«The directory service evaluated group memberships locally.«)] ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY = 0x00002009, /// <summary> /// The specified directory service attribute or value does not exist. ///</summary> [Description(«The specified directory service attribute or value does not exist.«)] ERROR_DS_NO_ATTRIBUTE_OR_VALUE = 0x0000200a, /// <summary> /// The attribute syntax specified to the directory service is invalid. ///</summary> [Description(«The attribute syntax specified to the directory service is invalid.«)] ERROR_DS_INVALID_ATTRIBUTE_SYNTAX = 0x0000200b, /// <summary> /// The attribute type specified to the directory service is not defined. ///</summary> [Description(«The attribute type specified to the directory service is not defined.«)] ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED = 0x0000200c, /// <summary> /// The specified directory service attribute or value already exists. ///</summary> [Description(«The specified directory service attribute or value already exists.«)] ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS = 0x0000200d, /// <summary> /// The directory service is busy. ///</summary> [Description(«The directory service is busy.«)] ERROR_DS_BUSY = 0x0000200e, /// <summary> /// The directory service is unavailable. ///</summary> [Description(«The directory service is unavailable.«)] ERROR_DS_UNAVAILABLE = 0x0000200f, /// <summary> /// The directory service was unable to allocate a relative identifier. ///</summary> [Description(«The directory service was unable to allocate a relative identifier.«)] ERROR_DS_NO_RIDS_ALLOCATED = 0x00002010, /// <summary> /// The directory service has exhausted the pool of relative identifiers. ///</summary> [Description(«The directory service has exhausted the pool of relative identifiers.«)] ERROR_DS_NO_MORE_RIDS = 0x00002011, /// <summary> /// The requested operation could not be performed because the directory service is not the master for that type of operation. ///</summary> [Description(«The requested operation could not be performed because the directory service is not the master for that type of operation.«)] ERROR_DS_INCORRECT_ROLE_OWNER = 0x00002012, /// <summary> /// The directory service was unable to initialize the subsystem that allocates relative identifiers. ///</summary> [Description(«The directory service was unable to initialize the subsystem that allocates relative identifiers.«)] ERROR_DS_RIDMGR_INIT_ERROR = 0x00002013, /// <summary> /// The requested operation did not satisfy one or more constraints associated with the class of the object. ///</summary> [Description(«The requested operation did not satisfy one or more constraints associated with the class of the object.«)] ERROR_DS_OBJ_CLASS_VIOLATION = 0x00002014, /// <summary> /// The directory service can perform the requested operation only on a leaf object. ///</summary> [Description(«The directory service can perform the requested operation only on a leaf object.«)] ERROR_DS_CANT_ON_NON_LEAF = 0x00002015, /// <summary> /// The directory service cannot perform the requested operation on the RDN attribute of an object. ///</summary> [Description(«The directory service cannot perform the requested operation on the RDN attribute of an object.«)] ERROR_DS_CANT_ON_RDN = 0x00002016, /// <summary> /// The directory service detected an attempt to modify the object class of an object. ///</summary> [Description(«The directory service detected an attempt to modify the object class of an object.«)] ERROR_DS_CANT_MOD_OBJ_CLASS = 0x00002017, /// <summary> /// The requested cross-domain move operation could not be performed. ///</summary> [Description(«The requested cross-domain move operation could not be performed.«)] ERROR_DS_CROSS_DOM_MOVE_ERROR = 0x00002018, /// <summary> /// Unable to contact the global catalog server. ///</summary> [Description(«Unable to contact the global catalog server.«)] ERROR_DS_GC_NOT_AVAILABLE = 0x00002019, /// <summary> /// The policy object is shared and can only be modified at the root. ///</summary> [Description(«The policy object is shared and can only be modified at the root.«)] ERROR_SHARED_POLICY = 0x0000201a, /// <summary> /// The policy object does not exist. ///</summary> [Description(«The policy object does not exist.«)] ERROR_POLICY_OBJECT_NOT_FOUND = 0x0000201b, /// <summary> /// The requested policy information is only in the directory service. ///</summary> [Description(«The requested policy information is only in the directory service.«)] ERROR_POLICY_ONLY_IN_DS = 0x0000201c, /// <summary> /// A domain controller promotion is currently active. ///</summary> [Description(«A domain controller promotion is currently active.«)] ERROR_PROMOTION_ACTIVE = 0x0000201d, /// <summary> /// A domain controller promotion is not currently active. ///</summary> [Description(«A domain controller promotion is not currently active.«)] ERROR_NO_PROMOTION_ACTIVE = 0x0000201e, /// <summary> /// An operations error occurred. ///</summary> [Description(«An operations error occurred.«)] ERROR_DS_OPERATIONS_ERROR = 0x00002020, /// <summary> /// A protocol error occurred. ///</summary> [Description(«A protocol error occurred.«)] ERROR_DS_PROTOCOL_ERROR = 0x00002021, /// <summary> /// The time limit for this request was exceeded. ///</summary> [Description(«The time limit for this request was exceeded.«)] ERROR_DS_TIMELIMIT_EXCEEDED = 0x00002022, /// <summary> /// The size limit for this request was exceeded. ///</summary> [Description(«The size limit for this request was exceeded.«)] ERROR_DS_SIZELIMIT_EXCEEDED = 0x00002023, /// <summary> /// The administrative limit for this request was exceeded. ///</summary> [Description(«The administrative limit for this request was exceeded.«)] ERROR_DS_ADMIN_LIMIT_EXCEEDED = 0x00002024, /// <summary> /// The compare response was false. ///</summary> [Description(«The compare response was false.«)] ERROR_DS_COMPARE_FALSE = 0x00002025, /// <summary> /// The compare response was true. ///</summary> [Description(«The compare response was true.«)] ERROR_DS_COMPARE_TRUE = 0x00002026, /// <summary> /// The requested authentication method is not supported by the server. ///</summary> [Description(«The requested authentication method is not supported by the server.«)] ERROR_DS_AUTH_METHOD_NOT_SUPPORTED = 0x00002027, /// <summary> /// A more secure authentication method is required for this server. ///</summary> [Description(«A more secure authentication method is required for this server.«)] ERROR_DS_STRONG_AUTH_REQUIRED = 0x00002028, /// <summary> /// Inappropriate authentication. ///</summary> [Description(«Inappropriate authentication.«)] ERROR_DS_INAPPROPRIATE_AUTH = 0x00002029, /// <summary> /// The authentication mechanism is unknown. ///</summary> [Description(«The authentication mechanism is unknown.«)] ERROR_DS_AUTH_UNKNOWN = 0x0000202a, /// <summary> /// A referral was returned from the server. ///</summary> [Description(«A referral was returned from the server.«)] ERROR_DS_REFERRAL = 0x0000202b, /// <summary> /// The server does not support the requested critical extension. ///</summary> [Description(«The server does not support the requested critical extension.«)] ERROR_DS_UNAVAILABLE_CRIT_EXTENSION = 0x0000202c, /// <summary> /// This request requires a secure connection. ///</summary> [Description(«This request requires a secure connection.«)] ERROR_DS_CONFIDENTIALITY_REQUIRED = 0x0000202d, /// <summary> /// Inappropriate matching. ///</summary> [Description(«Inappropriate matching.«)] ERROR_DS_INAPPROPRIATE_MATCHING = 0x0000202e, /// <summary> /// A constraint violation occurred. ///</summary> [Description(«A constraint violation occurred.«)] ERROR_DS_CONSTRAINT_VIOLATION = 0x0000202f, /// <summary> /// There is no such object on the server. ///</summary> [Description(«There is no such object on the server.«)] ERROR_DS_NO_SUCH_OBJECT = 0x00002030, /// <summary> /// There is an alias problem. ///</summary> [Description(«There is an alias problem.«)] ERROR_DS_ALIAS_PROBLEM = 0x00002031, /// <summary> /// An invalid dn syntax has been specified. ///</summary> [Description(«An invalid dn syntax has been specified.«)] ERROR_DS_INVALID_DN_SYNTAX = 0x00002032, /// <summary> /// The object is a leaf object. ///</summary> [Description(«The object is a leaf object.«)] ERROR_DS_IS_LEAF = 0x00002033, /// <summary> /// There is an alias dereferencing problem. ///</summary> [Description(«There is an alias dereferencing problem.«)] ERROR_DS_ALIAS_DEREF_PROBLEM = 0x00002034, /// <summary> /// The server is unwilling to process the request. ///</summary> [Description(«The server is unwilling to process the request.«)] ERROR_DS_UNWILLING_TO_PERFORM = 0x00002035, /// <summary> /// A loop has been detected. ///</summary> [Description(«A loop has been detected.«)] ERROR_DS_LOOP_DETECT = 0x00002036, /// <summary> /// There is a naming violation. ///</summary> [Description(«There is a naming violation.«)] ERROR_DS_NAMING_VIOLATION = 0x00002037, /// <summary> /// The result set is too large. ///</summary> [Description(«The result set is too large.«)] ERROR_DS_OBJECT_RESULTS_TOO_LARGE = 0x00002038, /// <summary> /// The operation affects multiple DSAs. ///</summary> [Description(«The operation affects multiple DSAs.«)] ERROR_DS_AFFECTS_MULTIPLE_DSAS = 0x00002039, /// <summary> /// The server is not operational. ///</summary> [Description(«The server is not operational.«)] ERROR_DS_SERVER_DOWN = 0x0000203a, /// <summary> /// A local error has occurred. ///</summary> [Description(«A local error has occurred.«)] ERROR_DS_LOCAL_ERROR = 0x0000203b, /// <summary> /// An encoding error has occurred. ///</summary> [Description(«An encoding error has occurred.«)] ERROR_DS_ENCODING_ERROR = 0x0000203c, /// <summary> /// A decoding error has occurred. ///</summary> [Description(«A decoding error has occurred.«)] ERROR_DS_DECODING_ERROR = 0x0000203d, /// <summary> /// The search filter cannot be recognized. ///</summary> [Description(«The search filter cannot be recognized.«)] ERROR_DS_FILTER_UNKNOWN = 0x0000203e, /// <summary> /// One or more parameters are illegal. ///</summary> [Description(«One or more parameters are illegal.«)] ERROR_DS_PARAM_ERROR = 0x0000203f, /// <summary> /// The specified method is not supported. ///</summary> [Description(«The specified method is not supported.«)] ERROR_DS_NOT_SUPPORTED = 0x00002040, /// <summary> /// No results were returned. ///</summary> [Description(«No results were returned.«)] ERROR_DS_NO_RESULTS_RETURNED = 0x00002041, /// <summary> /// The specified control is not supported by the server. ///</summary> [Description(«The specified control is not supported by the server.«)] ERROR_DS_CONTROL_NOT_FOUND = 0x00002042, /// <summary> /// A referral loop was detected by the client. ///</summary> [Description(«A referral loop was detected by the client.«)] ERROR_DS_CLIENT_LOOP = 0x00002043, /// <summary> /// The preset referral limit was exceeded. ///</summary> [Description(«The preset referral limit was exceeded.«)] ERROR_DS_REFERRAL_LIMIT_EXCEEDED = 0x00002044, /// <summary> /// The search requires a SORT control. ///</summary> [Description(«The search requires a SORT control.«)] ERROR_DS_SORT_CONTROL_MISSING = 0x00002045, /// <summary> /// The search results exceed the offset range specified. ///</summary> [Description(«The search results exceed the offset range specified.«)] ERROR_DS_OFFSET_RANGE_ERROR = 0x00002046, /// <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/p/?linkid=228610 for recommended diagnostic steps and the procedure to re-enable account creation. ///</summary> [Description(«The directory service detected the subsystem that allocates relative identifiers is disabled. This can occur as a protective mechanism when the system determines a significant portion of relative identifiers (RIDs) have been exhausted. Please see http://go.microsoft.com/fwlink/p/?linkid=228610 for recommended diagnostic steps and the procedure to re-enable account creation.«)] ERROR_DS_RIDMGR_DISABLED = 0x00002047, /// <summary> /// The root object must be the head of a naming context. The root object cannot have an instantiated parent. ///</summary> [Description(«The root object must be the head of a naming context. The root object cannot have an instantiated parent.«)] ERROR_DS_ROOT_MUST_BE_NC = 0x0000206d, /// <summary> /// The add replica operation cannot be performed. The naming context must be writeable in order to create the replica. ///</summary> [Description(«The add replica operation cannot be performed. The naming context must be writeable in order to create the replica.«)] ERROR_DS_ADD_REPLICA_INHIBITED = 0x0000206e, /// <summary> /// A reference to an attribute that is not defined in the schema occurred. ///</summary> [Description(«A reference to an attribute that is not defined in the schema occurred.«)] ERROR_DS_ATT_NOT_DEF_IN_SCHEMA = 0x0000206f, /// <summary> /// The maximum size of an object has been exceeded. ///</summary> [Description(«The maximum size of an object has been exceeded.«)] ERROR_DS_MAX_OBJ_SIZE_EXCEEDED = 0x00002070, /// <summary> /// An attempt was made to add an object to the directory with a name that is already in use. ///</summary> [Description(«An attempt was made to add an object to the directory with a name that is already in use.«)] ERROR_DS_OBJ_STRING_NAME_EXISTS = 0x00002071, /// <summary> /// An attempt was made to add an object of a class that does not have an RDN defined in the schema. ///</summary> [Description(«An attempt was made to add an object of a class that does not have an RDN defined in the schema.«)] ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA = 0x00002072, /// <summary> /// An attempt was made to add an object using an RDN that is not the RDN defined in the schema. ///</summary> [Description(«An attempt was made to add an object using an RDN that is not the RDN defined in the schema.«)] ERROR_DS_RDN_DOESNT_MATCH_SCHEMA = 0x00002073, /// <summary> /// None of the requested attributes were found on the objects. ///</summary> [Description(«None of the requested attributes were found on the objects.«)] ERROR_DS_NO_REQUESTED_ATTS_FOUND = 0x00002074, /// <summary> /// The user buffer is too small. ///</summary> [Description(«The user buffer is too small.«)] ERROR_DS_USER_BUFFER_TO_SMALL = 0x00002075, /// <summary> /// The attribute specified in the operation is not present on the object. ///</summary> [Description(«The attribute specified in the operation is not present on the object.«)] ERROR_DS_ATT_IS_NOT_ON_OBJ = 0x00002076, /// <summary> /// Illegal modify operation. Some aspect of the modification is not permitted. ///</summary> [Description(«Illegal modify operation. Some aspect of the modification is not permitted.«)] ERROR_DS_ILLEGAL_MOD_OPERATION = 0x00002077, /// <summary> /// The specified object is too large. ///</summary> [Description(«The specified object is too large.«)] ERROR_DS_OBJ_TOO_LARGE = 0x00002078, /// <summary> /// The specified instance type is not valid. ///</summary> [Description(«The specified instance type is not valid.«)] ERROR_DS_BAD_INSTANCE_TYPE = 0x00002079, /// <summary> /// The operation must be performed at a master DSA. ///</summary> [Description(«The operation must be performed at a master DSA.«)] ERROR_DS_MASTERDSA_REQUIRED = 0x0000207a, /// <summary> /// The object class attribute must be specified. ///</summary> [Description(«The object class attribute must be specified.«)] ERROR_DS_OBJECT_CLASS_REQUIRED = 0x0000207b, /// <summary> /// A required attribute is missing. ///</summary> [Description(«A required attribute is missing.«)] ERROR_DS_MISSING_REQUIRED_ATT = 0x0000207c, /// <summary> /// An attempt was made to modify an object to include an attribute that is not legal for its class. ///</summary> [Description(«An attempt was made to modify an object to include an attribute that is not legal for its class.«)] ERROR_DS_ATT_NOT_DEF_FOR_CLASS = 0x0000207d, /// <summary> /// The specified attribute is already present on the object. ///</summary> [Description(«The specified attribute is already present on the object.«)] ERROR_DS_ATT_ALREADY_EXISTS = 0x0000207e, /// <summary> /// The specified attribute is not present, or has no values. ///</summary> [Description(«The specified attribute is not present, or has no values.«)] ERROR_DS_CANT_ADD_ATT_VALUES = 0x00002080, /// <summary> /// Multiple values were specified for an attribute that can have only one value. ///</summary> [Description(«Multiple values were specified for an attribute that can have only one value.«)] ERROR_DS_SINGLE_VALUE_CONSTRAINT = 0x00002081, /// <summary> /// A value for the attribute was not in the acceptable range of values. ///</summary> [Description(«A value for the attribute was not in the acceptable range of values.«)] ERROR_DS_RANGE_CONSTRAINT = 0x00002082, /// <summary> /// The specified value already exists. ///</summary> [Description(«The specified value already exists.«)] ERROR_DS_ATT_VAL_ALREADY_EXISTS = 0x00002083, /// <summary> /// The attribute cannot be removed because it is not present on the object. ///</summary> [Description(«The attribute cannot be removed because it is not present on the object.«)] ERROR_DS_CANT_REM_MISSING_ATT = 0x00002084, /// <summary> /// The attribute value cannot be removed because it is not present on the object. ///</summary> [Description(«The attribute value cannot be removed because it is not present on the object.«)] ERROR_DS_CANT_REM_MISSING_ATT_VAL = 0x00002085, /// <summary> /// The specified root object cannot be a subref. ///</summary> [Description(«The specified root object cannot be a subref.«)] ERROR_DS_ROOT_CANT_BE_SUBREF = 0x00002086, /// <summary> /// Chaining is not permitted. ///</summary> [Description(«Chaining is not permitted.«)] ERROR_DS_NO_CHAINING = 0x00002087, /// <summary> /// Chained evaluation is not permitted. ///</summary> [Description(«Chained evaluation is not permitted.«)] ERROR_DS_NO_CHAINED_EVAL = 0x00002088, /// <summary> /// The operation could not be performed because the object’s parent is either uninstantiated or deleted. ///</summary> [Description(«The operation could not be performed because the object’s parent is either uninstantiated or deleted.«)] ERROR_DS_NO_PARENT_OBJECT = 0x00002089, /// <summary> /// Having a parent that is an alias is not permitted. Aliases are leaf objects. ///</summary> [Description(«Having a parent that is an alias is not permitted. Aliases are leaf objects.«)] ERROR_DS_PARENT_IS_AN_ALIAS = 0x0000208a, /// <summary> /// The object and parent must be of the same type, either both masters or both replicas. ///</summary> [Description(«The object and parent must be of the same type, either both masters or both replicas.«)] ERROR_DS_CANT_MIX_MASTER_AND_REPS = 0x0000208b, /// <summary> /// The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object. ///</summary> [Description(«The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object.«)] ERROR_DS_CHILDREN_EXIST = 0x0000208c, /// <summary> /// Directory object not found. ///</summary> [Description(«Directory object not found.«)] ERROR_DS_OBJ_NOT_FOUND = 0x0000208d, /// <summary> /// The aliased object is missing. ///</summary> [Description(«The aliased object is missing.«)] ERROR_DS_ALIASED_OBJ_MISSING = 0x0000208e, /// <summary> /// The object name has bad syntax. ///</summary> [Description(«The object name has bad syntax.«)] ERROR_DS_BAD_NAME_SYNTAX = 0x0000208f, /// <summary> /// It is not permitted for an alias to refer to another alias. ///</summary> [Description(«It is not permitted for an alias to refer to another alias.«)] ERROR_DS_ALIAS_POINTS_TO_ALIAS = 0x00002090, /// <summary> /// The alias cannot be dereferenced. ///</summary> [Description(«The alias cannot be dereferenced.«)] ERROR_DS_CANT_DEREF_ALIAS = 0x00002091, /// <summary> /// The operation is out of scope. ///</summary> [Description(«The operation is out of scope.«)] ERROR_DS_OUT_OF_SCOPE = 0x00002092, /// <summary> /// The operation cannot continue because the object is in the process of being removed. ///</summary> [Description(«The operation cannot continue because the object is in the process of being removed.«)] ERROR_DS_OBJECT_BEING_REMOVED = 0x00002093, /// <summary> /// The DSA object cannot be deleted. ///</summary> [Description(«The DSA object cannot be deleted.«)] ERROR_DS_CANT_DELETE_DSA_OBJ = 0x00002094, /// <summary> /// A directory service error has occurred. ///</summary> [Description(«A directory service error has occurred.«)] ERROR_DS_GENERIC_ERROR = 0x00002095, /// <summary> /// The operation can only be performed on an internal master DSA object. ///</summary> [Description(«The operation can only be performed on an internal master DSA object.«)] ERROR_DS_DSA_MUST_BE_INT_MASTER = 0x00002096, /// <summary> /// The object must be of class DSA. ///</summary> [Description(«The object must be of class DSA.«)] ERROR_DS_CLASS_NOT_DSA = 0x00002097, /// <summary> /// Insufficient access rights to perform the operation. ///</summary> [Description(«Insufficient access rights to perform the operation.«)] ERROR_DS_INSUFF_ACCESS_RIGHTS = 0x00002098, /// <summary> /// The object cannot be added because the parent is not on the list of possible superiors. ///</summary> [Description(«The object cannot be added because the parent is not on the list of possible superiors.«)] ERROR_DS_ILLEGAL_SUPERIOR = 0x00002099, /// <summary> /// Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager (SAM). ///</summary> [Description(«Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager (SAM).«)] ERROR_DS_ATTRIBUTE_OWNED_BY_SAM = 0x0000209a, /// <summary> /// The name has too many parts. ///</summary> [Description(«The name has too many parts.«)] ERROR_DS_NAME_TOO_MANY_PARTS = 0x0000209b, /// <summary> /// The name is too long. ///</summary> [Description(«The name is too long.«)] ERROR_DS_NAME_TOO_LONG = 0x0000209c, /// <summary> /// The name value is too long. ///</summary> [Description(«The name value is too long.«)] ERROR_DS_NAME_VALUE_TOO_LONG = 0x0000209d, /// <summary> /// The directory service encountered an error parsing a name. ///</summary> [Description(«The directory service encountered an error parsing a name.«)] ERROR_DS_NAME_UNPARSEABLE = 0x0000209e, /// <summary> /// The directory service cannot get the attribute type for a name. ///</summary> [Description(«The directory service cannot get the attribute type for a name.«)] ERROR_DS_NAME_TYPE_UNKNOWN = 0x0000209f, /// <summary> /// The name does not identify an object; the name identifies a phantom. ///</summary> [Description(«The name does not identify an object; the name identifies a phantom.«)] ERROR_DS_NOT_AN_OBJECT = 0x000020a0, /// <summary> /// The security descriptor is too short. ///</summary> [Description(«The security descriptor is too short.«)] ERROR_DS_SEC_DESC_TOO_SHORT = 0x000020a1, /// <summary> /// The security descriptor is invalid. ///</summary> [Description(«The security descriptor is invalid.«)] ERROR_DS_SEC_DESC_INVALID = 0x000020a2, /// <summary> /// Failed to create name for deleted object. ///</summary> [Description(«Failed to create name for deleted object.«)] ERROR_DS_NO_DELETED_NAME = 0x000020a3, /// <summary> /// The parent of a new subref must exist. ///</summary> [Description(«The parent of a new subref must exist.«)] ERROR_DS_SUBREF_MUST_HAVE_PARENT = 0x000020a4, /// <summary> /// The object must be a naming context. ///</summary> [Description(«The object must be a naming context.«)] ERROR_DS_NCNAME_MUST_BE_NC = 0x000020a5, /// <summary> /// It is not permitted to add an attribute which is owned by the system. ///</summary> [Description(«It is not permitted to add an attribute which is owned by the system.«)] ERROR_DS_CANT_ADD_SYSTEM_ONLY = 0x000020a6, /// <summary> /// The class of the object must be structural; you cannot instantiate an abstract class. ///</summary> [Description(«The class of the object must be structural; you cannot instantiate an abstract class.«)] ERROR_DS_CLASS_MUST_BE_CONCRETE = 0x000020a7, /// <summary> /// The schema object could not be found. ///</summary> [Description(«The schema object could not be found.«)] ERROR_DS_INVALID_DMD = 0x000020a8, /// <summary> /// A local object with this GUID (dead or alive) already exists. ///</summary> [Description(«A local object with this GUID (dead or alive) already exists.«)] ERROR_DS_OBJ_GUID_EXISTS = 0x000020a9, /// <summary> /// The operation cannot be performed on a back link. ///</summary> [Description(«The operation cannot be performed on a back link.«)] ERROR_DS_NOT_ON_BACKLINK = 0x000020aa, /// <summary> /// The cross reference for the specified naming context could not be found. ///</summary> [Description(«The cross reference for the specified naming context could not be found.«)] ERROR_DS_NO_CROSSREF_FOR_NC = 0x000020ab, /// <summary> /// The operation could not be performed because the directory service is shutting down. ///</summary> [Description(«The operation could not be performed because the directory service is shutting down.«)] ERROR_DS_SHUTTING_DOWN = 0x000020ac, /// <summary> /// The directory service request is invalid. ///</summary> [Description(«The directory service request is invalid.«)] ERROR_DS_UNKNOWN_OPERATION = 0x000020ad, /// <summary> /// The role owner attribute could not be read. ///</summary> [Description(«The role owner attribute could not be read.«)] ERROR_DS_INVALID_ROLE_OWNER = 0x000020ae, /// <summary> /// The requested FSMO operation failed. The current FSMO holder could not be contacted. ///</summary> [Description(«The requested FSMO operation failed. The current FSMO holder could not be contacted.«)] ERROR_DS_COULDNT_CONTACT_FSMO = 0x000020af, /// <summary> /// Modification of a DN across a naming context is not permitted. ///</summary> [Description(«Modification of a DN across a naming context is not permitted.«)] ERROR_DS_CROSS_NC_DN_RENAME = 0x000020b0, /// <summary> /// The attribute cannot be modified because it is owned by the system. ///</summary> [Description(«The attribute cannot be modified because it is owned by the system.«)] ERROR_DS_CANT_MOD_SYSTEM_ONLY = 0x000020b1, /// <summary> /// Only the replicator can perform this function. ///</summary> [Description(«Only the replicator can perform this function.«)] ERROR_DS_REPLICATOR_ONLY = 0x000020b2, /// <summary> /// The specified class is not defined. ///</summary> [Description(«The specified class is not defined.«)] ERROR_DS_OBJ_CLASS_NOT_DEFINED = 0x000020b3, /// <summary> /// The specified class is not a subclass. ///</summary> [Description(«The specified class is not a subclass.«)] ERROR_DS_OBJ_CLASS_NOT_SUBCLASS = 0x000020b4, /// <summary> /// The name reference is invalid. ///</summary> [Description(«The name reference is invalid.«)] ERROR_DS_NAME_REFERENCE_INVALID = 0x000020b5, /// <summary> /// A cross reference already exists. ///</summary> [Description(«A cross reference already exists.«)] ERROR_DS_CROSS_REF_EXISTS = 0x000020b6, /// <summary> /// It is not permitted to delete a master cross reference. ///</summary> [Description(«It is not permitted to delete a master cross reference.«)] ERROR_DS_CANT_DEL_MASTER_CROSSREF = 0x000020b7, /// <summary> /// Subtree notifications are only supported on NC heads. ///</summary> [Description(«Subtree notifications are only supported on NC heads.«)] ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD = 0x000020b8, /// <summary> /// Notification filter is too complex. ///</summary> [Description(«Notification filter is too complex.«)] ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX = 0x000020b9, /// <summary> /// Schema update failed: duplicate RDN. ///</summary> [Description(«Schema update failed: duplicate RDN.«)] ERROR_DS_DUP_RDN = 0x000020ba, /// <summary> /// Schema update failed: duplicate OID. ///</summary> [Description(«Schema update failed: duplicate OID.«)] ERROR_DS_DUP_OID = 0x000020bb, /// <summary> /// Schema update failed: duplicate MAPI identifier. ///</summary> [Description(«Schema update failed: duplicate MAPI identifier.«)] ERROR_DS_DUP_MAPI_ID = 0x000020bc, /// <summary> /// Schema update failed: duplicate schema-id GUID. ///</summary> [Description(«Schema update failed: duplicate schema-id GUID.«)] ERROR_DS_DUP_SCHEMA_ID_GUID = 0x000020bd, /// <summary> /// Schema update failed: duplicate LDAP display name. ///</summary> [Description(«Schema update failed: duplicate LDAP display name.«)] ERROR_DS_DUP_LDAP_DISPLAY_NAME = 0x000020be, /// <summary> /// Schema update failed: range-lower less than range upper. ///</summary> [Description(«Schema update failed: range-lower less than range upper.«)] ERROR_DS_SEMANTIC_ATT_TEST = 0x000020bf, /// <summary> /// Schema update failed: syntax mismatch. ///</summary> [Description(«Schema update failed: syntax mismatch.«)] ERROR_DS_SYNTAX_MISMATCH = 0x000020c0, /// <summary> /// Schema deletion failed: attribute is used in must-contain. ///</summary> [Description(«Schema deletion failed: attribute is used in must-contain.«)] ERROR_DS_EXISTS_IN_MUST_HAVE = 0x000020c1, /// <summary> /// Schema deletion failed: attribute is used in may-contain. ///</summary> [Description(«Schema deletion failed: attribute is used in may-contain.«)] ERROR_DS_EXISTS_IN_MAY_HAVE = 0x000020c2, /// <summary> /// Schema update failed: attribute in may-contain does not exist. ///</summary> [Description(«Schema update failed: attribute in may-contain does not exist.«)] ERROR_DS_NONEXISTENT_MAY_HAVE = 0x000020c3, /// <summary> /// Schema update failed: attribute in must-contain does not exist. ///</summary> [Description(«Schema update failed: attribute in must-contain does not exist.«)] ERROR_DS_NONEXISTENT_MUST_HAVE = 0x000020c4, /// <summary> /// Schema update failed: class in aux-class list does not exist or is not an auxiliary class. ///</summary> [Description(«Schema update failed: class in aux-class list does not exist or is not an auxiliary class.«)] ERROR_DS_AUX_CLS_TEST_FAIL = 0x000020c5, /// <summary> /// Schema update failed: class in poss-superiors does not exist. ///</summary> [Description(«Schema update failed: class in poss-superiors does not exist.«)] ERROR_DS_NONEXISTENT_POSS_SUP = 0x000020c6, /// <summary> /// Schema update failed: class in subclassof list does not exist or does not satisfy hierarchy rules. ///</summary> [Description(«Schema update failed: class in subclassof list does not exist or does not satisfy hierarchy rules.«)] ERROR_DS_SUB_CLS_TEST_FAIL = 0x000020c7, /// <summary> /// Schema update failed: Rdn-Att-Id has wrong syntax. ///</summary> [Description(«Schema update failed: Rdn-Att-Id has wrong syntax.«)] ERROR_DS_BAD_RDN_ATT_ID_SYNTAX = 0x000020c8, /// <summary> /// Schema deletion failed: class is used as auxiliary class. ///</summary> [Description(«Schema deletion failed: class is used as auxiliary class.«)] ERROR_DS_EXISTS_IN_AUX_CLS = 0x000020c9, /// <summary> /// Schema deletion failed: class is used as sub class. ///</summary> [Description(«Schema deletion failed: class is used as sub class.«)] ERROR_DS_EXISTS_IN_SUB_CLS = 0x000020ca, /// <summary> /// Schema deletion failed: class is used as poss superior. ///</summary> [Description(«Schema deletion failed: class is used as poss superior.«)] ERROR_DS_EXISTS_IN_POSS_SUP = 0x000020cb, /// <summary> /// Schema update failed in recalculating validation cache. ///</summary> [Description(«Schema update failed in recalculating validation cache.«)] ERROR_DS_RECALCSCHEMA_FAILED = 0x000020cc, /// <summary> /// The tree deletion is not finished. The request must be made again to continue deleting the tree. ///</summary> [Description(«The tree deletion is not finished. The request must be made again to continue deleting the tree.«)] ERROR_DS_TREE_DELETE_NOT_FINISHED = 0x000020cd, /// <summary> /// The requested delete operation could not be performed. ///</summary> [Description(«The requested delete operation could not be performed.«)] ERROR_DS_CANT_DELETE = 0x000020ce, /// <summary> /// Cannot read the governs class identifier for the schema record. ///</summary> [Description(«Cannot read the governs class identifier for the schema record.«)] ERROR_DS_ATT_SCHEMA_REQ_ID = 0x000020cf, /// <summary> /// The attribute schema has bad syntax. ///</summary> [Description(«The attribute schema has bad syntax.«)] ERROR_DS_BAD_ATT_SCHEMA_SYNTAX = 0x000020d0, /// <summary> /// The attribute could not be cached. ///</summary> [Description(«The attribute could not be cached.«)] ERROR_DS_CANT_CACHE_ATT = 0x000020d1, /// <summary> /// The class could not be cached. ///</summary> [Description(«The class could not be cached.«)] ERROR_DS_CANT_CACHE_CLASS = 0x000020d2, /// <summary> /// The attribute could not be removed from the cache. ///</summary> [Description(«The attribute could not be removed from the cache.«)] ERROR_DS_CANT_REMOVE_ATT_CACHE = 0x000020d3, /// <summary> /// The class could not be removed from the cache. ///</summary> [Description(«The class could not be removed from the cache.«)] ERROR_DS_CANT_REMOVE_CLASS_CACHE = 0x000020d4, /// <summary> /// The distinguished name attribute could not be read. ///</summary> [Description(«The distinguished name attribute could not be read.«)] ERROR_DS_CANT_RETRIEVE_DN = 0x000020d5, /// <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> [Description(«No superior reference has been configured for the directory service. The directory service is therefore unable to issue referrals to objects outside this forest.«)] ERROR_DS_MISSING_SUPREF = 0x000020d6, /// <summary> /// The instance type attribute could not be retrieved. ///</summary> [Description(«The instance type attribute could not be retrieved.«)] ERROR_DS_CANT_RETRIEVE_INSTANCE = 0x000020d7, /// <summary> /// An internal error has occurred. ///</summary> [Description(«An internal error has occurred.«)] ERROR_DS_CODE_INCONSISTENCY = 0x000020d8, /// <summary> /// A database error has occurred. ///</summary> [Description(«A database error has occurred.«)] ERROR_DS_DATABASE_ERROR = 0x000020d9, /// <summary> /// The attribute GOVERNSID is missing. ///</summary> [Description(«The attribute GOVERNSID is missing.«)] ERROR_DS_GOVERNSID_MISSING = 0x000020da, /// <summary> /// An expected attribute is missing. ///</summary> [Description(«An expected attribute is missing.«)] ERROR_DS_MISSING_EXPECTED_ATT = 0x000020db, /// <summary> /// The specified naming context is missing a cross reference. ///</summary> [Description(«The specified naming context is missing a cross reference.«)] ERROR_DS_NCNAME_MISSING_CR_REF = 0x000020dc, /// <summary> /// A security checking error has occurred. ///</summary> [Description(«A security checking error has occurred.«)] ERROR_DS_SECURITY_CHECKING_ERROR = 0x000020dd, /// <summary> /// The schema is not loaded. ///</summary> [Description(«The schema is not loaded.«)] ERROR_DS_SCHEMA_NOT_LOADED = 0x000020de, /// <summary> /// Schema allocation failed. Please check if the machine is running low on memory. ///</summary> [Description(«Schema allocation failed. Please check if the machine is running low on memory.«)] ERROR_DS_SCHEMA_ALLOC_FAILED = 0x000020df, /// <summary> /// Failed to obtain the required syntax for the attribute schema. ///</summary> [Description(«Failed to obtain the required syntax for the attribute schema.«)] ERROR_DS_ATT_SCHEMA_REQ_SYNTAX = 0x000020e0, /// <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> [Description(«The global catalog verification failed. The global catalog is not available or does not support the operation. Some part of the directory is currently not available.«)] ERROR_DS_GCVERIFY_ERROR = 0x000020e1, /// <summary> /// The replication operation failed because of a schema mismatch between the servers involved. ///</summary> [Description(«The replication operation failed because of a schema mismatch between the servers involved.«)] ERROR_DS_DRA_SCHEMA_MISMATCH = 0x000020e2, /// <summary> /// The DSA object could not be found. ///</summary> [Description(«The DSA object could not be found.«)] ERROR_DS_CANT_FIND_DSA_OBJ = 0x000020e3, /// <summary> /// The naming context could not be found. ///</summary> [Description(«The naming context could not be found.«)] ERROR_DS_CANT_FIND_EXPECTED_NC = 0x000020e4, /// <summary> /// The naming context could not be found in the cache. ///</summary> [Description(«The naming context could not be found in the cache.«)] ERROR_DS_CANT_FIND_NC_IN_CACHE = 0x000020e5, /// <summary> /// The child object could not be retrieved. ///</summary> [Description(«The child object could not be retrieved.«)] ERROR_DS_CANT_RETRIEVE_CHILD = 0x000020e6, /// <summary> /// The modification was not permitted for security reasons. ///</summary> [Description(«The modification was not permitted for security reasons.«)] ERROR_DS_SECURITY_ILLEGAL_MODIFY = 0x000020e7, /// <summary> /// The operation cannot replace the hidden record. ///</summary> [Description(«The operation cannot replace the hidden record.«)] ERROR_DS_CANT_REPLACE_HIDDEN_REC = 0x000020e8, /// <summary> /// The hierarchy file is invalid. ///</summary> [Description(«The hierarchy file is invalid.«)] ERROR_DS_BAD_HIERARCHY_FILE = 0x000020e9, /// <summary> /// The attempt to build the hierarchy table failed. ///</summary> [Description(«The attempt to build the hierarchy table failed.«)] ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED = 0x000020ea, /// <summary> /// The directory configuration parameter is missing from the registry. ///</summary> [Description(«The directory configuration parameter is missing from the registry.«)] ERROR_DS_CONFIG_PARAM_MISSING = 0x000020eb, /// <summary> /// The attempt to count the address book indices failed. ///</summary> [Description(«The attempt to count the address book indices failed.«)] ERROR_DS_COUNTING_AB_INDICES_FAILED = 0x000020ec, /// <summary> /// The allocation of the hierarchy table failed. ///</summary> [Description(«The allocation of the hierarchy table failed.«)] ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED = 0x000020ed, /// <summary> /// The directory service encountered an internal failure. ///</summary> [Description(«The directory service encountered an internal failure.«)] ERROR_DS_INTERNAL_FAILURE = 0x000020ee, /// <summary> /// The directory service encountered an unknown failure. ///</summary> [Description(«The directory service encountered an unknown failure.«)] ERROR_DS_UNKNOWN_ERROR = 0x000020ef, /// <summary> /// A root object requires a class of ‘top’. ///</summary> [Description(«A root object requires a class of ‘top’.«)] ERROR_DS_ROOT_REQUIRES_CLASS_TOP = 0x000020f0, /// <summary> /// This directory server is shutting down, and cannot take ownership of new floating single-master operation roles. ///</summary> [Description(«This directory server is shutting down, and cannot take ownership of new floating single-master operation roles.«)] ERROR_DS_REFUSING_FSMO_ROLES = 0x000020f1, /// <summary> /// The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles. ///</summary> [Description(«The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles.«)] ERROR_DS_MISSING_FSMO_SETTINGS = 0x000020f2, /// <summary> /// The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers. ///</summary> [Description(«The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers.«)] ERROR_DS_UNABLE_TO_SURRENDER_ROLES = 0x000020f3, /// <summary> /// The replication operation failed. ///</summary> [Description(«The replication operation failed.«)] ERROR_DS_DRA_GENERIC = 0x000020f4, /// <summary> /// An invalid parameter was specified for this replication operation. ///</summary> [Description(«An invalid parameter was specified for this replication operation.«)] ERROR_DS_DRA_INVALID_PARAMETER = 0x000020f5, /// <summary> /// The directory service is too busy to complete the replication operation at this time. ///</summary> [Description(«The directory service is too busy to complete the replication operation at this time.«)] ERROR_DS_DRA_BUSY = 0x000020f6, /// <summary> /// The distinguished name specified for this replication operation is invalid. ///</summary> [Description(«The distinguished name specified for this replication operation is invalid.«)] ERROR_DS_DRA_BAD_DN = 0x000020f7, /// <summary> /// The naming context specified for this replication operation is invalid. ///</summary> [Description(«The naming context specified for this replication operation is invalid.«)] ERROR_DS_DRA_BAD_NC = 0x000020f8, /// <summary> /// The distinguished name specified for this replication operation already exists. ///</summary> [Description(«The distinguished name specified for this replication operation already exists.«)] ERROR_DS_DRA_DN_EXISTS = 0x000020f9, /// <summary> /// The replication system encountered an internal error. ///</summary> [Description(«The replication system encountered an internal error.«)] ERROR_DS_DRA_INTERNAL_ERROR = 0x000020fa, /// <summary> /// The replication operation encountered a database inconsistency. ///</summary> [Description(«The replication operation encountered a database inconsistency.«)] ERROR_DS_DRA_INCONSISTENT_DIT = 0x000020fb, /// <summary> /// The server specified for this replication operation could not be contacted. ///</summary> [Description(«The server specified for this replication operation could not be contacted.«)] ERROR_DS_DRA_CONNECTION_FAILED = 0x000020fc, /// <summary> /// The replication operation encountered an object with an invalid instance type. ///</summary> [Description(«The replication operation encountered an object with an invalid instance type.«)] ERROR_DS_DRA_BAD_INSTANCE_TYPE = 0x000020fd, /// <summary> /// The replication operation failed to allocate memory. ///</summary> [Description(«The replication operation failed to allocate memory.«)] ERROR_DS_DRA_OUT_OF_MEM = 0x000020fe, /// <summary> /// The replication operation encountered an error with the mail system. ///</summary> [Description(«The replication operation encountered an error with the mail system.«)] ERROR_DS_DRA_MAIL_PROBLEM = 0x000020ff, /// <summary> /// The replication reference information for the target server already exists. ///</summary> [Description(«The replication reference information for the target server already exists.«)] ERROR_DS_DRA_REF_ALREADY_EXISTS = 0x00002100, /// <summary> /// The replication reference information for the target server does not exist. ///</summary> [Description(«The replication reference information for the target server does not exist.«)] ERROR_DS_DRA_REF_NOT_FOUND = 0x00002101, /// <summary> /// The naming context cannot be removed because it is replicated to another server. ///</summary> [Description(«The naming context cannot be removed because it is replicated to another server.«)] ERROR_DS_DRA_OBJ_IS_REP_SOURCE = 0x00002102, /// <summary> /// The replication operation encountered a database error. ///</summary> [Description(«The replication operation encountered a database error.«)] ERROR_DS_DRA_DB_ERROR = 0x00002103, /// <summary> /// The naming context is in the process of being removed or is not replicated from the specified server. ///</summary> [Description(«The naming context is in the process of being removed or is not replicated from the specified server.«)] ERROR_DS_DRA_NO_REPLICA = 0x00002104, /// <summary> /// Replication access was denied. ///</summary> [Description(«Replication access was denied.«)] ERROR_DS_DRA_ACCESS_DENIED = 0x00002105, /// <summary> /// The requested operation is not supported by this version of the directory service. ///</summary> [Description(«The requested operation is not supported by this version of the directory service.«)] ERROR_DS_DRA_NOT_SUPPORTED = 0x00002106, /// <summary> /// The replication remote procedure call was cancelled. ///</summary> [Description(«The replication remote procedure call was cancelled.«)] ERROR_DS_DRA_RPC_CANCELLED = 0x00002107, /// <summary> /// The source server is currently rejecting replication requests. ///</summary> [Description(«The source server is currently rejecting replication requests.«)] ERROR_DS_DRA_SOURCE_DISABLED = 0x00002108, /// <summary> /// The destination server is currently rejecting replication requests. ///</summary> [Description(«The destination server is currently rejecting replication requests.«)] ERROR_DS_DRA_SINK_DISABLED = 0x00002109, /// <summary> /// The replication operation failed due to a collision of object names. ///</summary> [Description(«The replication operation failed due to a collision of object names.«)] ERROR_DS_DRA_NAME_COLLISION = 0x0000210a, /// <summary> /// The replication source has been reinstalled. ///</summary> [Description(«The replication source has been reinstalled.«)] ERROR_DS_DRA_SOURCE_REINSTALLED = 0x0000210b, /// <summary> /// The replication operation failed because a required parent object is missing. ///</summary> [Description(«The replication operation failed because a required parent object is missing.«)] ERROR_DS_DRA_MISSING_PARENT = 0x0000210c, /// <summary> /// The replication operation was preempted. ///</summary> [Description(«The replication operation was preempted.«)] ERROR_DS_DRA_PREEMPTED = 0x0000210d, /// <summary> /// The replication synchronization attempt was abandoned because of a lack of updates. ///</summary> [Description(«The replication synchronization attempt was abandoned because of a lack of updates.«)] ERROR_DS_DRA_ABANDON_SYNC = 0x0000210e, /// <summary> /// The replication operation was terminated because the system is shutting down. ///</summary> [Description(«The replication operation was terminated because the system is shutting down.«)] ERROR_DS_DRA_SHUTDOWN = 0x0000210f, /// <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> [Description(«Synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from source. This condition is normal if a recent schema change modified the partial attribute set. The destination partial attribute set is not a subset of source partial attribute set.«)] ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET = 0x00002110, /// <summary> /// The replication synchronization attempt failed because a master replica attempted to sync from a partial replica. ///</summary> [Description(«The replication synchronization attempt failed because a master replica attempted to sync from a partial replica.«)] ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA = 0x00002111, /// <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> [Description(«The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation.«)] ERROR_DS_DRA_EXTN_CONNECTION_FAILED = 0x00002112, /// <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> [Description(«The version of the directory service schema of the source forest is not compatible with the version of directory service on this computer.«)] ERROR_DS_INSTALL_SCHEMA_MISMATCH = 0x00002113, /// <summary> /// Schema update failed: An attribute with the same link identifier already exists. ///</summary> [Description(«Schema update failed: An attribute with the same link identifier already exists.«)] ERROR_DS_DUP_LINK_ID = 0x00002114, /// <summary> /// Name translation: Generic processing error. ///</summary> [Description(«Name translation: Generic processing error.«)] ERROR_DS_NAME_ERROR_RESOLVING = 0x00002115, /// <summary> /// Name translation: Could not find the name or insufficient right to see name. ///</summary> [Description(«Name translation: Could not find the name or insufficient right to see name.«)] ERROR_DS_NAME_ERROR_NOT_FOUND = 0x00002116, /// <summary> /// Name translation: Input name mapped to more than one output name. ///</summary> [Description(«Name translation: Input name mapped to more than one output name.«)] ERROR_DS_NAME_ERROR_NOT_UNIQUE = 0x00002117, /// <summary> /// Name translation: Input name found, but not the associated output format. ///</summary> [Description(«Name translation: Input name found, but not the associated output format.«)] ERROR_DS_NAME_ERROR_NO_MAPPING = 0x00002118, /// <summary> /// Name translation: Unable to resolve completely, only the domain was found. ///</summary> [Description(«Name translation: Unable to resolve completely, only the domain was found.«)] ERROR_DS_NAME_ERROR_DOMAIN_ONLY = 0x00002119, /// <summary> /// Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire. ///</summary> [Description(«Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire.«)] ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 0x0000211a, /// <summary> /// Modification of a constructed attribute is not allowed. ///</summary> [Description(«Modification of a constructed attribute is not allowed.«)] ERROR_DS_CONSTRUCTED_ATT_MOD = 0x0000211b, /// <summary> /// The OM-Object-Class specified is incorrect for an attribute with the specified syntax. ///</summary> [Description(«The OM-Object-Class specified is incorrect for an attribute with the specified syntax.«)] ERROR_DS_WRONG_OM_OBJ_CLASS = 0x0000211c, /// <summary> /// The replication request has been posted; waiting for reply. ///</summary> [Description(«The replication request has been posted; waiting for reply.«)] ERROR_DS_DRA_REPL_PENDING = 0x0000211d, /// <summary> /// The requested operation requires a directory service, and none was available. ///</summary> [Description(«The requested operation requires a directory service, and none was available.«)] ERROR_DS_DS_REQUIRED = 0x0000211e, /// <summary> /// The LDAP display name of the class or attribute contains non-ASCII characters. ///</summary> [Description(«The LDAP display name of the class or attribute contains non-ASCII characters.«)] ERROR_DS_INVALID_LDAP_DISPLAY_NAME = 0x0000211f, /// <summary> /// The requested search operation is only supported for base searches. ///</summary> [Description(«The requested search operation is only supported for base searches.«)] ERROR_DS_NON_BASE_SEARCH = 0x00002120, /// <summary> /// The search failed to retrieve attributes from the database. ///</summary> [Description(«The search failed to retrieve attributes from the database.«)] ERROR_DS_CANT_RETRIEVE_ATTS = 0x00002121, /// <summary> /// The schema update operation tried to add a backward link attribute that has no corresponding forward link. ///</summary> [Description(«The schema update operation tried to add a backward link attribute that has no corresponding forward link.«)] ERROR_DS_BACKLINK_WITHOUT_LINK = 0x00002122, /// <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> [Description(«Source and destination of a cross-domain move do not agree on the object’s epoch number. Either source or destination does not have the latest version of the object.«)] ERROR_DS_EPOCH_MISMATCH = 0x00002123, /// <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> [Description(«Source and destination of a cross-domain move do not agree on the object’s current name. Either source or destination does not have the latest version of the object.«)] ERROR_DS_SRC_NAME_MISMATCH = 0x00002124, /// <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> [Description(«Source and destination for the cross-domain move operation are identical. Caller should use local move operation instead of cross-domain move operation.«)] ERROR_DS_SRC_AND_DST_NC_IDENTICAL = 0x00002125, /// <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> [Description(«Source and destination for a cross-domain move are not in agreement on the naming contexts in the forest. Either source or destination does not have the latest version of the Partitions container.«)] ERROR_DS_DST_NC_MISMATCH = 0x00002126, /// <summary> /// Destination of a cross-domain move is not authoritative for the destination naming context. ///</summary> [Description(«Destination of a cross-domain move is not authoritative for the destination naming context.«)] ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC = 0x00002127, /// <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> [Description(«Source and destination of a cross-domain move do not agree on the identity of the source object. Either source or destination does not have the latest version of the source object.«)] ERROR_DS_SRC_GUID_MISMATCH = 0x00002128, /// <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> [Description(«Object being moved across-domains is already known to be deleted by the destination server. The source server does not have the latest version of the source object.«)] ERROR_DS_CANT_MOVE_DELETED_OBJECT = 0x00002129, /// <summary> /// Another operation which requires exclusive access to the PDC FSMO is already in progress. ///</summary> [Description(«Another operation which requires exclusive access to the PDC FSMO is already in progress.«)] ERROR_DS_PDC_OPERATION_IN_PROGRESS = 0x0000212a, /// <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> [Description(«A cross-domain move operation failed such that two versions of the moved object exist — one each in the source and destination domains. The destination object needs to be removed to restore the system to a consistent state.«)] ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD = 0x0000212b, /// <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> [Description(«This object may not be moved across domain boundaries either because cross-domain moves for this class are disallowed, or the object has some special characteristics, e.g.: trust account or restricted RID, which prevent its move.«)] ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION = 0x0000212c, /// <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> [Description(«Can’t move objects with memberships across domain boundaries as once moved, this would violate the membership conditions of the account group. Remove the object from any account group memberships and retry.«)] ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS = 0x0000212d, /// <summary> /// A naming context head must be the immediate child of another naming context head, not of an interior node. ///</summary> [Description(«A naming context head must be the immediate child of another naming context head, not of an interior node.«)] ERROR_DS_NC_MUST_HAVE_NC_PARENT = 0x0000212e, /// <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> [Description(«The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context. Please ensure that the domain naming master role is held by a server that is configured as a global catalog server, and that the server is up to date with its replication partners. (Applies only to Windows 2000 Domain Naming masters.)«)] ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE = 0x0000212f, /// <summary> /// Destination domain must be in native mode. ///</summary> [Description(«Destination domain must be in native mode.«)] ERROR_DS_DST_DOMAIN_NOT_NATIVE = 0x00002130, /// <summary> /// The operation cannot be performed because the server does not have an infrastructure container in the domain of interest. ///</summary> [Description(«The operation cannot be performed because the server does not have an infrastructure container in the domain of interest.«)] ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER = 0x00002131, /// <summary> /// Cross-domain move of non-empty account groups is not allowed. ///</summary> [Description(«Cross-domain move of non-empty account groups is not allowed.«)] ERROR_DS_CANT_MOVE_ACCOUNT_GROUP = 0x00002132, /// <summary> /// Cross-domain move of non-empty resource groups is not allowed. ///</summary> [Description(«Cross-domain move of non-empty resource groups is not allowed.«)] ERROR_DS_CANT_MOVE_RESOURCE_GROUP = 0x00002133, /// <summary> /// The search flags for the attribute are invalid. The ANR bit is valid only on attributes of Unicode or Teletex strings. ///</summary> [Description(«The search flags for the attribute are invalid. The ANR bit is valid only on attributes of Unicode or Teletex strings.«)] ERROR_DS_INVALID_SEARCH_FLAG = 0x00002134, /// <summary> /// Tree deletions starting at an object which has an NC head as a descendant are not allowed. ///</summary> [Description(«Tree deletions starting at an object which has an NC head as a descendant are not allowed.«)] ERROR_DS_NO_TREE_DELETE_ABOVE_NC = 0x00002135, /// <summary> /// The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use. ///</summary> [Description(«The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use.«)] ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE = 0x00002136, /// <summary> /// The directory service failed to identify the list of objects to delete while attempting a tree deletion. ///</summary> [Description(«The directory service failed to identify the list of objects to delete while attempting a tree deletion.«)] ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE = 0x00002137, /// <summary> /// Security Accounts Manager initialization failed because of the following error: %1. Error Status: 0x%2. Please shutdown this system and reboot into Directory Services Restore Mode, check the event log for more detailed information. ///</summary> [Description(«Security Accounts Manager initialization failed because of the following error: %1. Error Status: 0x%2. Please shutdown this system and reboot into Directory Services Restore Mode, check the event log for more detailed information.«)] ERROR_DS_SAM_INIT_FAILURE = 0x00002138, /// <summary> /// Only an administrator can modify the membership list of an administrative group. ///</summary> [Description(«Only an administrator can modify the membership list of an administrative group.«)] ERROR_DS_SENSITIVE_GROUP_VIOLATION = 0x00002139, /// <summary> /// Cannot change the primary group ID of a domain controller account. ///</summary> [Description(«Cannot change the primary group ID of a domain controller account.«)] ERROR_DS_CANT_MOD_PRIMARYGROUPID = 0x0000213a, /// <summary> /// An attempt is made to modify the base schema. ///</summary> [Description(«An attempt is made to modify the base schema.«)] ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD = 0x0000213b, /// <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> [Description(«Adding a new mandatory attribute to an existing class, deleting a mandatory attribute from an existing class, or adding an optional attribute to the special class Top that is not a backlink attribute (directly or through inheritance, for example, by adding or deleting an auxiliary class) is not allowed.«)] ERROR_DS_NONSAFE_SCHEMA_CHANGE = 0x0000213c, /// <summary> /// Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner. ///</summary> [Description(«Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner.«)] ERROR_DS_SCHEMA_UPDATE_DISALLOWED = 0x0000213d, /// <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> [Description(«An object of this class cannot be created under the schema container. You can only create attribute-schema and class-schema objects under the schema container.«)] ERROR_DS_CANT_CREATE_UNDER_SCHEMA = 0x0000213e, /// <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> [Description(«The replica/child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it.«)] ERROR_DS_INSTALL_NO_SRC_SCH_VERSION = 0x0000213f, /// <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> [Description(«The replica/child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the system32 directory.«)] ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE = 0x00002140, /// <summary> /// The specified group type is invalid. ///</summary> [Description(«The specified group type is invalid.«)] ERROR_DS_INVALID_GROUP_TYPE = 0x00002141, /// <summary> /// You cannot nest global groups in a mixed domain if the group is security-enabled. ///</summary> [Description(«You cannot nest global groups in a mixed domain if the group is security-enabled.«)] ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN = 0x00002142, /// <summary> /// You cannot nest local groups in a mixed domain if the group is security-enabled. ///</summary> [Description(«You cannot nest local groups in a mixed domain if the group is security-enabled.«)] ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN = 0x00002143, /// <summary> /// A global group cannot have a local group as a member. ///</summary> [Description(«A global group cannot have a local group as a member.«)] ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER = 0x00002144, /// <summary> /// A global group cannot have a universal group as a member. ///</summary> [Description(«A global group cannot have a universal group as a member.«)] ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER = 0x00002145, /// <summary> /// A universal group cannot have a local group as a member. ///</summary> [Description(«A universal group cannot have a local group as a member.«)] ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER = 0x00002146, /// <summary> /// A global group cannot have a cross-domain member. ///</summary> [Description(«A global group cannot have a cross-domain member.«)] ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER = 0x00002147, /// <summary> /// A local group cannot have another cross domain local group as a member. ///</summary> [Description(«A local group cannot have another cross domain local group as a member.«)] ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER = 0x00002148, /// <summary> /// A group with primary members cannot change to a security-disabled group. ///</summary> [Description(«A group with primary members cannot change to a security-disabled group.«)] ERROR_DS_HAVE_PRIMARY_MEMBERS = 0x00002149, /// <summary> /// The schema cache load failed to convert the string default SD on a class-schema object. ///</summary> [Description(«The schema cache load failed to convert the string default SD on a class-schema object.«)] ERROR_DS_STRING_SD_CONVERSION_FAILED = 0x0000214a, /// <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> [Description(«Only DSAs configured to be Global Catalog servers should be allowed to hold the Domain Naming Master FSMO role. (Applies only to Windows 2000 servers.)«)] ERROR_DS_NAMING_MASTER_GC = 0x0000214b, /// <summary> /// The DSA operation is unable to proceed because of a DNS lookup failure. ///</summary> [Description(«The DSA operation is unable to proceed because of a DNS lookup failure.«)] ERROR_DS_DNS_LOOKUP_FAILURE = 0x0000214c, /// <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> [Description(«While processing a change to the DNS Host Name for an object, the Service Principal Name values could not be kept in sync.«)] ERROR_DS_COULDNT_UPDATE_SPNS = 0x0000214d, /// <summary> /// The Security Descriptor attribute could not be read. ///</summary> [Description(«The Security Descriptor attribute could not be read.«)] ERROR_DS_CANT_RETRIEVE_SD = 0x0000214e, /// <summary> /// The object requested was not found, but an object with that key was found. ///</summary> [Description(«The object requested was not found, but an object with that key was found.«)] ERROR_DS_KEY_NOT_UNIQUE = 0x0000214f, /// <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> [Description(«The syntax of the linked attribute being added is incorrect. Forward links can only have syntax 2.5.5.1, 2.5.5.7, and 2.5.5.14, and backlinks can only have syntax 2.5.5.1.«)] ERROR_DS_WRONG_LINKED_ATT_SYNTAX = 0x00002150, /// <summary> /// Security Account Manager needs to get the boot password. ///</summary> [Description(«Security Account Manager needs to get the boot password.«)] ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD = 0x00002151, /// <summary> /// Security Account Manager needs to get the boot key from floppy disk. ///</summary> [Description(«Security Account Manager needs to get the boot key from floppy disk.«)] ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY = 0x00002152, /// <summary> /// Directory Service cannot start. ///</summary> [Description(«Directory Service cannot start.«)] ERROR_DS_CANT_START = 0x00002153, /// <summary> /// Directory Services could not start. ///</summary> [Description(«Directory Services could not start.«)] ERROR_DS_INIT_FAILURE = 0x00002154, /// <summary> /// The connection between client and server requires packet privacy or better. ///</summary> [Description(«The connection between client and server requires packet privacy or better.«)] ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION = 0x00002155, /// <summary> /// The source domain may not be in the same forest as destination. ///</summary> [Description(«The source domain may not be in the same forest as destination.«)] ERROR_DS_SOURCE_DOMAIN_IN_FOREST = 0x00002156, /// <summary> /// The destination domain must be in the forest. ///</summary> [Description(«The destination domain must be in the forest.«)] ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST = 0x00002157, /// <summary> /// The operation requires that destination domain auditing be enabled. ///</summary> [Description(«The operation requires that destination domain auditing be enabled.«)] ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED = 0x00002158, /// <summary> /// The operation couldn’t locate a DC for the source domain. ///</summary> [Description(«The operation couldn’t locate a DC for the source domain.«)] ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN = 0x00002159, /// <summary> /// The source object must be a group or user. ///</summary> [Description(«The source object must be a group or user.«)] ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER = 0x0000215a, /// <summary> /// The source object’s SID already exists in destination forest. ///</summary> [Description(«The source object’s SID already exists in destination forest.«)] ERROR_DS_SRC_SID_EXISTS_IN_FOREST = 0x0000215b, /// <summary> /// The source and destination object must be of the same type. ///</summary> [Description(«The source and destination object must be of the same type.«)] ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH = 0x0000215c, /// <summary> /// Security Accounts Manager initialization failed because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system and reboot into Safe Mode. Check the event log for detailed information. ///</summary> [Description(«Security Accounts Manager initialization failed because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system and reboot into Safe Mode. Check the event log for detailed information.«)] ERROR_SAM_INIT_FAILURE = 0x0000215d, /// <summary> /// Schema information could not be included in the replication request. ///</summary> [Description(«Schema information could not be included in the replication request.«)] ERROR_DS_DRA_SCHEMA_INFO_SHIP = 0x0000215e, /// <summary> /// The replication operation could not be completed due to a schema incompatibility. ///</summary> [Description(«The replication operation could not be completed due to a schema incompatibility.«)] ERROR_DS_DRA_SCHEMA_CONFLICT = 0x0000215f, /// <summary> /// The replication operation could not be completed due to a previous schema incompatibility. ///</summary> [Description(«The replication operation could not be completed due to a previous schema incompatibility.«)] ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT = 0x00002160, /// <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> [Description(«The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation.«)] ERROR_DS_DRA_OBJ_NC_MISMATCH = 0x00002161, /// <summary> /// The requested domain could not be deleted because there exist domain controllers that still host this domain. ///</summary> [Description(«The requested domain could not be deleted because there exist domain controllers that still host this domain.«)] ERROR_DS_NC_STILL_HAS_DSAS = 0x00002162, /// <summary> /// The requested operation can be performed only on a global catalog server. ///</summary> [Description(«The requested operation can be performed only on a global catalog server.«)] ERROR_DS_GC_REQUIRED = 0x00002163, /// <summary> /// A local group can only be a member of other local groups in the same domain. ///</summary> [Description(«A local group can only be a member of other local groups in the same domain.«)] ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY = 0x00002164, /// <summary> /// Foreign security principals cannot be members of universal groups. ///</summary> [Description(«Foreign security principals cannot be members of universal groups.«)] ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS = 0x00002165, /// <summary> /// The attribute is not allowed to be replicated to the GC because of security reasons. ///</summary> [Description(«The attribute is not allowed to be replicated to the GC because of security reasons.«)] ERROR_DS_CANT_ADD_TO_GC = 0x00002166, /// <summary> /// The checkpoint with the PDC could not be taken because there too many modifications being processed currently. ///</summary> [Description(«The checkpoint with the PDC could not be taken because there too many modifications being processed currently.«)] ERROR_DS_NO_CHECKPOINT_WITH_PDC = 0x00002167, /// <summary> /// The operation requires that source domain auditing be enabled. ///</summary> [Description(«The operation requires that source domain auditing be enabled.«)] ERROR_DS_SOURCE_AUDITING_NOT_ENABLED = 0x00002168, /// <summary> /// Security principal objects can only be created inside domain naming contexts. ///</summary> [Description(«Security principal objects can only be created inside domain naming contexts.«)] ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC = 0x00002169, /// <summary> /// A Service Principal Name (SPN) could not be constructed because the provided hostname is not in the necessary format. ///</summary> [Description(«A Service Principal Name (SPN) could not be constructed because the provided hostname is not in the necessary format.«)] ERROR_DS_INVALID_NAME_FOR_SPN = 0x0000216a, /// <summary> /// A Filter was passed that uses constructed attributes. ///</summary> [Description(«A Filter was passed that uses constructed attributes.«)] ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS = 0x0000216b, /// <summary> /// The unicodePwd attribute value must be enclosed in double quotes. ///</summary> [Description(«The unicodePwd attribute value must be enclosed in double quotes.«)] ERROR_DS_UNICODEPWD_NOT_IN_QUOTES = 0x0000216c, /// <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> [Description(«Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased.«)] ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED = 0x0000216d, /// <summary> /// For security reasons, the operation must be run on the destination DC. ///</summary> [Description(«For security reasons, the operation must be run on the destination DC.«)] ERROR_DS_MUST_BE_RUN_ON_DST_DC = 0x0000216e, /// <summary> /// For security reasons, the source DC must be NT4SP4 or greater. ///</summary> [Description(«For security reasons, the source DC must be NT4SP4 or greater.«)] ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER = 0x0000216f, /// <summary> /// Critical Directory Service System objects cannot be deleted during tree delete operations. The tree delete may have been partially performed. ///</summary> [Description(«Critical Directory Service System objects cannot be deleted during tree delete operations. The tree delete may have been partially performed.«)] ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ = 0x00002170, /// <summary> /// Directory Services could not start because of the following error: %1. Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further. ///</summary> [Description(«Directory Services could not start because of the following error: %1. Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.«)] ERROR_DS_INIT_FAILURE_CONSOLE = 0x00002171, /// <summary> /// Security Accounts Manager initialization failed because of the following error: %1. Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further. ///</summary> [Description(«Security Accounts Manager initialization failed because of the following error: %1. Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.«)] ERROR_DS_SAM_INIT_FAILURE_CONSOLE = 0x00002172, /// <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> [Description(«The version of the operating system is incompatible with the current AD DS forest functional level or AD LDS Configuration Set functional level. You must upgrade to a new version of the operating system before this server can become an AD DS Domain Controller or add an AD LDS Instance in this AD DS Forest or AD LDS Configuration Set.«)] ERROR_DS_FOREST_VERSION_TOO_HIGH = 0x00002173, /// <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> [Description(«The version of the operating system installed is incompatible with the current domain functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this domain.«)] ERROR_DS_DOMAIN_VERSION_TOO_HIGH = 0x00002174, /// <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> [Description(«The version of the operating system installed on this server no longer supports the current AD DS Forest functional level or AD LDS Configuration Set functional level. You must raise the AD DS Forest functional level or AD LDS Configuration Set functional level before this server can become an AD DS Domain Controller or an AD LDS Instance in this Forest or Configuration Set.«)] ERROR_DS_FOREST_VERSION_TOO_LOW = 0x00002175, /// <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> [Description(«The version of the operating system installed on this server no longer supports the current domain functional level. You must raise the domain functional level before this server can become a domain controller in this domain.«)] ERROR_DS_DOMAIN_VERSION_TOO_LOW = 0x00002176, /// <summary> /// The version of the operating system installed on this server is incompatible with the functional level of the domain or forest. ///</summary> [Description(«The version of the operating system installed on this server is incompatible with the functional level of the domain or forest.«)] ERROR_DS_INCOMPATIBLE_VERSION = 0x00002177, /// <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> [Description(«The functional level of the domain (or forest) cannot be raised to the requested value, because there exist one or more domain controllers in the domain (or forest) that are at a lower incompatible functional level.«)] ERROR_DS_LOW_DSA_VERSION = 0x00002178, /// <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> [Description(«The forest functional level cannot be raised to the requested value since one or more domains are still in mixed domain mode. All domains in the forest must be in native mode, for you to raise the forest functional level.«)] ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN = 0x00002179, /// <summary> /// The sort order requested is not supported. ///</summary> [Description(«The sort order requested is not supported.«)] ERROR_DS_NOT_SUPPORTED_SORT_ORDER = 0x0000217a, /// <summary> /// The requested name already exists as a unique identifier. ///</summary> [Description(«The requested name already exists as a unique identifier.«)] ERROR_DS_NAME_NOT_UNIQUE = 0x0000217b, /// <summary> /// The machine account was created pre-NT4. The account needs to be recreated. ///</summary> [Description(«The machine account was created pre-NT4. The account needs to be recreated.«)] ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4 = 0x0000217c, /// <summary> /// The database is out of version store. ///</summary> [Description(«The database is out of version store.«)] ERROR_DS_OUT_OF_VERSION_STORE = 0x0000217d, /// <summary> /// Unable to continue operation because multiple conflicting controls were used. ///</summary> [Description(«Unable to continue operation because multiple conflicting controls were used.«)] ERROR_DS_INCOMPATIBLE_CONTROLS_USED = 0x0000217e, /// <summary> /// Unable to find a valid security descriptor reference domain for this partition. ///</summary> [Description(«Unable to find a valid security descriptor reference domain for this partition.«)] ERROR_DS_NO_REF_DOMAIN = 0x0000217f, /// <summary> /// Schema update failed: The link identifier is reserved. ///</summary> [Description(«Schema update failed: The link identifier is reserved.«)] ERROR_DS_RESERVED_LINK_ID = 0x00002180, /// <summary> /// Schema update failed: There are no link identifiers available. ///</summary> [Description(«Schema update failed: There are no link identifiers available.«)] ERROR_DS_LINK_ID_NOT_AVAILABLE = 0x00002181, /// <summary> /// An account group cannot have a universal group as a member. ///</summary> [Description(«An account group cannot have a universal group as a member.«)] ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER = 0x00002182, /// <summary> /// Rename or move operations on naming context heads or read-only objects are not allowed. ///</summary> [Description(«Rename or move operations on naming context heads or read-only objects are not allowed.«)] ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE = 0x00002183, /// <summary> /// Move operations on objects in the schema naming context are not allowed. ///</summary> [Description(«Move operations on objects in the schema naming context are not allowed.«)] ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC = 0x00002184, /// <summary> /// A system flag has been set on the object and does not allow the object to be moved or renamed. ///</summary> [Description(«A system flag has been set on the object and does not allow the object to be moved or renamed.«)] ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG = 0x00002185, /// <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> [Description(«This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers.«)] ERROR_DS_MODIFYDN_WRONG_GRANDPARENT = 0x00002186, /// <summary> /// Unable to resolve completely, a referral to another forest is generated. ///</summary> [Description(«Unable to resolve completely, a referral to another forest is generated.«)] ERROR_DS_NAME_ERROR_TRUST_REFERRAL = 0x00002187, /// <summary> /// The requested action is not supported on standard server. ///</summary> [Description(«The requested action is not supported on standard server.«)] ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER = 0x00002188, /// <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> [Description(«Could not access a partition of the directory service located on a remote server. Make sure at least one server is running for the partition in question.«)] ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD = 0x00002189, /// <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> [Description(«The directory cannot validate the proposed naming context (or partition) name because it does not hold a replica nor can it contact a replica of the naming context above the proposed naming context. Please ensure that the parent naming context is properly registered in DNS, and at least one replica of this naming context is reachable by the Domain Naming master.«)] ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2 = 0x0000218a, /// <summary> /// The thread limit for this request was exceeded. ///</summary> [Description(«The thread limit for this request was exceeded.«)] ERROR_DS_THREAD_LIMIT_EXCEEDED = 0x0000218b, /// <summary> /// The Global catalog server is not in the closest site. ///</summary> [Description(«The Global catalog server is not in the closest site.«)] ERROR_DS_NOT_CLOSEST = 0x0000218c, /// <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> [Description(«The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute.«)] ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF = 0x0000218d, /// <summary> /// The Directory Service failed to enter single user mode. ///</summary> [Description(«The Directory Service failed to enter single user mode.«)] ERROR_DS_SINGLE_USER_MODE_FAILED = 0x0000218e, /// <summary> /// The Directory Service cannot parse the script because of a syntax error. ///</summary> [Description(«The Directory Service cannot parse the script because of a syntax error.«)] ERROR_DS_NTDSCRIPT_SYNTAX_ERROR = 0x0000218f, /// <summary> /// The Directory Service cannot process the script because of an error. ///</summary> [Description(«The Directory Service cannot process the script because of an error.«)] ERROR_DS_NTDSCRIPT_PROCESS_ERROR = 0x00002190, /// <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> [Description(«The directory service cannot perform the requested operation because the servers involved are of different replication epochs (which is usually related to a domain rename that is in progress).«)] ERROR_DS_DIFFERENT_REPL_EPOCHS = 0x00002191, /// <summary> /// The directory service binding must be renegotiated due to a change in the server extensions information. ///</summary> [Description(«The directory service binding must be renegotiated due to a change in the server extensions information.«)] ERROR_DS_DRS_EXTENSIONS_CHANGED = 0x00002192, /// <summary> /// Operation not allowed on a disabled cross ref. ///</summary> [Description(«Operation not allowed on a disabled cross ref.«)] ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR = 0x00002193, /// <summary> /// Schema update failed: No values for msDS-IntId are available. ///</summary> [Description(«Schema update failed: No values for msDS-IntId are available.«)] ERROR_DS_NO_MSDS_INTID = 0x00002194, /// <summary> /// Schema update failed: Duplicate msDS-INtId. Retry the operation. ///</summary> [Description(«Schema update failed: Duplicate msDS-INtId. Retry the operation.«)] ERROR_DS_DUP_MSDS_INTID = 0x00002195, /// <summary> /// Schema deletion failed: attribute is used in rDNAttID. ///</summary> [Description(«Schema deletion failed: attribute is used in rDNAttID.«)] ERROR_DS_EXISTS_IN_RDNATTID = 0x00002196, /// <summary> /// The directory service failed to authorize the request. ///</summary> [Description(«The directory service failed to authorize the request.«)] ERROR_DS_AUTHORIZATION_FAILED = 0x00002197, /// <summary> /// The Directory Service cannot process the script because it is invalid. ///</summary> [Description(«The Directory Service cannot process the script because it is invalid.«)] ERROR_DS_INVALID_SCRIPT = 0x00002198, /// <summary> /// The remote create cross reference operation failed on the Domain Naming Master FSMO. The operation’s error is in the extended data. ///</summary> [Description(«The remote create cross reference operation failed on the Domain Naming Master FSMO. The operation’s error is in the extended data.«)] ERROR_DS_REMOTE_CROSSREF_OP_FAILED = 0x00002199, /// <summary> /// A cross reference is in use locally with the same name. ///</summary> [Description(«A cross reference is in use locally with the same name.«)] ERROR_DS_CROSS_REF_BUSY = 0x0000219a, /// <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> [Description(«The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the server’s domain has been deleted from the forest.«)] ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN = 0x0000219b, /// <summary> /// Writeable NCs prevent this DC from demoting. ///</summary> [Description(«Writeable NCs prevent this DC from demoting.«)] ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC = 0x0000219c, /// <summary> /// The requested object has a non-unique identifier and cannot be retrieved. ///</summary> [Description(«The requested object has a non-unique identifier and cannot be retrieved.«)] ERROR_DS_DUPLICATE_ID_FOUND = 0x0000219d, /// <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> [Description(«Insufficient attributes were given to create an object. This object may not exist because it may have been deleted and already garbage collected.«)] ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT = 0x0000219e, /// <summary> /// The group cannot be converted due to attribute restrictions on the requested group type. ///</summary> [Description(«The group cannot be converted due to attribute restrictions on the requested group type.«)] ERROR_DS_GROUP_CONVERSION_ERROR = 0x0000219f, /// <summary> /// Cross-domain move of non-empty basic application groups is not allowed. ///</summary> [Description(«Cross-domain move of non-empty basic application groups is not allowed.«)] ERROR_DS_CANT_MOVE_APP_BASIC_GROUP = 0x000021a0, /// <summary> /// Cross-domain move of non-empty query based application groups is not allowed. ///</summary> [Description(«Cross-domain move of non-empty query based application groups is not allowed.«)] ERROR_DS_CANT_MOVE_APP_QUERY_GROUP = 0x000021a1, /// <summary> /// The FSMO role ownership could not be verified because its directory partition has not replicated successfully with at least one replication partner. ///</summary> [Description(«The FSMO role ownership could not be verified because its directory partition has not replicated successfully with at least one replication partner.«)] ERROR_DS_ROLE_NOT_VERIFIED = 0x000021a2, /// <summary> /// The target container for a redirection of a well known object container cannot already be a special container. ///</summary> [Description(«The target container for a redirection of a well known object container cannot already be a special container.«)] ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL = 0x000021a3, /// <summary> /// The Directory Service cannot perform the requested operation because a domain rename operation is in progress. ///</summary> [Description(«The Directory Service cannot perform the requested operation because a domain rename operation is in progress.«)] ERROR_DS_DOMAIN_RENAME_IN_PROGRESS = 0x000021a4, /// <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> [Description(«The directory service detected a child partition below the requested partition name. The partition hierarchy must be created in a top down method.«)] ERROR_DS_EXISTING_AD_CHILD_NC = 0x000021a5, /// <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> [Description(«The directory service cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime.«)] ERROR_DS_REPL_LIFETIME_EXCEEDED = 0x000021a6, /// <summary> /// The requested operation is not allowed on an object under the system container. ///</summary> [Description(«The requested operation is not allowed on an object under the system container.«)] ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER = 0x000021a7, /// <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> [Description(«The LDAP servers network send queue has filled up because the client is not processing the results of its requests fast enough. No more requests will be processed until the client catches up. If the client does not catch up then it will be disconnected.«)] ERROR_DS_LDAP_SEND_QUEUE_FULL = 0x000021a8, /// <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> [Description(«The scheduled replication did not take place because the system was too busy to execute the request within the schedule window. The replication queue is overloaded. Consider reducing the number of partners or decreasing the scheduled replication frequency.«)] ERROR_DS_DRA_OUT_SCHEDULE_WINDOW = 0x000021a9, /// <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> [Description(«At this time, it cannot be determined if the branch replication policy is available on the hub domain controller. Please retry at a later time to account for replication latencies.«)] ERROR_DS_POLICY_NOT_KNOWN = 0x000021aa, /// <summary> /// The site settings object for the specified site does not exist. ///</summary> [Description(«The site settings object for the specified site does not exist.«)] ERROR_NO_SITE_SETTINGS_OBJECT = 0x000021ab, /// <summary> /// The local account store does not contain secret material for the specified account. ///</summary> [Description(«The local account store does not contain secret material for the specified account.«)] ERROR_NO_SECRETS = 0x000021ac, /// <summary> /// Could not find a writable domain controller in the domain. ///</summary> [Description(«Could not find a writable domain controller in the domain.«)] ERROR_NO_WRITABLE_DC_FOUND = 0x000021ad, /// <summary> /// The server object for the domain controller does not exist. ///</summary> [Description(«The server object for the domain controller does not exist.«)] ERROR_DS_NO_SERVER_OBJECT = 0x000021ae, /// <summary> /// The NTDS Settings object for the domain controller does not exist. ///</summary> [Description(«The NTDS Settings object for the domain controller does not exist.«)] ERROR_DS_NO_NTDSA_OBJECT = 0x000021af, /// <summary> /// The requested search operation is not supported for ASQ searches. ///</summary> [Description(«The requested search operation is not supported for ASQ searches.«)] ERROR_DS_NON_ASQ_SEARCH = 0x000021b0, /// <summary> /// A required audit event could not be generated for the operation. ///</summary> [Description(«A required audit event could not be generated for the operation.«)] ERROR_DS_AUDIT_FAILURE = 0x000021b1, /// <summary> /// The search flags for the attribute are invalid. The subtree index bit is valid only on single valued attributes. ///</summary> [Description(«The search flags for the attribute are invalid. The subtree index bit is valid only on single valued attributes.«)] ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE = 0x000021b2, /// <summary> /// The search flags for the attribute are invalid. The tuple index bit is valid only on attributes of Unicode strings. ///</summary> [Description(«The search flags for the attribute are invalid. The tuple index bit is valid only on attributes of Unicode strings.«)] ERROR_DS_INVALID_SEARCH_FLAG_TUPLE = 0x000021b3, /// <summary> /// The address books are nested too deeply. Failed to build the hierarchy table. ///</summary> [Description(«The address books are nested too deeply. Failed to build the hierarchy table.«)] ERROR_DS_HIERARCHY_TABLE_TOO_DEEP = 0x000021b4, /// <summary> /// The specified up-to-date-ness vector is corrupt. ///</summary> [Description(«The specified up-to-date-ness vector is corrupt.«)] ERROR_DS_DRA_CORRUPT_UTD_VECTOR = 0x000021b5, /// <summary> /// The request to replicate secrets is denied. ///</summary> [Description(«The request to replicate secrets is denied.«)] ERROR_DS_DRA_SECRETS_DENIED = 0x000021b6, /// <summary> /// Schema update failed: The MAPI identifier is reserved. ///</summary> [Description(«Schema update failed: The MAPI identifier is reserved.«)] ERROR_DS_RESERVED_MAPI_ID = 0x000021b7, /// <summary> /// Schema update failed: There are no MAPI identifiers available. ///</summary> [Description(«Schema update failed: There are no MAPI identifiers available.«)] ERROR_DS_MAPI_ID_NOT_AVAILABLE = 0x000021b8, /// <summary> /// The replication operation failed because the required attributes of the local krbtgt object are missing. ///</summary> [Description(«The replication operation failed because the required attributes of the local krbtgt object are missing.«)] ERROR_DS_DRA_MISSING_KRBTGT_SECRET = 0x000021b9, /// <summary> /// The domain name of the trusted domain already exists in the forest. ///</summary> [Description(«The domain name of the trusted domain already exists in the forest.«)] ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST = 0x000021ba, /// <summary> /// The flat name of the trusted domain already exists in the forest. ///</summary> [Description(«The flat name of the trusted domain already exists in the forest.«)] ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST = 0x000021bb, /// <summary> /// The User Principal Name (UPN) is invalid. ///</summary> [Description(«The User Principal Name (UPN) is invalid.«)] ERROR_INVALID_USER_PRINCIPAL_NAME = 0x000021bc, /// <summary> /// OID mapped groups cannot have members. ///</summary> [Description(«OID mapped groups cannot have members.«)] ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS = 0x000021bd, /// <summary> /// The specified OID cannot be found. ///</summary> [Description(«The specified OID cannot be found.«)] ERROR_DS_OID_NOT_FOUND = 0x000021be, /// <summary> /// The replication operation failed because the target object referred by a link value is recycled. ///</summary> [Description(«The replication operation failed because the target object referred by a link value is recycled.«)] ERROR_DS_DRA_RECYCLED_TARGET = 0x000021bf, /// <summary> /// The redirect operation failed because the target object is in a NC different from the domain NC of the current domain controller. ///</summary> [Description(«The redirect operation failed because the target object is in a NC different from the domain NC of the current domain controller.«)] ERROR_DS_DISALLOWED_NC_REDIRECT = 0x000021c0, /// <summary> /// The functional level of the AD LDS configuration set cannot be lowered to the requested value. ///</summary> [Description(«The functional level of the AD LDS configuration set cannot be lowered to the requested value.«)] ERROR_DS_HIGH_ADLDS_FFL = 0x000021c1, /// <summary> /// The functional level of the domain (or forest) cannot be lowered to the requested value. ///</summary> [Description(«The functional level of the domain (or forest) cannot be lowered to the requested value.«)] ERROR_DS_HIGH_DSA_VERSION = 0x000021c2, /// <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> [Description(«The functional level of the AD LDS configuration set cannot be raised to the requested value, because there exist one or more ADLDS instances that are at a lower incompatible functional level.«)] ERROR_DS_LOW_ADLDS_FFL = 0x000021c3, /// <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/p/?linkid=168895 for more information. ///</summary> [Description(«The domain join cannot be completed because the SID of the domain you attempted to join was identical to the SID of this machine. This is a symptom of an improperly cloned operating system install. You should run sysprep on this machine in order to generate a new machine SID. Please see http://go.microsoft.com/fwlink/p/?linkid=168895 for more information.«)] ERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION = 0x000021c4, /// <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> [Description(«The undelete operation failed because the Sam Account Name or Additional Sam Account Name of the object being undeleted conflicts with an existing live object.«)] ERROR_DS_UNDELETE_SAM_VALIDATION_FAILED = 0x000021c5, /// <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> [Description(«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.«)] ERROR_INCORRECT_ACCOUNT_TYPE = 0x000021c6, /// <summary> /// DNS server unable to interpret format. ///</summary> [Description(«DNS server unable to interpret format.«)] DNS_ERROR_RCODE_FORMAT_ERROR = 0x00002329, /// <summary> /// DNS server failure. ///</summary> [Description(«DNS server failure.«)] DNS_ERROR_RCODE_SERVER_FAILURE = 0x0000232a, /// <summary> /// DNS name does not exist. ///</summary> [Description(«DNS name does not exist.«)] DNS_ERROR_RCODE_NAME_ERROR = 0x0000232b, /// <summary> /// DNS request not supported by name server. ///</summary> [Description(«DNS request not supported by name server.«)] DNS_ERROR_RCODE_NOT_IMPLEMENTED = 0x0000232c, /// <summary> /// DNS operation refused. ///</summary> [Description(«DNS operation refused.«)] DNS_ERROR_RCODE_REFUSED = 0x0000232d, /// <summary> /// DNS name that ought not exist, does exist. ///</summary> [Description(«DNS name that ought not exist, does exist.«)] DNS_ERROR_RCODE_YXDOMAIN = 0x0000232e, /// <summary> /// DNS RR set that ought not exist, does exist. ///</summary> [Description(«DNS RR set that ought not exist, does exist.«)] DNS_ERROR_RCODE_YXRRSET = 0x0000232f, /// <summary> /// DNS RR set that ought to exist, does not exist. ///</summary> [Description(«DNS RR set that ought to exist, does not exist.«)] DNS_ERROR_RCODE_NXRRSET = 0x00002330, /// <summary> /// DNS server not authoritative for zone. ///</summary> [Description(«DNS server not authoritative for zone.«)] DNS_ERROR_RCODE_NOTAUTH = 0x00002331, /// <summary> /// DNS name in update or prereq is not in zone. ///</summary> [Description(«DNS name in update or prereq is not in zone.«)] DNS_ERROR_RCODE_NOTZONE = 0x00002332, /// <summary> /// DNS signature failed to verify. ///</summary> [Description(«DNS signature failed to verify.«)] DNS_ERROR_RCODE_BADSIG = 0x00002338, /// <summary> /// DNS bad key. ///</summary> [Description(«DNS bad key.«)] DNS_ERROR_RCODE_BADKEY = 0x00002339, /// <summary> /// DNS signature validity expired. ///</summary> [Description(«DNS signature validity expired.«)] DNS_ERROR_RCODE_BADTIME = 0x0000233a, /// <summary> /// Only the DNS server acting as the key master for the zone may perform this operation. ///</summary> [Description(«Only the DNS server acting as the key master for the zone may perform this operation.«)] DNS_ERROR_KEYMASTER_REQUIRED = 0x0000238d, /// <summary> /// This operation is not allowed on a zone that is signed or has signing keys. ///</summary> [Description(«This operation is not allowed on a zone that is signed or has signing keys.«)] DNS_ERROR_NOT_ALLOWED_ON_SIGNED_ZONE = 0x0000238e, /// <summary> /// NSEC3 is not compatible with the RSA-SHA-1 algorithm. Choose a different algorithm or use NSEC.nThis value was also named DNS_ERROR_INVALID_NSEC3_PARAMETERS ///</summary> [Description(«NSEC3 is not compatible with the RSA-SHA-1 algorithm. Choose a different algorithm or use NSEC.nThis value was also named DNS_ERROR_INVALID_NSEC3_PARAMETERS«)] DNS_ERROR_NSEC3_INCOMPATIBLE_WITH_RSA_SHA1 = 0x0000238f, /// <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> [Description(«The zone does not have enough signing keys. There must be at least one key signing key (KSK) and at least one zone signing key (ZSK).«)] DNS_ERROR_NOT_ENOUGH_SIGNING_KEY_DESCRIPTORS = 0x00002390, /// <summary> /// The specified algorithm is not supported. ///</summary> [Description(«The specified algorithm is not supported.«)] DNS_ERROR_UNSUPPORTED_ALGORITHM = 0x00002391, /// <summary> /// The specified key size is not supported. ///</summary> [Description(«The specified key size is not supported.«)] DNS_ERROR_INVALID_KEY_SIZE = 0x00002392, /// <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> [Description(«One or more of the signing keys for a zone are not accessible to the DNS server. Zone signing will not be operational until this error is resolved.«)] DNS_ERROR_SIGNING_KEY_NOT_ACCESSIBLE = 0x00002393, /// <summary> /// The specified key storage provider does not support DPAPI++ data protection. Zone signing will not be operational until this error is resolved. ///</summary> [Description(«The specified key storage provider does not support DPAPI++ data protection. Zone signing will not be operational until this error is resolved.«)] DNS_ERROR_KSP_DOES_NOT_SUPPORT_PROTECTION = 0x00002394, /// <summary> /// An unexpected DPAPI++ error was encountered. Zone signing will not be operational until this error is resolved. ///</summary> [Description(«An unexpected DPAPI++ error was encountered. Zone signing will not be operational until this error is resolved.«)] DNS_ERROR_UNEXPECTED_DATA_PROTECTION_ERROR = 0x00002395, /// <summary> /// An unexpected crypto error was encountered. Zone signing may not be operational until this error is resolved. ///</summary> [Description(«An unexpected crypto error was encountered. Zone signing may not be operational until this error is resolved.«)] DNS_ERROR_UNEXPECTED_CNG_ERROR = 0x00002396, /// <summary> /// The DNS server encountered a signing key with an unknown version. Zone signing will not be operational until this error is resolved. ///</summary> [Description(«The DNS server encountered a signing key with an unknown version. Zone signing will not be operational until this error is resolved.«)] DNS_ERROR_UNKNOWN_SIGNING_PARAMETER_VERSION = 0x00002397, /// <summary> /// The specified key service provider cannot be opened by the DNS server. ///</summary> [Description(«The specified key service provider cannot be opened by the DNS server.«)] DNS_ERROR_KSP_NOT_ACCESSIBLE = 0x00002398, /// <summary> /// The DNS server cannot accept any more signing keys with the specified algorithm and KSK flag value for this zone. ///</summary> [Description(«The DNS server cannot accept any more signing keys with the specified algorithm and KSK flag value for this zone.«)] DNS_ERROR_TOO_MANY_SKDS = 0x00002399, /// <summary> /// The specified rollover period is invalid. ///</summary> [Description(«The specified rollover period is invalid.«)] DNS_ERROR_INVALID_ROLLOVER_PERIOD = 0x0000239a, /// <summary> /// The specified initial rollover offset is invalid. ///</summary> [Description(«The specified initial rollover offset is invalid.«)] DNS_ERROR_INVALID_INITIAL_ROLLOVER_OFFSET = 0x0000239b, /// <summary> /// The specified signing key is already in process of rolling over keys. ///</summary> [Description(«The specified signing key is already in process of rolling over keys.«)] DNS_ERROR_ROLLOVER_IN_PROGRESS = 0x0000239c, /// <summary> /// The specified signing key does not have a standby key to revoke. ///</summary> [Description(«The specified signing key does not have a standby key to revoke.«)] DNS_ERROR_STANDBY_KEY_NOT_PRESENT = 0x0000239d, /// <summary> /// This operation is not allowed on a zone signing key (ZSK). ///</summary> [Description(«This operation is not allowed on a zone signing key (ZSK).«)] DNS_ERROR_NOT_ALLOWED_ON_ZSK = 0x0000239e, /// <summary> /// This operation is not allowed on an active signing key. ///</summary> [Description(«This operation is not allowed on an active signing key.«)] DNS_ERROR_NOT_ALLOWED_ON_ACTIVE_SKD = 0x0000239f, /// <summary> /// The specified signing key is already queued for rollover. ///</summary> [Description(«The specified signing key is already queued for rollover.«)] DNS_ERROR_ROLLOVER_ALREADY_QUEUED = 0x000023a0, /// <summary> /// This operation is not allowed on an unsigned zone. ///</summary> [Description(«This operation is not allowed on an unsigned zone.«)] DNS_ERROR_NOT_ALLOWED_ON_UNSIGNED_ZONE = 0x000023a1, /// <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> [Description(«This operation could not be completed because the DNS server listed as the current key master for this zone is down or misconfigured. Resolve the problem on the current key master for this zone or use another DNS server to seize the key master role.«)] DNS_ERROR_BAD_KEYMASTER = 0x000023a2, /// <summary> /// The specified signature validity period is invalid. ///</summary> [Description(«The specified signature validity period is invalid.«)] DNS_ERROR_INVALID_SIGNATURE_VALIDITY_PERIOD = 0x000023a3, /// <summary> /// The specified NSEC3 iteration count is higher than allowed by the minimum key length used in the zone. ///</summary> [Description(«The specified NSEC3 iteration count is higher than allowed by the minimum key length used in the zone.«)] DNS_ERROR_INVALID_NSEC3_ITERATION_COUNT = 0x000023a4, /// <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> [Description(«This operation could not be completed because the DNS server has been configured with DNSSEC features disabled. Enable DNSSEC on the DNS server.«)] DNS_ERROR_DNSSEC_IS_DISABLED = 0x000023a5, /// <summary> /// This operation could not be completed because the XML stream received is empty or syntactically invalid. ///</summary> [Description(«This operation could not be completed because the XML stream received is empty or syntactically invalid.«)] DNS_ERROR_INVALID_XML = 0x000023a6, /// <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> [Description(«This operation completed, but no trust anchors were added because all of the trust anchors received were either invalid, unsupported, expired, or would not become valid in less than 30 days.«)] DNS_ERROR_NO_VALID_TRUST_ANCHORS = 0x000023a7, /// <summary> /// The specified signing key is not waiting for parental DS update. ///</summary> [Description(«The specified signing key is not waiting for parental DS update.«)] DNS_ERROR_ROLLOVER_NOT_POKEABLE = 0x000023a8, /// <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> [Description(«Hash collision detected during NSEC3 signing. Specify a different user-provided salt, or use a randomly generated salt, and attempt to sign the zone again.«)] DNS_ERROR_NSEC3_NAME_COLLISION = 0x000023a9, /// <summary> /// NSEC is not compatible with the NSEC3-RSA-SHA-1 algorithm. Choose a different algorithm or use NSEC3. ///</summary> [Description(«NSEC is not compatible with the NSEC3-RSA-SHA-1 algorithm. Choose a different algorithm or use NSEC3.«)] DNS_ERROR_NSEC_INCOMPATIBLE_WITH_NSEC3_RSA_SHA1 = 0x000023aa, /// <summary> /// No records found for given DNS query. ///</summary> [Description(«No records found for given DNS query.«)] DNS_INFO_NO_RECORDS = 0x0000251d, /// <summary> /// Bad DNS packet. ///</summary> [Description(«Bad DNS packet.«)] DNS_ERROR_BAD_PACKET = 0x0000251e, /// <summary> /// No DNS packet. ///</summary> [Description(«No DNS packet.«)] DNS_ERROR_NO_PACKET = 0x0000251f, /// <summary> /// DNS error, check rcode. ///</summary> [Description(«DNS error, check rcode.«)] DNS_ERROR_RCODE = 0x00002520, /// <summary> /// Unsecured DNS packet. ///</summary> [Description(«Unsecured DNS packet.«)] DNS_ERROR_UNSECURE_PACKET = 0x00002521, /// <summary> /// DNS query request is pending. ///</summary> [Description(«DNS query request is pending.«)] DNS_REQUEST_PENDING = 0x00002522, /// <summary> /// Invalid DNS type. ///</summary> [Description(«Invalid DNS type.«)] DNS_ERROR_INVALID_TYPE = 0x0000254f, /// <summary> /// Invalid IP address. ///</summary> [Description(«Invalid IP address.«)] DNS_ERROR_INVALID_IP_ADDRESS = 0x00002550, /// <summary> /// Invalid property. ///</summary> [Description(«Invalid property.«)] DNS_ERROR_INVALID_PROPERTY = 0x00002551, /// <summary> /// Try DNS operation again later. ///</summary> [Description(«Try DNS operation again later.«)] DNS_ERROR_TRY_AGAIN_LATER = 0x00002552, /// <summary> /// Record for given name and type is not unique. ///</summary> [Description(«Record for given name and type is not unique.«)] DNS_ERROR_NOT_UNIQUE = 0x00002553, /// <summary> /// DNS name does not comply with RFC specifications. ///</summary> [Description(«DNS name does not comply with RFC specifications.«)] DNS_ERROR_NON_RFC_NAME = 0x00002554, /// <summary> /// DNS name is a fully-qualified DNS name. ///</summary> [Description(«DNS name is a fully-qualified DNS name.«)] DNS_STATUS_FQDN = 0x00002555, /// <summary> /// DNS name is dotted (multi-label). ///</summary> [Description(«DNS name is dotted (multi-label).«)] DNS_STATUS_DOTTED_NAME = 0x00002556, /// <summary> /// DNS name is a single-part name. ///</summary> [Description(«DNS name is a single-part name.«)] DNS_STATUS_SINGLE_PART_NAME = 0x00002557, /// <summary> /// DNS name contains an invalid character. ///</summary> [Description(«DNS name contains an invalid character.«)] DNS_ERROR_INVALID_NAME_CHAR = 0x00002558, /// <summary> /// DNS name is entirely numeric. ///</summary> [Description(«DNS name is entirely numeric.«)] DNS_ERROR_NUMERIC_NAME = 0x00002559, /// <summary> /// The operation requested is not permitted on a DNS root server. ///</summary> [Description(«The operation requested is not permitted on a DNS root server.«)] DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER = 0x0000255a, /// <summary> /// The record could not be created because this part of the DNS namespace has been delegated to another server. ///</summary> [Description(«The record could not be created because this part of the DNS namespace has been delegated to another server.«)] DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION = 0x0000255b, /// <summary> /// The DNS server could not find a set of root hints. ///</summary> [Description(«The DNS server could not find a set of root hints.«)] DNS_ERROR_CANNOT_FIND_ROOT_HINTS = 0x0000255c, /// <summary> /// The DNS server found root hints but they were not consistent across all adapters. ///</summary> [Description(«The DNS server found root hints but they were not consistent across all adapters.«)] DNS_ERROR_INCONSISTENT_ROOT_HINTS = 0x0000255d, /// <summary> /// The specified value is too small for this parameter. ///</summary> [Description(«The specified value is too small for this parameter.«)] DNS_ERROR_DWORD_VALUE_TOO_SMALL = 0x0000255e, /// <summary> /// The specified value is too large for this parameter. ///</summary> [Description(«The specified value is too large for this parameter.«)] DNS_ERROR_DWORD_VALUE_TOO_LARGE = 0x0000255f, /// <summary> /// This operation is not allowed while the DNS server is loading zones in the background. Please try again later. ///</summary> [Description(«This operation is not allowed while the DNS server is loading zones in the background. Please try again later.«)] DNS_ERROR_BACKGROUND_LOADING = 0x00002560, /// <summary> /// The operation requested is not permitted on against a DNS server running on a read-only DC. ///</summary> [Description(«The operation requested is not permitted on against a DNS server running on a read-only DC.«)] DNS_ERROR_NOT_ALLOWED_ON_RODC = 0x00002561, /// <summary> /// No data is allowed to exist underneath a DNAME record. ///</summary> [Description(«No data is allowed to exist underneath a DNAME record.«)] DNS_ERROR_NOT_ALLOWED_UNDER_DNAME = 0x00002562, /// <summary> /// This operation requires credentials delegation. ///</summary> [Description(«This operation requires credentials delegation.«)] DNS_ERROR_DELEGATION_REQUIRED = 0x00002563, /// <summary> /// Name resolution policy table has been corrupted. DNS resolution will fail until it is fixed. Contact your network administrator. ///</summary> [Description(«Name resolution policy table has been corrupted. DNS resolution will fail until it is fixed. Contact your network administrator.«)] DNS_ERROR_INVALID_POLICY_TABLE = 0x00002564, /// <summary> /// DNS zone does not exist. ///</summary> [Description(«DNS zone does not exist.«)] DNS_ERROR_ZONE_DOES_NOT_EXIST = 0x00002581, /// <summary> /// DNS zone information not available. ///</summary> [Description(«DNS zone information not available.«)] DNS_ERROR_NO_ZONE_INFO = 0x00002582, /// <summary> /// Invalid operation for DNS zone. ///</summary> [Description(«Invalid operation for DNS zone.«)] DNS_ERROR_INVALID_ZONE_OPERATION = 0x00002583, /// <summary> /// Invalid DNS zone configuration. ///</summary> [Description(«Invalid DNS zone configuration.«)] DNS_ERROR_ZONE_CONFIGURATION_ERROR = 0x00002584, /// <summary> /// DNS zone has no start of authority (SOA) record. ///</summary> [Description(«DNS zone has no start of authority (SOA) record.«)] DNS_ERROR_ZONE_HAS_NO_SOA_RECORD = 0x00002585, /// <summary> /// DNS zone has no Name Server (NS) record. ///</summary> [Description(«DNS zone has no Name Server (NS) record.«)] DNS_ERROR_ZONE_HAS_NO_NS_RECORDS = 0x00002586, /// <summary> /// DNS zone is locked. ///</summary> [Description(«DNS zone is locked.«)] DNS_ERROR_ZONE_LOCKED = 0x00002587, /// <summary> /// DNS zone creation failed. ///</summary> [Description(«DNS zone creation failed.«)] DNS_ERROR_ZONE_CREATION_FAILED = 0x00002588, /// <summary> /// DNS zone already exists. ///</summary> [Description(«DNS zone already exists.«)] DNS_ERROR_ZONE_ALREADY_EXISTS = 0x00002589, /// <summary> /// DNS automatic zone already exists. ///</summary> [Description(«DNS automatic zone already exists.«)] DNS_ERROR_AUTOZONE_ALREADY_EXISTS = 0x0000258a, /// <summary> /// Invalid DNS zone type. ///</summary> [Description(«Invalid DNS zone type.«)] DNS_ERROR_INVALID_ZONE_TYPE = 0x0000258b, /// <summary> /// Secondary DNS zone requires master IP address. ///</summary> [Description(«Secondary DNS zone requires master IP address.«)] DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP = 0x0000258c, /// <summary> /// DNS zone not secondary. ///</summary> [Description(«DNS zone not secondary.«)] DNS_ERROR_ZONE_NOT_SECONDARY = 0x0000258d, /// <summary> /// Need secondary IP address. ///</summary> [Description(«Need secondary IP address.«)] DNS_ERROR_NEED_SECONDARY_ADDRESSES = 0x0000258e, /// <summary> /// WINS initialization failed. ///</summary> [Description(«WINS initialization failed.«)] DNS_ERROR_WINS_INIT_FAILED = 0x0000258f, /// <summary> /// Need WINS servers. ///</summary> [Description(«Need WINS servers.«)] DNS_ERROR_NEED_WINS_SERVERS = 0x00002590, /// <summary> /// NBTSTAT initialization call failed. ///</summary> [Description(«NBTSTAT initialization call failed.«)] DNS_ERROR_NBSTAT_INIT_FAILED = 0x00002591, /// <summary> /// Invalid delete of start of authority (SOA). ///</summary> [Description(«Invalid delete of start of authority (SOA).«)] DNS_ERROR_SOA_DELETE_INVALID = 0x00002592, /// <summary> /// A conditional forwarding zone already exists for that name. ///</summary> [Description(«A conditional forwarding zone already exists for that name.«)] DNS_ERROR_FORWARDER_ALREADY_EXISTS = 0x00002593, /// <summary> /// This zone must be configured with one or more master DNS server IP addresses. ///</summary> [Description(«This zone must be configured with one or more master DNS server IP addresses.«)] DNS_ERROR_ZONE_REQUIRES_MASTER_IP = 0x00002594, /// <summary> /// The operation cannot be performed because this zone is shut down. ///</summary> [Description(«The operation cannot be performed because this zone is shut down.«)] DNS_ERROR_ZONE_IS_SHUTDOWN = 0x00002595, /// <summary> /// This operation cannot be performed because the zone is currently being signed. Please try again later. ///</summary> [Description(«This operation cannot be performed because the zone is currently being signed. Please try again later.«)] DNS_ERROR_ZONE_LOCKED_FOR_SIGNING = 0x00002596, /// <summary> /// Primary DNS zone requires datafile. ///</summary> [Description(«Primary DNS zone requires datafile.«)] DNS_ERROR_PRIMARY_REQUIRES_DATAFILE = 0x000025b3, /// <summary> /// Invalid datafile name for DNS zone. ///</summary> [Description(«Invalid datafile name for DNS zone.«)] DNS_ERROR_INVALID_DATAFILE_NAME = 0x000025b4, /// <summary> /// Failed to open datafile for DNS zone. ///</summary> [Description(«Failed to open datafile for DNS zone.«)] DNS_ERROR_DATAFILE_OPEN_FAILURE = 0x000025b5, /// <summary> /// Failed to write datafile for DNS zone. ///</summary> [Description(«Failed to write datafile for DNS zone.«)] DNS_ERROR_FILE_WRITEBACK_FAILED = 0x000025b6, /// <summary> /// Failure while reading datafile for DNS zone. ///</summary> [Description(«Failure while reading datafile for DNS zone.«)] DNS_ERROR_DATAFILE_PARSING = 0x000025b7, /// <summary> /// DNS record does not exist. ///</summary> [Description(«DNS record does not exist.«)] DNS_ERROR_RECORD_DOES_NOT_EXIST = 0x000025e5, /// <summary> /// DNS record format error. ///</summary> [Description(«DNS record format error.«)] DNS_ERROR_RECORD_FORMAT = 0x000025e6, /// <summary> /// Node creation failure in DNS. ///</summary> [Description(«Node creation failure in DNS.«)] DNS_ERROR_NODE_CREATION_FAILED = 0x000025e7, /// <summary> /// Unknown DNS record type. ///</summary> [Description(«Unknown DNS record type.«)] DNS_ERROR_UNKNOWN_RECORD_TYPE = 0x000025e8, /// <summary> /// DNS record timed out. ///</summary> [Description(«DNS record timed out.«)] DNS_ERROR_RECORD_TIMED_OUT = 0x000025e9, /// <summary> /// Name not in DNS zone. ///</summary> [Description(«Name not in DNS zone.«)] DNS_ERROR_NAME_NOT_IN_ZONE = 0x000025ea, /// <summary> /// CNAME loop detected. ///</summary> [Description(«CNAME loop detected.«)] DNS_ERROR_CNAME_LOOP = 0x000025eb, /// <summary> /// Node is a CNAME DNS record. ///</summary> [Description(«Node is a CNAME DNS record.«)] DNS_ERROR_NODE_IS_CNAME = 0x000025ec, /// <summary> /// A CNAME record already exists for given name. ///</summary> [Description(«A CNAME record already exists for given name.«)] DNS_ERROR_CNAME_COLLISION = 0x000025ed, /// <summary> /// Record only at DNS zone root. ///</summary> [Description(«Record only at DNS zone root.«)] DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT = 0x000025ee, /// <summary> /// DNS record already exists. ///</summary> [Description(«DNS record already exists.«)] DNS_ERROR_RECORD_ALREADY_EXISTS = 0x000025ef, /// <summary> /// Secondary DNS zone data error. ///</summary> [Description(«Secondary DNS zone data error.«)] DNS_ERROR_SECONDARY_DATA = 0x000025f0, /// <summary> /// Could not create DNS cache data. ///</summary> [Description(«Could not create DNS cache data.«)] DNS_ERROR_NO_CREATE_CACHE_DATA = 0x000025f1, /// <summary> /// DNS name does not exist. ///</summary> [Description(«DNS name does not exist.«)] DNS_ERROR_NAME_DOES_NOT_EXIST = 0x000025f2, /// <summary> /// Could not create pointer (PTR) record. ///</summary> [Description(«Could not create pointer (PTR) record.«)] DNS_WARNING_PTR_CREATE_FAILED = 0x000025f3, /// <summary> /// DNS domain was undeleted. ///</summary> [Description(«DNS domain was undeleted.«)] DNS_WARNING_DOMAIN_UNDELETED = 0x000025f4, /// <summary> /// The directory service is unavailable. ///</summary> [Description(«The directory service is unavailable.«)] DNS_ERROR_DS_UNAVAILABLE = 0x000025f5, /// <summary> /// DNS zone already exists in the directory service. ///</summary> [Description(«DNS zone already exists in the directory service.«)] DNS_ERROR_DS_ZONE_ALREADY_EXISTS = 0x000025f6, /// <summary> /// DNS server not creating or reading the boot file for the directory service integrated DNS zone. ///</summary> [Description(«DNS server not creating or reading the boot file for the directory service integrated DNS zone.«)] DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE = 0x000025f7, /// <summary> /// Node is a DNAME DNS record. ///</summary> [Description(«Node is a DNAME DNS record.«)] DNS_ERROR_NODE_IS_DNAME = 0x000025f8, /// <summary> /// A DNAME record already exists for given name. ///</summary> [Description(«A DNAME record already exists for given name.«)] DNS_ERROR_DNAME_COLLISION = 0x000025f9, /// <summary> /// An alias loop has been detected with either CNAME or DNAME records. ///</summary> [Description(«An alias loop has been detected with either CNAME or DNAME records.«)] DNS_ERROR_ALIAS_LOOP = 0x000025fa, /// <summary> /// DNS AXFR (zone transfer) complete. ///</summary> [Description(«DNS AXFR (zone transfer) complete.«)] DNS_INFO_AXFR_COMPLETE = 0x00002617, /// <summary> /// DNS zone transfer failed. ///</summary> [Description(«DNS zone transfer failed.«)] DNS_ERROR_AXFR = 0x00002618, /// <summary> /// Added local WINS server. ///</summary> [Description(«Added local WINS server.«)] DNS_INFO_ADDED_LOCAL_WINS = 0x00002619, /// <summary> /// Secure update call needs to continue update request. ///</summary> [Description(«Secure update call needs to continue update request.«)] DNS_STATUS_CONTINUE_NEEDED = 0x00002649, /// <summary> /// TCP/IP network protocol not installed. ///</summary> [Description(«TCP/IP network protocol not installed.«)] DNS_ERROR_NO_TCPIP = 0x0000267b, /// <summary> /// No DNS servers configured for local system. ///</summary> [Description(«No DNS servers configured for local system.«)] DNS_ERROR_NO_DNS_SERVERS = 0x0000267c, /// <summary> /// The specified directory partition does not exist. ///</summary> [Description(«The specified directory partition does not exist.«)] DNS_ERROR_DP_DOES_NOT_EXIST = 0x000026ad, /// <summary> /// The specified directory partition already exists. ///</summary> [Description(«The specified directory partition already exists.«)] DNS_ERROR_DP_ALREADY_EXISTS = 0x000026ae, /// <summary> /// This DNS server is not enlisted in the specified directory partition. ///</summary> [Description(«This DNS server is not enlisted in the specified directory partition.«)] DNS_ERROR_DP_NOT_ENLISTED = 0x000026af, /// <summary> /// This DNS server is already enlisted in the specified directory partition. ///</summary> [Description(«This DNS server is already enlisted in the specified directory partition.«)] DNS_ERROR_DP_ALREADY_ENLISTED = 0x000026b0, /// <summary> /// The directory partition is not available at this time. Please wait a few minutes and try again. ///</summary> [Description(«The directory partition is not available at this time. Please wait a few minutes and try again.«)] DNS_ERROR_DP_NOT_AVAILABLE = 0x000026b1, /// <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> [Description(«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.«)] DNS_ERROR_DP_FSMO_ERROR = 0x000026b2, /// <summary> /// A blocking operation was interrupted by a call to WSACancelBlockingCall. ///</summary> [Description(«A blocking operation was interrupted by a call to WSACancelBlockingCall.«)] WSAEINTR = 0x00002714, /// <summary> /// The file handle supplied is not valid. ///</summary> [Description(«The file handle supplied is not valid.«)] WSAEBADF = 0x00002719, /// <summary> /// An attempt was made to access a socket in a way forbidden by its access permissions. ///</summary> [Description(«An attempt was made to access a socket in a way forbidden by its access permissions.«)] WSAEACCES = 0x0000271d, /// <summary> /// The system detected an invalid pointer address in attempting to use a pointer argument in a call. ///</summary> [Description(«The system detected an invalid pointer address in attempting to use a pointer argument in a call.«)] WSAEFAULT = 0x0000271e, /// <summary> /// An invalid argument was supplied. ///</summary> [Description(«An invalid argument was supplied.«)] WSAEINVAL = 0x00002726, /// <summary> /// Too many open sockets. ///</summary> [Description(«Too many open sockets.«)] WSAEMFILE = 0x00002728, /// <summary> /// A non-blocking socket operation could not be completed immediately. ///</summary> [Description(«A non-blocking socket operation could not be completed immediately.«)] WSAEWOULDBLOCK = 0x00002733, /// <summary> /// A blocking operation is currently executing. ///</summary> [Description(«A blocking operation is currently executing.«)] WSAEINPROGRESS = 0x00002734, /// <summary> /// An operation was attempted on a non-blocking socket that already had an operation in progress. ///</summary> [Description(«An operation was attempted on a non-blocking socket that already had an operation in progress.«)] WSAEALREADY = 0x00002735, /// <summary> /// An operation was attempted on something that is not a socket. ///</summary> [Description(«An operation was attempted on something that is not a socket.«)] WSAENOTSOCK = 0x00002736, /// <summary> /// A required address was omitted from an operation on a socket. ///</summary> [Description(«A required address was omitted from an operation on a socket.«)] WSAEDESTADDRREQ = 0x00002737, /// <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> [Description(«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.«)] WSAEMSGSIZE = 0x00002738, /// <summary> /// A protocol was specified in the socket function call that does not support the semantics of the socket type requested. ///</summary> [Description(«A protocol was specified in the socket function call that does not support the semantics of the socket type requested.«)] WSAEPROTOTYPE = 0x00002739, /// <summary> /// An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call. ///</summary> [Description(«An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call.«)] WSAENOPROTOOPT = 0x0000273a, /// <summary> /// The requested protocol has not been configured into the system, or no implementation for it exists. ///</summary> [Description(«The requested protocol has not been configured into the system, or no implementation for it exists.«)] WSAEPROTONOSUPPORT = 0x0000273b, /// <summary> /// The support for the specified socket type does not exist in this address family. ///</summary> [Description(«The support for the specified socket type does not exist in this address family.«)] WSAESOCKTNOSUPPORT = 0x0000273c, /// <summary> /// The attempted operation is not supported for the type of object referenced. ///</summary> [Description(«The attempted operation is not supported for the type of object referenced.«)] WSAEOPNOTSUPP = 0x0000273d, /// <summary> /// The protocol family has not been configured into the system or no implementation for it exists. ///</summary> [Description(«The protocol family has not been configured into the system or no implementation for it exists.«)] WSAEPFNOSUPPORT = 0x0000273e, /// <summary> /// An address incompatible with the requested protocol was used. ///</summary> [Description(«An address incompatible with the requested protocol was used.«)] WSAEAFNOSUPPORT = 0x0000273f, /// <summary> /// Only one usage of each socket address (protocol/network address/port) is normally permitted. ///</summary> [Description(«Only one usage of each socket address (protocol/network address/port) is normally permitted.«)] WSAEADDRINUSE = 0x00002740, /// <summary> /// The requested address is not valid in its context. ///</summary> [Description(«The requested address is not valid in its context.«)] WSAEADDRNOTAVAIL = 0x00002741, /// <summary> /// A socket operation encountered a dead network. ///</summary> [Description(«A socket operation encountered a dead network.«)] WSAENETDOWN = 0x00002742, /// <summary> /// A socket operation was attempted to an unreachable network. ///</summary> [Description(«A socket operation was attempted to an unreachable network.«)] WSAENETUNREACH = 0x00002743, /// <summary> /// The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. ///</summary> [Description(«The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress.«)] WSAENETRESET = 0x00002744, /// <summary> /// An established connection was aborted by the software in your host machine. ///</summary> [Description(«An established connection was aborted by the software in your host machine.«)] WSAECONNABORTED = 0x00002745, /// <summary> /// An existing connection was forcibly closed by the remote host. ///</summary> [Description(«An existing connection was forcibly closed by the remote host.«)] WSAECONNRESET = 0x00002746, /// <summary> /// An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. ///</summary> [Description(«An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.«)] WSAENOBUFS = 0x00002747, /// <summary> /// A connect request was made on an already connected socket. ///</summary> [Description(«A connect request was made on an already connected socket.«)] WSAEISCONN = 0x00002748, /// <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> [Description(«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.«)] WSAENOTCONN = 0x00002749, /// <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> [Description(«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.«)] WSAESHUTDOWN = 0x0000274a, /// <summary> /// Too many references to some kernel object. ///</summary> [Description(«Too many references to some kernel object.«)] WSAETOOMANYREFS = 0x0000274b, /// <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> [Description(«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.«)] WSAETIMEDOUT = 0x0000274c, /// <summary> /// No connection could be made because the target machine actively refused it. ///</summary> [Description(«No connection could be made because the target machine actively refused it.«)] WSAECONNREFUSED = 0x0000274d, /// <summary> /// Cannot translate name. ///</summary> [Description(«Cannot translate name.«)] WSAELOOP = 0x0000274e, /// <summary> /// Name component or name was too long. ///</summary> [Description(«Name component or name was too long.«)] WSAENAMETOOLONG = 0x0000274f, /// <summary> /// A socket operation failed because the destination host was down. ///</summary> [Description(«A socket operation failed because the destination host was down.«)] WSAEHOSTDOWN = 0x00002750, /// <summary> /// A socket operation was attempted to an unreachable host. ///</summary> [Description(«A socket operation was attempted to an unreachable host.«)] WSAEHOSTUNREACH = 0x00002751, /// <summary> /// Cannot remove a directory that is not empty. ///</summary> [Description(«Cannot remove a directory that is not empty.«)] WSAENOTEMPTY = 0x00002752, /// <summary> /// A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously. ///</summary> [Description(«A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously.«)] WSAEPROCLIM = 0x00002753, /// <summary> /// Ran out of quota. ///</summary> [Description(«Ran out of quota.«)] WSAEUSERS = 0x00002754, /// <summary> /// Ran out of disk quota. ///</summary> [Description(«Ran out of disk quota.«)] WSAEDQUOT = 0x00002755, /// <summary> /// File handle reference is no longer available. ///</summary> [Description(«File handle reference is no longer available.«)] WSAESTALE = 0x00002756, /// <summary> /// Item is not available locally. ///</summary> [Description(«Item is not available locally.«)] WSAEREMOTE = 0x00002757, /// <summary> /// WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable. ///</summary> [Description(«WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable.«)] WSASYSNOTREADY = 0x0000276b, /// <summary> /// The Windows Sockets version requested is not supported. ///</summary> [Description(«The Windows Sockets version requested is not supported.«)] WSAVERNOTSUPPORTED = 0x0000276c, /// <summary> /// Either the application has not called WSAStartup, or WSAStartup failed. ///</summary> [Description(«Either the application has not called WSAStartup, or WSAStartup failed.«)] WSANOTINITIALISED = 0x0000276d, /// <summary> /// Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence. ///</summary> [Description(«Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence.«)] WSAEDISCON = 0x00002775, /// <summary> /// No more results can be returned by WSALookupServiceNext. ///</summary> [Description(«No more results can be returned by WSALookupServiceNext.«)] WSAENOMORE = 0x00002776, /// <summary> /// A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled. ///</summary> [Description(«A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.«)] WSAECANCELLED = 0x00002777, /// <summary> /// The procedure call table is invalid. ///</summary> [Description(«The procedure call table is invalid.«)] WSAEINVALIDPROCTABLE = 0x00002778, /// <summary> /// The requested service provider is invalid. ///</summary> [Description(«The requested service provider is invalid.«)] WSAEINVALIDPROVIDER = 0x00002779, /// <summary> /// The requested service provider could not be loaded or initialized. ///</summary> [Description(«The requested service provider could not be loaded or initialized.«)] WSAEPROVIDERFAILEDINIT = 0x0000277a, /// <summary> /// A system call has failed. ///</summary> [Description(«A system call has failed.«)] WSASYSCALLFAILURE = 0x0000277b, /// <summary> /// No such service is known. The service cannot be found in the specified name space. ///</summary> [Description(«No such service is known. The service cannot be found in the specified name space.«)] WSASERVICE_NOT_FOUND = 0x0000277c, /// <summary> /// The specified class was not found. ///</summary> [Description(«The specified class was not found.«)] WSATYPE_NOT_FOUND = 0x0000277d, /// <summary> /// No more results can be returned by WSALookupServiceNext. ///</summary> [Description(«No more results can be returned by WSALookupServiceNext.«)] WSA_E_NO_MORE = 0x0000277e, /// <summary> /// A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled. ///</summary> [Description(«A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.«)] WSA_E_CANCELLED = 0x0000277f, /// <summary> /// A database query failed because it was actively refused. ///</summary> [Description(«A database query failed because it was actively refused.«)] WSAEREFUSED = 0x00002780, /// <summary> /// No such host is known. ///</summary> [Description(«No such host is known.«)] WSAHOST_NOT_FOUND = 0x00002af9, /// <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> [Description(«This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server.«)] WSATRY_AGAIN = 0x00002afa, /// <summary> /// A non-recoverable error occurred during a database lookup. ///</summary> [Description(«A non-recoverable error occurred during a database lookup.«)] WSANO_RECOVERY = 0x00002afb, /// <summary> /// The requested name is valid, but no data of the requested type was found. ///</summary> [Description(«The requested name is valid, but no data of the requested type was found.«)] WSANO_DATA = 0x00002afc, /// <summary> /// At least one reserve has arrived. ///</summary> [Description(«At least one reserve has arrived.«)] WSA_QOS_RECEIVERS = 0x00002afd, /// <summary> /// At least one path has arrived. ///</summary> [Description(«At least one path has arrived.«)] WSA_QOS_SENDERS = 0x00002afe, /// <summary> /// There are no senders. ///</summary> [Description(«There are no senders.«)] WSA_QOS_NO_SENDERS = 0x00002aff, /// <summary> /// There are no receivers. ///</summary> [Description(«There are no receivers.«)] WSA_QOS_NO_RECEIVERS = 0x00002b00, /// <summary> /// Reserve has been confirmed. ///</summary> [Description(«Reserve has been confirmed.«)] WSA_QOS_REQUEST_CONFIRMED = 0x00002b01, /// <summary> /// Error due to lack of resources. ///</summary> [Description(«Error due to lack of resources.«)] WSA_QOS_ADMISSION_FAILURE = 0x00002b02, /// <summary> /// Rejected for administrative reasons — bad credentials. ///</summary> [Description(«Rejected for administrative reasons — bad credentials.«)] WSA_QOS_POLICY_FAILURE = 0x00002b03, /// <summary> /// Unknown or conflicting style. ///</summary> [Description(«Unknown or conflicting style.«)] WSA_QOS_BAD_STYLE = 0x00002b04, /// <summary> /// Problem with some part of the filterspec or providerspecific buffer in general. ///</summary> [Description(«Problem with some part of the filterspec or providerspecific buffer in general.«)] WSA_QOS_BAD_OBJECT = 0x00002b05, /// <summary> /// Problem with some part of the flowspec. ///</summary> [Description(«Problem with some part of the flowspec.«)] WSA_QOS_TRAFFIC_CTRL_ERROR = 0x00002b06, /// <summary> /// General QOS error. ///</summary> [Description(«General QOS error.«)] WSA_QOS_GENERIC_ERROR = 0x00002b07, /// <summary> /// An invalid or unrecognized service type was found in the flowspec. ///</summary> [Description(«An invalid or unrecognized service type was found in the flowspec.«)] WSA_QOS_ESERVICETYPE = 0x00002b08, /// <summary> /// An invalid or inconsistent flowspec was found in the QOS structure. ///</summary> [Description(«An invalid or inconsistent flowspec was found in the QOS structure.«)] WSA_QOS_EFLOWSPEC = 0x00002b09, /// <summary> /// Invalid QOS provider-specific buffer. ///</summary> [Description(«Invalid QOS provider-specific buffer.«)] WSA_QOS_EPROVSPECBUF = 0x00002b0a, /// <summary> /// An invalid QOS filter style was used. ///</summary> [Description(«An invalid QOS filter style was used.«)] WSA_QOS_EFILTERSTYLE = 0x00002b0b, /// <summary> /// An invalid QOS filter type was used. ///</summary> [Description(«An invalid QOS filter type was used.«)] WSA_QOS_EFILTERTYPE = 0x00002b0c, /// <summary> /// An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR. ///</summary> [Description(«An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR.«)] WSA_QOS_EFILTERCOUNT = 0x00002b0d, /// <summary> /// An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer. ///</summary> [Description(«An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer.«)] WSA_QOS_EOBJLENGTH = 0x00002b0e, /// <summary> /// An incorrect number of flow descriptors was specified in the QOS structure. ///</summary> [Description(«An incorrect number of flow descriptors was specified in the QOS structure.«)] WSA_QOS_EFLOWCOUNT = 0x00002b0f, /// <summary> /// An unrecognized object was found in the QOS provider-specific buffer. ///</summary> [Description(«An unrecognized object was found in the QOS provider-specific buffer.«)] WSA_QOS_EUNKOWNPSOBJ = 0x00002b10, /// <summary> /// An invalid policy object was found in the QOS provider-specific buffer. ///</summary> [Description(«An invalid policy object was found in the QOS provider-specific buffer.«)] WSA_QOS_EPOLICYOBJ = 0x00002b11, /// <summary> /// An invalid QOS flow descriptor was found in the flow descriptor list. ///</summary> [Description(«An invalid QOS flow descriptor was found in the flow descriptor list.«)] WSA_QOS_EFLOWDESC = 0x00002b12, /// <summary> /// An invalid or inconsistent flowspec was found in the QOS provider specific buffer. ///</summary> [Description(«An invalid or inconsistent flowspec was found in the QOS provider specific buffer.«)] WSA_QOS_EPSFLOWSPEC = 0x00002b13, /// <summary> /// An invalid FILTERSPEC was found in the QOS provider-specific buffer. ///</summary> [Description(«An invalid FILTERSPEC was found in the QOS provider-specific buffer.«)] WSA_QOS_EPSFILTERSPEC = 0x00002b14, /// <summary> /// An invalid shape discard mode object was found in the QOS provider specific buffer. ///</summary> [Description(«An invalid shape discard mode object was found in the QOS provider specific buffer.«)] WSA_QOS_ESDMODEOBJ = 0x00002b15, /// <summary> /// An invalid shaping rate object was found in the QOS provider-specific buffer. ///</summary> [Description(«An invalid shaping rate object was found in the QOS provider-specific buffer.«)] WSA_QOS_ESHAPERATEOBJ = 0x00002b16, /// <summary> /// A reserved policy element was found in the QOS provider-specific buffer. ///</summary> [Description(«A reserved policy element was found in the QOS provider-specific buffer.«)] WSA_QOS_RESERVED_PETYPE = 0x00002b17, /// <summary> /// No such host is known securely. ///</summary> [Description(«No such host is known securely.«)] WSA_SECURE_HOST_NOT_FOUND = 0x00002b18, /// <summary> /// Name based IPSEC policy could not be added. ///</summary> [Description(«Name based IPSEC policy could not be added.«)] WSA_IPSEC_NAME_POLICY_ERROR = 0x00002b19, /// <summary> /// See Internet Error Codes and WinInet.h. ///</summary> [Description(«See Internet Error Codes and WinInet.h.«)] ERROR_INTERNET_ * = 0x00002ee0, /// <summary> /// The specified quick mode policy already exists. ///</summary> [Description(«The specified quick mode policy already exists.«)] ERROR_IPSEC_QM_POLICY_EXISTS = 0x000032c8, /// <summary> /// The specified quick mode policy was not found. ///</summary> [Description(«The specified quick mode policy was not found.«)] ERROR_IPSEC_QM_POLICY_NOT_FOUND = 0x000032c9, /// <summary> /// The specified quick mode policy is being used. ///</summary> [Description(«The specified quick mode policy is being used.«)] ERROR_IPSEC_QM_POLICY_IN_USE = 0x000032ca, /// <summary> /// The specified main mode policy already exists. ///</summary> [Description(«The specified main mode policy already exists.«)] ERROR_IPSEC_MM_POLICY_EXISTS = 0x000032cb, /// <summary> /// The specified main mode policy was not found. ///</summary> [Description(«The specified main mode policy was not found.«)] ERROR_IPSEC_MM_POLICY_NOT_FOUND = 0x000032cc, /// <summary> /// The specified main mode policy is being used. ///</summary> [Description(«The specified main mode policy is being used.«)] ERROR_IPSEC_MM_POLICY_IN_USE = 0x000032cd, /// <summary> /// The specified main mode filter already exists. ///</summary> [Description(«The specified main mode filter already exists.«)] ERROR_IPSEC_MM_FILTER_EXISTS = 0x000032ce, /// <summary> /// The specified main mode filter was not found. ///</summary> [Description(«The specified main mode filter was not found.«)] ERROR_IPSEC_MM_FILTER_NOT_FOUND = 0x000032cf, /// <summary> /// The specified transport mode filter already exists. ///</summary> [Description(«The specified transport mode filter already exists.«)] ERROR_IPSEC_TRANSPORT_FILTER_EXISTS = 0x000032d0, /// <summary> /// The specified transport mode filter does not exist. ///</summary> [Description(«The specified transport mode filter does not exist.«)] ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND = 0x000032d1, /// <summary> /// The specified main mode authentication list exists. ///</summary> [Description(«The specified main mode authentication list exists.«)] ERROR_IPSEC_MM_AUTH_EXISTS = 0x000032d2, /// <summary> /// The specified main mode authentication list was not found. ///</summary> [Description(«The specified main mode authentication list was not found.«)] ERROR_IPSEC_MM_AUTH_NOT_FOUND = 0x000032d3, /// <summary> /// The specified main mode authentication list is being used. ///</summary> [Description(«The specified main mode authentication list is being used.«)] ERROR_IPSEC_MM_AUTH_IN_USE = 0x000032d4, /// <summary> /// The specified default main mode policy was not found. ///</summary> [Description(«The specified default main mode policy was not found.«)] ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND = 0x000032d5, /// <summary> /// The specified default main mode authentication list was not found. ///</summary> [Description(«The specified default main mode authentication list was not found.«)] ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND = 0x000032d6, /// <summary> /// The specified default quick mode policy was not found. ///</summary> [Description(«The specified default quick mode policy was not found.«)] ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND = 0x000032d7, /// <summary> /// The specified tunnel mode filter exists. ///</summary> [Description(«The specified tunnel mode filter exists.«)] ERROR_IPSEC_TUNNEL_FILTER_EXISTS = 0x000032d8, /// <summary> /// The specified tunnel mode filter was not found. ///</summary> [Description(«The specified tunnel mode filter was not found.«)] ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND = 0x000032d9, /// <summary> /// The Main Mode filter is pending deletion. ///</summary> [Description(«The Main Mode filter is pending deletion.«)] ERROR_IPSEC_MM_FILTER_PENDING_DELETION = 0x000032da, /// <summary> /// The transport filter is pending deletion. ///</summary> [Description(«The transport filter is pending deletion.«)] ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION = 0x000032db, /// <summary> /// The tunnel filter is pending deletion. ///</summary> [Description(«The tunnel filter is pending deletion.«)] ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION = 0x000032dc, /// <summary> /// The Main Mode policy is pending deletion. ///</summary> [Description(«The Main Mode policy is pending deletion.«)] ERROR_IPSEC_MM_POLICY_PENDING_DELETION = 0x000032dd, /// <summary> /// The Main Mode authentication bundle is pending deletion. ///</summary> [Description(«The Main Mode authentication bundle is pending deletion.«)] ERROR_IPSEC_MM_AUTH_PENDING_DELETION = 0x000032de, /// <summary> /// The Quick Mode policy is pending deletion. ///</summary> [Description(«The Quick Mode policy is pending deletion.«)] ERROR_IPSEC_QM_POLICY_PENDING_DELETION = 0x000032df, /// <summary> /// The Main Mode policy was successfully added, but some of the requested offers are not supported. ///</summary> [Description(«The Main Mode policy was successfully added, but some of the requested offers are not supported.«)] WARNING_IPSEC_MM_POLICY_PRUNED = 0x000032e0, /// <summary> /// The Quick Mode policy was successfully added, but some of the requested offers are not supported. ///</summary> [Description(«The Quick Mode policy was successfully added, but some of the requested offers are not supported.«)] WARNING_IPSEC_QM_POLICY_PRUNED = 0x000032e1, /// <summary> /// ERROR_IPSEC_IKE_NEG_STATUS_BEGIN ///</summary> [Description(«ERROR_IPSEC_IKE_NEG_STATUS_BEGIN«)] ERROR_IPSEC_IKE_NEG_STATUS_BEGIN = 0x000035e8, /// <summary> /// IKE authentication credentials are unacceptable. ///</summary> [Description(«IKE authentication credentials are unacceptable.«)] ERROR_IPSEC_IKE_AUTH_FAIL = 0x000035e9, /// <summary> /// IKE security attributes are unacceptable. ///</summary> [Description(«IKE security attributes are unacceptable.«)] ERROR_IPSEC_IKE_ATTRIB_FAIL = 0x000035ea, /// <summary> /// IKE Negotiation in progress. ///</summary> [Description(«IKE Negotiation in progress.«)] ERROR_IPSEC_IKE_NEGOTIATION_PENDING = 0x000035eb, /// <summary> /// General processing error. ///</summary> [Description(«General processing error.«)] ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR = 0x000035ec, /// <summary> /// Negotiation timed out. ///</summary> [Description(«Negotiation timed out.«)] ERROR_IPSEC_IKE_TIMED_OUT = 0x000035ed, /// <summary> /// IKE failed to find valid machine certificate. Contact your Network Security Administrator about installing a valid certificate in the appropriate Certificate Store. ///</summary> [Description(«IKE failed to find valid machine certificate. Contact your Network Security Administrator about installing a valid certificate in the appropriate Certificate Store.«)] ERROR_IPSEC_IKE_NO_CERT = 0x000035ee, /// <summary> /// IKE SA deleted by peer before establishment completed. ///</summary> [Description(«IKE SA deleted by peer before establishment completed.«)] ERROR_IPSEC_IKE_SA_DELETED = 0x000035ef, /// <summary> /// IKE SA deleted before establishment completed. ///</summary> [Description(«IKE SA deleted before establishment completed.«)] ERROR_IPSEC_IKE_SA_REAPED = 0x000035f0, /// <summary> /// Negotiation request sat in Queue too long. ///</summary> [Description(«Negotiation request sat in Queue too long.«)] ERROR_IPSEC_IKE_MM_ACQUIRE_DROP = 0x000035f1, /// <summary> /// Negotiation request sat in Queue too long. ///</summary> [Description(«Negotiation request sat in Queue too long.«)] ERROR_IPSEC_IKE_QM_ACQUIRE_DROP = 0x000035f2, /// <summary> /// Negotiation request sat in Queue too long. ///</summary> [Description(«Negotiation request sat in Queue too long.«)] ERROR_IPSEC_IKE_QUEUE_DROP_MM = 0x000035f3, /// <summary> /// Negotiation request sat in Queue too long. ///</summary> [Description(«Negotiation request sat in Queue too long.«)] ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM = 0x000035f4, /// <summary> /// No response from peer. ///</summary> [Description(«No response from peer.«)] ERROR_IPSEC_IKE_DROP_NO_RESPONSE = 0x000035f5, /// <summary> /// Negotiation took too long. ///</summary> [Description(«Negotiation took too long.«)] ERROR_IPSEC_IKE_MM_DELAY_DROP = 0x000035f6, /// <summary> /// Negotiation took too long. ///</summary> [Description(«Negotiation took too long.«)] ERROR_IPSEC_IKE_QM_DELAY_DROP = 0x000035f7, /// <summary> /// Unknown error occurred. ///</summary> [Description(«Unknown error occurred.«)] ERROR_IPSEC_IKE_ERROR = 0x000035f8, /// <summary> /// Certificate Revocation Check failed. ///</summary> [Description(«Certificate Revocation Check failed.«)] ERROR_IPSEC_IKE_CRL_FAILED = 0x000035f9, /// <summary> /// Invalid certificate key usage. ///</summary> [Description(«Invalid certificate key usage.«)] ERROR_IPSEC_IKE_INVALID_KEY_USAGE = 0x000035fa, /// <summary> /// Invalid certificate type. ///</summary> [Description(«Invalid certificate type.«)] ERROR_IPSEC_IKE_INVALID_CERT_TYPE = 0x000035fb, /// <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> [Description(«IKE negotiation failed because the machine certificate used does not have a private key. IPsec certificates require a private key. Contact your Network Security administrator about replacing with a certificate that has a private key.«)] ERROR_IPSEC_IKE_NO_PRIVATE_KEY = 0x000035fc, /// <summary> /// Simultaneous rekeys were detected. ///</summary> [Description(«Simultaneous rekeys were detected.«)] ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY = 0x000035fd, /// <summary> /// Failure in Diffie-Hellman computation. ///</summary> [Description(«Failure in Diffie-Hellman computation.«)] ERROR_IPSEC_IKE_DH_FAIL = 0x000035fe, /// <summary> /// Don’t know how to process critical payload. ///</summary> [Description(«Don’t know how to process critical payload.«)] ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED = 0x000035ff, /// <summary> /// Invalid header. ///</summary> [Description(«Invalid header.«)] ERROR_IPSEC_IKE_INVALID_HEADER = 0x00003600, /// <summary> /// No policy configured. ///</summary> [Description(«No policy configured.«)] ERROR_IPSEC_IKE_NO_POLICY = 0x00003601, /// <summary> /// Failed to verify signature. ///</summary> [Description(«Failed to verify signature.«)] ERROR_IPSEC_IKE_INVALID_SIGNATURE = 0x00003602, /// <summary> /// Failed to authenticate using Kerberos. ///</summary> [Description(«Failed to authenticate using Kerberos.«)] ERROR_IPSEC_IKE_KERBEROS_ERROR = 0x00003603, /// <summary> /// Peer’s certificate did not have a public key. ///</summary> [Description(«Peer’s certificate did not have a public key.«)] ERROR_IPSEC_IKE_NO_PUBLIC_KEY = 0x00003604, /// <summary> /// Error processing error payload. ///</summary> [Description(«Error processing error payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR = 0x00003605, /// <summary> /// Error processing SA payload. ///</summary> [Description(«Error processing SA payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR_SA = 0x00003606, /// <summary> /// Error processing Proposal payload. ///</summary> [Description(«Error processing Proposal payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR_PROP = 0x00003607, /// <summary> /// Error processing Transform payload. ///</summary> [Description(«Error processing Transform payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR_TRANS = 0x00003608, /// <summary> /// Error processing KE payload. ///</summary> [Description(«Error processing KE payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR_KE = 0x00003609, /// <summary> /// Error processing ID payload. ///</summary> [Description(«Error processing ID payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR_ID = 0x0000360a, /// <summary> /// Error processing Cert payload. ///</summary> [Description(«Error processing Cert payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR_CERT = 0x0000360b, /// <summary> /// Error processing Certificate Request payload. ///</summary> [Description(«Error processing Certificate Request payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ = 0x0000360c, /// <summary> /// Error processing Hash payload. ///</summary> [Description(«Error processing Hash payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR_HASH = 0x0000360d, /// <summary> /// Error processing Signature payload. ///</summary> [Description(«Error processing Signature payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR_SIG = 0x0000360e, /// <summary> /// Error processing Nonce payload. ///</summary> [Description(«Error processing Nonce payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR_NONCE = 0x0000360f, /// <summary> /// Error processing Notify payload. ///</summary> [Description(«Error processing Notify payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY = 0x00003610, /// <summary> /// Error processing Delete Payload. ///</summary> [Description(«Error processing Delete Payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR_DELETE = 0x00003611, /// <summary> /// Error processing VendorId payload. ///</summary> [Description(«Error processing VendorId payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR = 0x00003612, /// <summary> /// Invalid payload received. ///</summary> [Description(«Invalid payload received.«)] ERROR_IPSEC_IKE_INVALID_PAYLOAD = 0x00003613, /// <summary> /// Soft SA loaded. ///</summary> [Description(«Soft SA loaded.«)] ERROR_IPSEC_IKE_LOAD_SOFT_SA = 0x00003614, /// <summary> /// Soft SA torn down. ///</summary> [Description(«Soft SA torn down.«)] ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN = 0x00003615, /// <summary> /// Invalid cookie received. ///</summary> [Description(«Invalid cookie received.«)] ERROR_IPSEC_IKE_INVALID_COOKIE = 0x00003616, /// <summary> /// Peer failed to send valid machine certificate. ///</summary> [Description(«Peer failed to send valid machine certificate.«)] ERROR_IPSEC_IKE_NO_PEER_CERT = 0x00003617, /// <summary> /// Certification Revocation check of peer’s certificate failed. ///</summary> [Description(«Certification Revocation check of peer’s certificate failed.«)] ERROR_IPSEC_IKE_PEER_CRL_FAILED = 0x00003618, /// <summary> /// New policy invalidated SAs formed with old policy. ///</summary> [Description(«New policy invalidated SAs formed with old policy.«)] ERROR_IPSEC_IKE_POLICY_CHANGE = 0x00003619, /// <summary> /// There is no available Main Mode IKE policy. ///</summary> [Description(«There is no available Main Mode IKE policy.«)] ERROR_IPSEC_IKE_NO_MM_POLICY = 0x0000361a, /// <summary> /// Failed to enabled TCB privilege. ///</summary> [Description(«Failed to enabled TCB privilege.«)] ERROR_IPSEC_IKE_NOTCBPRIV = 0x0000361b, /// <summary> /// Failed to load SECURITY.DLL. ///</summary> [Description(«Failed to load SECURITY.DLL.«)] ERROR_IPSEC_IKE_SECLOADFAIL = 0x0000361c, /// <summary> /// Failed to obtain security function table dispatch address from SSPI. ///</summary> [Description(«Failed to obtain security function table dispatch address from SSPI.«)] ERROR_IPSEC_IKE_FAILSSPINIT = 0x0000361d, /// <summary> /// Failed to query Kerberos package to obtain max token size. ///</summary> [Description(«Failed to query Kerberos package to obtain max token size.«)] ERROR_IPSEC_IKE_FAILQUERYSSP = 0x0000361e, /// <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> [Description(«Failed to obtain Kerberos server credentials for ISAKMP/ERROR_IPSEC_IKE service. Kerberos authentication will not function. The most likely reason for this is lack of domain membership. This is normal if your computer is a member of a workgroup.«)] ERROR_IPSEC_IKE_SRVACQFAIL = 0x0000361f, /// <summary> /// Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes). ///</summary> [Description(«Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes).«)] ERROR_IPSEC_IKE_SRVQUERYCRED = 0x00003620, /// <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> [Description(«Failed to obtain new SPI for the inbound SA from IPsec driver. The most common cause for this is that the driver does not have the correct filter. Check your policy to verify the filters.«)] ERROR_IPSEC_IKE_GETSPIFAIL = 0x00003621, /// <summary> /// Given filter is invalid. ///</summary> [Description(«Given filter is invalid.«)] ERROR_IPSEC_IKE_INVALID_FILTER = 0x00003622, /// <summary> /// Memory allocation failed. ///</summary> [Description(«Memory allocation failed.«)] ERROR_IPSEC_IKE_OUT_OF_MEMORY = 0x00003623, /// <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> [Description(«Failed to add Security Association to IPsec Driver. The most common cause for this is if the IKE negotiation took too long to complete. If the problem persists, reduce the load on the faulting machine.«)] ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED = 0x00003624, /// <summary> /// Invalid policy. ///</summary> [Description(«Invalid policy.«)] ERROR_IPSEC_IKE_INVALID_POLICY = 0x00003625, /// <summary> /// Invalid DOI. ///</summary> [Description(«Invalid DOI.«)] ERROR_IPSEC_IKE_UNKNOWN_DOI = 0x00003626, /// <summary> /// Invalid situation. ///</summary> [Description(«Invalid situation.«)] ERROR_IPSEC_IKE_INVALID_SITUATION = 0x00003627, /// <summary> /// Diffie-Hellman failure. ///</summary> [Description(«Diffie-Hellman failure.«)] ERROR_IPSEC_IKE_DH_FAILURE = 0x00003628, /// <summary> /// Invalid Diffie-Hellman group. ///</summary> [Description(«Invalid Diffie-Hellman group.«)] ERROR_IPSEC_IKE_INVALID_GROUP = 0x00003629, /// <summary> /// Error encrypting payload. ///</summary> [Description(«Error encrypting payload.«)] ERROR_IPSEC_IKE_ENCRYPT = 0x0000362a, /// <summary> /// Error decrypting payload. ///</summary> [Description(«Error decrypting payload.«)] ERROR_IPSEC_IKE_DECRYPT = 0x0000362b, /// <summary> /// Policy match error. ///</summary> [Description(«Policy match error.«)] ERROR_IPSEC_IKE_POLICY_MATCH = 0x0000362c, /// <summary> /// Unsupported ID. ///</summary> [Description(«Unsupported ID.«)] ERROR_IPSEC_IKE_UNSUPPORTED_ID = 0x0000362d, /// <summary> /// Hash verification failed. ///</summary> [Description(«Hash verification failed.«)] ERROR_IPSEC_IKE_INVALID_HASH = 0x0000362e, /// <summary> /// Invalid hash algorithm. ///</summary> [Description(«Invalid hash algorithm.«)] ERROR_IPSEC_IKE_INVALID_HASH_ALG = 0x0000362f, /// <summary> /// Invalid hash size. ///</summary> [Description(«Invalid hash size.«)] ERROR_IPSEC_IKE_INVALID_HASH_SIZE = 0x00003630, /// <summary> /// Invalid encryption algorithm. ///</summary> [Description(«Invalid encryption algorithm.«)] ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG = 0x00003631, /// <summary> /// Invalid authentication algorithm. ///</summary> [Description(«Invalid authentication algorithm.«)] ERROR_IPSEC_IKE_INVALID_AUTH_ALG = 0x00003632, /// <summary> /// Invalid certificate signature. ///</summary> [Description(«Invalid certificate signature.«)] ERROR_IPSEC_IKE_INVALID_SIG = 0x00003633, /// <summary> /// Load failed. ///</summary> [Description(«Load failed.«)] ERROR_IPSEC_IKE_LOAD_FAILED = 0x00003634, /// <summary> /// Deleted via RPC call. ///</summary> [Description(«Deleted via RPC call.«)] ERROR_IPSEC_IKE_RPC_DELETE = 0x00003635, /// <summary> /// Temporary state created to perform reinitialization. This is not a real failure. ///</summary> [Description(«Temporary state created to perform reinitialization. This is not a real failure.«)] ERROR_IPSEC_IKE_BENIGN_REINIT = 0x00003636, /// <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> [Description(«The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value. Please fix the policy on the peer machine.«)] ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY = 0x00003637, /// <summary> /// The recipient cannot handle version of IKE specified in the header. ///</summary> [Description(«The recipient cannot handle version of IKE specified in the header.«)] ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION = 0x00003638, /// <summary> /// Key length in certificate is too small for configured security requirements. ///</summary> [Description(«Key length in certificate is too small for configured security requirements.«)] ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN = 0x00003639, /// <summary> /// Max number of established MM SAs to peer exceeded. ///</summary> [Description(«Max number of established MM SAs to peer exceeded.«)] ERROR_IPSEC_IKE_MM_LIMIT = 0x0000363a, /// <summary> /// IKE received a policy that disables negotiation. ///</summary> [Description(«IKE received a policy that disables negotiation.«)] ERROR_IPSEC_IKE_NEGOTIATION_DISABLED = 0x0000363b, /// <summary> /// Reached maximum quick mode limit for the main mode. New main mode will be started. ///</summary> [Description(«Reached maximum quick mode limit for the main mode. New main mode will be started.«)] ERROR_IPSEC_IKE_QM_LIMIT = 0x0000363c, /// <summary> /// Main mode SA lifetime expired or peer sent a main mode delete. ///</summary> [Description(«Main mode SA lifetime expired or peer sent a main mode delete.«)] ERROR_IPSEC_IKE_MM_EXPIRED = 0x0000363d, /// <summary> /// Main mode SA assumed to be invalid because peer stopped responding. ///</summary> [Description(«Main mode SA assumed to be invalid because peer stopped responding.«)] ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID = 0x0000363e, /// <summary> /// Certificate doesn’t chain to a trusted root in IPsec policy. ///</summary> [Description(«Certificate doesn’t chain to a trusted root in IPsec policy.«)] ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH = 0x0000363f, /// <summary> /// Received unexpected message ID. ///</summary> [Description(«Received unexpected message ID.«)] ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID = 0x00003640, /// <summary> /// Received invalid authentication offers. ///</summary> [Description(«Received invalid authentication offers.«)] ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD = 0x00003641, /// <summary> /// Sent DoS cookie notify to initiator. ///</summary> [Description(«Sent DoS cookie notify to initiator.«)] ERROR_IPSEC_IKE_DOS_COOKIE_SENT = 0x00003642, /// <summary> /// IKE service is shutting down. ///</summary> [Description(«IKE service is shutting down.«)] ERROR_IPSEC_IKE_SHUTTING_DOWN = 0x00003643, /// <summary> /// Could not verify binding between CGA address and certificate. ///</summary> [Description(«Could not verify binding between CGA address and certificate.«)] ERROR_IPSEC_IKE_CGA_AUTH_FAILED = 0x00003644, /// <summary> /// Error processing NatOA payload. ///</summary> [Description(«Error processing NatOA payload.«)] ERROR_IPSEC_IKE_PROCESS_ERR_NATOA = 0x00003645, /// <summary> /// Parameters of the main mode are invalid for this quick mode. ///</summary> [Description(«Parameters of the main mode are invalid for this quick mode.«)] ERROR_IPSEC_IKE_INVALID_MM_FOR_QM = 0x00003646, /// <summary> /// Quick mode SA was expired by IPsec driver. ///</summary> [Description(«Quick mode SA was expired by IPsec driver.«)] ERROR_IPSEC_IKE_QM_EXPIRED = 0x00003647, /// <summary> /// Too many dynamically added IKEEXT filters were detected. ///</summary> [Description(«Too many dynamically added IKEEXT filters were detected.«)] ERROR_IPSEC_IKE_TOO_MANY_FILTERS = 0x00003648, /// <summary> /// ERROR_IPSEC_IKE_NEG_STATUS_END ///</summary> [Description(«ERROR_IPSEC_IKE_NEG_STATUS_END«)] ERROR_IPSEC_IKE_NEG_STATUS_END = 0x00003649, /// <summary> /// NAP reauth succeeded and must delete the dummy NAP IKEv2 tunnel. ///</summary> [Description(«NAP reauth succeeded and must delete the dummy NAP IKEv2 tunnel.«)] ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL = 0x0000364a, /// <summary> /// Error in assigning inner IP address to initiator in tunnel mode. ///</summary> [Description(«Error in assigning inner IP address to initiator in tunnel mode.«)] ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE = 0x0000364b, /// <summary> /// Require configuration payload missing. ///</summary> [Description(«Require configuration payload missing.«)] ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING = 0x0000364c, /// <summary> /// A negotiation running as the security principle who issued the connection is in progress. ///</summary> [Description(«A negotiation running as the security principle who issued the connection is in progress.«)] ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING = 0x0000364d, /// <summary> /// SA was deleted due to IKEv1/AuthIP co-existence suppress check. ///</summary> [Description(«SA was deleted due to IKEv1/AuthIP co-existence suppress check.«)] ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS = 0x0000364e, /// <summary> /// Incoming SA request was dropped due to peer IP address rate limiting. ///</summary> [Description(«Incoming SA request was dropped due to peer IP address rate limiting.«)] ERROR_IPSEC_IKE_RATELIMIT_DROP = 0x0000364f, /// <summary> /// Peer does not support MOBIKE. ///</summary> [Description(«Peer does not support MOBIKE.«)] ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE = 0x00003650, /// <summary> /// SA establishment is not authorized. ///</summary> [Description(«SA establishment is not authorized.«)] ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE = 0x00003651, /// <summary> /// SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential. ///</summary> [Description(«SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential.«)] ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE = 0x00003652, /// <summary> /// SA establishment is not authorized. You may need to enter updated or different credentials such as a smartcard. ///</summary> [Description(«SA establishment is not authorized. You may need to enter updated or different credentials such as a smartcard.«)] ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY = 0x00003653, /// <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> [Description(«SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential. This might be related to certificate-to-account mapping failure for the SA.«)] ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE = 0x00003654, /// <summary> /// ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END ///</summary> [Description(«ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END«)] ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END = 0x00003655, /// <summary> /// The SPI in the packet does not match a valid IPsec SA. ///</summary> [Description(«The SPI in the packet does not match a valid IPsec SA.«)] ERROR_IPSEC_BAD_SPI = 0x00003656, /// <summary> /// Packet was received on an IPsec SA whose lifetime has expired. ///</summary> [Description(«Packet was received on an IPsec SA whose lifetime has expired.«)] ERROR_IPSEC_SA_LIFETIME_EXPIRED = 0x00003657, /// <summary> /// Packet was received on an IPsec SA that does not match the packet characteristics. ///</summary> [Description(«Packet was received on an IPsec SA that does not match the packet characteristics.«)] ERROR_IPSEC_WRONG_SA = 0x00003658, /// <summary> /// Packet sequence number replay check failed. ///</summary> [Description(«Packet sequence number replay check failed.«)] ERROR_IPSEC_REPLAY_CHECK_FAILED = 0x00003659, /// <summary> /// IPsec header and/or trailer in the packet is invalid. ///</summary> [Description(«IPsec header and/or trailer in the packet is invalid.«)] ERROR_IPSEC_INVALID_PACKET = 0x0000365a, /// <summary> /// IPsec integrity check failed. ///</summary> [Description(«IPsec integrity check failed.«)] ERROR_IPSEC_INTEGRITY_CHECK_FAILED = 0x0000365b, /// <summary> /// IPsec dropped a clear text packet. ///</summary> [Description(«IPsec dropped a clear text packet.«)] ERROR_IPSEC_CLEAR_TEXT_DROP = 0x0000365c, /// <summary> /// IPsec dropped an incoming ESP packet in authenticated firewall mode. This drop is benign. ///</summary> [Description(«IPsec dropped an incoming ESP packet in authenticated firewall mode. This drop is benign.«)] ERROR_IPSEC_AUTH_FIREWALL_DROP = 0x0000365d, /// <summary> /// IPsec dropped a packet due to DoS throttling. ///</summary> [Description(«IPsec dropped a packet due to DoS throttling.«)] ERROR_IPSEC_THROTTLE_DROP = 0x0000365e, /// <summary> /// IPsec DoS Protection matched an explicit block rule. ///</summary> [Description(«IPsec DoS Protection matched an explicit block rule.«)] ERROR_IPSEC_DOSP_BLOCK = 0x00003665, /// <summary> /// IPsec DoS Protection received an IPsec specific multicast packet which is not allowed. ///</summary> [Description(«IPsec DoS Protection received an IPsec specific multicast packet which is not allowed.«)] ERROR_IPSEC_DOSP_RECEIVED_MULTICAST = 0x00003666, /// <summary> /// IPsec DoS Protection received an incorrectly formatted packet. ///</summary> [Description(«IPsec DoS Protection received an incorrectly formatted packet.«)] ERROR_IPSEC_DOSP_INVALID_PACKET = 0x00003667, /// <summary> /// IPsec DoS Protection failed to look up state. ///</summary> [Description(«IPsec DoS Protection failed to look up state.«)] ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED = 0x00003668, /// <summary> /// IPsec DoS Protection failed to create state because the maximum number of entries allowed by policy has been reached. ///</summary> [Description(«IPsec DoS Protection failed to create state because the maximum number of entries allowed by policy has been reached.«)] ERROR_IPSEC_DOSP_MAX_ENTRIES = 0x00003669, /// <summary> /// IPsec DoS Protection received an IPsec negotiation packet for a keying module which is not allowed by policy. ///</summary> [Description(«IPsec DoS Protection received an IPsec negotiation packet for a keying module which is not allowed by policy.«)] ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED = 0x0000366a, /// <summary> /// IPsec DoS Protection has not been enabled. ///</summary> [Description(«IPsec DoS Protection has not been enabled.«)] ERROR_IPSEC_DOSP_NOT_INSTALLED = 0x0000366b, /// <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> [Description(«IPsec DoS Protection failed to create a per internal IP rate limit queue because the maximum number of queues allowed by policy has been reached.«)] ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES = 0x0000366c, /// <summary> /// The requested section was not present in the activation context. ///</summary> [Description(«The requested section was not present in the activation context.«)] ERROR_SXS_SECTION_NOT_FOUND = 0x000036b0, /// <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> [Description(«The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe tool for more detail.«)] ERROR_SXS_CANT_GEN_ACTCTX = 0x000036b1, /// <summary> /// The application binding data format is invalid. ///</summary> [Description(«The application binding data format is invalid.«)] ERROR_SXS_INVALID_ACTCTXDATA_FORMAT = 0x000036b2, /// <summary> /// The referenced assembly is not installed on your system. ///</summary> [Description(«The referenced assembly is not installed on your system.«)] ERROR_SXS_ASSEMBLY_NOT_FOUND = 0x000036b3, /// <summary> /// The manifest file does not begin with the required tag and format information. ///</summary> [Description(«The manifest file does not begin with the required tag and format information.«)] ERROR_SXS_MANIFEST_FORMAT_ERROR = 0x000036b4, /// <summary> /// The manifest file contains one or more syntax errors. ///</summary> [Description(«The manifest file contains one or more syntax errors.«)] ERROR_SXS_MANIFEST_PARSE_ERROR = 0x000036b5, /// <summary> /// The application attempted to activate a disabled activation context. ///</summary> [Description(«The application attempted to activate a disabled activation context.«)] ERROR_SXS_ACTIVATION_CONTEXT_DISABLED = 0x000036b6, /// <summary> /// The requested lookup key was not found in any active activation context. ///</summary> [Description(«The requested lookup key was not found in any active activation context.«)] ERROR_SXS_KEY_NOT_FOUND = 0x000036b7, /// <summary> /// A component version required by the application conflicts with another component version already active. ///</summary> [Description(«A component version required by the application conflicts with another component version already active.«)] ERROR_SXS_VERSION_CONFLICT = 0x000036b8, /// <summary> /// The type requested activation context section does not match the query API used. ///</summary> [Description(«The type requested activation context section does not match the query API used.«)] ERROR_SXS_WRONG_SECTION_TYPE = 0x000036b9, /// <summary> /// Lack of system resources has required isolated activation to be disabled for the current thread of execution. ///</summary> [Description(«Lack of system resources has required isolated activation to be disabled for the current thread of execution.«)] ERROR_SXS_THREAD_QUERIES_DISABLED = 0x000036ba, /// <summary> /// An attempt to set the process default activation context failed because the process default activation context was already set. ///</summary> [Description(«An attempt to set the process default activation context failed because the process default activation context was already set.«)] ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET = 0x000036bb, /// <summary> /// The encoding group identifier specified is not recognized. ///</summary> [Description(«The encoding group identifier specified is not recognized.«)] ERROR_SXS_UNKNOWN_ENCODING_GROUP = 0x000036bc, /// <summary> /// The encoding requested is not recognized. ///</summary> [Description(«The encoding requested is not recognized.«)] ERROR_SXS_UNKNOWN_ENCODING = 0x000036bd, /// <summary> /// The manifest contains a reference to an invalid URI. ///</summary> [Description(«The manifest contains a reference to an invalid URI.«)] ERROR_SXS_INVALID_XML_NAMESPACE_URI = 0x000036be, /// <summary> /// The application manifest contains a reference to a dependent assembly which is not installed. ///</summary> [Description(«The application manifest contains a reference to a dependent assembly which is not installed.«)] ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED = 0x000036bf, /// <summary> /// The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed. ///</summary> [Description(«The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed.«)] ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED = 0x000036c0, /// <summary> /// The manifest contains an attribute for the assembly identity which is not valid. ///</summary> [Description(«The manifest contains an attribute for the assembly identity which is not valid.«)] ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE = 0x000036c1, /// <summary> /// The manifest is missing the required default namespace specification on the assembly element. ///</summary> [Description(«The manifest is missing the required default namespace specification on the assembly element.«)] ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE = 0x000036c2, /// <summary> /// The manifest has a default namespace specified on the assembly element but its value is not «urn:schemas-microsoft-com:asm.v1». ///</summary> [Description(«The manifest has a default namespace specified on the assembly element but its value is not «urn:schemas-microsoft-com:asm.v1«.«)] ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE = 0x000036c3, /// <summary> /// The private manifest probed has crossed a path with an unsupported reparse point. ///</summary> [Description(«The private manifest probed has crossed a path with an unsupported reparse point.«)] ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT = 0x000036c4, /// <summary> /// Two or more components referenced directly or indirectly by the application manifest have files by the same name. ///</summary> [Description(«Two or more components referenced directly or indirectly by the application manifest have files by the same name.«)] ERROR_SXS_DUPLICATE_DLL_NAME = 0x000036c5, /// <summary> /// Two or more components referenced directly or indirectly by the application manifest have window classes with the same name. ///</summary> [Description(«Two or more components referenced directly or indirectly by the application manifest have window classes with the same name.«)] ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME = 0x000036c6, /// <summary> /// Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs. ///</summary> [Description(«Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs.«)] ERROR_SXS_DUPLICATE_CLSID = 0x000036c7, /// <summary> /// Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs. ///</summary> [Description(«Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs.«)] ERROR_SXS_DUPLICATE_IID = 0x000036c8, /// <summary> /// Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs. ///</summary> [Description(«Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs.«)] ERROR_SXS_DUPLICATE_TLBID = 0x000036c9, /// <summary> /// Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs. ///</summary> [Description(«Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs.«)] ERROR_SXS_DUPLICATE_PROGID = 0x000036ca, /// <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> [Description(«Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted.«)] ERROR_SXS_DUPLICATE_ASSEMBLY_NAME = 0x000036cb, /// <summary> /// A component’s file does not match the verification information present in the component manifest. ///</summary> [Description(«A component’s file does not match the verification information present in the component manifest.«)] ERROR_SXS_FILE_HASH_MISMATCH = 0x000036cc, /// <summary> /// The policy manifest contains one or more syntax errors. ///</summary> [Description(«The policy manifest contains one or more syntax errors.«)] ERROR_SXS_POLICY_PARSE_ERROR = 0x000036cd, /// <summary> /// Manifest Parse Error : A string literal was expected, but no opening quote character was found. ///</summary> [Description(«Manifest Parse Error : A string literal was expected, but no opening quote character was found.«)] ERROR_SXS_XML_E_MISSINGQUOTE = 0x000036ce, /// <summary> /// Manifest Parse Error : Incorrect syntax was used in a comment. ///</summary> [Description(«Manifest Parse Error : Incorrect syntax was used in a comment.«)] ERROR_SXS_XML_E_COMMENTSYNTAX = 0x000036cf, /// <summary> /// Manifest Parse Error : A name was started with an invalid character. ///</summary> [Description(«Manifest Parse Error : A name was started with an invalid character.«)] ERROR_SXS_XML_E_BADSTARTNAMECHAR = 0x000036d0, /// <summary> /// Manifest Parse Error : A name contained an invalid character. ///</summary> [Description(«Manifest Parse Error : A name contained an invalid character.«)] ERROR_SXS_XML_E_BADNAMECHAR = 0x000036d1, /// <summary> /// Manifest Parse Error : A string literal contained an invalid character. ///</summary> [Description(«Manifest Parse Error : A string literal contained an invalid character.«)] ERROR_SXS_XML_E_BADCHARINSTRING = 0x000036d2, /// <summary> /// Manifest Parse Error : Invalid syntax for an xml declaration. ///</summary> [Description(«Manifest Parse Error : Invalid syntax for an xml declaration.«)] ERROR_SXS_XML_E_XMLDECLSYNTAX = 0x000036d3, /// <summary> /// Manifest Parse Error : An Invalid character was found in text content. ///</summary> [Description(«Manifest Parse Error : An Invalid character was found in text content.«)] ERROR_SXS_XML_E_BADCHARDATA = 0x000036d4, /// <summary> /// Manifest Parse Error : Required white space was missing. ///</summary> [Description(«Manifest Parse Error : Required white space was missing.«)] ERROR_SXS_XML_E_MISSINGWHITESPACE = 0x000036d5, /// <summary> /// Manifest Parse Error : The character ‘>’ was expected. ///</summary> [Description(«Manifest Parse Error : The character ‘>’ was expected.«)] ERROR_SXS_XML_E_EXPECTINGTAGEND = 0x000036d6, /// <summary> /// Manifest Parse Error : A semi colon character was expected. ///</summary> [Description(«Manifest Parse Error : A semi colon character was expected.«)] ERROR_SXS_XML_E_MISSINGSEMICOLON = 0x000036d7, /// <summary> /// Manifest Parse Error : Unbalanced parentheses. ///</summary> [Description(«Manifest Parse Error : Unbalanced parentheses.«)] ERROR_SXS_XML_E_UNBALANCEDPAREN = 0x000036d8, /// <summary> /// Manifest Parse Error : Internal error. ///</summary> [Description(«Manifest Parse Error : Internal error.«)] ERROR_SXS_XML_E_INTERNALERROR = 0x000036d9, /// <summary> /// Manifest Parse Error : Whitespace is not allowed at this location. ///</summary> [Description(«Manifest Parse Error : Whitespace is not allowed at this location.«)] ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE = 0x000036da, /// <summary> /// Manifest Parse Error : End of file reached in invalid state for current encoding. ///</summary> [Description(«Manifest Parse Error : End of file reached in invalid state for current encoding.«)] ERROR_SXS_XML_E_INCOMPLETE_ENCODING = 0x000036db, /// <summary> /// Manifest Parse Error : Missing parenthesis. ///</summary> [Description(«Manifest Parse Error : Missing parenthesis.«)] ERROR_SXS_XML_E_MISSING_PAREN = 0x000036dc, /// <summary> /// Manifest Parse Error : A single or double closing quote character (\’ or \») is missing. ///</summary> [Description(«Manifest Parse Error : A single or double closing quote character (\‘ or ) is missing.«)] ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE = 0x000036dd, /// <summary> /// Manifest Parse Error : Multiple colons are not allowed in a name. ///</summary> [Description(«Manifest Parse Error : Multiple colons are not allowed in a name.«)] ERROR_SXS_XML_E_MULTIPLE_COLONS = 0x000036de, /// <summary> /// Manifest Parse Error : Invalid character for decimal digit. ///</summary> [Description(«Manifest Parse Error : Invalid character for decimal digit.«)] ERROR_SXS_XML_E_INVALID_DECIMAL = 0x000036df, /// <summary> /// Manifest Parse Error : Invalid character for hexadecimal digit. ///</summary> [Description(«Manifest Parse Error : Invalid character for hexadecimal digit.«)] ERROR_SXS_XML_E_INVALID_HEXIDECIMAL = 0x000036e0, /// <summary> /// Manifest Parse Error : Invalid unicode character value for this platform. ///</summary> [Description(«Manifest Parse Error : Invalid unicode character value for this platform.«)] ERROR_SXS_XML_E_INVALID_UNICODE = 0x000036e1, /// <summary> /// Manifest Parse Error : Expecting whitespace or ‘?’. ///</summary> [Description(«Manifest Parse Error : Expecting whitespace or ‘?’.«)] ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK = 0x000036e2, /// <summary> /// Manifest Parse Error : End tag was not expected at this location. ///</summary> [Description(«Manifest Parse Error : End tag was not expected at this location.«)] ERROR_SXS_XML_E_UNEXPECTEDENDTAG = 0x000036e3, /// <summary> /// Manifest Parse Error : The following tags were not closed: %1. ///</summary> [Description(«Manifest Parse Error : The following tags were not closed: %1.«)] ERROR_SXS_XML_E_UNCLOSEDTAG = 0x000036e4, /// <summary> /// Manifest Parse Error : Duplicate attribute. ///</summary> [Description(«Manifest Parse Error : Duplicate attribute.«)] ERROR_SXS_XML_E_DUPLICATEATTRIBUTE = 0x000036e5, /// <summary> /// Manifest Parse Error : Only one top level element is allowed in an XML document. ///</summary> [Description(«Manifest Parse Error : Only one top level element is allowed in an XML document.«)] ERROR_SXS_XML_E_MULTIPLEROOTS = 0x000036e6, /// <summary> /// Manifest Parse Error : Invalid at the top level of the document. ///</summary> [Description(«Manifest Parse Error : Invalid at the top level of the document.«)] ERROR_SXS_XML_E_INVALIDATROOTLEVEL = 0x000036e7, /// <summary> /// Manifest Parse Error : Invalid xml declaration. ///</summary> [Description(«Manifest Parse Error : Invalid xml declaration.«)] ERROR_SXS_XML_E_BADXMLDECL = 0x000036e8, /// <summary> /// Manifest Parse Error : XML document must have a top level element. ///</summary> [Description(«Manifest Parse Error : XML document must have a top level element.«)] ERROR_SXS_XML_E_MISSINGROOT = 0x000036e9, /// <summary> /// Manifest Parse Error : Unexpected end of file. ///</summary> [Description(«Manifest Parse Error : Unexpected end of file.«)] ERROR_SXS_XML_E_UNEXPECTEDEOF = 0x000036ea, /// <summary> /// Manifest Parse Error : Parameter entities cannot be used inside markup declarations in an internal subset. ///</summary> [Description(«Manifest Parse Error : Parameter entities cannot be used inside markup declarations in an internal subset.«)] ERROR_SXS_XML_E_BADPEREFINSUBSET = 0x000036eb, /// <summary> /// Manifest Parse Error : Element was not closed. ///</summary> [Description(«Manifest Parse Error : Element was not closed.«)] ERROR_SXS_XML_E_UNCLOSEDSTARTTAG = 0x000036ec, /// <summary> /// Manifest Parse Error : End element was missing the character ‘>’. ///</summary> [Description(«Manifest Parse Error : End element was missing the character ‘>’.«)] ERROR_SXS_XML_E_UNCLOSEDENDTAG = 0x000036ed, /// <summary> /// Manifest Parse Error : A string literal was not closed. ///</summary> [Description(«Manifest Parse Error : A string literal was not closed.«)] ERROR_SXS_XML_E_UNCLOSEDSTRING = 0x000036ee, /// <summary> /// Manifest Parse Error : A comment was not closed. ///</summary> [Description(«Manifest Parse Error : A comment was not closed.«)] ERROR_SXS_XML_E_UNCLOSEDCOMMENT = 0x000036ef, /// <summary> /// Manifest Parse Error : A declaration was not closed. ///</summary> [Description(«Manifest Parse Error : A declaration was not closed.«)] ERROR_SXS_XML_E_UNCLOSEDDECL = 0x000036f0, /// <summary> /// Manifest Parse Error : A CDATA section was not closed. ///</summary> [Description(«Manifest Parse Error : A CDATA section was not closed.«)] ERROR_SXS_XML_E_UNCLOSEDCDATA = 0x000036f1, /// <summary> /// Manifest Parse Error : The namespace prefix is not allowed to start with the reserved string «xml». ///</summary> [Description(«Manifest Parse Error : The namespace prefix is not allowed to start with the reserved string «xml«.«)] ERROR_SXS_XML_E_RESERVEDNAMESPACE = 0x000036f2, /// <summary> /// Manifest Parse Error : System does not support the specified encoding. ///</summary> [Description(«Manifest Parse Error : System does not support the specified encoding.«)] ERROR_SXS_XML_E_INVALIDENCODING = 0x000036f3, /// <summary> /// Manifest Parse Error : Switch from current encoding to specified encoding not supported. ///</summary> [Description(«Manifest Parse Error : Switch from current encoding to specified encoding not supported.«)] ERROR_SXS_XML_E_INVALIDSWITCH = 0x000036f4, /// <summary> /// Manifest Parse Error : The name ‘xml’ is reserved and must be lower case. ///</summary> [Description(«Manifest Parse Error : The name ‘xml’ is reserved and must be lower case.«)] ERROR_SXS_XML_E_BADXMLCASE = 0x000036f5, /// <summary> /// Manifest Parse Error : The standalone attribute must have the value ‘yes’ or ‘no’. ///</summary> [Description(«Manifest Parse Error : The standalone attribute must have the value ‘yes’ or ‘no’.«)] ERROR_SXS_XML_E_INVALID_STANDALONE = 0x000036f6, /// <summary> /// Manifest Parse Error : The standalone attribute cannot be used in external entities. ///</summary> [Description(«Manifest Parse Error : The standalone attribute cannot be used in external entities.«)] ERROR_SXS_XML_E_UNEXPECTED_STANDALONE = 0x000036f7, /// <summary> /// Manifest Parse Error : Invalid version number. ///</summary> [Description(«Manifest Parse Error : Invalid version number.«)] ERROR_SXS_XML_E_INVALID_VERSION = 0x000036f8, /// <summary> /// Manifest Parse Error : Missing equals sign between attribute and attribute value. ///</summary> [Description(«Manifest Parse Error : Missing equals sign between attribute and attribute value.«)] ERROR_SXS_XML_E_MISSINGEQUALS = 0x000036f9, /// <summary> /// Assembly Protection Error : Unable to recover the specified assembly. ///</summary> [Description(«Assembly Protection Error : Unable to recover the specified assembly.«)] ERROR_SXS_PROTECTION_RECOVERY_FAILED = 0x000036fa, /// <summary> /// Assembly Protection Error : The public key for an assembly was too short to be allowed. ///</summary> [Description(«Assembly Protection Error : The public key for an assembly was too short to be allowed.«)] ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT = 0x000036fb, /// <summary> /// Assembly Protection Error : The catalog for an assembly is not valid, or does not match the assembly’s manifest. ///</summary> [Description(«Assembly Protection Error : The catalog for an assembly is not valid, or does not match the assembly’s manifest.«)] ERROR_SXS_PROTECTION_CATALOG_NOT_VALID = 0x000036fc, /// <summary> /// An HRESULT could not be translated to a corresponding Win32 error code. ///</summary> [Description(«An HRESULT could not be translated to a corresponding Win32 error code.«)] ERROR_SXS_UNTRANSLATABLE_HRESULT = 0x000036fd, /// <summary> /// Assembly Protection Error : The catalog for an assembly is missing. ///</summary> [Description(«Assembly Protection Error : The catalog for an assembly is missing.«)] ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING = 0x000036fe, /// <summary> /// The supplied assembly identity is missing one or more attributes which must be present in this context. ///</summary> [Description(«The supplied assembly identity is missing one or more attributes which must be present in this context.«)] ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE = 0x000036ff, /// <summary> /// The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names. ///</summary> [Description(«The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names.«)] ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME = 0x00003700, /// <summary> /// The referenced assembly could not be found. ///</summary> [Description(«The referenced assembly could not be found.«)] ERROR_SXS_ASSEMBLY_MISSING = 0x00003701, /// <summary> /// The activation context activation stack for the running thread of execution is corrupt. ///</summary> [Description(«The activation context activation stack for the running thread of execution is corrupt.«)] ERROR_SXS_CORRUPT_ACTIVATION_STACK = 0x00003702, /// <summary> /// The application isolation metadata for this process or thread has become corrupt. ///</summary> [Description(«The application isolation metadata for this process or thread has become corrupt.«)] ERROR_SXS_CORRUPTION = 0x00003703, /// <summary> /// The activation context being deactivated is not the most recently activated one. ///</summary> [Description(«The activation context being deactivated is not the most recently activated one.«)] ERROR_SXS_EARLY_DEACTIVATION = 0x00003704, /// <summary> /// The activation context being deactivated is not active for the current thread of execution. ///</summary> [Description(«The activation context being deactivated is not active for the current thread of execution.«)] ERROR_SXS_INVALID_DEACTIVATION = 0x00003705, /// <summary> /// The activation context being deactivated has already been deactivated. ///</summary> [Description(«The activation context being deactivated has already been deactivated.«)] ERROR_SXS_MULTIPLE_DEACTIVATION = 0x00003706, /// <summary> /// A component used by the isolation facility has requested to terminate the process. ///</summary> [Description(«A component used by the isolation facility has requested to terminate the process.«)] ERROR_SXS_PROCESS_TERMINATION_REQUESTED = 0x00003707, /// <summary> /// A kernel mode component is releasing a reference on an activation context. ///</summary> [Description(«A kernel mode component is releasing a reference on an activation context.«)] ERROR_SXS_RELEASE_ACTIVATION_CONTEXT = 0x00003708, /// <summary> /// The activation context of system default assembly could not be generated. ///</summary> [Description(«The activation context of system default assembly could not be generated.«)] ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY = 0x00003709, /// <summary> /// The value of an attribute in an identity is not within the legal range. ///</summary> [Description(«The value of an attribute in an identity is not within the legal range.«)] ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE = 0x0000370a, /// <summary> /// The name of an attribute in an identity is not within the legal range. ///</summary> [Description(«The name of an attribute in an identity is not within the legal range.«)] ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME = 0x0000370b, /// <summary> /// An identity contains two definitions for the same attribute. ///</summary> [Description(«An identity contains two definitions for the same attribute.«)] ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE = 0x0000370c, /// <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> [Description(«The identity string is malformed. This may be due to a trailing comma, more than two unnamed attributes, missing attribute name or missing attribute value.«)] ERROR_SXS_IDENTITY_PARSE_ERROR = 0x0000370d, /// <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> [Description(«A string containing localized substitutable content was malformed. Either a dollar sign ($) was followed by something other than a left parenthesis or another dollar sign or an substitution’s right parenthesis was not found.«)] ERROR_MALFORMED_SUBSTITUTION_STRING = 0x0000370e, /// <summary> /// The public key token does not correspond to the public key specified. ///</summary> [Description(«The public key token does not correspond to the public key specified.«)] ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN = 0x0000370f, /// <summary> /// A substitution string had no mapping. ///</summary> [Description(«A substitution string had no mapping.«)] ERROR_UNMAPPED_SUBSTITUTION_STRING = 0x00003710, /// <summary> /// The component must be locked before making the request. ///</summary> [Description(«The component must be locked before making the request.«)] ERROR_SXS_ASSEMBLY_NOT_LOCKED = 0x00003711, /// <summary> /// The component store has been corrupted. ///</summary> [Description(«The component store has been corrupted.«)] ERROR_SXS_COMPONENT_STORE_CORRUPT = 0x00003712, /// <summary> /// An advanced installer failed during setup or servicing. ///</summary> [Description(«An advanced installer failed during setup or servicing.«)] ERROR_ADVANCED_INSTALLER_FAILED = 0x00003713, /// <summary> /// The character encoding in the XML declaration did not match the encoding used in the document. ///</summary> [Description(«The character encoding in the XML declaration did not match the encoding used in the document.«)] ERROR_XML_ENCODING_MISMATCH = 0x00003714, /// <summary> /// The identities of the manifests are identical but their contents are different. ///</summary> [Description(«The identities of the manifests are identical but their contents are different.«)] ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT = 0x00003715, /// <summary> /// The component identities are different. ///</summary> [Description(«The component identities are different.«)] ERROR_SXS_IDENTITIES_DIFFERENT = 0x00003716, /// <summary> /// The assembly is not a deployment. ///</summary> [Description(«The assembly is not a deployment.«)] ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT = 0x00003717, /// <summary> /// The file is not a part of the assembly. ///</summary> [Description(«The file is not a part of the assembly.«)] ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY = 0x00003718, /// <summary> /// The size of the manifest exceeds the maximum allowed. ///</summary> [Description(«The size of the manifest exceeds the maximum allowed.«)] ERROR_SXS_MANIFEST_TOO_BIG = 0x00003719, /// <summary> /// The setting is not registered. ///</summary> [Description(«The setting is not registered.«)] ERROR_SXS_SETTING_NOT_REGISTERED = 0x0000371a, /// <summary> /// One or more required members of the transaction are not present. ///</summary> [Description(«One or more required members of the transaction are not present.«)] ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE = 0x0000371b, /// <summary> /// The SMI primitive installer failed during setup or servicing. ///</summary> [Description(«The SMI primitive installer failed during setup or servicing.«)] ERROR_SMI_PRIMITIVE_INSTALLER_FAILED = 0x0000371c, /// <summary> /// A generic command executable returned a result that indicates failure. ///</summary> [Description(«A generic command executable returned a result that indicates failure.«)] ERROR_GENERIC_COMMAND_FAILED = 0x0000371d, /// <summary> /// A component is missing file verification information in its manifest. ///</summary> [Description(«A component is missing file verification information in its manifest.«)] ERROR_SXS_FILE_HASH_MISSING = 0x0000371e, /// <summary> /// The specified channel path is invalid. ///</summary> [Description(«The specified channel path is invalid.«)] ERROR_EVT_INVALID_CHANNEL_PATH = 0x00003a98, /// <summary> /// The specified query is invalid. ///</summary> [Description(«The specified query is invalid.«)] ERROR_EVT_INVALID_QUERY = 0x00003a99, /// <summary> /// The publisher metadata cannot be found in the resource. ///</summary> [Description(«The publisher metadata cannot be found in the resource.«)] ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND = 0x00003a9a, /// <summary> /// The template for an event definition cannot be found in the resource (error = %1). ///</summary> [Description(«The template for an event definition cannot be found in the resource (error = %1).«)] ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND = 0x00003a9b, /// <summary> /// The specified publisher name is invalid. ///</summary> [Description(«The specified publisher name is invalid.«)] ERROR_EVT_INVALID_PUBLISHER_NAME = 0x00003a9c, /// <summary> /// The event data raised by the publisher is not compatible with the event template definition in the publisher’s manifest. ///</summary> [Description(«The event data raised by the publisher is not compatible with the event template definition in the publisher’s manifest.«)] ERROR_EVT_INVALID_EVENT_DATA = 0x00003a9d, /// <summary> /// The specified channel could not be found. Check channel configuration. ///</summary> [Description(«The specified channel could not be found. Check channel configuration.«)] ERROR_EVT_CHANNEL_NOT_FOUND = 0x00003a9f, /// <summary> /// The specified xml text was not well-formed. See Extended Error for more details. ///</summary> [Description(«The specified xml text was not well-formed. See Extended Error for more details.«)] ERROR_EVT_MALFORMED_XML_TEXT = 0x00003aa0, /// <summary> /// The caller is trying to subscribe to a direct channel which is not allowed. The events for a direct channel go directly to a logfile and cannot be subscribed to. ///</summary> [Description(«The caller is trying to subscribe to a direct channel which is not allowed. The events for a direct channel go directly to a logfile and cannot be subscribed to.«)] ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL = 0x00003aa1, /// <summary> /// Configuration error. ///</summary> [Description(«Configuration error.«)] ERROR_EVT_CONFIGURATION_ERROR = 0x00003aa2, /// <summary> /// The query result is stale / invalid. This may be due to the log being cleared or rolling over after the query result was created. Users should handle this code by releasing the query result object and reissuing the query. ///</summary> [Description(«The query result is stale / invalid. This may be due to the log being cleared or rolling over after the query result was created. Users should handle this code by releasing the query result object and reissuing the query.«)] ERROR_EVT_QUERY_RESULT_STALE = 0x00003aa3, /// <summary> /// Query result is currently at an invalid position. ///</summary> [Description(«Query result is currently at an invalid position.«)] ERROR_EVT_QUERY_RESULT_INVALID_POSITION = 0x00003aa4, /// <summary> /// Registered MSXML doesn’t support validation. ///</summary> [Description(«Registered MSXML doesn’t support validation.«)] ERROR_EVT_NON_VALIDATING_MSXML = 0x00003aa5, /// <summary> /// An expression can only be followed by a change of scope operation if it itself evaluates to a node set and is not already part of some other change of scope operation. ///</summary> [Description(«An expression can only be followed by a change of scope operation if it itself evaluates to a node set and is not already part of some other change of scope operation.«)] ERROR_EVT_FILTER_ALREADYSCOPED = 0x00003aa6, /// <summary> /// Can’t perform a step operation from a term that does not represent an element set. ///</summary> [Description(«Can’t perform a step operation from a term that does not represent an element set.«)] ERROR_EVT_FILTER_NOTELTSET = 0x00003aa7, /// <summary> /// Left hand side arguments to binary operators must be either attributes, nodes or variables and right hand side arguments must be constants. ///</summary> [Description(«Left hand side arguments to binary operators must be either attributes, nodes or variables and right hand side arguments must be constants.«)] ERROR_EVT_FILTER_INVARG = 0x00003aa8, /// <summary> /// A step operation must involve either a node test or, in the case of a predicate, an algebraic expression against which to test each node in the node set identified by the preceeding node set can be evaluated. ///</summary> [Description(«A step operation must involve either a node test or, in the case of a predicate, an algebraic expression against which to test each node in the node set identified by the preceeding node set can be evaluated.«)] ERROR_EVT_FILTER_INVTEST = 0x00003aa9, /// <summary> /// This data type is currently unsupported. ///</summary> [Description(«This data type is currently unsupported.«)] ERROR_EVT_FILTER_INVTYPE = 0x00003aaa, /// <summary> /// A syntax error occurred at position %1!d!. ///</summary> [Description(«A syntax error occurred at position %1!d!.«)] ERROR_EVT_FILTER_PARSEERR = 0x00003aab, /// <summary> /// This operator is unsupported by this implementation of the filter. ///</summary> [Description(«This operator is unsupported by this implementation of the filter.«)] ERROR_EVT_FILTER_UNSUPPORTEDOP = 0x00003aac, /// <summary> /// The token encountered was unexpected. ///</summary> [Description(«The token encountered was unexpected.«)] ERROR_EVT_FILTER_UNEXPECTEDTOKEN = 0x00003aad, /// <summary> /// The requested operation cannot be performed over an enabled direct channel. The channel must first be disabled before performing the requested operation. ///</summary> [Description(«The requested operation cannot be performed over an enabled direct channel. The channel must first be disabled before performing the requested operation.«)] ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL = 0x00003aae, /// <summary> /// Channel property %1!s! contains invalid value. The value has invalid type, is outside of valid range, can’t be updated or is not supported by this type of channel. ///</summary> [Description(«Channel property %1!s! contains invalid value. The value has invalid type, is outside of valid range, can’t be updated or is not supported by this type of channel.«)] ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE = 0x00003aaf, /// <summary> /// Publisher property %1!s! contains invalid value. The value has invalid type, is outside of valid range, can’t be updated or is not supported by this type of publisher. ///</summary> [Description(«Publisher property %1!s! contains invalid value. The value has invalid type, is outside of valid range, can’t be updated or is not supported by this type of publisher.«)] ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE = 0x00003ab0, /// <summary> /// The channel fails to activate. ///</summary> [Description(«The channel fails to activate.«)] ERROR_EVT_CHANNEL_CANNOT_ACTIVATE = 0x00003ab1, /// <summary> /// The xpath expression exceeded supported complexity. Please symplify it or split it into two or more simple expressions. ///</summary> [Description(«The xpath expression exceeded supported complexity. Please symplify it or split it into two or more simple expressions.«)] ERROR_EVT_FILTER_TOO_COMPLEX = 0x00003ab2, /// <summary> /// the message resource is present but the message is not found in the string/message table. ///</summary> [Description(«the message resource is present but the message is not found in the string/message table.«)] ERROR_EVT_MESSAGE_NOT_FOUND = 0x00003ab3, /// <summary> /// The message id for the desired message could not be found. ///</summary> [Description(«The message id for the desired message could not be found.«)] ERROR_EVT_MESSAGE_ID_NOT_FOUND = 0x00003ab4, /// <summary> /// The substitution string for insert index (%1) could not be found. ///</summary> [Description(«The substitution string for insert index (%1) could not be found.«)] ERROR_EVT_UNRESOLVED_VALUE_INSERT = 0x00003ab5, /// <summary> /// The description string for parameter reference (%1) could not be found. ///</summary> [Description(«The description string for parameter reference (%1) could not be found.«)] ERROR_EVT_UNRESOLVED_PARAMETER_INSERT = 0x00003ab6, /// <summary> /// The maximum number of replacements has been reached. ///</summary> [Description(«The maximum number of replacements has been reached.«)] ERROR_EVT_MAX_INSERTS_REACHED = 0x00003ab7, /// <summary> /// The event definition could not be found for event id (%1). ///</summary> [Description(«The event definition could not be found for event id (%1).«)] ERROR_EVT_EVENT_DEFINITION_NOT_FOUND = 0x00003ab8, /// <summary> /// The locale specific resource for the desired message is not present. ///</summary> [Description(«The locale specific resource for the desired message is not present.«)] ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND = 0x00003ab9, /// <summary> /// The resource is too old to be compatible. ///</summary> [Description(«The resource is too old to be compatible.«)] ERROR_EVT_VERSION_TOO_OLD = 0x00003aba, /// <summary> /// The resource is too new to be compatible. ///</summary> [Description(«The resource is too new to be compatible.«)] ERROR_EVT_VERSION_TOO_NEW = 0x00003abb, /// <summary> /// The channel at index %1!d! of the query can’t be opened. ///</summary> [Description(«The channel at index %1!d! of the query can’t be opened.«)] ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY = 0x00003abc, /// <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> [Description(«The publisher has been disabled and its resource is not available. This usually occurs when the publisher is in the process of being uninstalled or upgraded.«)] ERROR_EVT_PUBLISHER_DISABLED = 0x00003abd, /// <summary> /// Attempted to create a numeric type that is outside of its valid range. ///</summary> [Description(«Attempted to create a numeric type that is outside of its valid range.«)] ERROR_EVT_FILTER_OUT_OF_RANGE = 0x00003abe, /// <summary> /// The subscription fails to activate. ///</summary> [Description(«The subscription fails to activate.«)] ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE = 0x00003ae8, /// <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> [Description(«The log of the subscription is in disabled state, and can not be used to forward events to. The log must first be enabled before the subscription can be activated.«)] ERROR_EC_LOG_DISABLED = 0x00003ae9, /// <summary> /// When forwarding events from local machine to itself, the query of the subscription can’t contain target log of the subscription. ///</summary> [Description(«When forwarding events from local machine to itself, the query of the subscription can’t contain target log of the subscription.«)] ERROR_EC_CIRCULAR_FORWARDING = 0x00003aea, /// <summary> /// The credential store that is used to save credentials is full. ///</summary> [Description(«The credential store that is used to save credentials is full.«)] ERROR_EC_CREDSTORE_FULL = 0x00003aeb, /// <summary> /// The credential used by this subscription can’t be found in credential store. ///</summary> [Description(«The credential used by this subscription can’t be found in credential store.«)] ERROR_EC_CRED_NOT_FOUND = 0x00003aec, /// <summary> /// No active channel is found for the query. ///</summary> [Description(«No active channel is found for the query.«)] ERROR_EC_NO_ACTIVE_CHANNEL = 0x00003aed, /// <summary> /// The resource loader failed to find MUI file. ///</summary> [Description(«The resource loader failed to find MUI file.«)] ERROR_MUI_FILE_NOT_FOUND = 0x00003afc, /// <summary> /// The resource loader failed to load MUI file because the file fail to pass validation. ///</summary> [Description(«The resource loader failed to load MUI file because the file fail to pass validation.«)] ERROR_MUI_INVALID_FILE = 0x00003afd, /// <summary> /// The RC Manifest is corrupted with garbage data or unsupported version or missing required item. ///</summary> [Description(«The RC Manifest is corrupted with garbage data or unsupported version or missing required item.«)] ERROR_MUI_INVALID_RC_CONFIG = 0x00003afe, /// <summary> /// The RC Manifest has invalid culture name. ///</summary> [Description(«The RC Manifest has invalid culture name.«)] ERROR_MUI_INVALID_LOCALE_NAME = 0x00003aff, /// <summary> /// The RC Manifest has invalid ultimatefallback name. ///</summary> [Description(«The RC Manifest has invalid ultimatefallback name.«)] ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME = 0x00003b00, /// <summary> /// The resource loader cache doesn’t have loaded MUI entry. ///</summary> [Description(«The resource loader cache doesn’t have loaded MUI entry.«)] ERROR_MUI_FILE_NOT_LOADED = 0x00003b01, /// <summary> /// User stopped resource enumeration. ///</summary> [Description(«User stopped resource enumeration.«)] ERROR_RESOURCE_ENUM_USER_STOP = 0x00003b02, /// <summary> /// UI language installation failed. ///</summary> [Description(«UI language installation failed.«)] ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED = 0x00003b03, /// <summary> /// Locale installation failed. ///</summary> [Description(«Locale installation failed.«)] ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME = 0x00003b04, /// <summary> /// A resource does not have default or neutral value. ///</summary> [Description(«A resource does not have default or neutral value.«)] ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE = 0x00003b06, /// <summary> /// Invalid PRI config file. ///</summary> [Description(«Invalid PRI config file.«)] ERROR_MRM_INVALID_PRICONFIG = 0x00003b07, /// <summary> /// Invalid file type. ///</summary> [Description(«Invalid file type.«)] ERROR_MRM_INVALID_FILE_TYPE = 0x00003b08, /// <summary> /// Unknown qualifier. ///</summary> [Description(«Unknown qualifier.«)] ERROR_MRM_UNKNOWN_QUALIFIER = 0x00003b09, /// <summary> /// Invalid qualifier value. ///</summary> [Description(«Invalid qualifier value.«)] ERROR_MRM_INVALID_QUALIFIER_VALUE = 0x00003b0a, /// <summary> /// No Candidate found. ///</summary> [Description(«No Candidate found.«)] ERROR_MRM_NO_CANDIDATE = 0x00003b0b, /// <summary> /// The ResourceMap or NamedResource has an item that does not have default or neutral resource.. ///</summary> [Description(«The ResourceMap or NamedResource has an item that does not have default or neutral resource..«)] ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE = 0x00003b0c, /// <summary> /// Invalid ResourceCandidate type. ///</summary> [Description(«Invalid ResourceCandidate type.«)] ERROR_MRM_RESOURCE_TYPE_MISMATCH = 0x00003b0d, /// <summary> /// Duplicate Resource Map. ///</summary> [Description(«Duplicate Resource Map.«)] ERROR_MRM_DUPLICATE_MAP_NAME = 0x00003b0e, /// <summary> /// Duplicate Entry. ///</summary> [Description(«Duplicate Entry.«)] ERROR_MRM_DUPLICATE_ENTRY = 0x00003b0f, /// <summary> /// Invalid Resource Identifier. ///</summary> [Description(«Invalid Resource Identifier.«)] ERROR_MRM_INVALID_RESOURCE_IDENTIFIER = 0x00003b10, /// <summary> /// Filepath too long. ///</summary> [Description(«Filepath too long.«)] ERROR_MRM_FILEPATH_TOO_LONG = 0x00003b11, /// <summary> /// Unsupported directory type. ///</summary> [Description(«Unsupported directory type.«)] ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE = 0x00003b12, /// <summary> /// Invalid PRI File. ///</summary> [Description(«Invalid PRI File.«)] ERROR_MRM_INVALID_PRI_FILE = 0x00003b16, /// <summary> /// NamedResource Not Found. ///</summary> [Description(«NamedResource Not Found.«)] ERROR_MRM_NAMED_RESOURCE_NOT_FOUND = 0x00003b17, /// <summary> /// ResourceMap Not Found. ///</summary> [Description(«ResourceMap Not Found.«)] ERROR_MRM_MAP_NOT_FOUND = 0x00003b1f, /// <summary> /// Unsupported MRT profile type. ///</summary> [Description(«Unsupported MRT profile type.«)] ERROR_MRM_UNSUPPORTED_PROFILE_TYPE = 0x00003b20, /// <summary> /// Invalid qualifier operator. ///</summary> [Description(«Invalid qualifier operator.«)] ERROR_MRM_INVALID_QUALIFIER_OPERATOR = 0x00003b21, /// <summary> /// Unable to determine qualifier value or qualifier value has not been set. ///</summary> [Description(«Unable to determine qualifier value or qualifier value has not been set.«)] ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE = 0x00003b22, /// <summary> /// Automerge is enabled in the PRI file. ///</summary> [Description(«Automerge is enabled in the PRI file.«)] ERROR_MRM_AUTOMERGE_ENABLED = 0x00003b23, /// <summary> /// Too many resources defined for package. ///</summary> [Description(«Too many resources defined for package.«)] ERROR_MRM_TOO_MANY_RESOURCES = 0x00003b24, /// <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> [Description(«The monitor returned a DDC/CI capabilities string that did not comply with the ACCESS.bus 3.0, DDC/CI 1.1 or MCCS 2 Revision 1 specification.«)] ERROR_MCA_INVALID_CAPABILITIES_STRING = 0x00003b60, /// <summary> /// The monitor’s VCP Version (0xDF) VCP code returned an invalid version value. ///</summary> [Description(«The monitor’s VCP Version (0xDF) VCP code returned an invalid version value.«)] ERROR_MCA_INVALID_VCP_VERSION = 0x00003b61, /// <summary> /// The monitor does not comply with the MCCS specification it claims to support. ///</summary> [Description(«The monitor does not comply with the MCCS specification it claims to support.«)] ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION = 0x00003b62, /// <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> [Description(«The MCCS version in a monitor’s mccs_ver capability does not match the MCCS version the monitor reports when the VCP Version (0xDF) VCP code is used.«)] ERROR_MCA_MCCS_VERSION_MISMATCH = 0x00003b63, /// <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> [Description(«The Monitor Configuration API only works with monitors that support the MCCS 1.0 specification, MCCS 2.0 specification or the MCCS 2.0 Revision 1 specification.«)] ERROR_MCA_UNSUPPORTED_MCCS_VERSION = 0x00003b64, /// <summary> /// An internal Monitor Configuration API error occurred. ///</summary> [Description(«An internal Monitor Configuration API error occurred.«)] ERROR_MCA_INTERNAL_ERROR = 0x00003b65, /// <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> [Description(«The monitor returned an invalid monitor technology type. CRT, Plasma and LCD (TFT) are examples of monitor technology types. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.«)] ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED = 0x00003b66, /// <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> [Description(«The caller of SetMonitorColorTemperature specified a color temperature that the current monitor did not support. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.«)] ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE = 0x00003b67, /// <summary> /// The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria. ///</summary> [Description(«The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria.«)] ERROR_AMBIGUOUS_SYSTEM_DEVICE = 0x00003b92, /// <summary> /// The requested system device cannot be found. ///</summary> [Description(«The requested system device cannot be found.«)] ERROR_SYSTEM_DEVICE_NOT_FOUND = 0x00003bc3, /// <summary> /// Hash generation for the specified hash version and hash type is not enabled on the server. ///</summary> [Description(«Hash generation for the specified hash version and hash type is not enabled on the server.«)] ERROR_HASH_NOT_SUPPORTED = 0x00003bc4, /// <summary> /// The hash requested from the server is not available or no longer valid. ///</summary> [Description(«The hash requested from the server is not available or no longer valid.«)] ERROR_HASH_NOT_PRESENT = 0x00003bc5, /// <summary> /// The secondary interrupt controller instance that manages the specified interrupt is not registered. ///</summary> [Description(«The secondary interrupt controller instance that manages the specified interrupt is not registered.«)] ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED = 0x00003bd9, /// <summary> /// The information supplied by the GPIO client driver is invalid. ///</summary> [Description(«The information supplied by the GPIO client driver is invalid.«)] ERROR_GPIO_CLIENT_INFORMATION_INVALID = 0x00003bda, /// <summary> /// The version specified by the GPIO client driver is not supported. ///</summary> [Description(«The version specified by the GPIO client driver is not supported.«)] ERROR_GPIO_VERSION_NOT_SUPPORTED = 0x00003bdb, /// <summary> /// The registration packet supplied by the GPIO client driver is not valid. ///</summary> [Description(«The registration packet supplied by the GPIO client driver is not valid.«)] ERROR_GPIO_INVALID_REGISTRATION_PACKET = 0x00003bdc, /// <summary> /// The requested operation is not suppported for the specified handle. ///</summary> [Description(«The requested operation is not suppported for the specified handle.«)] ERROR_GPIO_OPERATION_DENIED = 0x00003bdd, /// <summary> /// The requested connect mode conflicts with an existing mode on one or more of the specified pins. ///</summary> [Description(«The requested connect mode conflicts with an existing mode on one or more of the specified pins.«)] ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE = 0x00003bde, /// <summary> /// The interrupt requested to be unmasked is not masked. ///</summary> [Description(«The interrupt requested to be unmasked is not masked.«)] ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED = 0x00003bdf, /// <summary> /// The requested run level switch cannot be completed successfully. ///</summary> [Description(«The requested run level switch cannot be completed successfully.«)] ERROR_CANNOT_SWITCH_RUNLEVEL = 0x00003c28, /// <summary> /// The service has an invalid run level setting. The run level for a service must not be higher than the run level of its dependent services. ///</summary> [Description(«The service has an invalid run level setting. The run level for a service must not be higher than the run level of its dependent services.«)] ERROR_INVALID_RUNLEVEL_SETTING = 0x00003c29, /// <summary> /// The requested run level switch cannot be completed successfully since one or more services will not stop or restart within the specified timeout. ///</summary> [Description(«The requested run level switch cannot be completed successfully since one or more services will not stop or restart within the specified timeout.«)] ERROR_RUNLEVEL_SWITCH_TIMEOUT = 0x00003c2a, /// <summary> /// A run level switch agent did not respond within the specified timeout. ///</summary> [Description(«A run level switch agent did not respond within the specified timeout.«)] ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT = 0x00003c2b, /// <summary> /// A run level switch is currently in progress. ///</summary> [Description(«A run level switch is currently in progress.«)] ERROR_RUNLEVEL_SWITCH_IN_PROGRESS = 0x00003c2c, /// <summary> /// One or more services failed to start during the service startup phase of a run level switch. ///</summary> [Description(«One or more services failed to start during the service startup phase of a run level switch.«)] ERROR_SERVICES_FAILED_AUTOSTART = 0x00003c2d, /// <summary> /// The task stop request cannot be completed immediately since task needs more time to shutdown. ///</summary> [Description(«The task stop request cannot be completed immediately since task needs more time to shutdown.«)] ERROR_COM_TASK_STOP_PENDING = 0x00003c8d, /// <summary> /// Package could not be opened. ///</summary> [Description(«Package could not be opened.«)] ERROR_INSTALL_OPEN_PACKAGE_FAILED = 0x00003cf0, /// <summary> /// Package was not found. ///</summary> [Description(«Package was not found.«)] ERROR_INSTALL_PACKAGE_NOT_FOUND = 0x00003cf1, /// <summary> /// Package data is invalid. ///</summary> [Description(«Package data is invalid.«)] ERROR_INSTALL_INVALID_PACKAGE = 0x00003cf2, /// <summary> /// Package failed updates, dependency or conflict validation. ///</summary> [Description(«Package failed updates, dependency or conflict validation.«)] ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED = 0x00003cf3, /// <summary> /// There is not enough disk space on your computer. Please free up some space and try again. ///</summary> [Description(«There is not enough disk space on your computer. Please free up some space and try again.«)] ERROR_INSTALL_OUT_OF_DISK_SPACE = 0x00003cf4, /// <summary> /// There was a problem downloading your product. ///</summary> [Description(«There was a problem downloading your product.«)] ERROR_INSTALL_NETWORK_FAILURE = 0x00003cf5, /// <summary> /// Package could not be registered. ///</summary> [Description(«Package could not be registered.«)] ERROR_INSTALL_REGISTRATION_FAILURE = 0x00003cf6, /// <summary> /// Package could not be unregistered. ///</summary> [Description(«Package could not be unregistered.«)] ERROR_INSTALL_DEREGISTRATION_FAILURE = 0x00003cf7, /// <summary> /// User cancelled the install request. ///</summary> [Description(«User cancelled the install request.«)] ERROR_INSTALL_CANCEL = 0x00003cf8, /// <summary> /// Install failed. Please contact your software vendor. ///</summary> [Description(«Install failed. Please contact your software vendor.«)] ERROR_INSTALL_FAILED = 0x00003cf9, /// <summary> /// Removal failed. Please contact your software vendor. ///</summary> [Description(«Removal failed. Please contact your software vendor.«)] ERROR_REMOVE_FAILED = 0x00003cfa, /// <summary> /// The provided package is already installed, and reinstallation of the package was blocked. Check the AppXDeployment-Server event log for details. ///</summary> [Description(«The provided package is already installed, and reinstallation of the package was blocked. Check the AppXDeployment-Server event log for details.«)] ERROR_PACKAGE_ALREADY_EXISTS = 0x00003cfb, /// <summary> /// The application cannot be started. Try reinstalling the application to fix the problem. ///</summary> [Description(«The application cannot be started. Try reinstalling the application to fix the problem.«)] ERROR_NEEDS_REMEDIATION = 0x00003cfc, /// <summary> /// A Prerequisite for an install could not be satisfied. ///</summary> [Description(«A Prerequisite for an install could not be satisfied.«)] ERROR_INSTALL_PREREQUISITE_FAILED = 0x00003cfd, /// <summary> /// The package repository is corrupted. ///</summary> [Description(«The package repository is corrupted.«)] ERROR_PACKAGE_REPOSITORY_CORRUPTED = 0x00003cfe, /// <summary> /// To install this application you need either a Windows developer license or a sideloading-enabled system. ///</summary> [Description(«To install this application you need either a Windows developer license or a sideloading-enabled system.«)] ERROR_INSTALL_POLICY_FAILURE = 0x00003cff, /// <summary> /// The application cannot be started because it is currently updating. ///</summary> [Description(«The application cannot be started because it is currently updating.«)] ERROR_PACKAGE_UPDATING = 0x00003d00, /// <summary> /// The package deployment operation is blocked by policy. Please contact your system administrator. ///</summary> [Description(«The package deployment operation is blocked by policy. Please contact your system administrator.«)] ERROR_DEPLOYMENT_BLOCKED_BY_POLICY = 0x00003d01, /// <summary> /// The package could not be installed because resources it modifies are currently in use. ///</summary> [Description(«The package could not be installed because resources it modifies are currently in use.«)] ERROR_PACKAGES_IN_USE = 0x00003d02, /// <summary> /// The package could not be recovered because necessary data for recovery have been corrupted. ///</summary> [Description(«The package could not be recovered because necessary data for recovery have been corrupted.«)] ERROR_RECOVERY_FILE_CORRUPT = 0x00003d03, /// <summary> /// The signature is invalid. To register in developer mode, AppxSignature.p7x and AppxBlockMap.xml must be valid or should not be present. ///</summary> [Description(«The signature is invalid. To register in developer mode, AppxSignature.p7x and AppxBlockMap.xml must be valid or should not be present.«)] ERROR_INVALID_STAGED_SIGNATURE = 0x00003d04, /// <summary> /// An error occurred while deleting the package’s previously existing application data. ///</summary> [Description(«An error occurred while deleting the package’s previously existing application data.«)] ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED = 0x00003d05, /// <summary> /// The package could not be installed because a higher version of this package is already installed. ///</summary> [Description(«The package could not be installed because a higher version of this package is already installed.«)] ERROR_INSTALL_PACKAGE_DOWNGRADE = 0x00003d06, /// <summary> /// An error in a system binary was detected. Try refreshing the PC to fix the problem. ///</summary> [Description(«An error in a system binary was detected. Try refreshing the PC to fix the problem.«)] ERROR_SYSTEM_NEEDS_REMEDIATION = 0x00003d07, /// <summary> /// A corrupted CLR NGEN binary was detected on the system. ///</summary> [Description(«A corrupted CLR NGEN binary was detected on the system.«)] ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN = 0x00003d08, /// <summary> /// The operation could not be resumed because necessary data for recovery have been corrupted. ///</summary> [Description(«The operation could not be resumed because necessary data for recovery have been corrupted.«)] ERROR_RESILIENCY_FILE_CORRUPT = 0x00003d09, /// <summary> /// The package could not be installed because the Windows Firewall service is not running. Enable the Windows Firewall service and try again. ///</summary> [Description(«The package could not be installed because the Windows Firewall service is not running. Enable the Windows Firewall service and try again.«)] ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING = 0x00003d0a, /// <summary> /// The process has no package identity. ///</summary> [Description(«The process has no package identity.«)] APPMODEL_ERROR_NO_PACKAGE = 0x00003d54, /// <summary> /// The package runtime information is corrupted. ///</summary> [Description(«The package runtime information is corrupted.«)] APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT = 0x00003d55, /// <summary> /// The package identity is corrupted. ///</summary> [Description(«The package identity is corrupted.«)] APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT = 0x00003d56, /// <summary> /// The process has no application identity. ///</summary> [Description(«The process has no application identity.«)] APPMODEL_ERROR_NO_APPLICATION = 0x00003d57, /// <summary> /// Loading the state store failed. ///</summary> [Description(«Loading the state store failed.«)] ERROR_STATE_LOAD_STORE_FAILED = 0x00003db8, /// <summary> /// Retrieving the state version for the application failed. ///</summary> [Description(«Retrieving the state version for the application failed.«)] ERROR_STATE_GET_VERSION_FAILED = 0x00003db9, /// <summary> /// Setting the state version for the application failed. ///</summary> [Description(«Setting the state version for the application failed.«)] ERROR_STATE_SET_VERSION_FAILED = 0x00003dba, /// <summary> /// Resetting the structured state of the application failed. ///</summary> [Description(«Resetting the structured state of the application failed.«)] ERROR_STATE_STRUCTURED_RESET_FAILED = 0x00003dbb, /// <summary> /// State Manager failed to open the container. ///</summary> [Description(«State Manager failed to open the container.«)] ERROR_STATE_OPEN_CONTAINER_FAILED = 0x00003dbc, /// <summary> /// State Manager failed to create the container. ///</summary> [Description(«State Manager failed to create the container.«)] ERROR_STATE_CREATE_CONTAINER_FAILED = 0x00003dbd, /// <summary> /// State Manager failed to delete the container. ///</summary> [Description(«State Manager failed to delete the container.«)] ERROR_STATE_DELETE_CONTAINER_FAILED = 0x00003dbe, /// <summary> /// State Manager failed to read the setting. ///</summary> [Description(«State Manager failed to read the setting.«)] ERROR_STATE_READ_SETTING_FAILED = 0x00003dbf, /// <summary> /// State Manager failed to write the setting. ///</summary> [Description(«State Manager failed to write the setting.«)] ERROR_STATE_WRITE_SETTING_FAILED = 0x00003dc0, /// <summary> /// State Manager failed to delete the setting. ///</summary> [Description(«State Manager failed to delete the setting.«)] ERROR_STATE_DELETE_SETTING_FAILED = 0x00003dc1, /// <summary> /// State Manager failed to query the setting. ///</summary> [Description(«State Manager failed to query the setting.«)] ERROR_STATE_QUERY_SETTING_FAILED = 0x00003dc2, /// <summary> /// State Manager failed to read the composite setting. ///</summary> [Description(«State Manager failed to read the composite setting.«)] ERROR_STATE_READ_COMPOSITE_SETTING_FAILED = 0x00003dc3, /// <summary> /// State Manager failed to write the composite setting. ///</summary> [Description(«State Manager failed to write the composite setting.«)] ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED = 0x00003dc4, /// <summary> /// State Manager failed to enumerate the containers. ///</summary> [Description(«State Manager failed to enumerate the containers.«)] ERROR_STATE_ENUMERATE_CONTAINER_FAILED = 0x00003dc5, /// <summary> /// State Manager failed to enumerate the settings. ///</summary> [Description(«State Manager failed to enumerate the settings.«)] ERROR_STATE_ENUMERATE_SETTINGS_FAILED = 0x00003dc6, /// <summary> /// The size of the state manager composite setting value has exceeded the limit. ///</summary> [Description(«The size of the state manager composite setting value has exceeded the limit.«)] ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED = 0x00003dc7, /// <summary> /// The size of the state manager setting value has exceeded the limit. ///</summary> [Description(«The size of the state manager setting value has exceeded the limit.«)] ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED = 0x00003dc8, /// <summary> /// The length of the state manager setting name has exceeded the limit. ///</summary> [Description(«The length of the state manager setting name has exceeded the limit.«)] ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED = 0x00003dc9, /// <summary> /// The length of the state manager container name has exceeded the limit. ///</summary> [Description(«The length of the state manager container name has exceeded the limit.«)] ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED = 0x00003dca, /// <summary> /// This API cannot be used in the context of the caller’s application type. ///</summary> [Description(«This API cannot be used in the context of the caller’s application type.«)] ERROR_API_UNAVAILABLE = 0x00003de1, } }

Понравилась статья? Поделить с друзьями:

Читайте также:

  • X7 oscar edition ошибка line 0
  • Xbox 360 недостаточно вентиляции как исправить
  • X64 exception type 00000000000006 вылетает ошибка
  • X509 формата error 0906d06c pem
  • Xbox 360 код ошибки 8015d02e

  • 0 0 голоса
    Рейтинг статьи
    Подписаться
    Уведомить о
    guest

    0 комментариев
    Старые
    Новые Популярные
    Межтекстовые Отзывы
    Посмотреть все комментарии