Windows Error Code
2021-12-04 / Hell

Win32编程中,检查错误码是非常常见的操作。但是Win32的错误码种类很多:

  1. GetLastError函数返回的错误码
  2. WSAGetLastError函数返回的错误码
  3. 使用COM组件时获得的错误码HRESULT
  4. 其他

仔细观察能发现错误码大概有两类:

  1. GetLastErrorWSAGetLastError返回的简单错误码。这种错误码通过Visual Studio自带的错误查找工具可以轻松的找到该错误码所对应的错误,比如错误码5代表拒绝访问(Access Denied)
  2. COM组件返回的HRESULT类型的错误码,比如0xC0000005(-1073741819)也是代表拒绝访问,而错误查找工具并不能解析该错误码

所以HRESULT类型的错误码有办法解析么?😭
当然是可以的!这个解析方法以及相关的错误码可以在winerror.h中查看,有条件的小伙伴自己看就行。

COM 错误码

HRESULT类型的错误码格式如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
HRESULTs are 32 bit values laid out as follows:

3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
+-+-+-+-+-+---------------------+-------------------------------+
|S|R|C|N|r| Facility | Code |
+-+-+-+-+-+---------------------+-------------------------------+

where

S - Severity - indicates success/fail

0 - Success
1 - Fail (COERROR)

R - reserved portion of the facility code, corresponds to NT's
second severity bit.

C - reserved portion of the facility code, corresponds to NT's
C field.

N - reserved portion of the facility code. Used to indicate a
mapped NT status value.

r - reserved portion of the facility code. Reserved for internal
use. Used to indicate HRESULT values that are not status
values, but are instead message ids for display strings.

Facility - is the facility code

Code - is the facility's status code

需要关注的就3个字段:

  1. Severity: 表示是否成功
  2. Facility: 模块码
  3. Code: 状态码

所以我们使用上表,配合文章末尾的Facility表Code表解析一波0xC0000005错误码:

  1. Severity这里为1,所以是错误码
  2. Facility这里为0,所以模块是FACILITY_NULL
  3. Code这里为5,错误代码是ERROR_ACCESS_DENIED

怎么样,是不是就不这么复杂了😊
最后我会附上已有COM错误码列表方便大家查阅~

Facility表

名称
FACILITY_NULL 0
FACILITY_RPC 1
FACILITY_DISPATCH 2
FACILITY_STORAGE 3
FACILITY_ITF 4
FACILITY_WIN32 7
FACILITY_WINDOWS 8
FACILITY_SSPI 9
FACILITY_SECURITY 9
FACILITY_CONTROL 10
FACILITY_CERT 11
FACILITY_INTERNET 12
FACILITY_MEDIASERVER 13
FACILITY_MSMQ 14
FACILITY_SETUPAPI 15
FACILITY_SCARD 16
FACILITY_COMPLUS 17
FACILITY_AAF 18
FACILITY_URT 19
FACILITY_ACS 20
FACILITY_DPLAY 21
FACILITY_UMI 22
FACILITY_SXS 23
FACILITY_WINDOWS_CE 24
FACILITY_HTTP 25
FACILITY_USERMODE_COMMONLOG 26
FACILITY_WER 27
FACILITY_USERMODE_FILTER_MANAGER 31
FACILITY_BACKGROUNDCOPY 32
FACILITY_CONFIGURATION 33
FACILITY_WIA 33
FACILITY_STATE_MANAGEMENT 34
FACILITY_METADIRECTORY 35
FACILITY_WINDOWSUPDATE 36
FACILITY_DIRECTORYSERVICE 37
FACILITY_GRAPHICS 38
FACILITY_SHELL 39
FACILITY_NAP 39
FACILITY_TPM_SERVICES 40
FACILITY_TPM_SOFTWARE 41
FACILITY_UI 42
FACILITY_XAML 43
FACILITY_ACTION_QUEUE 44
FACILITY_PLA 48
FACILITY_WINDOWS_SETUP 48
FACILITY_FVE 49
FACILITY_FWP 50
FACILITY_WINRM 51
FACILITY_NDIS 52
FACILITY_USERMODE_HYPERVISOR 53
FACILITY_CMI 54
FACILITY_USERMODE_VIRTUALIZATION 55
FACILITY_USERMODE_VOLMGR 56
FACILITY_BCD 57
FACILITY_USERMODE_VHD 58
FACILITY_USERMODE_HNS 59
FACILITY_SDIAG 60
FACILITY_WEBSERVICES 61
FACILITY_WINPE 61
FACILITY_WPN 62
FACILITY_WINDOWS_STORE 63
FACILITY_INPUT 64
FACILITY_QUIC 65
FACILITY_EAP 66
FACILITY_WINDOWS_DEFENDER 80
FACILITY_OPC 81
FACILITY_XPS 82
FACILITY_MBN 84
FACILITY_POWERSHELL 84
FACILITY_RAS 83
FACILITY_P2P_INT 98
FACILITY_P2P 99
FACILITY_DAF 100
FACILITY_BLUETOOTH_ATT 101
FACILITY_AUDIO 102
FACILITY_STATEREPOSITORY 103
FACILITY_VISUALCPP 109
FACILITY_SCRIPT 112
FACILITY_PARSE 113
FACILITY_BLB 120
FACILITY_BLB_CLI 121
FACILITY_WSBAPP 122
FACILITY_BLBUI 128
FACILITY_USN 129
FACILITY_USERMODE_VOLSNAP 130
FACILITY_TIERING 131
FACILITY_WSB_ONLINE 133
FACILITY_ONLINE_ID 134
FACILITY_DEVICE_UPDATE_AGENT 135
FACILITY_DRVSERVICING 136
FACILITY_DLS 153
FACILITY_DELIVERY_OPTIMIZATION 208
FACILITY_USERMODE_SPACES 231
FACILITY_USER_MODE_SECURITY_CORE 232
FACILITY_USERMODE_LICENSING 234
FACILITY_SOS 160
FACILITY_DEBUGGERS 176
FACILITY_SPP 256
FACILITY_RESTORE 256
FACILITY_DMSERVER 256
FACILITY_DEPLOYMENT_SERVICES_SERVER 257
FACILITY_DEPLOYMENT_SERVICES_IMAGING 258
FACILITY_DEPLOYMENT_SERVICES_MANAGEMENT 259
FACILITY_DEPLOYMENT_SERVICES_UTIL 260
FACILITY_DEPLOYMENT_SERVICES_BINLSVC 261
FACILITY_DEPLOYMENT_SERVICES_PXE 263
FACILITY_DEPLOYMENT_SERVICES_TFTP 264
FACILITY_DEPLOYMENT_SERVICES_TRANSPORT_MANAGEMENT 272
FACILITY_DEPLOYMENT_SERVICES_DRIVER_PROVISIONING 278
FACILITY_DEPLOYMENT_SERVICES_MULTICAST_SERVER 289
FACILITY_DEPLOYMENT_SERVICES_MULTICAST_CLIENT 290
FACILITY_DEPLOYMENT_SERVICES_CONTENT_PROVIDER 293
FACILITY_LINGUISTIC_SERVICES 305
FACILITY_AUDIOSTREAMING 1094
FACILITY_TTD 1490
FACILITY_ACCELERATOR 1536
FACILITY_WMAAECMA 1996
FACILITY_DIRECTMUSIC 2168
FACILITY_DIRECT3D10 2169
FACILITY_DXGI 2170
FACILITY_DXGI_DDI 2171
FACILITY_DIRECT3D11 2172
FACILITY_DIRECT3D11_DEBUG 2173
FACILITY_DIRECT3D12 2174
FACILITY_DIRECT3D12_DEBUG 2175
FACILITY_DXCORE 2176
FACILITY_LEAP 2184
FACILITY_AUDCLNT 2185
FACILITY_WINCODEC_DWRITE_DWM 2200
FACILITY_WINML 2192
FACILITY_DIRECT2D 2201
FACILITY_DEFRAG 2304
FACILITY_USERMODE_SDBUS 2305
FACILITY_JSCRIPT 2306
FACILITY_PIDGENX 2561
FACILITY_EAS 85
FACILITY_WEB 885
FACILITY_WEB_SOCKET 886
FACILITY_MOBILE 1793
FACILITY_SQLITE 1967
FACILITY_UTC 1989
FACILITY_WEP 2049
FACILITY_SYNCENGINE 2050
FACILITY_XBOX 2339
FACILITY_GAME 2340
FACILITY_PIX 2748

Code表

名称
ERROR_INVALID_FUNCTION 1
ERROR_FILE_NOT_FOUND 2
ERROR_PATH_NOT_FOUND 3
ERROR_TOO_MANY_OPEN_FILES 4
ERROR_ACCESS_DENIED 5
ERROR_INVALID_HANDLE 6
ERROR_ARENA_TRASHED 7
ERROR_NOT_ENOUGH_MEMORY 8
ERROR_INVALID_BLOCK 9
ERROR_BAD_ENVIRONMENT 10
ERROR_BAD_FORMAT 11
ERROR_INVALID_ACCESS 12
ERROR_INVALID_DATA 13
ERROR_OUTOFMEMORY 14
ERROR_INVALID_DRIVE 15
ERROR_CURRENT_DIRECTORY 16
ERROR_NOT_SAME_DEVICE 17
ERROR_NO_MORE_FILES 18
ERROR_WRITE_PROTECT 19
ERROR_BAD_UNIT 20
ERROR_NOT_READY 21
ERROR_BAD_COMMAND 22
ERROR_CRC 23
ERROR_BAD_LENGTH 24
ERROR_SEEK 25
ERROR_NOT_DOS_DISK 26
ERROR_SECTOR_NOT_FOUND 27
ERROR_OUT_OF_PAPER 28
ERROR_WRITE_FAULT 29
ERROR_READ_FAULT 30
ERROR_GEN_FAILURE 31
ERROR_SHARING_VIOLATION 32
ERROR_LOCK_VIOLATION 33
ERROR_WRONG_DISK 34
ERROR_SHARING_BUFFER_EXCEEDED 36
ERROR_HANDLE_EOF 38
ERROR_HANDLE_DISK_FULL 39
ERROR_NOT_SUPPORTED 50
ERROR_REM_NOT_LIST 51
ERROR_DUP_NAME 52
ERROR_BAD_NETPATH 53
ERROR_NETWORK_BUSY 54
ERROR_DEV_NOT_EXIST 55
ERROR_TOO_MANY_CMDS 56
ERROR_ADAP_HDW_ERR 57
ERROR_BAD_NET_RESP 58
ERROR_UNEXP_NET_ERR 59
ERROR_BAD_REM_ADAP 60
ERROR_PRINTQ_FULL 61
ERROR_NO_SPOOL_SPACE 62
ERROR_PRINT_CANCELLED 63
ERROR_NETNAME_DELETED 64
ERROR_NETWORK_ACCESS_DENIED 65
ERROR_BAD_DEV_TYPE 66
ERROR_BAD_NET_NAME 67
ERROR_TOO_MANY_NAMES 68
ERROR_TOO_MANY_SESS 69
ERROR_SHARING_PAUSED 70
ERROR_REQ_NOT_ACCEP 71
ERROR_REDIR_PAUSED 72
ERROR_FILE_EXISTS 80
ERROR_CANNOT_MAKE 82
ERROR_FAIL_I24 83
ERROR_OUT_OF_STRUCTURES 84
ERROR_ALREADY_ASSIGNED 85
ERROR_INVALID_PASSWORD 86
ERROR_INVALID_PARAMETER 87
ERROR_NET_WRITE_FAULT 88
ERROR_NO_PROC_SLOTS 89
ERROR_TOO_MANY_SEMAPHORES 100
ERROR_EXCL_SEM_ALREADY_OWNED 101
ERROR_SEM_IS_SET 102
ERROR_TOO_MANY_SEM_REQUESTS 103
ERROR_INVALID_AT_INTERRUPT_TIME 104
ERROR_SEM_OWNER_DIED 105
ERROR_SEM_USER_LIMIT 106
ERROR_DISK_CHANGE 107
ERROR_DRIVE_LOCKED 108
ERROR_BROKEN_PIPE 109
ERROR_OPEN_FAILED 110
ERROR_BUFFER_OVERFLOW 111
ERROR_DISK_FULL 112
ERROR_NO_MORE_SEARCH_HANDLES 113
ERROR_INVALID_TARGET_HANDLE 114
ERROR_INVALID_CATEGORY 117
ERROR_INVALID_VERIFY_SWITCH 118
ERROR_BAD_DRIVER_LEVEL 119
ERROR_CALL_NOT_IMPLEMENTED 120
ERROR_SEM_TIMEOUT 121
ERROR_INSUFFICIENT_BUFFER 122
ERROR_INVALID_NAME 123
ERROR_INVALID_LEVEL 124
ERROR_NO_VOLUME_LABEL 125
ERROR_MOD_NOT_FOUND 126
ERROR_PROC_NOT_FOUND 127
ERROR_WAIT_NO_CHILDREN 128
ERROR_CHILD_NOT_COMPLETE 129
ERROR_DIRECT_ACCESS_HANDLE 130
ERROR_NEGATIVE_SEEK 131
ERROR_SEEK_ON_DEVICE 132
ERROR_IS_JOIN_TARGET 133
ERROR_IS_JOINED 134
ERROR_IS_SUBSTED 135
ERROR_NOT_JOINED 136
ERROR_NOT_SUBSTED 137
ERROR_JOIN_TO_JOIN 138
ERROR_SUBST_TO_SUBST 139
ERROR_JOIN_TO_SUBST 140
ERROR_SUBST_TO_JOIN 141
ERROR_BUSY_DRIVE 142
ERROR_SAME_DRIVE 143
ERROR_DIR_NOT_ROOT 144
ERROR_DIR_NOT_EMPTY 145
ERROR_IS_SUBST_PATH 146
ERROR_IS_JOIN_PATH 147
ERROR_PATH_BUSY 148
ERROR_IS_SUBST_TARGET 149
ERROR_SYSTEM_TRACE 150
ERROR_INVALID_EVENT_COUNT 151
ERROR_TOO_MANY_MUXWAITERS 152
ERROR_INVALID_LIST_FORMAT 153
ERROR_LABEL_TOO_LONG 154
ERROR_TOO_MANY_TCBS 155
ERROR_SIGNAL_REFUSED 156
ERROR_DISCARDED 157
ERROR_NOT_LOCKED 158
ERROR_BAD_THREADID_ADDR 159
ERROR_BAD_ARGUMENTS 160
ERROR_BAD_PATHNAME 161
ERROR_SIGNAL_PENDING 162
ERROR_MAX_THRDS_REACHED 164
ERROR_LOCK_FAILED 167
ERROR_BUSY 170
ERROR_DEVICE_SUPPORT_IN_PROGRESS 171
ERROR_CANCEL_VIOLATION 173
ERROR_ATOMIC_LOCKS_NOT_SUPPORTED 174
ERROR_INVALID_SEGMENT_NUMBER 180
ERROR_INVALID_ORDINAL 182
ERROR_ALREADY_EXISTS 183
ERROR_INVALID_FLAG_NUMBER 186
ERROR_SEM_NOT_FOUND 187
ERROR_INVALID_STARTING_CODESEG 188
ERROR_INVALID_STACKSEG 189
ERROR_INVALID_MODULETYPE 190
ERROR_INVALID_EXE_SIGNATURE 191
ERROR_EXE_MARKED_INVALID 192
ERROR_BAD_EXE_FORMAT 193
ERROR_ITERATED_DATA_EXCEEDS_64k 194
ERROR_INVALID_MINALLOCSIZE 195
ERROR_DYNLINK_FROM_INVALID_RING 196
ERROR_IOPL_NOT_ENABLED 197
ERROR_INVALID_SEGDPL 198
ERROR_AUTODATASEG_EXCEEDS_64k 199
ERROR_RING2SEG_MUST_BE_MOVABLE 200
ERROR_RELOC_CHAIN_XEEDS_SEGLIM 201
ERROR_INFLOOP_IN_RELOC_CHAIN 202
ERROR_ENVVAR_NOT_FOUND 203
ERROR_NO_SIGNAL_SENT 205
ERROR_FILENAME_EXCED_RANGE 206
ERROR_RING2_STACK_IN_USE 207
ERROR_META_EXPANSION_TOO_LONG 208
ERROR_INVALID_SIGNAL_NUMBER 209
ERROR_THREAD_1_INACTIVE 210
ERROR_LOCKED 212
ERROR_TOO_MANY_MODULES 214
ERROR_NESTING_NOT_ALLOWED 215
ERROR_EXE_MACHINE_TYPE_MISMATCH 216
ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY 217
ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY 218
ERROR_FILE_CHECKED_OUT 220
ERROR_CHECKOUT_REQUIRED 221
ERROR_BAD_FILE_TYPE 222
ERROR_FILE_TOO_LARGE 223
ERROR_FORMS_AUTH_REQUIRED 224
ERROR_VIRUS_INFECTED 225
ERROR_VIRUS_DELETED 226
ERROR_PIPE_LOCAL 229
ERROR_BAD_PIPE 230
ERROR_PIPE_BUSY 231
ERROR_NO_DATA 232
ERROR_PIPE_NOT_CONNECTED 233
ERROR_MORE_DATA 234
ERROR_NO_WORK_DONE 235
ERROR_VC_DISCONNECTED 240
ERROR_INVALID_EA_NAME 254
ERROR_EA_LIST_INCONSISTENT 255
WAIT_TIMEOUT 258
ERROR_NO_MORE_ITEMS 259
ERROR_CANNOT_COPY 266
ERROR_DIRECTORY 267
ERROR_EAS_DIDNT_FIT 275
ERROR_EA_FILE_CORRUPT 276
ERROR_EA_TABLE_FULL 277
ERROR_INVALID_EA_HANDLE 278
ERROR_EAS_NOT_SUPPORTED 282
ERROR_NOT_OWNER 288
ERROR_TOO_MANY_POSTS 298
ERROR_PARTIAL_COPY 299
ERROR_OPLOCK_NOT_GRANTED 300
ERROR_INVALID_OPLOCK_PROTOCOL 301
ERROR_DISK_TOO_FRAGMENTED 302
ERROR_DELETE_PENDING 303
ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING 304
ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME 305
ERROR_SECURITY_STREAM_IS_INCONSISTENT 306
ERROR_INVALID_LOCK_RANGE 307
ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT 308
ERROR_NOTIFICATION_GUID_ALREADY_DEFINED 309
ERROR_INVALID_EXCEPTION_HANDLER 310
ERROR_DUPLICATE_PRIVILEGES 311
ERROR_NO_RANGES_PROCESSED 312
ERROR_NOT_ALLOWED_ON_SYSTEM_FILE 313
ERROR_DISK_RESOURCES_EXHAUSTED 314
ERROR_INVALID_TOKEN 315
ERROR_DEVICE_FEATURE_NOT_SUPPORTED 316
ERROR_MR_MID_NOT_FOUND 317
ERROR_SCOPE_NOT_FOUND 318
ERROR_UNDEFINED_SCOPE 319
ERROR_INVALID_CAP 320
ERROR_DEVICE_UNREACHABLE 321
ERROR_DEVICE_NO_RESOURCES 322
ERROR_DATA_CHECKSUM_ERROR 323
ERROR_INTERMIXED_KERNEL_EA_OPERATION 324
ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED 326
ERROR_OFFSET_ALIGNMENT_VIOLATION 327
ERROR_INVALID_FIELD_IN_PARAMETER_LIST 328
ERROR_OPERATION_IN_PROGRESS 329
ERROR_BAD_DEVICE_PATH 330
ERROR_TOO_MANY_DESCRIPTORS 331
ERROR_SCRUB_DATA_DISABLED 332
ERROR_NOT_REDUNDANT_STORAGE 333
ERROR_RESIDENT_FILE_NOT_SUPPORTED 334
ERROR_COMPRESSED_FILE_NOT_SUPPORTED 335
ERROR_DIRECTORY_NOT_SUPPORTED 336
ERROR_NOT_READ_FROM_COPY 337
ERROR_FT_WRITE_FAILURE 338
ERROR_FT_DI_SCAN_REQUIRED 339
ERROR_INVALID_KERNEL_INFO_VERSION 340
ERROR_INVALID_PEP_INFO_VERSION 341
ERROR_OBJECT_NOT_EXTERNALLY_BACKED 342
ERROR_EXTERNAL_BACKING_PROVIDER_UNKNOWN 343
ERROR_COMPRESSION_NOT_BENEFICIAL 344
ERROR_STORAGE_TOPOLOGY_ID_MISMATCH 345
ERROR_BLOCKED_BY_PARENTAL_CONTROLS 346
ERROR_BLOCK_TOO_MANY_REFERENCES 347
ERROR_MARKED_TO_DISALLOW_WRITES 348
ERROR_ENCLAVE_FAILURE 349
ERROR_FAIL_NOACTION_REBOOT 350
ERROR_FAIL_SHUTDOWN 351
ERROR_FAIL_RESTART 352
ERROR_MAX_SESSIONS_REACHED 353
ERROR_NETWORK_ACCESS_DENIED_EDP 354
ERROR_DEVICE_HINT_NAME_BUFFER_TOO_SMALL 355
ERROR_EDP_POLICY_DENIES_OPERATION 356
ERROR_EDP_DPL_POLICY_CANT_BE_SATISFIED 357
ERROR_CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT 358
ERROR_DEVICE_IN_MAINTENANCE 359
ERROR_NOT_SUPPORTED_ON_DAX 360
ERROR_DAX_MAPPING_EXISTS 361
ERROR_CLOUD_FILE_PROVIDER_NOT_RUNNING 362
ERROR_CLOUD_FILE_METADATA_CORRUPT 363
ERROR_CLOUD_FILE_METADATA_TOO_LARGE 364
ERROR_CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE 365
ERROR_CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH 366
ERROR_CHILD_PROCESS_BLOCKED 367
ERROR_STORAGE_LOST_DATA_PERSISTENCE 368
ERROR_FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE 369
ERROR_FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT 370
ERROR_FILE_SYSTEM_VIRTUALIZATION_BUSY 371
ERROR_FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN 372
ERROR_GDI_HANDLE_LEAK 373
ERROR_CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS 374
ERROR_CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED 375
ERROR_NOT_A_CLOUD_FILE 376
ERROR_CLOUD_FILE_NOT_IN_SYNC 377
ERROR_CLOUD_FILE_ALREADY_CONNECTED 378
ERROR_CLOUD_FILE_NOT_SUPPORTED 379
ERROR_CLOUD_FILE_INVALID_REQUEST 380
ERROR_CLOUD_FILE_READ_ONLY_VOLUME 381
ERROR_CLOUD_FILE_CONNECTED_PROVIDER_ONLY 382
ERROR_CLOUD_FILE_VALIDATION_FAILED 383
ERROR_SMB1_NOT_AVAILABLE 384
ERROR_FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION 385
ERROR_CLOUD_FILE_AUTHENTICATION_FAILED 386
ERROR_CLOUD_FILE_INSUFFICIENT_RESOURCES 387
ERROR_CLOUD_FILE_NETWORK_UNAVAILABLE 388
ERROR_CLOUD_FILE_UNSUCCESSFUL 389
ERROR_CLOUD_FILE_NOT_UNDER_SYNC_ROOT 390
ERROR_CLOUD_FILE_IN_USE 391
ERROR_CLOUD_FILE_PINNED 392
ERROR_CLOUD_FILE_REQUEST_ABORTED 393
ERROR_CLOUD_FILE_PROPERTY_CORRUPT 394
ERROR_CLOUD_FILE_ACCESS_DENIED 395
ERROR_CLOUD_FILE_INCOMPATIBLE_HARDLINKS 396
ERROR_CLOUD_FILE_PROPERTY_LOCK_CONFLICT 397
ERROR_CLOUD_FILE_REQUEST_CANCELED 398
ERROR_EXTERNAL_SYSKEY_NOT_SUPPORTED 399
ERROR_THREAD_MODE_ALREADY_BACKGROUND 400
ERROR_THREAD_MODE_NOT_BACKGROUND 401
ERROR_PROCESS_MODE_ALREADY_BACKGROUND 402
ERROR_PROCESS_MODE_NOT_BACKGROUND 403
ERROR_CLOUD_FILE_PROVIDER_TERMINATED 404
ERROR_NOT_A_CLOUD_SYNC_ROOT 405
ERROR_FILE_PROTECTED_UNDER_DPL 406
ERROR_VOLUME_NOT_CLUSTER_ALIGNED 407
ERROR_NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND 408
ERROR_APPX_FILE_NOT_ENCRYPTED 409
ERROR_RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED 410
ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET 411
ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE 412
ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER 413
ERROR_LINUX_SUBSYSTEM_NOT_PRESENT 414
ERROR_FT_READ_FAILURE 415
ERROR_STORAGE_RESERVE_ID_INVALID 416
ERROR_STORAGE_RESERVE_DOES_NOT_EXIST 417
ERROR_STORAGE_RESERVE_ALREADY_EXISTS 418
ERROR_STORAGE_RESERVE_NOT_EMPTY 419
ERROR_NOT_A_DAX_VOLUME 420
ERROR_NOT_DAX_MAPPABLE 421
ERROR_TIME_SENSITIVE_THREAD 422
ERROR_DPL_NOT_SUPPORTED_FOR_USER 423
ERROR_CASE_DIFFERING_NAMES_IN_DIR 424
ERROR_FILE_NOT_SUPPORTED 425
ERROR_CLOUD_FILE_REQUEST_TIMEOUT 426
ERROR_NO_TASK_QUEUE 427
ERROR_SRC_SRV_DLL_LOAD_FAILED 428
ERROR_NOT_SUPPORTED_WITH_BTT 429
ERROR_ENCRYPTION_DISABLED 430
ERROR_ENCRYPTING_METADATA_DISALLOWED 431
ERROR_CANT_CLEAR_ENCRYPTION_FLAG 432
ERROR_NO_SUCH_DEVICE 433
ERROR_CLOUD_FILE_DEHYDRATION_DISALLOWED 434
ERROR_FILE_SNAP_IN_PROGRESS 435
ERROR_FILE_SNAP_USER_SECTION_NOT_SUPPORTED 436
ERROR_FILE_SNAP_MODIFY_NOT_SUPPORTED 437
ERROR_FILE_SNAP_IO_NOT_COORDINATED 438
ERROR_FILE_SNAP_UNEXPECTED_ERROR 439
ERROR_FILE_SNAP_INVALID_PARAMETER 440
ERROR_UNSATISFIED_DEPENDENCIES 441
ERROR_CASE_SENSITIVE_PATH 442
ERROR_UNEXPECTED_NTCACHEMANAGER_ERROR 443
ERROR_LINUX_SUBSYSTEM_UPDATE_REQUIRED 444
ERROR_DLP_POLICY_WARNS_AGAINST_OPERATION 445
ERROR_DLP_POLICY_DENIES_OPERATION 446
ERROR_DLP_POLICY_SILENTLY_FAIL 449
ERROR_CAPAUTHZ_NOT_DEVUNLOCKED 450
ERROR_CAPAUTHZ_CHANGE_TYPE 451
ERROR_CAPAUTHZ_NOT_PROVISIONED 452
ERROR_CAPAUTHZ_NOT_AUTHORIZED 453
ERROR_CAPAUTHZ_NO_POLICY 454
ERROR_CAPAUTHZ_DB_CORRUPTED 455
ERROR_CAPAUTHZ_SCCD_INVALID_CATALOG 456
ERROR_CAPAUTHZ_SCCD_NO_AUTH_ENTITY 457
ERROR_CAPAUTHZ_SCCD_PARSE_ERROR 458
ERROR_CAPAUTHZ_SCCD_DEV_MODE_REQUIRED 459
ERROR_CAPAUTHZ_SCCD_NO_CAPABILITY_MATCH 460
ERROR_CIMFS_IMAGE_CORRUPT 470
ERROR_PNP_QUERY_REMOVE_DEVICE_TIMEOUT 480
ERROR_PNP_QUERY_REMOVE_RELATED_DEVICE_TIMEOUT 481
ERROR_PNP_QUERY_REMOVE_UNRELATED_DEVICE_TIMEOUT 482
ERROR_DEVICE_HARDWARE_ERROR 483
ERROR_INVALID_ADDRESS 487
ERROR_HAS_SYSTEM_CRITICAL_FILES 488
ERROR_VRF_CFG_AND_IO_ENABLED 1183
ERROR_PARTITION_TERMINATING 1184
ERROR_USER_PROFILE_LOAD 500
ERROR_ARITHMETIC_OVERFLOW 534
ERROR_PIPE_CONNECTED 535
ERROR_PIPE_LISTENING 536
ERROR_VERIFIER_STOP 537
ERROR_ABIOS_ERROR 538
ERROR_WX86_WARNING 539
ERROR_WX86_ERROR 540
ERROR_TIMER_NOT_CANCELED 541
ERROR_UNWIND 542
ERROR_BAD_STACK 543
ERROR_INVALID_UNWIND_TARGET 544
ERROR_INVALID_PORT_ATTRIBUTES 545
ERROR_PORT_MESSAGE_TOO_LONG 546
ERROR_INVALID_QUOTA_LOWER 547
ERROR_DEVICE_ALREADY_ATTACHED 548
ERROR_INSTRUCTION_MISALIGNMENT 549
ERROR_PROFILING_NOT_STARTED 550
ERROR_PROFILING_NOT_STOPPED 551
ERROR_COULD_NOT_INTERPRET 552
ERROR_PROFILING_AT_LIMIT 553
ERROR_CANT_WAIT 554
ERROR_CANT_TERMINATE_SELF 555
ERROR_UNEXPECTED_MM_CREATE_ERR 556
ERROR_UNEXPECTED_MM_MAP_ERROR 557
ERROR_UNEXPECTED_MM_EXTEND_ERR 558
ERROR_BAD_FUNCTION_TABLE 559
ERROR_NO_GUID_TRANSLATION 560
ERROR_INVALID_LDT_SIZE 561
ERROR_INVALID_LDT_OFFSET 563
ERROR_INVALID_LDT_DESCRIPTOR 564
ERROR_TOO_MANY_THREADS 565
ERROR_THREAD_NOT_IN_PROCESS 566
ERROR_PAGEFILE_QUOTA_EXCEEDED 567
ERROR_LOGON_SERVER_CONFLICT 568
ERROR_SYNCHRONIZATION_REQUIRED 569
ERROR_NET_OPEN_FAILED 570
ERROR_IO_PRIVILEGE_FAILED 571
ERROR_CONTROL_C_EXIT 572
ERROR_MISSING_SYSTEMFILE 573
ERROR_UNHANDLED_EXCEPTION 574
ERROR_APP_INIT_FAILURE 575
ERROR_PAGEFILE_CREATE_FAILED 576
ERROR_INVALID_IMAGE_HASH 577
ERROR_NO_PAGEFILE 578
ERROR_ILLEGAL_FLOAT_CONTEXT 579
ERROR_NO_EVENT_PAIR 580
ERROR_DOMAIN_CTRLR_CONFIG_ERROR 581
ERROR_ILLEGAL_CHARACTER 582
ERROR_UNDEFINED_CHARACTER 583
ERROR_FLOPPY_VOLUME 584
ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT 585
ERROR_BACKUP_CONTROLLER 586
ERROR_MUTANT_LIMIT_EXCEEDED 587
ERROR_FS_DRIVER_REQUIRED 588
ERROR_CANNOT_LOAD_REGISTRY_FILE 589
ERROR_DEBUG_ATTACH_FAILED 590
ERROR_SYSTEM_PROCESS_TERMINATED 591
ERROR_DATA_NOT_ACCEPTED 592
ERROR_VDM_HARD_ERROR 593
ERROR_DRIVER_CANCEL_TIMEOUT 594
ERROR_REPLY_MESSAGE_MISMATCH 595
ERROR_LOST_WRITEBEHIND_DATA 596
ERROR_CLIENT_SERVER_PARAMETERS_INVALID 597
ERROR_NOT_TINY_STREAM 598
ERROR_STACK_OVERFLOW_READ 599
ERROR_CONVERT_TO_LARGE 600
ERROR_FOUND_OUT_OF_SCOPE 601
ERROR_ALLOCATE_BUCKET 602
ERROR_MARSHALL_OVERFLOW 603
ERROR_INVALID_VARIANT 604
ERROR_BAD_COMPRESSION_BUFFER 605
ERROR_AUDIT_FAILED 606
ERROR_TIMER_RESOLUTION_NOT_SET 607
ERROR_INSUFFICIENT_LOGON_INFO 608
ERROR_BAD_DLL_ENTRYPOINT 609
ERROR_BAD_SERVICE_ENTRYPOINT 610
ERROR_IP_ADDRESS_CONFLICT1 611
ERROR_IP_ADDRESS_CONFLICT2 612
ERROR_REGISTRY_QUOTA_LIMIT 613
ERROR_NO_CALLBACK_ACTIVE 614
ERROR_PWD_TOO_SHORT 615
ERROR_PWD_TOO_RECENT 616
ERROR_PWD_HISTORY_CONFLICT 617
ERROR_UNSUPPORTED_COMPRESSION 618
ERROR_INVALID_HW_PROFILE 619
ERROR_INVALID_PLUGPLAY_DEVICE_PATH 620
ERROR_QUOTA_LIST_INCONSISTENT 621
ERROR_EVALUATION_EXPIRATION 622
ERROR_ILLEGAL_DLL_RELOCATION 623
ERROR_DLL_INIT_FAILED_LOGOFF 624
ERROR_VALIDATE_CONTINUE 625
ERROR_NO_MORE_MATCHES 626
ERROR_RANGE_LIST_CONFLICT 627
ERROR_SERVER_SID_MISMATCH 628
ERROR_CANT_ENABLE_DENY_ONLY 629
ERROR_FLOAT_MULTIPLE_FAULTS 630
ERROR_FLOAT_MULTIPLE_TRAPS 631
ERROR_NOINTERFACE 632
ERROR_DRIVER_FAILED_SLEEP 633
ERROR_CORRUPT_SYSTEM_FILE 634
ERROR_COMMITMENT_MINIMUM 635
ERROR_PNP_RESTART_ENUMERATION 636
ERROR_SYSTEM_IMAGE_BAD_SIGNATURE 637
ERROR_PNP_REBOOT_REQUIRED 638
ERROR_INSUFFICIENT_POWER 639
ERROR_MULTIPLE_FAULT_VIOLATION 640
ERROR_SYSTEM_SHUTDOWN 641
ERROR_PORT_NOT_SET 642
ERROR_DS_VERSION_CHECK_FAILURE 643
ERROR_RANGE_NOT_FOUND 644
ERROR_NOT_SAFE_MODE_DRIVER 646
ERROR_FAILED_DRIVER_ENTRY 647
ERROR_DEVICE_ENUMERATION_ERROR 648
ERROR_MOUNT_POINT_NOT_RESOLVED 649
ERROR_INVALID_DEVICE_OBJECT_PARAMETER 650
ERROR_MCA_OCCURED 651
ERROR_DRIVER_DATABASE_ERROR 652
ERROR_SYSTEM_HIVE_TOO_LARGE 653
ERROR_DRIVER_FAILED_PRIOR_UNLOAD 654
ERROR_VOLSNAP_PREPARE_HIBERNATE 655
ERROR_HIBERNATION_FAILURE 656
ERROR_PWD_TOO_LONG 657
ERROR_FILE_SYSTEM_LIMITATION 665
ERROR_ASSERTION_FAILURE 668
ERROR_ACPI_ERROR 669
ERROR_WOW_ASSERTION 670
ERROR_PNP_BAD_MPS_TABLE 671
ERROR_PNP_TRANSLATION_FAILED 672
ERROR_PNP_IRQ_TRANSLATION_FAILED 673
ERROR_PNP_INVALID_ID 674
ERROR_WAKE_SYSTEM_DEBUGGER 675
ERROR_HANDLES_CLOSED 676
ERROR_EXTRANEOUS_INFORMATION 677
ERROR_RXACT_COMMIT_NECESSARY 678
ERROR_MEDIA_CHECK 679
ERROR_GUID_SUBSTITUTION_MADE 680
ERROR_STOPPED_ON_SYMLINK 681
ERROR_LONGJUMP 682
ERROR_PLUGPLAY_QUERY_VETOED 683
ERROR_UNWIND_CONSOLIDATE 684
ERROR_REGISTRY_HIVE_RECOVERED 685
ERROR_DLL_MIGHT_BE_INSECURE 686
ERROR_DLL_MIGHT_BE_INCOMPATIBLE 687
ERROR_DBG_EXCEPTION_NOT_HANDLED 688
ERROR_DBG_REPLY_LATER 689
ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE 690
ERROR_DBG_TERMINATE_THREAD 691
ERROR_DBG_TERMINATE_PROCESS 692
ERROR_DBG_CONTROL_C 693
ERROR_DBG_PRINTEXCEPTION_C 694
ERROR_DBG_RIPEXCEPTION 695
ERROR_DBG_CONTROL_BREAK 696
ERROR_DBG_COMMAND_EXCEPTION 697
ERROR_OBJECT_NAME_EXISTS 698
ERROR_THREAD_WAS_SUSPENDED 699
ERROR_IMAGE_NOT_AT_BASE 700
ERROR_RXACT_STATE_CREATED 701
ERROR_SEGMENT_NOTIFICATION 702
ERROR_BAD_CURRENT_DIRECTORY 703
ERROR_FT_READ_RECOVERY_FROM_BACKUP 704
ERROR_FT_WRITE_RECOVERY 705
ERROR_IMAGE_MACHINE_TYPE_MISMATCH 706
ERROR_RECEIVE_PARTIAL 707
ERROR_RECEIVE_EXPEDITED 708
ERROR_RECEIVE_PARTIAL_EXPEDITED 709
ERROR_EVENT_DONE 710
ERROR_EVENT_PENDING 711
ERROR_CHECKING_FILE_SYSTEM 712
ERROR_FATAL_APP_EXIT 713
ERROR_PREDEFINED_HANDLE 714
ERROR_WAS_UNLOCKED 715
ERROR_SERVICE_NOTIFICATION 716
ERROR_WAS_LOCKED 717
ERROR_LOG_HARD_ERROR 718
ERROR_ALREADY_WIN32 719
ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE 720
ERROR_NO_YIELD_PERFORMED 721
ERROR_TIMER_RESUME_IGNORED 722
ERROR_ARBITRATION_UNHANDLED 723
ERROR_CARDBUS_NOT_SUPPORTED 724
ERROR_MP_PROCESSOR_MISMATCH 725
ERROR_HIBERNATED 726
ERROR_RESUME_HIBERNATION 727
ERROR_FIRMWARE_UPDATED 728
ERROR_DRIVERS_LEAKING_LOCKED_PAGES 729
ERROR_WAKE_SYSTEM 730
ERROR_WAIT_1 731
ERROR_WAIT_2 732
ERROR_WAIT_3 733
ERROR_WAIT_63 734
ERROR_ABANDONED_WAIT_0 735
ERROR_ABANDONED_WAIT_63 736
ERROR_USER_APC 737
ERROR_KERNEL_APC 738
ERROR_ALERTED 739
ERROR_ELEVATION_REQUIRED 740
ERROR_REPARSE 741
ERROR_OPLOCK_BREAK_IN_PROGRESS 742
ERROR_VOLUME_MOUNTED 743
ERROR_RXACT_COMMITTED 744
ERROR_NOTIFY_CLEANUP 745
ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED 746
ERROR_PAGE_FAULT_TRANSITION 747
ERROR_PAGE_FAULT_DEMAND_ZERO 748
ERROR_PAGE_FAULT_COPY_ON_WRITE 749
ERROR_PAGE_FAULT_GUARD_PAGE 750
ERROR_PAGE_FAULT_PAGING_FILE 751
ERROR_CACHE_PAGE_LOCKED 752
ERROR_CRASH_DUMP 753
ERROR_BUFFER_ALL_ZEROS 754
ERROR_REPARSE_OBJECT 755
ERROR_RESOURCE_REQUIREMENTS_CHANGED 756
ERROR_TRANSLATION_COMPLETE 757
ERROR_NOTHING_TO_TERMINATE 758
ERROR_PROCESS_NOT_IN_JOB 759
ERROR_PROCESS_IN_JOB 760
ERROR_VOLSNAP_HIBERNATE_READY 761
ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY 762
ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED 763
ERROR_INTERRUPT_STILL_CONNECTED 764
ERROR_WAIT_FOR_OPLOCK 765
ERROR_DBG_EXCEPTION_HANDLED 766
ERROR_DBG_CONTINUE 767
ERROR_CALLBACK_POP_STACK 768
ERROR_COMPRESSION_DISABLED 769
ERROR_CANTFETCHBACKWARDS 770
ERROR_CANTSCROLLBACKWARDS 771
ERROR_ROWSNOTRELEASED 772
ERROR_BAD_ACCESSOR_FLAGS 773
ERROR_ERRORS_ENCOUNTERED 774
ERROR_NOT_CAPABLE 775
ERROR_REQUEST_OUT_OF_SEQUENCE 776
ERROR_VERSION_PARSE_ERROR 777
ERROR_BADSTARTPOSITION 778
ERROR_MEMORY_HARDWARE 779
ERROR_DISK_REPAIR_DISABLED 780
ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE 781
ERROR_SYSTEM_POWERSTATE_TRANSITION 782
ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION 783
ERROR_MCA_EXCEPTION 784
ERROR_ACCESS_AUDIT_BY_POLICY 785
ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY 786
ERROR_ABANDON_HIBERFILE 787
ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED 788
ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR 789
ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR 790
ERROR_BAD_MCFG_TABLE 791
ERROR_DISK_REPAIR_REDIRECTED 792
ERROR_DISK_REPAIR_UNSUCCESSFUL 793
ERROR_CORRUPT_LOG_OVERFULL 794
ERROR_CORRUPT_LOG_CORRUPTED 795
ERROR_CORRUPT_LOG_UNAVAILABLE 796
ERROR_CORRUPT_LOG_DELETED_FULL 797
ERROR_CORRUPT_LOG_CLEARED 798
ERROR_ORPHAN_NAME_EXHAUSTED 799
ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE 800
ERROR_CANNOT_GRANT_REQUESTED_OPLOCK 801
ERROR_CANNOT_BREAK_OPLOCK 802
ERROR_OPLOCK_HANDLE_CLOSED 803
ERROR_NO_ACE_CONDITION 804
ERROR_INVALID_ACE_CONDITION 805
ERROR_FILE_HANDLE_REVOKED 806
ERROR_IMAGE_AT_DIFFERENT_BASE 807
ERROR_ENCRYPTED_IO_NOT_POSSIBLE 808
ERROR_FILE_METADATA_OPTIMIZATION_IN_PROGRESS 809
ERROR_QUOTA_ACTIVITY 810
ERROR_HANDLE_REVOKED 811
ERROR_CALLBACK_INVOKE_INLINE 812
ERROR_CPU_SET_INVALID 813
ERROR_ENCLAVE_NOT_TERMINATED 814
ERROR_ENCLAVE_VIOLATION 815
ERROR_EA_ACCESS_DENIED 994
ERROR_OPERATION_ABORTED 995
ERROR_IO_INCOMPLETE 996
ERROR_IO_PENDING 997
ERROR_NOACCESS 998
ERROR_SWAPERROR 999
ERROR_STACK_OVERFLOW 1001
ERROR_INVALID_MESSAGE 1002
ERROR_CAN_NOT_COMPLETE 1003
ERROR_INVALID_FLAGS 1004
ERROR_UNRECOGNIZED_VOLUME 1005
ERROR_FILE_INVALID 1006
ERROR_FULLSCREEN_MODE 1007
ERROR_NO_TOKEN 1008
ERROR_BADDB 1009
ERROR_BADKEY 1010
ERROR_CANTOPEN 1011
ERROR_CANTREAD 1012
ERROR_CANTWRITE 1013
ERROR_REGISTRY_RECOVERED 1014
ERROR_REGISTRY_CORRUPT 1015
ERROR_REGISTRY_IO_FAILED 1016
ERROR_NOT_REGISTRY_FILE 1017
ERROR_KEY_DELETED 1018
ERROR_NO_LOG_SPACE 1019
ERROR_KEY_HAS_CHILDREN 1020
ERROR_CHILD_MUST_BE_VOLATILE 1021
ERROR_NOTIFY_ENUM_DIR 1022
ERROR_DEPENDENT_SERVICES_RUNNING 1051
ERROR_INVALID_SERVICE_CONTROL 1052
ERROR_SERVICE_REQUEST_TIMEOUT 1053
ERROR_SERVICE_NO_THREAD 1054
ERROR_SERVICE_DATABASE_LOCKED 1055
ERROR_SERVICE_ALREADY_RUNNING 1056
ERROR_INVALID_SERVICE_ACCOUNT 1057
ERROR_SERVICE_DISABLED 1058
ERROR_CIRCULAR_DEPENDENCY 1059
ERROR_SERVICE_DOES_NOT_EXIST 1060
ERROR_SERVICE_CANNOT_ACCEPT_CTRL 1061
ERROR_SERVICE_NOT_ACTIVE 1062
ERROR_FAILED_SERVICE_CONTROLLER_CONNECT 1063
ERROR_EXCEPTION_IN_SERVICE 1064
ERROR_DATABASE_DOES_NOT_EXIST 1065
ERROR_SERVICE_SPECIFIC_ERROR 1066
ERROR_PROCESS_ABORTED 1067
ERROR_SERVICE_DEPENDENCY_FAIL 1068
ERROR_SERVICE_LOGON_FAILED 1069
ERROR_SERVICE_START_HANG 1070
ERROR_INVALID_SERVICE_LOCK 1071
ERROR_SERVICE_MARKED_FOR_DELETE 1072
ERROR_SERVICE_EXISTS 1073
ERROR_ALREADY_RUNNING_LKG 1074
ERROR_SERVICE_DEPENDENCY_DELETED 1075
ERROR_BOOT_ALREADY_ACCEPTED 1076
ERROR_SERVICE_NEVER_STARTED 1077
ERROR_DUPLICATE_SERVICE_NAME 1078
ERROR_DIFFERENT_SERVICE_ACCOUNT 1079
ERROR_CANNOT_DETECT_DRIVER_FAILURE 1080
ERROR_CANNOT_DETECT_PROCESS_ABORT 1081
ERROR_NO_RECOVERY_PROGRAM 1082
ERROR_SERVICE_NOT_IN_EXE 1083
ERROR_NOT_SAFEBOOT_SERVICE 1084
ERROR_END_OF_MEDIA 1100
ERROR_FILEMARK_DETECTED 1101
ERROR_BEGINNING_OF_MEDIA 1102
ERROR_SETMARK_DETECTED 1103
ERROR_NO_DATA_DETECTED 1104
ERROR_PARTITION_FAILURE 1105
ERROR_INVALID_BLOCK_LENGTH 1106
ERROR_DEVICE_NOT_PARTITIONED 1107
ERROR_UNABLE_TO_LOCK_MEDIA 1108
ERROR_UNABLE_TO_UNLOAD_MEDIA 1109
ERROR_MEDIA_CHANGED 1110
ERROR_BUS_RESET 1111
ERROR_NO_MEDIA_IN_DRIVE 1112
ERROR_NO_UNICODE_TRANSLATION 1113
ERROR_DLL_INIT_FAILED 1114
ERROR_SHUTDOWN_IN_PROGRESS 1115
ERROR_NO_SHUTDOWN_IN_PROGRESS 1116
ERROR_IO_DEVICE 1117
ERROR_SERIAL_NO_DEVICE 1118
ERROR_IRQ_BUSY 1119
ERROR_MORE_WRITES 1120
ERROR_COUNTER_TIMEOUT 1121
ERROR_FLOPPY_ID_MARK_NOT_FOUND 1122
ERROR_FLOPPY_WRONG_CYLINDER 1123
ERROR_FLOPPY_UNKNOWN_ERROR 1124
ERROR_FLOPPY_BAD_REGISTERS 1125
ERROR_DISK_RECALIBRATE_FAILED 1126
ERROR_DISK_OPERATION_FAILED 1127
ERROR_DISK_RESET_FAILED 1128
ERROR_EOM_OVERFLOW 1129
ERROR_NOT_ENOUGH_SERVER_MEMORY 1130
ERROR_POSSIBLE_DEADLOCK 1131
ERROR_MAPPED_ALIGNMENT 1132
ERROR_SET_POWER_STATE_VETOED 1140
ERROR_SET_POWER_STATE_FAILED 1141
ERROR_TOO_MANY_LINKS 1142
ERROR_OLD_WIN_VERSION 1150
ERROR_APP_WRONG_OS 1151
ERROR_SINGLE_INSTANCE_APP 1152
ERROR_RMODE_APP 1153
ERROR_INVALID_DLL 1154
ERROR_NO_ASSOCIATION 1155
ERROR_DDE_FAIL 1156
ERROR_DLL_NOT_FOUND 1157
ERROR_NO_MORE_USER_HANDLES 1158
ERROR_MESSAGE_SYNC_ONLY 1159
ERROR_SOURCE_ELEMENT_EMPTY 1160
ERROR_DESTINATION_ELEMENT_FULL 1161
ERROR_ILLEGAL_ELEMENT_ADDRESS 1162
ERROR_MAGAZINE_NOT_PRESENT 1163
ERROR_DEVICE_REINITIALIZATION_NEEDED 1164
ERROR_DEVICE_REQUIRES_CLEANING 1165
ERROR_DEVICE_DOOR_OPEN 1166
ERROR_DEVICE_NOT_CONNECTED 1167
ERROR_NOT_FOUND 1168
ERROR_NO_MATCH 1169
ERROR_SET_NOT_FOUND 1170
ERROR_POINT_NOT_FOUND 1171
ERROR_NO_TRACKING_SERVICE 1172
ERROR_NO_VOLUME_ID 1173
ERROR_UNABLE_TO_REMOVE_REPLACED 1175
ERROR_UNABLE_TO_MOVE_REPLACEMENT 1176
ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 1177
ERROR_JOURNAL_DELETE_IN_PROGRESS 1178
ERROR_JOURNAL_NOT_ACTIVE 1179
ERROR_POTENTIAL_FILE_FOUND 1180
ERROR_JOURNAL_ENTRY_DELETED 1181
ERROR_SHUTDOWN_IS_SCHEDULED 1190
ERROR_SHUTDOWN_USERS_LOGGED_ON 1191
ERROR_BAD_DEVICE 1200
ERROR_CONNECTION_UNAVAIL 1201
ERROR_DEVICE_ALREADY_REMEMBERED 1202
ERROR_NO_NET_OR_BAD_PATH 1203
ERROR_BAD_PROVIDER 1204
ERROR_CANNOT_OPEN_PROFILE 1205
ERROR_BAD_PROFILE 1206
ERROR_NOT_CONTAINER 1207
ERROR_EXTENDED_ERROR 1208
ERROR_INVALID_GROUPNAME 1209
ERROR_INVALID_COMPUTERNAME 1210
ERROR_INVALID_EVENTNAME 1211
ERROR_INVALID_DOMAINNAME 1212
ERROR_INVALID_SERVICENAME 1213
ERROR_INVALID_NETNAME 1214
ERROR_INVALID_SHARENAME 1215
ERROR_INVALID_PASSWORDNAME 1216
ERROR_INVALID_MESSAGENAME 1217
ERROR_INVALID_MESSAGEDEST 1218
ERROR_SESSION_CREDENTIAL_CONFLICT 1219
ERROR_REMOTE_SESSION_LIMIT_EXCEEDED 1220
ERROR_DUP_DOMAINNAME 1221
ERROR_NO_NETWORK 1222
ERROR_CANCELLED 1223
ERROR_USER_MAPPED_FILE 1224
ERROR_CONNECTION_REFUSED 1225
ERROR_GRACEFUL_DISCONNECT 1226
ERROR_ADDRESS_ALREADY_ASSOCIATED 1227
ERROR_ADDRESS_NOT_ASSOCIATED 1228
ERROR_CONNECTION_INVALID 1229
ERROR_CONNECTION_ACTIVE 1230
ERROR_NETWORK_UNREACHABLE 1231
ERROR_HOST_UNREACHABLE 1232
ERROR_PROTOCOL_UNREACHABLE 1233
ERROR_PORT_UNREACHABLE 1234
ERROR_REQUEST_ABORTED 1235
ERROR_CONNECTION_ABORTED 1236
ERROR_RETRY 1237
ERROR_CONNECTION_COUNT_LIMIT 1238
ERROR_LOGIN_TIME_RESTRICTION 1239
ERROR_LOGIN_WKSTA_RESTRICTION 1240
ERROR_INCORRECT_ADDRESS 1241
ERROR_ALREADY_REGISTERED 1242
ERROR_SERVICE_NOT_FOUND 1243
ERROR_NOT_AUTHENTICATED 1244
ERROR_NOT_LOGGED_ON 1245
ERROR_CONTINUE 1246
ERROR_ALREADY_INITIALIZED 1247
ERROR_NO_MORE_DEVICES 1248
ERROR_NO_SUCH_SITE 1249
ERROR_DOMAIN_CONTROLLER_EXISTS 1250
ERROR_ONLY_IF_CONNECTED 1251
ERROR_OVERRIDE_NOCHANGES 1252
ERROR_BAD_USER_PROFILE 1253
ERROR_NOT_SUPPORTED_ON_SBS 1254
ERROR_SERVER_SHUTDOWN_IN_PROGRESS 1255
ERROR_HOST_DOWN 1256
ERROR_NON_ACCOUNT_SID 1257
ERROR_NON_DOMAIN_SID 1258
ERROR_APPHELP_BLOCK 1259
ERROR_ACCESS_DISABLED_BY_POLICY 1260
ERROR_REG_NAT_CONSUMPTION 1261
ERROR_CSCSHARE_OFFLINE 1262
ERROR_PKINIT_FAILURE 1263
ERROR_SMARTCARD_SUBSYSTEM_FAILURE 1264
ERROR_DOWNGRADE_DETECTED 1265
ERROR_MACHINE_LOCKED 1271
ERROR_SMB_GUEST_LOGON_BLOCKED 1272
ERROR_CALLBACK_SUPPLIED_INVALID_DATA 1273
ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED 1274
ERROR_DRIVER_BLOCKED 1275
ERROR_INVALID_IMPORT_OF_NON_DLL 1276
ERROR_ACCESS_DISABLED_WEBBLADE 1277
ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER 1278
ERROR_RECOVERY_FAILURE 1279
ERROR_ALREADY_FIBER 1280
ERROR_ALREADY_THREAD 1281
ERROR_STACK_BUFFER_OVERRUN 1282
ERROR_PARAMETER_QUOTA_EXCEEDED 1283
ERROR_DEBUGGER_INACTIVE 1284
ERROR_DELAY_LOAD_FAILED 1285
ERROR_VDM_DISALLOWED 1286
ERROR_UNIDENTIFIED_ERROR 1287
ERROR_INVALID_CRUNTIME_PARAMETER 1288
ERROR_BEYOND_VDL 1289
ERROR_INCOMPATIBLE_SERVICE_SID_TYPE 1290
ERROR_DRIVER_PROCESS_TERMINATED 1291
ERROR_IMPLEMENTATION_LIMIT 1292
ERROR_PROCESS_IS_PROTECTED 1293
ERROR_SERVICE_NOTIFY_CLIENT_LAGGING 1294
ERROR_DISK_QUOTA_EXCEEDED 1295
ERROR_CONTENT_BLOCKED 1296
ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE 1297
ERROR_APP_HANG 1298
ERROR_INVALID_LABEL 1299
ERROR_NOT_ALL_ASSIGNED 1300
ERROR_SOME_NOT_MAPPED 1301
ERROR_NO_QUOTAS_FOR_ACCOUNT 1302
ERROR_LOCAL_USER_SESSION_KEY 1303
ERROR_NULL_LM_PASSWORD 1304
ERROR_UNKNOWN_REVISION 1305
ERROR_REVISION_MISMATCH 1306
ERROR_INVALID_OWNER 1307
ERROR_INVALID_PRIMARY_GROUP 1308
ERROR_NO_IMPERSONATION_TOKEN 1309
ERROR_CANT_DISABLE_MANDATORY 1310
ERROR_NO_LOGON_SERVERS 1311
ERROR_NO_SUCH_LOGON_SESSION 1312
ERROR_NO_SUCH_PRIVILEGE 1313
ERROR_PRIVILEGE_NOT_HELD 1314
ERROR_INVALID_ACCOUNT_NAME 1315
ERROR_USER_EXISTS 1316
ERROR_NO_SUCH_USER 1317
ERROR_GROUP_EXISTS 1318
ERROR_NO_SUCH_GROUP 1319
ERROR_MEMBER_IN_GROUP 1320
ERROR_MEMBER_NOT_IN_GROUP 1321
ERROR_LAST_ADMIN 1322
ERROR_WRONG_PASSWORD 1323
ERROR_ILL_FORMED_PASSWORD 1324
ERROR_PASSWORD_RESTRICTION 1325
ERROR_LOGON_FAILURE 1326
ERROR_ACCOUNT_RESTRICTION 1327
ERROR_INVALID_LOGON_HOURS 1328
ERROR_INVALID_WORKSTATION 1329
ERROR_PASSWORD_EXPIRED 1330
ERROR_ACCOUNT_DISABLED 1331
ERROR_NONE_MAPPED 1332
ERROR_TOO_MANY_LUIDS_REQUESTED 1333
ERROR_LUIDS_EXHAUSTED 1334
ERROR_INVALID_SUB_AUTHORITY 1335
ERROR_INVALID_ACL 1336
ERROR_INVALID_SID 1337
ERROR_INVALID_SECURITY_DESCR 1338
ERROR_BAD_INHERITANCE_ACL 1340
ERROR_SERVER_DISABLED 1341
ERROR_SERVER_NOT_DISABLED 1342
ERROR_INVALID_ID_AUTHORITY 1343
ERROR_ALLOTTED_SPACE_EXCEEDED 1344
ERROR_INVALID_GROUP_ATTRIBUTES 1345
ERROR_BAD_IMPERSONATION_LEVEL 1346
ERROR_CANT_OPEN_ANONYMOUS 1347
ERROR_BAD_VALIDATION_CLASS 1348
ERROR_BAD_TOKEN_TYPE 1349
ERROR_NO_SECURITY_ON_OBJECT 1350
ERROR_CANT_ACCESS_DOMAIN_INFO 1351
ERROR_INVALID_SERVER_STATE 1352
ERROR_INVALID_DOMAIN_STATE 1353
ERROR_INVALID_DOMAIN_ROLE 1354
ERROR_NO_SUCH_DOMAIN 1355
ERROR_DOMAIN_EXISTS 1356
ERROR_DOMAIN_LIMIT_EXCEEDED 1357
ERROR_INTERNAL_DB_CORRUPTION 1358
ERROR_INTERNAL_ERROR 1359
ERROR_GENERIC_NOT_MAPPED 1360
ERROR_BAD_DESCRIPTOR_FORMAT 1361
ERROR_NOT_LOGON_PROCESS 1362
ERROR_LOGON_SESSION_EXISTS 1363
ERROR_NO_SUCH_PACKAGE 1364
ERROR_BAD_LOGON_SESSION_STATE 1365
ERROR_LOGON_SESSION_COLLISION 1366
ERROR_INVALID_LOGON_TYPE 1367
ERROR_CANNOT_IMPERSONATE 1368
ERROR_RXACT_INVALID_STATE 1369
ERROR_RXACT_COMMIT_FAILURE 1370
ERROR_SPECIAL_ACCOUNT 1371
ERROR_SPECIAL_GROUP 1372
ERROR_SPECIAL_USER 1373
ERROR_MEMBERS_PRIMARY_GROUP 1374
ERROR_TOKEN_ALREADY_IN_USE 1375
ERROR_NO_SUCH_ALIAS 1376
ERROR_MEMBER_NOT_IN_ALIAS 1377
ERROR_MEMBER_IN_ALIAS 1378
ERROR_ALIAS_EXISTS 1379
ERROR_LOGON_NOT_GRANTED 1380
ERROR_TOO_MANY_SECRETS 1381
ERROR_SECRET_TOO_LONG 1382
ERROR_INTERNAL_DB_ERROR 1383
ERROR_TOO_MANY_CONTEXT_IDS 1384
ERROR_LOGON_TYPE_NOT_GRANTED 1385
ERROR_NT_CROSS_ENCRYPTION_REQUIRED 1386
ERROR_NO_SUCH_MEMBER 1387
ERROR_INVALID_MEMBER 1388
ERROR_TOO_MANY_SIDS 1389
ERROR_LM_CROSS_ENCRYPTION_REQUIRED 1390
ERROR_NO_INHERITANCE 1391
ERROR_FILE_CORRUPT 1392
ERROR_DISK_CORRUPT 1393
ERROR_NO_USER_SESSION_KEY 1394
ERROR_LICENSE_QUOTA_EXCEEDED 1395
ERROR_WRONG_TARGET_NAME 1396
ERROR_MUTUAL_AUTH_FAILED 1397
ERROR_TIME_SKEW 1398
ERROR_CURRENT_DOMAIN_NOT_ALLOWED 1399
ERROR_INVALID_WINDOW_HANDLE 1400
ERROR_INVALID_MENU_HANDLE 1401
ERROR_INVALID_CURSOR_HANDLE 1402
ERROR_INVALID_ACCEL_HANDLE 1403
ERROR_INVALID_HOOK_HANDLE 1404
ERROR_INVALID_DWP_HANDLE 1405
ERROR_TLW_WITH_WSCHILD 1406
ERROR_CANNOT_FIND_WND_CLASS 1407
ERROR_WINDOW_OF_OTHER_THREAD 1408
ERROR_HOTKEY_ALREADY_REGISTERED 1409
ERROR_CLASS_ALREADY_EXISTS 1410
ERROR_CLASS_DOES_NOT_EXIST 1411
ERROR_CLASS_HAS_WINDOWS 1412
ERROR_INVALID_INDEX 1413
ERROR_INVALID_ICON_HANDLE 1414
ERROR_PRIVATE_DIALOG_INDEX 1415
ERROR_LISTBOX_ID_NOT_FOUND 1416
ERROR_NO_WILDCARD_CHARACTERS 1417
ERROR_CLIPBOARD_NOT_OPEN 1418
ERROR_HOTKEY_NOT_REGISTERED 1419
ERROR_WINDOW_NOT_DIALOG 1420
ERROR_CONTROL_ID_NOT_FOUND 1421
ERROR_INVALID_COMBOBOX_MESSAGE 1422
ERROR_WINDOW_NOT_COMBOBOX 1423
ERROR_INVALID_EDIT_HEIGHT 1424
ERROR_DC_NOT_FOUND 1425
ERROR_INVALID_HOOK_FILTER 1426
ERROR_INVALID_FILTER_PROC 1427
ERROR_HOOK_NEEDS_HMOD 1428
ERROR_GLOBAL_ONLY_HOOK 1429
ERROR_JOURNAL_HOOK_SET 1430
ERROR_HOOK_NOT_INSTALLED 1431
ERROR_INVALID_LB_MESSAGE 1432
ERROR_SETCOUNT_ON_BAD_LB 1433
ERROR_LB_WITHOUT_TABSTOPS 1434
ERROR_DESTROY_OBJECT_OF_OTHER_THREAD 1435
ERROR_CHILD_WINDOW_MENU 1436
ERROR_NO_SYSTEM_MENU 1437
ERROR_INVALID_MSGBOX_STYLE 1438
ERROR_INVALID_SPI_VALUE 1439
ERROR_SCREEN_ALREADY_LOCKED 1440
ERROR_HWNDS_HAVE_DIFF_PARENT 1441
ERROR_NOT_CHILD_WINDOW 1442
ERROR_INVALID_GW_COMMAND 1443
ERROR_INVALID_THREAD_ID 1444
ERROR_NON_MDICHILD_WINDOW 1445
ERROR_POPUP_ALREADY_ACTIVE 1446
ERROR_NO_SCROLLBARS 1447
ERROR_INVALID_SCROLLBAR_RANGE 1448
ERROR_INVALID_SHOWWIN_COMMAND 1449
ERROR_NO_SYSTEM_RESOURCES 1450
ERROR_NONPAGED_SYSTEM_RESOURCES 1451
ERROR_PAGED_SYSTEM_RESOURCES 1452
ERROR_WORKING_SET_QUOTA 1453
ERROR_PAGEFILE_QUOTA 1454
ERROR_COMMITMENT_LIMIT 1455
ERROR_MENU_ITEM_NOT_FOUND 1456
ERROR_INVALID_KEYBOARD_HANDLE 1457
ERROR_HOOK_TYPE_NOT_ALLOWED 1458
ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION 1459
ERROR_TIMEOUT 1460
ERROR_INVALID_MONITOR_HANDLE 1461
ERROR_INCORRECT_SIZE 1462
ERROR_SYMLINK_CLASS_DISABLED 1463
ERROR_SYMLINK_NOT_SUPPORTED 1464
ERROR_XML_PARSE_ERROR 1465
ERROR_XMLDSIG_ERROR 1466
ERROR_RESTART_APPLICATION 1467
ERROR_WRONG_COMPARTMENT 1468
ERROR_AUTHIP_FAILURE 1469
ERROR_NO_NVRAM_RESOURCES 1470
ERROR_NOT_GUI_PROCESS 1471
ERROR_EVENTLOG_FILE_CORRUPT 1500
ERROR_EVENTLOG_CANT_START 1501
ERROR_LOG_FILE_FULL 1502
ERROR_EVENTLOG_FILE_CHANGED 1503
ERROR_CONTAINER_ASSIGNED 1504
ERROR_JOB_NO_CONTAINER 1505
ERROR_INVALID_TASK_NAME 1550
ERROR_INVALID_TASK_INDEX 1551
ERROR_THREAD_ALREADY_IN_TASK 1552
ERROR_INSTALL_SERVICE_FAILURE 1601
ERROR_INSTALL_USEREXIT 1602
ERROR_INSTALL_FAILURE 1603
ERROR_INSTALL_SUSPEND 1604
ERROR_UNKNOWN_PRODUCT 1605
ERROR_UNKNOWN_FEATURE 1606
ERROR_UNKNOWN_COMPONENT 1607
ERROR_UNKNOWN_PROPERTY 1608
ERROR_INVALID_HANDLE_STATE 1609
ERROR_BAD_CONFIGURATION 1610
ERROR_INDEX_ABSENT 1611
ERROR_INSTALL_SOURCE_ABSENT 1612
ERROR_INSTALL_PACKAGE_VERSION 1613
ERROR_PRODUCT_UNINSTALLED 1614
ERROR_BAD_QUERY_SYNTAX 1615
ERROR_INVALID_FIELD 1616
ERROR_DEVICE_REMOVED 1617
ERROR_INSTALL_ALREADY_RUNNING 1618
ERROR_INSTALL_PACKAGE_OPEN_FAILED 1619
ERROR_INSTALL_PACKAGE_INVALID 1620
ERROR_INSTALL_UI_FAILURE 1621
ERROR_INSTALL_LOG_FAILURE 1622
ERROR_INSTALL_LANGUAGE_UNSUPPORTED 1623
ERROR_INSTALL_TRANSFORM_FAILURE 1624
ERROR_INSTALL_PACKAGE_REJECTED 1625
ERROR_FUNCTION_NOT_CALLED 1626
ERROR_FUNCTION_FAILED 1627
ERROR_INVALID_TABLE 1628
ERROR_DATATYPE_MISMATCH 1629
ERROR_UNSUPPORTED_TYPE 1630
ERROR_CREATE_FAILED 1631
ERROR_INSTALL_TEMP_UNWRITABLE 1632
ERROR_INSTALL_PLATFORM_UNSUPPORTED 1633
ERROR_INSTALL_NOTUSED 1634
ERROR_PATCH_PACKAGE_OPEN_FAILED 1635
ERROR_PATCH_PACKAGE_INVALID 1636
ERROR_PATCH_PACKAGE_UNSUPPORTED 1637
ERROR_PRODUCT_VERSION 1638
ERROR_INVALID_COMMAND_LINE 1639
ERROR_INSTALL_REMOTE_DISALLOWED 1640
ERROR_SUCCESS_REBOOT_INITIATED 1641
ERROR_PATCH_TARGET_NOT_FOUND 1642
ERROR_PATCH_PACKAGE_REJECTED 1643
ERROR_INSTALL_TRANSFORM_REJECTED 1644
ERROR_INSTALL_REMOTE_PROHIBITED 1645
ERROR_PATCH_REMOVAL_UNSUPPORTED 1646
ERROR_UNKNOWN_PATCH 1647
ERROR_PATCH_NO_SEQUENCE 1648
ERROR_PATCH_REMOVAL_DISALLOWED 1649
ERROR_INVALID_PATCH_XML 1650
ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT 1651
ERROR_INSTALL_SERVICE_SAFEBOOT 1652
ERROR_FAIL_FAST_EXCEPTION 1653
ERROR_INSTALL_REJECTED 1654
ERROR_DYNAMIC_CODE_BLOCKED 1655
ERROR_NOT_SAME_OBJECT 1656
ERROR_STRICT_CFG_VIOLATION 1657
ERROR_SET_CONTEXT_DENIED 1660
ERROR_CROSS_PARTITION_VIOLATION 1661
ERROR_RETURN_ADDRESS_HIJACK_ATTEMPT 1662
RPC_S_INVALID_STRING_BINDING 1700
RPC_S_WRONG_KIND_OF_BINDING 1701
RPC_S_INVALID_BINDING 1702
RPC_S_PROTSEQ_NOT_SUPPORTED 1703
RPC_S_INVALID_RPC_PROTSEQ 1704
RPC_S_INVALID_STRING_UUID 1705
RPC_S_INVALID_ENDPOINT_FORMAT 1706
RPC_S_INVALID_NET_ADDR 1707
RPC_S_NO_ENDPOINT_FOUND 1708
RPC_S_INVALID_TIMEOUT 1709
RPC_S_OBJECT_NOT_FOUND 1710
RPC_S_ALREADY_REGISTERED 1711
RPC_S_TYPE_ALREADY_REGISTERED 1712
RPC_S_ALREADY_LISTENING 1713
RPC_S_NO_PROTSEQS_REGISTERED 1714
RPC_S_NOT_LISTENING 1715
RPC_S_UNKNOWN_MGR_TYPE 1716
RPC_S_UNKNOWN_IF 1717
RPC_S_NO_BINDINGS 1718
RPC_S_NO_PROTSEQS 1719
RPC_S_CANT_CREATE_ENDPOINT 1720
RPC_S_OUT_OF_RESOURCES 1721
RPC_S_SERVER_UNAVAILABLE 1722
RPC_S_SERVER_TOO_BUSY 1723
RPC_S_INVALID_NETWORK_OPTIONS 1724
RPC_S_NO_CALL_ACTIVE 1725
RPC_S_CALL_FAILED 1726
RPC_S_CALL_FAILED_DNE 1727
RPC_S_PROTOCOL_ERROR 1728
RPC_S_PROXY_ACCESS_DENIED 1729
RPC_S_UNSUPPORTED_TRANS_SYN 1730
RPC_S_UNSUPPORTED_TYPE 1732
RPC_S_INVALID_TAG 1733
RPC_S_INVALID_BOUND 1734
RPC_S_NO_ENTRY_NAME 1735
RPC_S_INVALID_NAME_SYNTAX 1736
RPC_S_UNSUPPORTED_NAME_SYNTAX 1737
RPC_S_UUID_NO_ADDRESS 1739
RPC_S_DUPLICATE_ENDPOINT 1740
RPC_S_UNKNOWN_AUTHN_TYPE 1741
RPC_S_MAX_CALLS_TOO_SMALL 1742
RPC_S_STRING_TOO_LONG 1743
RPC_S_PROTSEQ_NOT_FOUND 1744
RPC_S_PROCNUM_OUT_OF_RANGE 1745
RPC_S_BINDING_HAS_NO_AUTH 1746
RPC_S_UNKNOWN_AUTHN_SERVICE 1747
RPC_S_UNKNOWN_AUTHN_LEVEL 1748
RPC_S_INVALID_AUTH_IDENTITY 1749
RPC_S_UNKNOWN_AUTHZ_SERVICE 1750
EPT_S_INVALID_ENTRY 1751
EPT_S_CANT_PERFORM_OP 1752
EPT_S_NOT_REGISTERED 1753
RPC_S_NOTHING_TO_EXPORT 1754
RPC_S_INCOMPLETE_NAME 1755
RPC_S_INVALID_VERS_OPTION 1756
RPC_S_NO_MORE_MEMBERS 1757
RPC_S_NOT_ALL_OBJS_UNEXPORTED 1758
RPC_S_INTERFACE_NOT_FOUND 1759
RPC_S_ENTRY_ALREADY_EXISTS 1760
RPC_S_ENTRY_NOT_FOUND 1761
RPC_S_NAME_SERVICE_UNAVAILABLE 1762
RPC_S_INVALID_NAF_ID 1763
RPC_S_CANNOT_SUPPORT 1764
RPC_S_NO_CONTEXT_AVAILABLE 1765
RPC_S_INTERNAL_ERROR 1766
RPC_S_ZERO_DIVIDE 1767
RPC_S_ADDRESS_ERROR 1768
RPC_S_FP_DIV_ZERO 1769
RPC_S_FP_UNDERFLOW 1770
RPC_S_FP_OVERFLOW 1771
RPC_X_NO_MORE_ENTRIES 1772
RPC_X_SS_CHAR_TRANS_OPEN_FAIL 1773
RPC_X_SS_CHAR_TRANS_SHORT_FILE 1774
RPC_X_SS_IN_NULL_CONTEXT 1775
RPC_X_SS_CONTEXT_DAMAGED 1777
RPC_X_SS_HANDLES_MISMATCH 1778
RPC_X_SS_CANNOT_GET_CALL_HANDLE 1779
RPC_X_NULL_REF_POINTER 1780
RPC_X_ENUM_VALUE_OUT_OF_RANGE 1781
RPC_X_BYTE_COUNT_TOO_SMALL 1782
RPC_X_BAD_STUB_DATA 1783
ERROR_INVALID_USER_BUFFER 1784
ERROR_UNRECOGNIZED_MEDIA 1785
ERROR_NO_TRUST_LSA_SECRET 1786
ERROR_NO_TRUST_SAM_ACCOUNT 1787
ERROR_TRUSTED_DOMAIN_FAILURE 1788
ERROR_TRUSTED_RELATIONSHIP_FAILURE 1789
ERROR_TRUST_FAILURE 1790
RPC_S_CALL_IN_PROGRESS 1791
ERROR_NETLOGON_NOT_STARTED 1792
ERROR_ACCOUNT_EXPIRED 1793
ERROR_REDIRECTOR_HAS_OPEN_HANDLES 1794
ERROR_PRINTER_DRIVER_ALREADY_INSTALLED 1795
ERROR_UNKNOWN_PORT 1796
ERROR_UNKNOWN_PRINTER_DRIVER 1797
ERROR_UNKNOWN_PRINTPROCESSOR 1798
ERROR_INVALID_SEPARATOR_FILE 1799
ERROR_INVALID_PRIORITY 1800
ERROR_INVALID_PRINTER_NAME 1801
ERROR_PRINTER_ALREADY_EXISTS 1802
ERROR_INVALID_PRINTER_COMMAND 1803
ERROR_INVALID_DATATYPE 1804
ERROR_INVALID_ENVIRONMENT 1805
RPC_S_NO_MORE_BINDINGS 1806
ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT 1807
ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT 1808
ERROR_NOLOGON_SERVER_TRUST_ACCOUNT 1809
ERROR_DOMAIN_TRUST_INCONSISTENT 1810
ERROR_SERVER_HAS_OPEN_HANDLES 1811
ERROR_RESOURCE_DATA_NOT_FOUND 1812
ERROR_RESOURCE_TYPE_NOT_FOUND 1813
ERROR_RESOURCE_NAME_NOT_FOUND 1814
ERROR_RESOURCE_LANG_NOT_FOUND 1815
ERROR_NOT_ENOUGH_QUOTA 1816
RPC_S_NO_INTERFACES 1817
RPC_S_CALL_CANCELLED 1818
RPC_S_BINDING_INCOMPLETE 1819
RPC_S_COMM_FAILURE 1820
RPC_S_UNSUPPORTED_AUTHN_LEVEL 1821
RPC_S_NO_PRINC_NAME 1822
RPC_S_NOT_RPC_ERROR 1823
RPC_S_UUID_LOCAL_ONLY 1824
RPC_S_SEC_PKG_ERROR 1825
RPC_S_NOT_CANCELLED 1826
RPC_X_INVALID_ES_ACTION 1827
RPC_X_WRONG_ES_VERSION 1828
RPC_X_WRONG_STUB_VERSION 1829
RPC_X_INVALID_PIPE_OBJECT 1830
RPC_X_WRONG_PIPE_ORDER 1831
RPC_X_WRONG_PIPE_VERSION 1832
RPC_S_COOKIE_AUTH_FAILED 1833
RPC_S_DO_NOT_DISTURB 1834
RPC_S_SYSTEM_HANDLE_COUNT_EXCEEDED 1835
RPC_S_SYSTEM_HANDLE_TYPE_MISMATCH 1836
RPC_S_GROUP_MEMBER_NOT_FOUND 1898
EPT_S_CANT_CREATE 1899
RPC_S_INVALID_OBJECT 1900
ERROR_INVALID_TIME 1901
ERROR_INVALID_FORM_NAME 1902
ERROR_INVALID_FORM_SIZE 1903
ERROR_ALREADY_WAITING 1904
ERROR_PRINTER_DELETED 1905
ERROR_INVALID_PRINTER_STATE 1906
ERROR_PASSWORD_MUST_CHANGE 1907
ERROR_DOMAIN_CONTROLLER_NOT_FOUND 1908
ERROR_ACCOUNT_LOCKED_OUT 1909
OR_INVALID_OXID 1910
OR_INVALID_OID 1911
OR_INVALID_SET 1912
RPC_S_SEND_INCOMPLETE 1913
RPC_S_INVALID_ASYNC_HANDLE 1914
RPC_S_INVALID_ASYNC_CALL 1915
RPC_X_PIPE_CLOSED 1916
RPC_X_PIPE_DISCIPLINE_ERROR 1917
RPC_X_PIPE_EMPTY 1918
ERROR_NO_SITENAME 1919
ERROR_CANT_ACCESS_FILE 1920
ERROR_CANT_RESOLVE_FILENAME 1921
RPC_S_ENTRY_TYPE_MISMATCH 1922
RPC_S_NOT_ALL_OBJS_EXPORTED 1923
RPC_S_INTERFACE_NOT_EXPORTED 1924
RPC_S_PROFILE_NOT_ADDED 1925
RPC_S_PRF_ELT_NOT_ADDED 1926
RPC_S_PRF_ELT_NOT_REMOVED 1927
RPC_S_GRP_ELT_NOT_ADDED 1928
RPC_S_GRP_ELT_NOT_REMOVED 1929
ERROR_KM_DRIVER_BLOCKED 1930
ERROR_CONTEXT_EXPIRED 1931
ERROR_PER_USER_TRUST_QUOTA_EXCEEDED 1932
ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED 1933
ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED 1934
ERROR_AUTHENTICATION_FIREWALL_FAILED 1935
ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED 1936
ERROR_NTLM_BLOCKED 1937
ERROR_PASSWORD_CHANGE_REQUIRED 1938
ERROR_LOST_MODE_LOGON_RESTRICTION 1939
ERROR_INVALID_PIXEL_FORMAT 2000
ERROR_BAD_DRIVER 2001
ERROR_INVALID_WINDOW_STYLE 2002
ERROR_METAFILE_NOT_SUPPORTED 2003
ERROR_TRANSFORM_NOT_SUPPORTED 2004
ERROR_CLIPPING_NOT_SUPPORTED 2005
ERROR_INVALID_CMM 2010
ERROR_INVALID_PROFILE 2011
ERROR_TAG_NOT_FOUND 2012
ERROR_TAG_NOT_PRESENT 2013
ERROR_DUPLICATE_TAG 2014
ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE 2015
ERROR_PROFILE_NOT_FOUND 2016
ERROR_INVALID_COLORSPACE 2017
ERROR_ICM_NOT_ENABLED 2018
ERROR_DELETING_ICM_XFORM 2019
ERROR_INVALID_TRANSFORM 2020
ERROR_COLORSPACE_MISMATCH 2021
ERROR_INVALID_COLORINDEX 2022
ERROR_PROFILE_DOES_NOT_MATCH_DEVICE 2023
ERROR_CONNECTED_OTHER_PASSWORD 2108
ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT 2109
ERROR_BAD_USERNAME 2202
ERROR_NOT_CONNECTED 2250
ERROR_OPEN_FILES 2401
ERROR_ACTIVE_CONNECTIONS 2402
ERROR_DEVICE_IN_USE 2404
ERROR_UNKNOWN_PRINT_MONITOR 3000
ERROR_PRINTER_DRIVER_IN_USE 3001
ERROR_SPOOL_FILE_NOT_FOUND 3002
ERROR_SPL_NO_STARTDOC 3003
ERROR_SPL_NO_ADDJOB 3004
ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED 3005
ERROR_PRINT_MONITOR_ALREADY_INSTALLED 3006
ERROR_INVALID_PRINT_MONITOR 3007
ERROR_PRINT_MONITOR_IN_USE 3008
ERROR_PRINTER_HAS_JOBS_QUEUED 3009
ERROR_SUCCESS_REBOOT_REQUIRED 3010
ERROR_SUCCESS_RESTART_REQUIRED 3011
ERROR_PRINTER_NOT_FOUND 3012
ERROR_PRINTER_DRIVER_WARNED 3013
ERROR_PRINTER_DRIVER_BLOCKED 3014
ERROR_PRINTER_DRIVER_PACKAGE_IN_USE 3015
ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND 3016
ERROR_FAIL_REBOOT_REQUIRED 3017
ERROR_FAIL_REBOOT_INITIATED 3018
ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED 3019
ERROR_PRINT_JOB_RESTART_REQUIRED 3020
ERROR_INVALID_PRINTER_DRIVER_MANIFEST 3021
ERROR_PRINTER_NOT_SHAREABLE 3022
ERROR_REQUEST_PAUSED 3050
ERROR_APPEXEC_CONDITION_NOT_SATISFIED 3060
ERROR_APPEXEC_HANDLE_INVALIDATED 3061
ERROR_APPEXEC_INVALID_HOST_GENERATION 3062
ERROR_APPEXEC_UNEXPECTED_PROCESS_REGISTRATION 3063
ERROR_APPEXEC_INVALID_HOST_STATE 3064
ERROR_APPEXEC_NO_DONOR 3065
ERROR_APPEXEC_HOST_ID_MISMATCH 3066
ERROR_APPEXEC_UNKNOWN_USER 3067
ERROR_IO_REISSUE_AS_CACHED 3950
ERROR_WINS_INTERNAL 4000
ERROR_CAN_NOT_DEL_LOCAL_WINS 4001
ERROR_STATIC_INIT 4002
ERROR_INC_BACKUP 4003
ERROR_FULL_BACKUP 4004
ERROR_REC_NON_EXISTENT 4005
ERROR_RPL_NOT_ALLOWED 4006
PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED 4050
PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO 4051
PEERDIST_ERROR_MISSING_DATA 4052
PEERDIST_ERROR_NO_MORE 4053
PEERDIST_ERROR_NOT_INITIALIZED 4054
PEERDIST_ERROR_ALREADY_INITIALIZED 4055
PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS 4056
PEERDIST_ERROR_INVALIDATED 4057
PEERDIST_ERROR_ALREADY_EXISTS 4058
PEERDIST_ERROR_OPERATION_NOTFOUND 4059
PEERDIST_ERROR_ALREADY_COMPLETED 4060
PEERDIST_ERROR_OUT_OF_BOUNDS 4061
PEERDIST_ERROR_VERSION_UNSUPPORTED 4062
PEERDIST_ERROR_INVALID_CONFIGURATION 4063
PEERDIST_ERROR_NOT_LICENSED 4064
PEERDIST_ERROR_SERVICE_UNAVAILABLE 4065
PEERDIST_ERROR_TRUST_FAILURE 4066
ERROR_DHCP_ADDRESS_CONFLICT 4100
ERROR_WMI_GUID_NOT_FOUND 4200
ERROR_WMI_INSTANCE_NOT_FOUND 4201
ERROR_WMI_ITEMID_NOT_FOUND 4202
ERROR_WMI_TRY_AGAIN 4203
ERROR_WMI_DP_NOT_FOUND 4204
ERROR_WMI_UNRESOLVED_INSTANCE_REF 4205
ERROR_WMI_ALREADY_ENABLED 4206
ERROR_WMI_GUID_DISCONNECTED 4207
ERROR_WMI_SERVER_UNAVAILABLE 4208
ERROR_WMI_DP_FAILED 4209
ERROR_WMI_INVALID_MOF 4210
ERROR_WMI_INVALID_REGINFO 4211
ERROR_WMI_ALREADY_DISABLED 4212
ERROR_WMI_READ_ONLY 4213
ERROR_WMI_SET_FAILURE 4214
ERROR_NOT_APPCONTAINER 4250
ERROR_APPCONTAINER_REQUIRED 4251
ERROR_NOT_SUPPORTED_IN_APPCONTAINER 4252
ERROR_INVALID_PACKAGE_SID_LENGTH 4253
ERROR_INVALID_MEDIA 4300
ERROR_INVALID_LIBRARY 4301
ERROR_INVALID_MEDIA_POOL 4302
ERROR_DRIVE_MEDIA_MISMATCH 4303
ERROR_MEDIA_OFFLINE 4304
ERROR_LIBRARY_OFFLINE 4305
ERROR_EMPTY 4306
ERROR_NOT_EMPTY 4307
ERROR_MEDIA_UNAVAILABLE 4308
ERROR_RESOURCE_DISABLED 4309
ERROR_INVALID_CLEANER 4310
ERROR_UNABLE_TO_CLEAN 4311
ERROR_OBJECT_NOT_FOUND 4312
ERROR_DATABASE_FAILURE 4313
ERROR_DATABASE_FULL 4314
ERROR_MEDIA_INCOMPATIBLE 4315
ERROR_RESOURCE_NOT_PRESENT 4316
ERROR_INVALID_OPERATION 4317
ERROR_MEDIA_NOT_AVAILABLE 4318
ERROR_DEVICE_NOT_AVAILABLE 4319
ERROR_REQUEST_REFUSED 4320
ERROR_INVALID_DRIVE_OBJECT 4321
ERROR_LIBRARY_FULL 4322
ERROR_MEDIUM_NOT_ACCESSIBLE 4323
ERROR_UNABLE_TO_LOAD_MEDIUM 4324
ERROR_UNABLE_TO_INVENTORY_DRIVE 4325
ERROR_UNABLE_TO_INVENTORY_SLOT 4326
ERROR_UNABLE_TO_INVENTORY_TRANSPORT 4327
ERROR_TRANSPORT_FULL 4328
ERROR_CONTROLLING_IEPORT 4329
ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA 4330
ERROR_CLEANER_SLOT_SET 4331
ERROR_CLEANER_SLOT_NOT_SET 4332
ERROR_CLEANER_CARTRIDGE_SPENT 4333
ERROR_UNEXPECTED_OMID 4334
ERROR_CANT_DELETE_LAST_ITEM 4335
ERROR_MESSAGE_EXCEEDS_MAX_SIZE 4336
ERROR_VOLUME_CONTAINS_SYS_FILES 4337
ERROR_INDIGENOUS_TYPE 4338
ERROR_NO_SUPPORTING_DRIVES 4339
ERROR_CLEANER_CARTRIDGE_INSTALLED 4340
ERROR_IEPORT_FULL 4341
ERROR_FILE_OFFLINE 4350
ERROR_REMOTE_STORAGE_NOT_ACTIVE 4351
ERROR_REMOTE_STORAGE_MEDIA_ERROR 4352
ERROR_NOT_A_REPARSE_POINT 4390
ERROR_REPARSE_ATTRIBUTE_CONFLICT 4391
ERROR_INVALID_REPARSE_DATA 4392
ERROR_REPARSE_TAG_INVALID 4393
ERROR_REPARSE_TAG_MISMATCH 4394
ERROR_REPARSE_POINT_ENCOUNTERED 4395
ERROR_APP_DATA_NOT_FOUND 4400
ERROR_APP_DATA_EXPIRED 4401
ERROR_APP_DATA_CORRUPT 4402
ERROR_APP_DATA_LIMIT_EXCEEDED 4403
ERROR_APP_DATA_REBOOT_REQUIRED 4404
ERROR_SECUREBOOT_ROLLBACK_DETECTED 4420
ERROR_SECUREBOOT_POLICY_VIOLATION 4421
ERROR_SECUREBOOT_INVALID_POLICY 4422
ERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND 4423
ERROR_SECUREBOOT_POLICY_NOT_SIGNED 4424
ERROR_SECUREBOOT_NOT_ENABLED 4425
ERROR_SECUREBOOT_FILE_REPLACED 4426
ERROR_SECUREBOOT_POLICY_NOT_AUTHORIZED 4427
ERROR_SECUREBOOT_POLICY_UNKNOWN 4428
ERROR_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION 4429
ERROR_SECUREBOOT_PLATFORM_ID_MISMATCH 4430
ERROR_SECUREBOOT_POLICY_ROLLBACK_DETECTED 4431
ERROR_SECUREBOOT_POLICY_UPGRADE_MISMATCH 4432
ERROR_SECUREBOOT_REQUIRED_POLICY_FILE_MISSING 4433
ERROR_SECUREBOOT_NOT_BASE_POLICY 4434
ERROR_SECUREBOOT_NOT_SUPPLEMENTAL_POLICY 4435
ERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED 4440
ERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED 4441
ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED 4442
ERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED 4443
ERROR_ALREADY_HAS_STREAM_ID 4444
ERROR_SMR_GARBAGE_COLLECTION_REQUIRED 4445
ERROR_WOF_WIM_HEADER_CORRUPT 4446
ERROR_WOF_WIM_RESOURCE_TABLE_CORRUPT 4447
ERROR_WOF_FILE_RESOURCE_TABLE_CORRUPT 4448
ERROR_VOLUME_NOT_SIS_ENABLED 4500
ERROR_SYSTEM_INTEGRITY_ROLLBACK_DETECTED 4550
ERROR_SYSTEM_INTEGRITY_POLICY_VIOLATION 4551
ERROR_SYSTEM_INTEGRITY_INVALID_POLICY 4552
ERROR_SYSTEM_INTEGRITY_POLICY_NOT_SIGNED 4553
ERROR_SYSTEM_INTEGRITY_TOO_MANY_POLICIES 4554
ERROR_SYSTEM_INTEGRITY_SUPPLEMENTAL_POLICY_NOT_AUTHORIZED 4555
ERROR_VSM_NOT_INITIALIZED 4560
ERROR_VSM_DMA_PROTECTION_NOT_IN_USE 4561
ERROR_PLATFORM_MANIFEST_NOT_AUTHORIZED 4570
ERROR_PLATFORM_MANIFEST_INVALID 4571
ERROR_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED 4572
ERROR_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED 4573
ERROR_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND 4574
ERROR_PLATFORM_MANIFEST_NOT_ACTIVE 4575
ERROR_PLATFORM_MANIFEST_NOT_SIGNED 4576
ERROR_DEPENDENT_RESOURCE_EXISTS 5001
ERROR_DEPENDENCY_NOT_FOUND 5002
ERROR_DEPENDENCY_ALREADY_EXISTS 5003
ERROR_RESOURCE_NOT_ONLINE 5004
ERROR_HOST_NODE_NOT_AVAILABLE 5005
ERROR_RESOURCE_NOT_AVAILABLE 5006
ERROR_RESOURCE_NOT_FOUND 5007
ERROR_SHUTDOWN_CLUSTER 5008
ERROR_CANT_EVICT_ACTIVE_NODE 5009
ERROR_OBJECT_ALREADY_EXISTS 5010
ERROR_OBJECT_IN_LIST 5011
ERROR_GROUP_NOT_AVAILABLE 5012
ERROR_GROUP_NOT_FOUND 5013
ERROR_GROUP_NOT_ONLINE 5014
ERROR_HOST_NODE_NOT_RESOURCE_OWNER 5015
ERROR_HOST_NODE_NOT_GROUP_OWNER 5016
ERROR_RESMON_CREATE_FAILED 5017
ERROR_RESMON_ONLINE_FAILED 5018
ERROR_RESOURCE_ONLINE 5019
ERROR_QUORUM_RESOURCE 5020
ERROR_NOT_QUORUM_CAPABLE 5021
ERROR_CLUSTER_SHUTTING_DOWN 5022
ERROR_INVALID_STATE 5023
ERROR_RESOURCE_PROPERTIES_STORED 5024
ERROR_NOT_QUORUM_CLASS 5025
ERROR_CORE_RESOURCE 5026
ERROR_QUORUM_RESOURCE_ONLINE_FAILED 5027
ERROR_QUORUMLOG_OPEN_FAILED 5028
ERROR_CLUSTERLOG_CORRUPT 5029
ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE 5030
ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE 5031
ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND 5032
ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE 5033
ERROR_QUORUM_OWNER_ALIVE 5034
ERROR_NETWORK_NOT_AVAILABLE 5035
ERROR_NODE_NOT_AVAILABLE 5036
ERROR_ALL_NODES_NOT_AVAILABLE 5037
ERROR_RESOURCE_FAILED 5038
ERROR_CLUSTER_INVALID_NODE 5039
ERROR_CLUSTER_NODE_EXISTS 5040
ERROR_CLUSTER_JOIN_IN_PROGRESS 5041
ERROR_CLUSTER_NODE_NOT_FOUND 5042
ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND 5043
ERROR_CLUSTER_NETWORK_EXISTS 5044
ERROR_CLUSTER_NETWORK_NOT_FOUND 5045
ERROR_CLUSTER_NETINTERFACE_EXISTS 5046
ERROR_CLUSTER_NETINTERFACE_NOT_FOUND 5047
ERROR_CLUSTER_INVALID_REQUEST 5048
ERROR_CLUSTER_INVALID_NETWORK_PROVIDER 5049
ERROR_CLUSTER_NODE_DOWN 5050
ERROR_CLUSTER_NODE_UNREACHABLE 5051
ERROR_CLUSTER_NODE_NOT_MEMBER 5052
ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS 5053
ERROR_CLUSTER_INVALID_NETWORK 5054
ERROR_CLUSTER_NODE_UP 5056
ERROR_CLUSTER_IPADDR_IN_USE 5057
ERROR_CLUSTER_NODE_NOT_PAUSED 5058
ERROR_CLUSTER_NO_SECURITY_CONTEXT 5059
ERROR_CLUSTER_NETWORK_NOT_INTERNAL 5060
ERROR_CLUSTER_NODE_ALREADY_UP 5061
ERROR_CLUSTER_NODE_ALREADY_DOWN 5062
ERROR_CLUSTER_NETWORK_ALREADY_ONLINE 5063
ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE 5064
ERROR_CLUSTER_NODE_ALREADY_MEMBER 5065
ERROR_CLUSTER_LAST_INTERNAL_NETWORK 5066
ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS 5067
ERROR_INVALID_OPERATION_ON_QUORUM 5068
ERROR_DEPENDENCY_NOT_ALLOWED 5069
ERROR_CLUSTER_NODE_PAUSED 5070
ERROR_NODE_CANT_HOST_RESOURCE 5071
ERROR_CLUSTER_NODE_NOT_READY 5072
ERROR_CLUSTER_NODE_SHUTTING_DOWN 5073
ERROR_CLUSTER_JOIN_ABORTED 5074
ERROR_CLUSTER_INCOMPATIBLE_VERSIONS 5075
ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED 5076
ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED 5077
ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND 5078
ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED 5079
ERROR_CLUSTER_RESNAME_NOT_FOUND 5080
ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED 5081
ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST 5082
ERROR_CLUSTER_DATABASE_SEQMISMATCH 5083
ERROR_RESMON_INVALID_STATE 5084
ERROR_CLUSTER_GUM_NOT_LOCKER 5085
ERROR_QUORUM_DISK_NOT_FOUND 5086
ERROR_DATABASE_BACKUP_CORRUPT 5087
ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT 5088
ERROR_RESOURCE_PROPERTY_UNCHANGEABLE 5089
ERROR_NO_ADMIN_ACCESS_POINT 5090
ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE 5890
ERROR_CLUSTER_QUORUMLOG_NOT_FOUND 5891
ERROR_CLUSTER_MEMBERSHIP_HALT 5892
ERROR_CLUSTER_INSTANCE_ID_MISMATCH 5893
ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP 5894
ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH 5895
ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP 5896
ERROR_CLUSTER_PARAMETER_MISMATCH 5897
ERROR_NODE_CANNOT_BE_CLUSTERED 5898
ERROR_CLUSTER_WRONG_OS_VERSION 5899
ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME 5900
ERROR_CLUSCFG_ALREADY_COMMITTED 5901
ERROR_CLUSCFG_ROLLBACK_FAILED 5902
ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT 5903
ERROR_CLUSTER_OLD_VERSION 5904
ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME 5905
ERROR_CLUSTER_NO_NET_ADAPTERS 5906
ERROR_CLUSTER_POISONED 5907
ERROR_CLUSTER_GROUP_MOVING 5908
ERROR_CLUSTER_RESOURCE_TYPE_BUSY 5909
ERROR_RESOURCE_CALL_TIMED_OUT 5910
ERROR_INVALID_CLUSTER_IPV6_ADDRESS 5911
ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION 5912
ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS 5913
ERROR_CLUSTER_PARTIAL_SEND 5914
ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION 5915
ERROR_CLUSTER_INVALID_STRING_TERMINATION 5916
ERROR_CLUSTER_INVALID_STRING_FORMAT 5917
ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS 5918
ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS 5919
ERROR_CLUSTER_NULL_DATA 5920
ERROR_CLUSTER_PARTIAL_READ 5921
ERROR_CLUSTER_PARTIAL_WRITE 5922
ERROR_CLUSTER_CANT_DESERIALIZE_DATA 5923
ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT 5924
ERROR_CLUSTER_NO_QUORUM 5925
ERROR_CLUSTER_INVALID_IPV6_NETWORK 5926
ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK 5927
ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP 5928
ERROR_DEPENDENCY_TREE_TOO_COMPLEX 5929
ERROR_EXCEPTION_IN_RESOURCE_CALL 5930
ERROR_CLUSTER_RHS_FAILED_INITIALIZATION 5931
ERROR_CLUSTER_NOT_INSTALLED 5932
ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE 5933
ERROR_CLUSTER_MAX_NODES_IN_CLUSTER 5934
ERROR_CLUSTER_TOO_MANY_NODES 5935
ERROR_CLUSTER_OBJECT_ALREADY_USED 5936
ERROR_NONCORE_GROUPS_FOUND 5937
ERROR_FILE_SHARE_RESOURCE_CONFLICT 5938
ERROR_CLUSTER_EVICT_INVALID_REQUEST 5939
ERROR_CLUSTER_SINGLETON_RESOURCE 5940
ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE 5941
ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED 5942
ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR 5943
ERROR_CLUSTER_GROUP_BUSY 5944
ERROR_CLUSTER_NOT_SHARED_VOLUME 5945
ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR 5946
ERROR_CLUSTER_SHARED_VOLUMES_IN_USE 5947
ERROR_CLUSTER_USE_SHARED_VOLUMES_API 5948
ERROR_CLUSTER_BACKUP_IN_PROGRESS 5949
ERROR_NON_CSV_PATH 5950
ERROR_CSV_VOLUME_NOT_LOCAL 5951
ERROR_CLUSTER_WATCHDOG_TERMINATING 5952
ERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES 5953
ERROR_CLUSTER_INVALID_NODE_WEIGHT 5954
ERROR_CLUSTER_RESOURCE_VETOED_CALL 5955
ERROR_RESMON_SYSTEM_RESOURCES_LACKING 5956
ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION 5957
ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE 5958
ERROR_CLUSTER_GROUP_QUEUED 5959
ERROR_CLUSTER_RESOURCE_LOCKED_STATUS 5960
ERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED 5961
ERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS 5962
ERROR_CLUSTER_DISK_NOT_CONNECTED 5963
ERROR_DISK_NOT_CSV_CAPABLE 5964
ERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE 5965
ERROR_CLUSTER_SHARED_VOLUME_REDIRECTED 5966
ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED 5967
ERROR_CLUSTER_CANNOT_RETURN_PROPERTIES 5968
ERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES 5969
ERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE 5970
ERROR_CLUSTER_AFFINITY_CONFLICT 5971
ERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE 5972
ERROR_CLUSTER_UPGRADE_INCOMPATIBLE_VERSIONS 5973
ERROR_CLUSTER_UPGRADE_FIX_QUORUM_NOT_SUPPORTED 5974
ERROR_CLUSTER_UPGRADE_RESTART_REQUIRED 5975
ERROR_CLUSTER_UPGRADE_IN_PROGRESS 5976
ERROR_CLUSTER_UPGRADE_INCOMPLETE 5977
ERROR_CLUSTER_NODE_IN_GRACE_PERIOD 5978
ERROR_CLUSTER_CSV_IO_PAUSE_TIMEOUT 5979
ERROR_NODE_NOT_ACTIVE_CLUSTER_MEMBER 5980
ERROR_CLUSTER_RESOURCE_NOT_MONITORED 5981
ERROR_CLUSTER_RESOURCE_DOES_NOT_SUPPORT_UNMONITORED 5982
ERROR_CLUSTER_RESOURCE_IS_REPLICATED 5983
ERROR_CLUSTER_NODE_ISOLATED 5984
ERROR_CLUSTER_NODE_QUARANTINED 5985
ERROR_CLUSTER_DATABASE_UPDATE_CONDITION_FAILED 5986
ERROR_CLUSTER_SPACE_DEGRADED 5987
ERROR_CLUSTER_TOKEN_DELEGATION_NOT_SUPPORTED 5988
ERROR_CLUSTER_CSV_INVALID_HANDLE 5989
ERROR_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR 5990
ERROR_GROUPSET_NOT_AVAILABLE 5991
ERROR_GROUPSET_NOT_FOUND 5992
ERROR_GROUPSET_CANT_PROVIDE 5993
ERROR_CLUSTER_FAULT_DOMAIN_PARENT_NOT_FOUND 5994
ERROR_CLUSTER_FAULT_DOMAIN_INVALID_HIERARCHY 5995
ERROR_CLUSTER_FAULT_DOMAIN_FAILED_S2D_VALIDATION 5996
ERROR_CLUSTER_FAULT_DOMAIN_S2D_CONNECTIVITY_LOSS 5997
ERROR_CLUSTER_INVALID_INFRASTRUCTURE_FILESERVER_NAME 5998
ERROR_CLUSTERSET_MANAGEMENT_CLUSTER_UNREACHABLE 5999
ERROR_ENCRYPTION_FAILED 6000
ERROR_DECRYPTION_FAILED 6001
ERROR_FILE_ENCRYPTED 6002
ERROR_NO_RECOVERY_POLICY 6003
ERROR_NO_EFS 6004
ERROR_WRONG_EFS 6005
ERROR_NO_USER_KEYS 6006
ERROR_FILE_NOT_ENCRYPTED 6007
ERROR_NOT_EXPORT_FORMAT 6008
ERROR_FILE_READ_ONLY 6009
ERROR_DIR_EFS_DISALLOWED 6010
ERROR_EFS_SERVER_NOT_TRUSTED 6011
ERROR_BAD_RECOVERY_POLICY 6012
ERROR_EFS_ALG_BLOB_TOO_BIG 6013
ERROR_VOLUME_NOT_SUPPORT_EFS 6014
ERROR_EFS_DISABLED 6015
ERROR_EFS_VERSION_NOT_SUPPORT 6016
ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE 6017
ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER 6018
ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE 6019
ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE 6020
ERROR_CS_ENCRYPTION_FILE_NOT_CSE 6021
ERROR_ENCRYPTION_POLICY_DENIES_OPERATION 6022
ERROR_WIP_ENCRYPTION_FAILED 6023
ERROR_NO_BROWSER_SERVERS_FOUND 6118
SCHED_E_SERVICE_NOT_LOCALSYSTEM 6200
ERROR_CLUSTER_OBJECT_IS_CLUSTER_SET_VM 6250
ERROR_LOG_SECTOR_INVALID 6600
ERROR_LOG_SECTOR_PARITY_INVALID 6601
ERROR_LOG_SECTOR_REMAPPED 6602
ERROR_LOG_BLOCK_INCOMPLETE 6603
ERROR_LOG_INVALID_RANGE 6604
ERROR_LOG_BLOCKS_EXHAUSTED 6605
ERROR_LOG_READ_CONTEXT_INVALID 6606
ERROR_LOG_RESTART_INVALID 6607
ERROR_LOG_BLOCK_VERSION 6608
ERROR_LOG_BLOCK_INVALID 6609
ERROR_LOG_READ_MODE_INVALID 6610
ERROR_LOG_NO_RESTART 6611
ERROR_LOG_METADATA_CORRUPT 6612
ERROR_LOG_METADATA_INVALID 6613
ERROR_LOG_METADATA_INCONSISTENT 6614
ERROR_LOG_RESERVATION_INVALID 6615
ERROR_LOG_CANT_DELETE 6616
ERROR_LOG_CONTAINER_LIMIT_EXCEEDED 6617
ERROR_LOG_START_OF_LOG 6618
ERROR_LOG_POLICY_ALREADY_INSTALLED 6619
ERROR_LOG_POLICY_NOT_INSTALLED 6620
ERROR_LOG_POLICY_INVALID 6621
ERROR_LOG_POLICY_CONFLICT 6622
ERROR_LOG_PINNED_ARCHIVE_TAIL 6623
ERROR_LOG_RECORD_NONEXISTENT 6624
ERROR_LOG_RECORDS_RESERVED_INVALID 6625
ERROR_LOG_SPACE_RESERVED_INVALID 6626
ERROR_LOG_TAIL_INVALID 6627
ERROR_LOG_FULL 6628
ERROR_COULD_NOT_RESIZE_LOG 6629
ERROR_LOG_MULTIPLEXED 6630
ERROR_LOG_DEDICATED 6631
ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS 6632
ERROR_LOG_ARCHIVE_IN_PROGRESS 6633
ERROR_LOG_EPHEMERAL 6634
ERROR_LOG_NOT_ENOUGH_CONTAINERS 6635
ERROR_LOG_CLIENT_ALREADY_REGISTERED 6636
ERROR_LOG_CLIENT_NOT_REGISTERED 6637
ERROR_LOG_FULL_HANDLER_IN_PROGRESS 6638
ERROR_LOG_CONTAINER_READ_FAILED 6639
ERROR_LOG_CONTAINER_WRITE_FAILED 6640
ERROR_LOG_CONTAINER_OPEN_FAILED 6641
ERROR_LOG_CONTAINER_STATE_INVALID 6642
ERROR_LOG_STATE_INVALID 6643
ERROR_LOG_PINNED 6644
ERROR_LOG_METADATA_FLUSH_FAILED 6645
ERROR_LOG_INCONSISTENT_SECURITY 6646
ERROR_LOG_APPENDED_FLUSH_FAILED 6647
ERROR_LOG_PINNED_RESERVATION 6648
ERROR_INVALID_TRANSACTION 6700
ERROR_TRANSACTION_NOT_ACTIVE 6701
ERROR_TRANSACTION_REQUEST_NOT_VALID 6702
ERROR_TRANSACTION_NOT_REQUESTED 6703
ERROR_TRANSACTION_ALREADY_ABORTED 6704
ERROR_TRANSACTION_ALREADY_COMMITTED 6705
ERROR_TM_INITIALIZATION_FAILED 6706
ERROR_RESOURCEMANAGER_READ_ONLY 6707
ERROR_TRANSACTION_NOT_JOINED 6708
ERROR_TRANSACTION_SUPERIOR_EXISTS 6709
ERROR_CRM_PROTOCOL_ALREADY_EXISTS 6710
ERROR_TRANSACTION_PROPAGATION_FAILED 6711
ERROR_CRM_PROTOCOL_NOT_FOUND 6712
ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER 6713
ERROR_CURRENT_TRANSACTION_NOT_VALID 6714
ERROR_TRANSACTION_NOT_FOUND 6715
ERROR_RESOURCEMANAGER_NOT_FOUND 6716
ERROR_ENLISTMENT_NOT_FOUND 6717
ERROR_TRANSACTIONMANAGER_NOT_FOUND 6718
ERROR_TRANSACTIONMANAGER_NOT_ONLINE 6719
ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION 6720
ERROR_TRANSACTION_NOT_ROOT 6721
ERROR_TRANSACTION_OBJECT_EXPIRED 6722
ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED 6723
ERROR_TRANSACTION_RECORD_TOO_LONG 6724
ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED 6725
ERROR_TRANSACTION_INTEGRITY_VIOLATED 6726
ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH 6727
ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT 6728
ERROR_TRANSACTION_MUST_WRITETHROUGH 6729
ERROR_TRANSACTION_NO_SUPERIOR 6730
ERROR_HEURISTIC_DAMAGE_POSSIBLE 6731
ERROR_TRANSACTIONAL_CONFLICT 6800
ERROR_RM_NOT_ACTIVE 6801
ERROR_RM_METADATA_CORRUPT 6802
ERROR_DIRECTORY_NOT_RM 6803
ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE 6805
ERROR_LOG_RESIZE_INVALID_SIZE 6806
ERROR_OBJECT_NO_LONGER_EXISTS 6807
ERROR_STREAM_MINIVERSION_NOT_FOUND 6808
ERROR_STREAM_MINIVERSION_NOT_VALID 6809
ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION 6810
ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT 6811
ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS 6812
ERROR_REMOTE_FILE_VERSION_MISMATCH 6814
ERROR_HANDLE_NO_LONGER_VALID 6815
ERROR_NO_TXF_METADATA 6816
ERROR_LOG_CORRUPTION_DETECTED 6817
ERROR_CANT_RECOVER_WITH_HANDLE_OPEN 6818
ERROR_RM_DISCONNECTED 6819
ERROR_ENLISTMENT_NOT_SUPERIOR 6820
ERROR_RECOVERY_NOT_NEEDED 6821
ERROR_RM_ALREADY_STARTED 6822
ERROR_FILE_IDENTITY_NOT_PERSISTENT 6823
ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY 6824
ERROR_CANT_CROSS_RM_BOUNDARY 6825
ERROR_TXF_DIR_NOT_EMPTY 6826
ERROR_INDOUBT_TRANSACTIONS_EXIST 6827
ERROR_TM_VOLATILE 6828
ERROR_ROLLBACK_TIMER_EXPIRED 6829
ERROR_TXF_ATTRIBUTE_CORRUPT 6830
ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION 6831
ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED 6832
ERROR_LOG_GROWTH_FAILED 6833
ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE 6834
ERROR_TXF_METADATA_ALREADY_PRESENT 6835
ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET 6836
ERROR_TRANSACTION_REQUIRED_PROMOTION 6837
ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION 6838
ERROR_TRANSACTIONS_NOT_FROZEN 6839
ERROR_TRANSACTION_FREEZE_IN_PROGRESS 6840
ERROR_NOT_SNAPSHOT_VOLUME 6841
ERROR_NO_SAVEPOINT_WITH_OPEN_FILES 6842
ERROR_DATA_LOST_REPAIR 6843
ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION 6844
ERROR_TM_IDENTITY_MISMATCH 6845
ERROR_FLOATED_SECTION 6846
ERROR_CANNOT_ACCEPT_TRANSACTED_WORK 6847
ERROR_CANNOT_ABORT_TRANSACTIONS 6848
ERROR_BAD_CLUSTERS 6849
ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION 6850
ERROR_VOLUME_DIRTY 6851
ERROR_NO_LINK_TRACKING_IN_TRANSACTION 6852
ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION 6853
ERROR_EXPIRED_HANDLE 6854
ERROR_TRANSACTION_NOT_ENLISTED 6855
ERROR_CTX_WINSTATION_NAME_INVALID 7001
ERROR_CTX_INVALID_PD 7002
ERROR_CTX_PD_NOT_FOUND 7003
ERROR_CTX_WD_NOT_FOUND 7004
ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY 7005
ERROR_CTX_SERVICE_NAME_COLLISION 7006
ERROR_CTX_CLOSE_PENDING 7007
ERROR_CTX_NO_OUTBUF 7008
ERROR_CTX_MODEM_INF_NOT_FOUND 7009
ERROR_CTX_INVALID_MODEMNAME 7010
ERROR_CTX_MODEM_RESPONSE_ERROR 7011
ERROR_CTX_MODEM_RESPONSE_TIMEOUT 7012
ERROR_CTX_MODEM_RESPONSE_NO_CARRIER 7013
ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE 7014
ERROR_CTX_MODEM_RESPONSE_BUSY 7015
ERROR_CTX_MODEM_RESPONSE_VOICE 7016
ERROR_CTX_TD_ERROR 7017
ERROR_CTX_WINSTATION_NOT_FOUND 7022
ERROR_CTX_WINSTATION_ALREADY_EXISTS 7023
ERROR_CTX_WINSTATION_BUSY 7024
ERROR_CTX_BAD_VIDEO_MODE 7025
ERROR_CTX_GRAPHICS_INVALID 7035
ERROR_CTX_LOGON_DISABLED 7037
ERROR_CTX_NOT_CONSOLE 7038
ERROR_CTX_CLIENT_QUERY_TIMEOUT 7040
ERROR_CTX_CONSOLE_DISCONNECT 7041
ERROR_CTX_CONSOLE_CONNECT 7042
ERROR_CTX_SHADOW_DENIED 7044
ERROR_CTX_WINSTATION_ACCESS_DENIED 7045
ERROR_CTX_INVALID_WD 7049
ERROR_CTX_SHADOW_INVALID 7050
ERROR_CTX_SHADOW_DISABLED 7051
ERROR_CTX_CLIENT_LICENSE_IN_USE 7052
ERROR_CTX_CLIENT_LICENSE_NOT_SET 7053
ERROR_CTX_LICENSE_NOT_AVAILABLE 7054
ERROR_CTX_LICENSE_CLIENT_INVALID 7055
ERROR_CTX_LICENSE_EXPIRED 7056
ERROR_CTX_SHADOW_NOT_RUNNING 7057
ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE 7058
ERROR_ACTIVATION_COUNT_EXCEEDED 7059
ERROR_CTX_WINSTATIONS_DISABLED 7060
ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED 7061
ERROR_CTX_SESSION_IN_USE 7062
ERROR_CTX_NO_FORCE_LOGOFF 7063
ERROR_CTX_ACCOUNT_RESTRICTION 7064
ERROR_RDP_PROTOCOL_ERROR 7065
ERROR_CTX_CDM_CONNECT 7066
ERROR_CTX_CDM_DISCONNECT 7067
ERROR_CTX_SECURITY_LAYER_ERROR 7068
ERROR_TS_INCOMPATIBLE_SESSIONS 7069
ERROR_TS_VIDEO_SUBSYSTEM_ERROR 7070
FRS_ERR_INVALID_API_SEQUENCE 8001
FRS_ERR_STARTING_SERVICE 8002
FRS_ERR_STOPPING_SERVICE 8003
FRS_ERR_INTERNAL_API 8004
FRS_ERR_INTERNAL 8005
FRS_ERR_SERVICE_COMM 8006
FRS_ERR_INSUFFICIENT_PRIV 8007
FRS_ERR_AUTHENTICATION 8008
FRS_ERR_PARENT_INSUFFICIENT_PRIV 8009
FRS_ERR_PARENT_AUTHENTICATION 8010
FRS_ERR_CHILD_TO_PARENT_COMM 8011
FRS_ERR_PARENT_TO_CHILD_COMM 8012
FRS_ERR_SYSVOL_POPULATE 8013
FRS_ERR_SYSVOL_POPULATE_TIMEOUT 8014
FRS_ERR_SYSVOL_IS_BUSY 8015
FRS_ERR_SYSVOL_DEMOTE 8016
FRS_ERR_INVALID_SERVICE_PARAMETER 8017
ERROR_DS_NOT_INSTALLED 8200
ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY 8201
ERROR_DS_NO_ATTRIBUTE_OR_VALUE 8202
ERROR_DS_INVALID_ATTRIBUTE_SYNTAX 8203
ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED 8204
ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS 8205
ERROR_DS_BUSY 8206
ERROR_DS_UNAVAILABLE 8207
ERROR_DS_NO_RIDS_ALLOCATED 8208
ERROR_DS_NO_MORE_RIDS 8209
ERROR_DS_INCORRECT_ROLE_OWNER 8210
ERROR_DS_RIDMGR_INIT_ERROR 8211
ERROR_DS_OBJ_CLASS_VIOLATION 8212
ERROR_DS_CANT_ON_NON_LEAF 8213
ERROR_DS_CANT_ON_RDN 8214
ERROR_DS_CANT_MOD_OBJ_CLASS 8215
ERROR_DS_CROSS_DOM_MOVE_ERROR 8216
ERROR_DS_GC_NOT_AVAILABLE 8217
ERROR_SHARED_POLICY 8218
ERROR_POLICY_OBJECT_NOT_FOUND 8219
ERROR_POLICY_ONLY_IN_DS 8220
ERROR_PROMOTION_ACTIVE 8221
ERROR_NO_PROMOTION_ACTIVE 8222
ERROR_DS_OPERATIONS_ERROR 8224
ERROR_DS_PROTOCOL_ERROR 8225
ERROR_DS_TIMELIMIT_EXCEEDED 8226
ERROR_DS_SIZELIMIT_EXCEEDED 8227
ERROR_DS_ADMIN_LIMIT_EXCEEDED 8228
ERROR_DS_COMPARE_FALSE 8229
ERROR_DS_COMPARE_TRUE 8230
ERROR_DS_AUTH_METHOD_NOT_SUPPORTED 8231
ERROR_DS_STRONG_AUTH_REQUIRED 8232
ERROR_DS_INAPPROPRIATE_AUTH 8233
ERROR_DS_AUTH_UNKNOWN 8234
ERROR_DS_REFERRAL 8235
ERROR_DS_UNAVAILABLE_CRIT_EXTENSION 8236
ERROR_DS_CONFIDENTIALITY_REQUIRED 8237
ERROR_DS_INAPPROPRIATE_MATCHING 8238
ERROR_DS_CONSTRAINT_VIOLATION 8239
ERROR_DS_NO_SUCH_OBJECT 8240
ERROR_DS_ALIAS_PROBLEM 8241
ERROR_DS_INVALID_DN_SYNTAX 8242
ERROR_DS_IS_LEAF 8243
ERROR_DS_ALIAS_DEREF_PROBLEM 8244
ERROR_DS_UNWILLING_TO_PERFORM 8245
ERROR_DS_LOOP_DETECT 8246
ERROR_DS_NAMING_VIOLATION 8247
ERROR_DS_OBJECT_RESULTS_TOO_LARGE 8248
ERROR_DS_AFFECTS_MULTIPLE_DSAS 8249
ERROR_DS_SERVER_DOWN 8250
ERROR_DS_LOCAL_ERROR 8251
ERROR_DS_ENCODING_ERROR 8252
ERROR_DS_DECODING_ERROR 8253
ERROR_DS_FILTER_UNKNOWN 8254
ERROR_DS_PARAM_ERROR 8255
ERROR_DS_NOT_SUPPORTED 8256
ERROR_DS_NO_RESULTS_RETURNED 8257
ERROR_DS_CONTROL_NOT_FOUND 8258
ERROR_DS_CLIENT_LOOP 8259
ERROR_DS_REFERRAL_LIMIT_EXCEEDED 8260
ERROR_DS_SORT_CONTROL_MISSING 8261
ERROR_DS_OFFSET_RANGE_ERROR 8262
ERROR_DS_RIDMGR_DISABLED 8263
ERROR_DS_ROOT_MUST_BE_NC 8301
ERROR_DS_ADD_REPLICA_INHIBITED 8302
ERROR_DS_ATT_NOT_DEF_IN_SCHEMA 8303
ERROR_DS_MAX_OBJ_SIZE_EXCEEDED 8304
ERROR_DS_OBJ_STRING_NAME_EXISTS 8305
ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA 8306
ERROR_DS_RDN_DOESNT_MATCH_SCHEMA 8307
ERROR_DS_NO_REQUESTED_ATTS_FOUND 8308
ERROR_DS_USER_BUFFER_TO_SMALL 8309
ERROR_DS_ATT_IS_NOT_ON_OBJ 8310
ERROR_DS_ILLEGAL_MOD_OPERATION 8311
ERROR_DS_OBJ_TOO_LARGE 8312
ERROR_DS_BAD_INSTANCE_TYPE 8313
ERROR_DS_MASTERDSA_REQUIRED 8314
ERROR_DS_OBJECT_CLASS_REQUIRED 8315
ERROR_DS_MISSING_REQUIRED_ATT 8316
ERROR_DS_ATT_NOT_DEF_FOR_CLASS 8317
ERROR_DS_ATT_ALREADY_EXISTS 8318
ERROR_DS_CANT_ADD_ATT_VALUES 8320
ERROR_DS_SINGLE_VALUE_CONSTRAINT 8321
ERROR_DS_RANGE_CONSTRAINT 8322
ERROR_DS_ATT_VAL_ALREADY_EXISTS 8323
ERROR_DS_CANT_REM_MISSING_ATT 8324
ERROR_DS_CANT_REM_MISSING_ATT_VAL 8325
ERROR_DS_ROOT_CANT_BE_SUBREF 8326
ERROR_DS_NO_CHAINING 8327
ERROR_DS_NO_CHAINED_EVAL 8328
ERROR_DS_NO_PARENT_OBJECT 8329
ERROR_DS_PARENT_IS_AN_ALIAS 8330
ERROR_DS_CANT_MIX_MASTER_AND_REPS 8331
ERROR_DS_CHILDREN_EXIST 8332
ERROR_DS_OBJ_NOT_FOUND 8333
ERROR_DS_ALIASED_OBJ_MISSING 8334
ERROR_DS_BAD_NAME_SYNTAX 8335
ERROR_DS_ALIAS_POINTS_TO_ALIAS 8336
ERROR_DS_CANT_DEREF_ALIAS 8337
ERROR_DS_OUT_OF_SCOPE 8338
ERROR_DS_OBJECT_BEING_REMOVED 8339
ERROR_DS_CANT_DELETE_DSA_OBJ 8340
ERROR_DS_GENERIC_ERROR 8341
ERROR_DS_DSA_MUST_BE_INT_MASTER 8342
ERROR_DS_CLASS_NOT_DSA 8343
ERROR_DS_INSUFF_ACCESS_RIGHTS 8344
ERROR_DS_ILLEGAL_SUPERIOR 8345
ERROR_DS_ATTRIBUTE_OWNED_BY_SAM 8346
ERROR_DS_NAME_TOO_MANY_PARTS 8347
ERROR_DS_NAME_TOO_LONG 8348
ERROR_DS_NAME_VALUE_TOO_LONG 8349
ERROR_DS_NAME_UNPARSEABLE 8350
ERROR_DS_NAME_TYPE_UNKNOWN 8351
ERROR_DS_NOT_AN_OBJECT 8352
ERROR_DS_SEC_DESC_TOO_SHORT 8353
ERROR_DS_SEC_DESC_INVALID 8354
ERROR_DS_NO_DELETED_NAME 8355
ERROR_DS_SUBREF_MUST_HAVE_PARENT 8356
ERROR_DS_NCNAME_MUST_BE_NC 8357
ERROR_DS_CANT_ADD_SYSTEM_ONLY 8358
ERROR_DS_CLASS_MUST_BE_CONCRETE 8359
ERROR_DS_INVALID_DMD 8360
ERROR_DS_OBJ_GUID_EXISTS 8361
ERROR_DS_NOT_ON_BACKLINK 8362
ERROR_DS_NO_CROSSREF_FOR_NC 8363
ERROR_DS_SHUTTING_DOWN 8364
ERROR_DS_UNKNOWN_OPERATION 8365
ERROR_DS_INVALID_ROLE_OWNER 8366
ERROR_DS_COULDNT_CONTACT_FSMO 8367
ERROR_DS_CROSS_NC_DN_RENAME 8368
ERROR_DS_CANT_MOD_SYSTEM_ONLY 8369
ERROR_DS_REPLICATOR_ONLY 8370
ERROR_DS_OBJ_CLASS_NOT_DEFINED 8371
ERROR_DS_OBJ_CLASS_NOT_SUBCLASS 8372
ERROR_DS_NAME_REFERENCE_INVALID 8373
ERROR_DS_CROSS_REF_EXISTS 8374
ERROR_DS_CANT_DEL_MASTER_CROSSREF 8375
ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD 8376
ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX 8377
ERROR_DS_DUP_RDN 8378
ERROR_DS_DUP_OID 8379
ERROR_DS_DUP_MAPI_ID 8380
ERROR_DS_DUP_SCHEMA_ID_GUID 8381
ERROR_DS_DUP_LDAP_DISPLAY_NAME 8382
ERROR_DS_SEMANTIC_ATT_TEST 8383
ERROR_DS_SYNTAX_MISMATCH 8384
ERROR_DS_EXISTS_IN_MUST_HAVE 8385
ERROR_DS_EXISTS_IN_MAY_HAVE 8386
ERROR_DS_NONEXISTENT_MAY_HAVE 8387
ERROR_DS_NONEXISTENT_MUST_HAVE 8388
ERROR_DS_AUX_CLS_TEST_FAIL 8389
ERROR_DS_NONEXISTENT_POSS_SUP 8390
ERROR_DS_SUB_CLS_TEST_FAIL 8391
ERROR_DS_BAD_RDN_ATT_ID_SYNTAX 8392
ERROR_DS_EXISTS_IN_AUX_CLS 8393
ERROR_DS_EXISTS_IN_SUB_CLS 8394
ERROR_DS_EXISTS_IN_POSS_SUP 8395
ERROR_DS_RECALCSCHEMA_FAILED 8396
ERROR_DS_TREE_DELETE_NOT_FINISHED 8397
ERROR_DS_CANT_DELETE 8398
ERROR_DS_ATT_SCHEMA_REQ_ID 8399
ERROR_DS_BAD_ATT_SCHEMA_SYNTAX 8400
ERROR_DS_CANT_CACHE_ATT 8401
ERROR_DS_CANT_CACHE_CLASS 8402
ERROR_DS_CANT_REMOVE_ATT_CACHE 8403
ERROR_DS_CANT_REMOVE_CLASS_CACHE 8404
ERROR_DS_CANT_RETRIEVE_DN 8405
ERROR_DS_MISSING_SUPREF 8406
ERROR_DS_CANT_RETRIEVE_INSTANCE 8407
ERROR_DS_CODE_INCONSISTENCY 8408
ERROR_DS_DATABASE_ERROR 8409
ERROR_DS_GOVERNSID_MISSING 8410
ERROR_DS_MISSING_EXPECTED_ATT 8411
ERROR_DS_NCNAME_MISSING_CR_REF 8412
ERROR_DS_SECURITY_CHECKING_ERROR 8413
ERROR_DS_SCHEMA_NOT_LOADED 8414
ERROR_DS_SCHEMA_ALLOC_FAILED 8415
ERROR_DS_ATT_SCHEMA_REQ_SYNTAX 8416
ERROR_DS_GCVERIFY_ERROR 8417
ERROR_DS_DRA_SCHEMA_MISMATCH 8418
ERROR_DS_CANT_FIND_DSA_OBJ 8419
ERROR_DS_CANT_FIND_EXPECTED_NC 8420
ERROR_DS_CANT_FIND_NC_IN_CACHE 8421
ERROR_DS_CANT_RETRIEVE_CHILD 8422
ERROR_DS_SECURITY_ILLEGAL_MODIFY 8423
ERROR_DS_CANT_REPLACE_HIDDEN_REC 8424
ERROR_DS_BAD_HIERARCHY_FILE 8425
ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED 8426
ERROR_DS_CONFIG_PARAM_MISSING 8427
ERROR_DS_COUNTING_AB_INDICES_FAILED 8428
ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED 8429
ERROR_DS_INTERNAL_FAILURE 8430
ERROR_DS_UNKNOWN_ERROR 8431
ERROR_DS_ROOT_REQUIRES_CLASS_TOP 8432
ERROR_DS_REFUSING_FSMO_ROLES 8433
ERROR_DS_MISSING_FSMO_SETTINGS 8434
ERROR_DS_UNABLE_TO_SURRENDER_ROLES 8435
ERROR_DS_DRA_GENERIC 8436
ERROR_DS_DRA_INVALID_PARAMETER 8437
ERROR_DS_DRA_BUSY 8438
ERROR_DS_DRA_BAD_DN 8439
ERROR_DS_DRA_BAD_NC 8440
ERROR_DS_DRA_DN_EXISTS 8441
ERROR_DS_DRA_INTERNAL_ERROR 8442
ERROR_DS_DRA_INCONSISTENT_DIT 8443
ERROR_DS_DRA_CONNECTION_FAILED 8444
ERROR_DS_DRA_BAD_INSTANCE_TYPE 8445
ERROR_DS_DRA_OUT_OF_MEM 8446
ERROR_DS_DRA_MAIL_PROBLEM 8447
ERROR_DS_DRA_REF_ALREADY_EXISTS 8448
ERROR_DS_DRA_REF_NOT_FOUND 8449
ERROR_DS_DRA_OBJ_IS_REP_SOURCE 8450
ERROR_DS_DRA_DB_ERROR 8451
ERROR_DS_DRA_NO_REPLICA 8452
ERROR_DS_DRA_ACCESS_DENIED 8453
ERROR_DS_DRA_NOT_SUPPORTED 8454
ERROR_DS_DRA_RPC_CANCELLED 8455
ERROR_DS_DRA_SOURCE_DISABLED 8456
ERROR_DS_DRA_SINK_DISABLED 8457
ERROR_DS_DRA_NAME_COLLISION 8458
ERROR_DS_DRA_SOURCE_REINSTALLED 8459
ERROR_DS_DRA_MISSING_PARENT 8460
ERROR_DS_DRA_PREEMPTED 8461
ERROR_DS_DRA_ABANDON_SYNC 8462
ERROR_DS_DRA_SHUTDOWN 8463
ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET 8464
ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA 8465
ERROR_DS_DRA_EXTN_CONNECTION_FAILED 8466
ERROR_DS_INSTALL_SCHEMA_MISMATCH 8467
ERROR_DS_DUP_LINK_ID 8468
ERROR_DS_NAME_ERROR_RESOLVING 8469
ERROR_DS_NAME_ERROR_NOT_FOUND 8470
ERROR_DS_NAME_ERROR_NOT_UNIQUE 8471
ERROR_DS_NAME_ERROR_NO_MAPPING 8472
ERROR_DS_NAME_ERROR_DOMAIN_ONLY 8473
ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING 8474
ERROR_DS_CONSTRUCTED_ATT_MOD 8475
ERROR_DS_WRONG_OM_OBJ_CLASS 8476
ERROR_DS_DRA_REPL_PENDING 8477
ERROR_DS_DS_REQUIRED 8478
ERROR_DS_INVALID_LDAP_DISPLAY_NAME 8479
ERROR_DS_NON_BASE_SEARCH 8480
ERROR_DS_CANT_RETRIEVE_ATTS 8481
ERROR_DS_BACKLINK_WITHOUT_LINK 8482
ERROR_DS_EPOCH_MISMATCH 8483
ERROR_DS_SRC_NAME_MISMATCH 8484
ERROR_DS_SRC_AND_DST_NC_IDENTICAL 8485
ERROR_DS_DST_NC_MISMATCH 8486
ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC 8487
ERROR_DS_SRC_GUID_MISMATCH 8488
ERROR_DS_CANT_MOVE_DELETED_OBJECT 8489
ERROR_DS_PDC_OPERATION_IN_PROGRESS 8490
ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD 8491
ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION 8492
ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS 8493
ERROR_DS_NC_MUST_HAVE_NC_PARENT 8494
ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE 8495
ERROR_DS_DST_DOMAIN_NOT_NATIVE 8496
ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER 8497
ERROR_DS_CANT_MOVE_ACCOUNT_GROUP 8498
ERROR_DS_CANT_MOVE_RESOURCE_GROUP 8499
ERROR_DS_INVALID_SEARCH_FLAG 8500
ERROR_DS_NO_TREE_DELETE_ABOVE_NC 8501
ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE 8502
ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE 8503
ERROR_DS_SAM_INIT_FAILURE 8504
ERROR_DS_SENSITIVE_GROUP_VIOLATION 8505
ERROR_DS_CANT_MOD_PRIMARYGROUPID 8506
ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD 8507
ERROR_DS_NONSAFE_SCHEMA_CHANGE 8508
ERROR_DS_SCHEMA_UPDATE_DISALLOWED 8509
ERROR_DS_CANT_CREATE_UNDER_SCHEMA 8510
ERROR_DS_INSTALL_NO_SRC_SCH_VERSION 8511
ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE 8512
ERROR_DS_INVALID_GROUP_TYPE 8513
ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN 8514
ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN 8515
ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER 8516
ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER 8517
ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER 8518
ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER 8519
ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER 8520
ERROR_DS_HAVE_PRIMARY_MEMBERS 8521
ERROR_DS_STRING_SD_CONVERSION_FAILED 8522
ERROR_DS_NAMING_MASTER_GC 8523
ERROR_DS_DNS_LOOKUP_FAILURE 8524
ERROR_DS_COULDNT_UPDATE_SPNS 8525
ERROR_DS_CANT_RETRIEVE_SD 8526
ERROR_DS_KEY_NOT_UNIQUE 8527
ERROR_DS_WRONG_LINKED_ATT_SYNTAX 8528
ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD 8529
ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY 8530
ERROR_DS_CANT_START 8531
ERROR_DS_INIT_FAILURE 8532
ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION 8533
ERROR_DS_SOURCE_DOMAIN_IN_FOREST 8534
ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST 8535
ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED 8536
ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN 8537
ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER 8538
ERROR_DS_SRC_SID_EXISTS_IN_FOREST 8539
ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH 8540
ERROR_SAM_INIT_FAILURE 8541
ERROR_DS_DRA_SCHEMA_INFO_SHIP 8542
ERROR_DS_DRA_SCHEMA_CONFLICT 8543
ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT 8544
ERROR_DS_DRA_OBJ_NC_MISMATCH 8545
ERROR_DS_NC_STILL_HAS_DSAS 8546
ERROR_DS_GC_REQUIRED 8547
ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY 8548
ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS 8549
ERROR_DS_CANT_ADD_TO_GC 8550
ERROR_DS_NO_CHECKPOINT_WITH_PDC 8551
ERROR_DS_SOURCE_AUDITING_NOT_ENABLED 8552
ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC 8553
ERROR_DS_INVALID_NAME_FOR_SPN 8554
ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS 8555
ERROR_DS_UNICODEPWD_NOT_IN_QUOTES 8556
ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED 8557
ERROR_DS_MUST_BE_RUN_ON_DST_DC 8558
ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER 8559
ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ 8560
ERROR_DS_INIT_FAILURE_CONSOLE 8561
ERROR_DS_SAM_INIT_FAILURE_CONSOLE 8562
ERROR_DS_FOREST_VERSION_TOO_HIGH 8563
ERROR_DS_DOMAIN_VERSION_TOO_HIGH 8564
ERROR_DS_FOREST_VERSION_TOO_LOW 8565
ERROR_DS_DOMAIN_VERSION_TOO_LOW 8566
ERROR_DS_INCOMPATIBLE_VERSION 8567
ERROR_DS_LOW_DSA_VERSION 8568
ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN 8569
ERROR_DS_NOT_SUPPORTED_SORT_ORDER 8570
ERROR_DS_NAME_NOT_UNIQUE 8571
ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4 8572
ERROR_DS_OUT_OF_VERSION_STORE 8573
ERROR_DS_INCOMPATIBLE_CONTROLS_USED 8574
ERROR_DS_NO_REF_DOMAIN 8575
ERROR_DS_RESERVED_LINK_ID 8576
ERROR_DS_LINK_ID_NOT_AVAILABLE 8577
ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER 8578
ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE 8579
ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC 8580
ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG 8581
ERROR_DS_MODIFYDN_WRONG_GRANDPARENT 8582
ERROR_DS_NAME_ERROR_TRUST_REFERRAL 8583
ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER 8584
ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD 8585
ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2 8586
ERROR_DS_THREAD_LIMIT_EXCEEDED 8587
ERROR_DS_NOT_CLOSEST 8588
ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF 8589
ERROR_DS_SINGLE_USER_MODE_FAILED 8590
ERROR_DS_NTDSCRIPT_SYNTAX_ERROR 8591
ERROR_DS_NTDSCRIPT_PROCESS_ERROR 8592
ERROR_DS_DIFFERENT_REPL_EPOCHS 8593
ERROR_DS_DRS_EXTENSIONS_CHANGED 8594
ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR 8595
ERROR_DS_NO_MSDS_INTID 8596
ERROR_DS_DUP_MSDS_INTID 8597
ERROR_DS_EXISTS_IN_RDNATTID 8598
ERROR_DS_AUTHORIZATION_FAILED 8599
ERROR_DS_INVALID_SCRIPT 8600
ERROR_DS_REMOTE_CROSSREF_OP_FAILED 8601
ERROR_DS_CROSS_REF_BUSY 8602
ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN 8603
ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC 8604
ERROR_DS_DUPLICATE_ID_FOUND 8605
ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT 8606
ERROR_DS_GROUP_CONVERSION_ERROR 8607
ERROR_DS_CANT_MOVE_APP_BASIC_GROUP 8608
ERROR_DS_CANT_MOVE_APP_QUERY_GROUP 8609
ERROR_DS_ROLE_NOT_VERIFIED 8610
ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL 8611
ERROR_DS_DOMAIN_RENAME_IN_PROGRESS 8612
ERROR_DS_EXISTING_AD_CHILD_NC 8613
ERROR_DS_REPL_LIFETIME_EXCEEDED 8614
ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER 8615
ERROR_DS_LDAP_SEND_QUEUE_FULL 8616
ERROR_DS_DRA_OUT_SCHEDULE_WINDOW 8617
ERROR_DS_POLICY_NOT_KNOWN 8618
ERROR_NO_SITE_SETTINGS_OBJECT 8619
ERROR_NO_SECRETS 8620
ERROR_NO_WRITABLE_DC_FOUND 8621
ERROR_DS_NO_SERVER_OBJECT 8622
ERROR_DS_NO_NTDSA_OBJECT 8623
ERROR_DS_NON_ASQ_SEARCH 8624
ERROR_DS_AUDIT_FAILURE 8625
ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE 8626
ERROR_DS_INVALID_SEARCH_FLAG_TUPLE 8627
ERROR_DS_HIERARCHY_TABLE_TOO_DEEP 8628
ERROR_DS_DRA_CORRUPT_UTD_VECTOR 8629
ERROR_DS_DRA_SECRETS_DENIED 8630
ERROR_DS_RESERVED_MAPI_ID 8631
ERROR_DS_MAPI_ID_NOT_AVAILABLE 8632
ERROR_DS_DRA_MISSING_KRBTGT_SECRET 8633
ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST 8634
ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST 8635
ERROR_INVALID_USER_PRINCIPAL_NAME 8636
ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS 8637
ERROR_DS_OID_NOT_FOUND 8638
ERROR_DS_DRA_RECYCLED_TARGET 8639
ERROR_DS_DISALLOWED_NC_REDIRECT 8640
ERROR_DS_HIGH_ADLDS_FFL 8641
ERROR_DS_HIGH_DSA_VERSION 8642
ERROR_DS_LOW_ADLDS_FFL 8643
ERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION 8644
ERROR_DS_UNDELETE_SAM_VALIDATION_FAILED 8645
ERROR_INCORRECT_ACCOUNT_TYPE 8646
ERROR_DS_SPN_VALUE_NOT_UNIQUE_IN_FOREST 8647
ERROR_DS_UPN_VALUE_NOT_UNIQUE_IN_FOREST 8648
ERROR_DS_MISSING_FOREST_TRUST 8649
ERROR_DS_VALUE_KEY_NOT_UNIQUE 8650
DNS_ERROR_RESPONSE_CODES_BASE 9000
DNS_ERROR_RCODE_FORMAT_ERROR 9001
DNS_ERROR_RCODE_SERVER_FAILURE 9002
DNS_ERROR_RCODE_NAME_ERROR 9003
DNS_ERROR_RCODE_NOT_IMPLEMENTED 9004
DNS_ERROR_RCODE_REFUSED 9005
DNS_ERROR_RCODE_YXDOMAIN 9006
DNS_ERROR_RCODE_YXRRSET 9007
DNS_ERROR_RCODE_NXRRSET 9008
DNS_ERROR_RCODE_NOTAUTH 9009
DNS_ERROR_RCODE_NOTZONE 9010
DNS_ERROR_RCODE_BADSIG 9016
DNS_ERROR_RCODE_BADKEY 9017
DNS_ERROR_RCODE_BADTIME 9018
DNS_ERROR_DNSSEC_BASE 9100
DNS_ERROR_KEYMASTER_REQUIRED 9101
DNS_ERROR_NOT_ALLOWED_ON_SIGNED_ZONE 9102
DNS_ERROR_NSEC3_INCOMPATIBLE_WITH_RSA_SHA1 9103
DNS_ERROR_NOT_ENOUGH_SIGNING_KEY_DESCRIPTORS 9104
DNS_ERROR_UNSUPPORTED_ALGORITHM 9105
DNS_ERROR_INVALID_KEY_SIZE 9106
DNS_ERROR_SIGNING_KEY_NOT_ACCESSIBLE 9107
DNS_ERROR_KSP_DOES_NOT_SUPPORT_PROTECTION 9108
DNS_ERROR_UNEXPECTED_DATA_PROTECTION_ERROR 9109
DNS_ERROR_UNEXPECTED_CNG_ERROR 9110
DNS_ERROR_UNKNOWN_SIGNING_PARAMETER_VERSION 9111
DNS_ERROR_KSP_NOT_ACCESSIBLE 9112
DNS_ERROR_TOO_MANY_SKDS 9113
DNS_ERROR_INVALID_ROLLOVER_PERIOD 9114
DNS_ERROR_INVALID_INITIAL_ROLLOVER_OFFSET 9115
DNS_ERROR_ROLLOVER_IN_PROGRESS 9116
DNS_ERROR_STANDBY_KEY_NOT_PRESENT 9117
DNS_ERROR_NOT_ALLOWED_ON_ZSK 9118
DNS_ERROR_NOT_ALLOWED_ON_ACTIVE_SKD 9119
DNS_ERROR_ROLLOVER_ALREADY_QUEUED 9120
DNS_ERROR_NOT_ALLOWED_ON_UNSIGNED_ZONE 9121
DNS_ERROR_BAD_KEYMASTER 9122
DNS_ERROR_INVALID_SIGNATURE_VALIDITY_PERIOD 9123
DNS_ERROR_INVALID_NSEC3_ITERATION_COUNT 9124
DNS_ERROR_DNSSEC_IS_DISABLED 9125
DNS_ERROR_INVALID_XML 9126
DNS_ERROR_NO_VALID_TRUST_ANCHORS 9127
DNS_ERROR_ROLLOVER_NOT_POKEABLE 9128
DNS_ERROR_NSEC3_NAME_COLLISION 9129
DNS_ERROR_NSEC_INCOMPATIBLE_WITH_NSEC3_RSA_SHA1 9130
DNS_ERROR_PACKET_FMT_BASE 9500
DNS_INFO_NO_RECORDS 9501
DNS_ERROR_BAD_PACKET 9502
DNS_ERROR_NO_PACKET 9503
DNS_ERROR_RCODE 9504
DNS_ERROR_UNSECURE_PACKET 9505
DNS_REQUEST_PENDING 9506
DNS_ERROR_GENERAL_API_BASE 9550
DNS_ERROR_INVALID_TYPE 9551
DNS_ERROR_INVALID_IP_ADDRESS 9552
DNS_ERROR_INVALID_PROPERTY 9553
DNS_ERROR_TRY_AGAIN_LATER 9554
DNS_ERROR_NOT_UNIQUE 9555
DNS_ERROR_NON_RFC_NAME 9556
DNS_STATUS_FQDN 9557
DNS_STATUS_DOTTED_NAME 9558
DNS_STATUS_SINGLE_PART_NAME 9559
DNS_ERROR_INVALID_NAME_CHAR 9560
DNS_ERROR_NUMERIC_NAME 9561
DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER 9562
DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION 9563
DNS_ERROR_CANNOT_FIND_ROOT_HINTS 9564
DNS_ERROR_INCONSISTENT_ROOT_HINTS 9565
DNS_ERROR_DWORD_VALUE_TOO_SMALL 9566
DNS_ERROR_DWORD_VALUE_TOO_LARGE 9567
DNS_ERROR_BACKGROUND_LOADING 9568
DNS_ERROR_NOT_ALLOWED_ON_RODC 9569
DNS_ERROR_NOT_ALLOWED_UNDER_DNAME 9570
DNS_ERROR_DELEGATION_REQUIRED 9571
DNS_ERROR_INVALID_POLICY_TABLE 9572
DNS_ERROR_ADDRESS_REQUIRED 9573
DNS_ERROR_ZONE_BASE 9600
DNS_ERROR_ZONE_DOES_NOT_EXIST 9601
DNS_ERROR_NO_ZONE_INFO 9602
DNS_ERROR_INVALID_ZONE_OPERATION 9603
DNS_ERROR_ZONE_CONFIGURATION_ERROR 9604
DNS_ERROR_ZONE_HAS_NO_SOA_RECORD 9605
DNS_ERROR_ZONE_HAS_NO_NS_RECORDS 9606
DNS_ERROR_ZONE_LOCKED 9607
DNS_ERROR_ZONE_CREATION_FAILED 9608
DNS_ERROR_ZONE_ALREADY_EXISTS 9609
DNS_ERROR_AUTOZONE_ALREADY_EXISTS 9610
DNS_ERROR_INVALID_ZONE_TYPE 9611
DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP 9612
DNS_ERROR_ZONE_NOT_SECONDARY 9613
DNS_ERROR_NEED_SECONDARY_ADDRESSES 9614
DNS_ERROR_WINS_INIT_FAILED 9615
DNS_ERROR_NEED_WINS_SERVERS 9616
DNS_ERROR_NBSTAT_INIT_FAILED 9617
DNS_ERROR_SOA_DELETE_INVALID 9618
DNS_ERROR_FORWARDER_ALREADY_EXISTS 9619
DNS_ERROR_ZONE_REQUIRES_MASTER_IP 9620
DNS_ERROR_ZONE_IS_SHUTDOWN 9621
DNS_ERROR_ZONE_LOCKED_FOR_SIGNING 9622
DNS_ERROR_DATAFILE_BASE 9650
DNS_ERROR_PRIMARY_REQUIRES_DATAFILE 9651
DNS_ERROR_INVALID_DATAFILE_NAME 9652
DNS_ERROR_DATAFILE_OPEN_FAILURE 9653
DNS_ERROR_FILE_WRITEBACK_FAILED 9654
DNS_ERROR_DATAFILE_PARSING 9655
DNS_ERROR_DATABASE_BASE 9700
DNS_ERROR_RECORD_DOES_NOT_EXIST 9701
DNS_ERROR_RECORD_FORMAT 9702
DNS_ERROR_NODE_CREATION_FAILED 9703
DNS_ERROR_UNKNOWN_RECORD_TYPE 9704
DNS_ERROR_RECORD_TIMED_OUT 9705
DNS_ERROR_NAME_NOT_IN_ZONE 9706
DNS_ERROR_CNAME_LOOP 9707
DNS_ERROR_NODE_IS_CNAME 9708
DNS_ERROR_CNAME_COLLISION 9709
DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT 9710
DNS_ERROR_RECORD_ALREADY_EXISTS 9711
DNS_ERROR_SECONDARY_DATA 9712
DNS_ERROR_NO_CREATE_CACHE_DATA 9713
DNS_ERROR_NAME_DOES_NOT_EXIST 9714
DNS_WARNING_PTR_CREATE_FAILED 9715
DNS_WARNING_DOMAIN_UNDELETED 9716
DNS_ERROR_DS_UNAVAILABLE 9717
DNS_ERROR_DS_ZONE_ALREADY_EXISTS 9718
DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE 9719
DNS_ERROR_NODE_IS_DNAME 9720
DNS_ERROR_DNAME_COLLISION 9721
DNS_ERROR_ALIAS_LOOP 9722
DNS_ERROR_OPERATION_BASE 9750
DNS_INFO_AXFR_COMPLETE 9751
DNS_ERROR_AXFR 9752
DNS_INFO_ADDED_LOCAL_WINS 9753
DNS_ERROR_SECURE_BASE 9800
DNS_STATUS_CONTINUE_NEEDED 9801
DNS_ERROR_SETUP_BASE 9850
DNS_ERROR_NO_TCPIP 9851
DNS_ERROR_NO_DNS_SERVERS 9852
DNS_ERROR_DP_BASE 9900
DNS_ERROR_DP_DOES_NOT_EXIST 9901
DNS_ERROR_DP_ALREADY_EXISTS 9902
DNS_ERROR_DP_NOT_ENLISTED 9903
DNS_ERROR_DP_ALREADY_ENLISTED 9904
DNS_ERROR_DP_NOT_AVAILABLE 9905
DNS_ERROR_DP_FSMO_ERROR 9906
DNS_ERROR_RRL_NOT_ENABLED 9911
DNS_ERROR_RRL_INVALID_WINDOW_SIZE 9912
DNS_ERROR_RRL_INVALID_IPV4_PREFIX 9913
DNS_ERROR_RRL_INVALID_IPV6_PREFIX 9914
DNS_ERROR_RRL_INVALID_TC_RATE 9915
DNS_ERROR_RRL_INVALID_LEAK_RATE 9916
DNS_ERROR_RRL_LEAK_RATE_LESSTHAN_TC_RATE 9917
DNS_ERROR_VIRTUALIZATION_INSTANCE_ALREADY_EXISTS 9921
DNS_ERROR_VIRTUALIZATION_INSTANCE_DOES_NOT_EXIST 9922
DNS_ERROR_VIRTUALIZATION_TREE_LOCKED 9923
DNS_ERROR_INVAILD_VIRTUALIZATION_INSTANCE_NAME 9924
DNS_ERROR_DEFAULT_VIRTUALIZATION_INSTANCE 9925
DNS_ERROR_ZONESCOPE_ALREADY_EXISTS 9951
DNS_ERROR_ZONESCOPE_DOES_NOT_EXIST 9952
DNS_ERROR_DEFAULT_ZONESCOPE 9953
DNS_ERROR_INVALID_ZONESCOPE_NAME 9954
DNS_ERROR_NOT_ALLOWED_WITH_ZONESCOPES 9955
DNS_ERROR_LOAD_ZONESCOPE_FAILED 9956
DNS_ERROR_ZONESCOPE_FILE_WRITEBACK_FAILED 9957
DNS_ERROR_INVALID_SCOPE_NAME 9958
DNS_ERROR_SCOPE_DOES_NOT_EXIST 9959
DNS_ERROR_DEFAULT_SCOPE 9960
DNS_ERROR_INVALID_SCOPE_OPERATION 9961
DNS_ERROR_SCOPE_LOCKED 9962
DNS_ERROR_SCOPE_ALREADY_EXISTS 9963
DNS_ERROR_POLICY_ALREADY_EXISTS 9971
DNS_ERROR_POLICY_DOES_NOT_EXIST 9972
DNS_ERROR_POLICY_INVALID_CRITERIA 9973
DNS_ERROR_POLICY_INVALID_SETTINGS 9974
DNS_ERROR_CLIENT_SUBNET_IS_ACCESSED 9975
DNS_ERROR_CLIENT_SUBNET_DOES_NOT_EXIST 9976
DNS_ERROR_CLIENT_SUBNET_ALREADY_EXISTS 9977
DNS_ERROR_SUBNET_DOES_NOT_EXIST 9978
DNS_ERROR_SUBNET_ALREADY_EXISTS 9979
DNS_ERROR_POLICY_LOCKED 9980
DNS_ERROR_POLICY_INVALID_WEIGHT 9981
DNS_ERROR_POLICY_INVALID_NAME 9982
DNS_ERROR_POLICY_MISSING_CRITERIA 9983
DNS_ERROR_INVALID_CLIENT_SUBNET_NAME 9984
DNS_ERROR_POLICY_PROCESSING_ORDER_INVALID 9985
DNS_ERROR_POLICY_SCOPE_MISSING 9986
DNS_ERROR_POLICY_SCOPE_NOT_ALLOWED 9987
DNS_ERROR_SERVERSCOPE_IS_REFERENCED 9988
DNS_ERROR_ZONESCOPE_IS_REFERENCED 9989
DNS_ERROR_POLICY_INVALID_CRITERIA_CLIENT_SUBNET 9990
DNS_ERROR_POLICY_INVALID_CRITERIA_TRANSPORT_PROTOCOL 9991
DNS_ERROR_POLICY_INVALID_CRITERIA_NETWORK_PROTOCOL 9992
DNS_ERROR_POLICY_INVALID_CRITERIA_INTERFACE 9993
DNS_ERROR_POLICY_INVALID_CRITERIA_FQDN 9994
DNS_ERROR_POLICY_INVALID_CRITERIA_QUERY_TYPE 9995
DNS_ERROR_POLICY_INVALID_CRITERIA_TIME_OF_DAY 9996
WSABASEERR 10000
WSAEINTR 10004
WSAEBADF 10009
WSAEACCES 10013
WSAEFAULT 10014
WSAEINVAL 10022
WSAEMFILE 10024
WSAEWOULDBLOCK 10035
WSAEINPROGRESS 10036
WSAEALREADY 10037
WSAENOTSOCK 10038
WSAEDESTADDRREQ 10039
WSAEMSGSIZE 10040
WSAEPROTOTYPE 10041
WSAENOPROTOOPT 10042
WSAEPROTONOSUPPORT 10043
WSAESOCKTNOSUPPORT 10044
WSAEOPNOTSUPP 10045
WSAEPFNOSUPPORT 10046
WSAEAFNOSUPPORT 10047
WSAEADDRINUSE 10048
WSAEADDRNOTAVAIL 10049
WSAENETDOWN 10050
WSAENETUNREACH 10051
WSAENETRESET 10052
WSAECONNABORTED 10053
WSAECONNRESET 10054
WSAENOBUFS 10055
WSAEISCONN 10056
WSAENOTCONN 10057
WSAESHUTDOWN 10058
WSAETOOMANYREFS 10059
WSAETIMEDOUT 10060
WSAECONNREFUSED 10061
WSAELOOP 10062
WSAENAMETOOLONG 10063
WSAEHOSTDOWN 10064
WSAEHOSTUNREACH 10065
WSAENOTEMPTY 10066
WSAEPROCLIM 10067
WSAEUSERS 10068
WSAEDQUOT 10069
WSAESTALE 10070
WSAEREMOTE 10071
WSASYSNOTREADY 10091
WSAVERNOTSUPPORTED 10092
WSANOTINITIALISED 10093
WSAEDISCON 10101
WSAENOMORE 10102
WSAECANCELLED 10103
WSAEINVALIDPROCTABLE 10104
WSAEINVALIDPROVIDER 10105
WSAEPROVIDERFAILEDINIT 10106
WSASYSCALLFAILURE 10107
WSASERVICE_NOT_FOUND 10108
WSATYPE_NOT_FOUND 10109
WSA_E_NO_MORE 10110
WSA_E_CANCELLED 10111
WSAEREFUSED 10112
WSAHOST_NOT_FOUND 11001
WSATRY_AGAIN 11002
WSANO_RECOVERY 11003
WSANO_DATA 11004
WSA_QOS_RECEIVERS 11005
WSA_QOS_SENDERS 11006
WSA_QOS_NO_SENDERS 11007
WSA_QOS_NO_RECEIVERS 11008
WSA_QOS_REQUEST_CONFIRMED 11009
WSA_QOS_ADMISSION_FAILURE 11010
WSA_QOS_POLICY_FAILURE 11011
WSA_QOS_BAD_STYLE 11012
WSA_QOS_BAD_OBJECT 11013
WSA_QOS_TRAFFIC_CTRL_ERROR 11014
WSA_QOS_GENERIC_ERROR 11015
WSA_QOS_ESERVICETYPE 11016
WSA_QOS_EFLOWSPEC 11017
WSA_QOS_EPROVSPECBUF 11018
WSA_QOS_EFILTERSTYLE 11019
WSA_QOS_EFILTERTYPE 11020
WSA_QOS_EFILTERCOUNT 11021
WSA_QOS_EOBJLENGTH 11022
WSA_QOS_EFLOWCOUNT 11023
WSA_QOS_EUNKOWNPSOBJ 11024
WSA_QOS_EPOLICYOBJ 11025
WSA_QOS_EFLOWDESC 11026
WSA_QOS_EPSFLOWSPEC 11027
WSA_QOS_EPSFILTERSPEC 11028
WSA_QOS_ESDMODEOBJ 11029
WSA_QOS_ESHAPERATEOBJ 11030
WSA_QOS_RESERVED_PETYPE 11031
WSA_SECURE_HOST_NOT_FOUND 11032
WSA_IPSEC_NAME_POLICY_ERROR 11033
ERROR_IPSEC_QM_POLICY_EXISTS 13000
ERROR_IPSEC_QM_POLICY_NOT_FOUND 13001
ERROR_IPSEC_QM_POLICY_IN_USE 13002
ERROR_IPSEC_MM_POLICY_EXISTS 13003
ERROR_IPSEC_MM_POLICY_NOT_FOUND 13004
ERROR_IPSEC_MM_POLICY_IN_USE 13005
ERROR_IPSEC_MM_FILTER_EXISTS 13006
ERROR_IPSEC_MM_FILTER_NOT_FOUND 13007
ERROR_IPSEC_TRANSPORT_FILTER_EXISTS 13008
ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND 13009
ERROR_IPSEC_MM_AUTH_EXISTS 13010
ERROR_IPSEC_MM_AUTH_NOT_FOUND 13011
ERROR_IPSEC_MM_AUTH_IN_USE 13012
ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND 13013
ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND 13014
ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND 13015
ERROR_IPSEC_TUNNEL_FILTER_EXISTS 13016
ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND 13017
ERROR_IPSEC_MM_FILTER_PENDING_DELETION 13018
ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION 13019
ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION 13020
ERROR_IPSEC_MM_POLICY_PENDING_DELETION 13021
ERROR_IPSEC_MM_AUTH_PENDING_DELETION 13022
ERROR_IPSEC_QM_POLICY_PENDING_DELETION 13023
WARNING_IPSEC_MM_POLICY_PRUNED 13024
WARNING_IPSEC_QM_POLICY_PRUNED 13025
ERROR_IPSEC_IKE_NEG_STATUS_BEGIN 13800
ERROR_IPSEC_IKE_AUTH_FAIL 13801
ERROR_IPSEC_IKE_ATTRIB_FAIL 13802
ERROR_IPSEC_IKE_NEGOTIATION_PENDING 13803
ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR 13804
ERROR_IPSEC_IKE_TIMED_OUT 13805
ERROR_IPSEC_IKE_NO_CERT 13806
ERROR_IPSEC_IKE_SA_DELETED 13807
ERROR_IPSEC_IKE_SA_REAPED 13808
ERROR_IPSEC_IKE_MM_ACQUIRE_DROP 13809
ERROR_IPSEC_IKE_QM_ACQUIRE_DROP 13810
ERROR_IPSEC_IKE_QUEUE_DROP_MM 13811
ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM 13812
ERROR_IPSEC_IKE_DROP_NO_RESPONSE 13813
ERROR_IPSEC_IKE_MM_DELAY_DROP 13814
ERROR_IPSEC_IKE_QM_DELAY_DROP 13815
ERROR_IPSEC_IKE_ERROR 13816
ERROR_IPSEC_IKE_CRL_FAILED 13817
ERROR_IPSEC_IKE_INVALID_KEY_USAGE 13818
ERROR_IPSEC_IKE_INVALID_CERT_TYPE 13819
ERROR_IPSEC_IKE_NO_PRIVATE_KEY 13820
ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY 13821
ERROR_IPSEC_IKE_DH_FAIL 13822
ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED 13823
ERROR_IPSEC_IKE_INVALID_HEADER 13824
ERROR_IPSEC_IKE_NO_POLICY 13825
ERROR_IPSEC_IKE_INVALID_SIGNATURE 13826
ERROR_IPSEC_IKE_KERBEROS_ERROR 13827
ERROR_IPSEC_IKE_NO_PUBLIC_KEY 13828
ERROR_IPSEC_IKE_PROCESS_ERR 13829
ERROR_IPSEC_IKE_PROCESS_ERR_SA 13830
ERROR_IPSEC_IKE_PROCESS_ERR_PROP 13831
ERROR_IPSEC_IKE_PROCESS_ERR_TRANS 13832
ERROR_IPSEC_IKE_PROCESS_ERR_KE 13833
ERROR_IPSEC_IKE_PROCESS_ERR_ID 13834
ERROR_IPSEC_IKE_PROCESS_ERR_CERT 13835
ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ 13836
ERROR_IPSEC_IKE_PROCESS_ERR_HASH 13837
ERROR_IPSEC_IKE_PROCESS_ERR_SIG 13838
ERROR_IPSEC_IKE_PROCESS_ERR_NONCE 13839
ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY 13840
ERROR_IPSEC_IKE_PROCESS_ERR_DELETE 13841
ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR 13842
ERROR_IPSEC_IKE_INVALID_PAYLOAD 13843
ERROR_IPSEC_IKE_LOAD_SOFT_SA 13844
ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN 13845
ERROR_IPSEC_IKE_INVALID_COOKIE 13846
ERROR_IPSEC_IKE_NO_PEER_CERT 13847
ERROR_IPSEC_IKE_PEER_CRL_FAILED 13848
ERROR_IPSEC_IKE_POLICY_CHANGE 13849
ERROR_IPSEC_IKE_NO_MM_POLICY 13850
ERROR_IPSEC_IKE_NOTCBPRIV 13851
ERROR_IPSEC_IKE_SECLOADFAIL 13852
ERROR_IPSEC_IKE_FAILSSPINIT 13853
ERROR_IPSEC_IKE_FAILQUERYSSP 13854
ERROR_IPSEC_IKE_SRVACQFAIL 13855
ERROR_IPSEC_IKE_SRVQUERYCRED 13856
ERROR_IPSEC_IKE_GETSPIFAIL 13857
ERROR_IPSEC_IKE_INVALID_FILTER 13858
ERROR_IPSEC_IKE_OUT_OF_MEMORY 13859
ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED 13860
ERROR_IPSEC_IKE_INVALID_POLICY 13861
ERROR_IPSEC_IKE_UNKNOWN_DOI 13862
ERROR_IPSEC_IKE_INVALID_SITUATION 13863
ERROR_IPSEC_IKE_DH_FAILURE 13864
ERROR_IPSEC_IKE_INVALID_GROUP 13865
ERROR_IPSEC_IKE_ENCRYPT 13866
ERROR_IPSEC_IKE_DECRYPT 13867
ERROR_IPSEC_IKE_POLICY_MATCH 13868
ERROR_IPSEC_IKE_UNSUPPORTED_ID 13869
ERROR_IPSEC_IKE_INVALID_HASH 13870
ERROR_IPSEC_IKE_INVALID_HASH_ALG 13871
ERROR_IPSEC_IKE_INVALID_HASH_SIZE 13872
ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG 13873
ERROR_IPSEC_IKE_INVALID_AUTH_ALG 13874
ERROR_IPSEC_IKE_INVALID_SIG 13875
ERROR_IPSEC_IKE_LOAD_FAILED 13876
ERROR_IPSEC_IKE_RPC_DELETE 13877
ERROR_IPSEC_IKE_BENIGN_REINIT 13878
ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY 13879
ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION 13880
ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN 13881
ERROR_IPSEC_IKE_MM_LIMIT 13882
ERROR_IPSEC_IKE_NEGOTIATION_DISABLED 13883
ERROR_IPSEC_IKE_QM_LIMIT 13884
ERROR_IPSEC_IKE_MM_EXPIRED 13885
ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID 13886
ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH 13887
ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID 13888
ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD 13889
ERROR_IPSEC_IKE_DOS_COOKIE_SENT 13890
ERROR_IPSEC_IKE_SHUTTING_DOWN 13891
ERROR_IPSEC_IKE_CGA_AUTH_FAILED 13892
ERROR_IPSEC_IKE_PROCESS_ERR_NATOA 13893
ERROR_IPSEC_IKE_INVALID_MM_FOR_QM 13894
ERROR_IPSEC_IKE_QM_EXPIRED 13895
ERROR_IPSEC_IKE_TOO_MANY_FILTERS 13896
ERROR_IPSEC_IKE_NEG_STATUS_END 13897
ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL 13898
ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE 13899
ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING 13900
ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING 13901
ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS 13902
ERROR_IPSEC_IKE_RATELIMIT_DROP 13903
ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE 13904
ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE 13905
ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE 13906
ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY 13907
ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE 13908
ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END 13909
ERROR_IPSEC_BAD_SPI 13910
ERROR_IPSEC_SA_LIFETIME_EXPIRED 13911
ERROR_IPSEC_WRONG_SA 13912
ERROR_IPSEC_REPLAY_CHECK_FAILED 13913
ERROR_IPSEC_INVALID_PACKET 13914
ERROR_IPSEC_INTEGRITY_CHECK_FAILED 13915
ERROR_IPSEC_CLEAR_TEXT_DROP 13916
ERROR_IPSEC_AUTH_FIREWALL_DROP 13917
ERROR_IPSEC_THROTTLE_DROP 13918
ERROR_IPSEC_DOSP_BLOCK 13925
ERROR_IPSEC_DOSP_RECEIVED_MULTICAST 13926
ERROR_IPSEC_DOSP_INVALID_PACKET 13927
ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED 13928
ERROR_IPSEC_DOSP_MAX_ENTRIES 13929
ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED 13930
ERROR_IPSEC_DOSP_NOT_INSTALLED 13931
ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES 13932
ERROR_SXS_SECTION_NOT_FOUND 14000
ERROR_SXS_CANT_GEN_ACTCTX 14001
ERROR_SXS_INVALID_ACTCTXDATA_FORMAT 14002
ERROR_SXS_ASSEMBLY_NOT_FOUND 14003
ERROR_SXS_MANIFEST_FORMAT_ERROR 14004
ERROR_SXS_MANIFEST_PARSE_ERROR 14005
ERROR_SXS_ACTIVATION_CONTEXT_DISABLED 14006
ERROR_SXS_KEY_NOT_FOUND 14007
ERROR_SXS_VERSION_CONFLICT 14008
ERROR_SXS_WRONG_SECTION_TYPE 14009
ERROR_SXS_THREAD_QUERIES_DISABLED 14010
ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET 14011
ERROR_SXS_UNKNOWN_ENCODING_GROUP 14012
ERROR_SXS_UNKNOWN_ENCODING 14013
ERROR_SXS_INVALID_XML_NAMESPACE_URI 14014
ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED 14015
ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED 14016
ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE 14017
ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE 14018
ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE 14019
ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT 14020
ERROR_SXS_DUPLICATE_DLL_NAME 14021
ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME 14022
ERROR_SXS_DUPLICATE_CLSID 14023
ERROR_SXS_DUPLICATE_IID 14024
ERROR_SXS_DUPLICATE_TLBID 14025
ERROR_SXS_DUPLICATE_PROGID 14026
ERROR_SXS_DUPLICATE_ASSEMBLY_NAME 14027
ERROR_SXS_FILE_HASH_MISMATCH 14028
ERROR_SXS_POLICY_PARSE_ERROR 14029
ERROR_SXS_XML_E_MISSINGQUOTE 14030
ERROR_SXS_XML_E_COMMENTSYNTAX 14031
ERROR_SXS_XML_E_BADSTARTNAMECHAR 14032
ERROR_SXS_XML_E_BADNAMECHAR 14033
ERROR_SXS_XML_E_BADCHARINSTRING 14034
ERROR_SXS_XML_E_XMLDECLSYNTAX 14035
ERROR_SXS_XML_E_BADCHARDATA 14036
ERROR_SXS_XML_E_MISSINGWHITESPACE 14037
ERROR_SXS_XML_E_EXPECTINGTAGEND 14038
ERROR_SXS_XML_E_MISSINGSEMICOLON 14039
ERROR_SXS_XML_E_UNBALANCEDPAREN 14040
ERROR_SXS_XML_E_INTERNALERROR 14041
ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE 14042
ERROR_SXS_XML_E_INCOMPLETE_ENCODING 14043
ERROR_SXS_XML_E_MISSING_PAREN 14044
ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE 14045
ERROR_SXS_XML_E_MULTIPLE_COLONS 14046
ERROR_SXS_XML_E_INVALID_DECIMAL 14047
ERROR_SXS_XML_E_INVALID_HEXIDECIMAL 14048
ERROR_SXS_XML_E_INVALID_UNICODE 14049
ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK 14050
ERROR_SXS_XML_E_UNEXPECTEDENDTAG 14051
ERROR_SXS_XML_E_UNCLOSEDTAG 14052
ERROR_SXS_XML_E_DUPLICATEATTRIBUTE 14053
ERROR_SXS_XML_E_MULTIPLEROOTS 14054
ERROR_SXS_XML_E_INVALIDATROOTLEVEL 14055
ERROR_SXS_XML_E_BADXMLDECL 14056
ERROR_SXS_XML_E_MISSINGROOT 14057
ERROR_SXS_XML_E_UNEXPECTEDEOF 14058
ERROR_SXS_XML_E_BADPEREFINSUBSET 14059
ERROR_SXS_XML_E_UNCLOSEDSTARTTAG 14060
ERROR_SXS_XML_E_UNCLOSEDENDTAG 14061
ERROR_SXS_XML_E_UNCLOSEDSTRING 14062
ERROR_SXS_XML_E_UNCLOSEDCOMMENT 14063
ERROR_SXS_XML_E_UNCLOSEDDECL 14064
ERROR_SXS_XML_E_UNCLOSEDCDATA 14065
ERROR_SXS_XML_E_RESERVEDNAMESPACE 14066
ERROR_SXS_XML_E_INVALIDENCODING 14067
ERROR_SXS_XML_E_INVALIDSWITCH 14068
ERROR_SXS_XML_E_BADXMLCASE 14069
ERROR_SXS_XML_E_INVALID_STANDALONE 14070
ERROR_SXS_XML_E_UNEXPECTED_STANDALONE 14071
ERROR_SXS_XML_E_INVALID_VERSION 14072
ERROR_SXS_XML_E_MISSINGEQUALS 14073
ERROR_SXS_PROTECTION_RECOVERY_FAILED 14074
ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT 14075
ERROR_SXS_PROTECTION_CATALOG_NOT_VALID 14076
ERROR_SXS_UNTRANSLATABLE_HRESULT 14077
ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING 14078
ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE 14079
ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME 14080
ERROR_SXS_ASSEMBLY_MISSING 14081
ERROR_SXS_CORRUPT_ACTIVATION_STACK 14082
ERROR_SXS_CORRUPTION 14083
ERROR_SXS_EARLY_DEACTIVATION 14084
ERROR_SXS_INVALID_DEACTIVATION 14085
ERROR_SXS_MULTIPLE_DEACTIVATION 14086
ERROR_SXS_PROCESS_TERMINATION_REQUESTED 14087
ERROR_SXS_RELEASE_ACTIVATION_CONTEXT 14088
ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY 14089
ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE 14090
ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME 14091
ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE 14092
ERROR_SXS_IDENTITY_PARSE_ERROR 14093
ERROR_MALFORMED_SUBSTITUTION_STRING 14094
ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN 14095
ERROR_UNMAPPED_SUBSTITUTION_STRING 14096
ERROR_SXS_ASSEMBLY_NOT_LOCKED 14097
ERROR_SXS_COMPONENT_STORE_CORRUPT 14098
ERROR_ADVANCED_INSTALLER_FAILED 14099
ERROR_XML_ENCODING_MISMATCH 14100
ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT 14101
ERROR_SXS_IDENTITIES_DIFFERENT 14102
ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT 14103
ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY 14104
ERROR_SXS_MANIFEST_TOO_BIG 14105
ERROR_SXS_SETTING_NOT_REGISTERED 14106
ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE 14107
ERROR_SMI_PRIMITIVE_INSTALLER_FAILED 14108
ERROR_GENERIC_COMMAND_FAILED 14109
ERROR_SXS_FILE_HASH_MISSING 14110
ERROR_SXS_DUPLICATE_ACTIVATABLE_CLASS 14111
ERROR_EVT_INVALID_CHANNEL_PATH 15000
ERROR_EVT_INVALID_QUERY 15001
ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND 15002
ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND 15003
ERROR_EVT_INVALID_PUBLISHER_NAME 15004
ERROR_EVT_INVALID_EVENT_DATA 15005
ERROR_EVT_CHANNEL_NOT_FOUND 15007
ERROR_EVT_MALFORMED_XML_TEXT 15008
ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL 15009
ERROR_EVT_CONFIGURATION_ERROR 15010
ERROR_EVT_QUERY_RESULT_STALE 15011
ERROR_EVT_QUERY_RESULT_INVALID_POSITION 15012
ERROR_EVT_NON_VALIDATING_MSXML 15013
ERROR_EVT_FILTER_ALREADYSCOPED 15014
ERROR_EVT_FILTER_NOTELTSET 15015
ERROR_EVT_FILTER_INVARG 15016
ERROR_EVT_FILTER_INVTEST 15017
ERROR_EVT_FILTER_INVTYPE 15018
ERROR_EVT_FILTER_PARSEERR 15019
ERROR_EVT_FILTER_UNSUPPORTEDOP 15020
ERROR_EVT_FILTER_UNEXPECTEDTOKEN 15021
ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL 15022
ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE 15023
ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE 15024
ERROR_EVT_CHANNEL_CANNOT_ACTIVATE 15025
ERROR_EVT_FILTER_TOO_COMPLEX 15026
ERROR_EVT_MESSAGE_NOT_FOUND 15027
ERROR_EVT_MESSAGE_ID_NOT_FOUND 15028
ERROR_EVT_UNRESOLVED_VALUE_INSERT 15029
ERROR_EVT_UNRESOLVED_PARAMETER_INSERT 15030
ERROR_EVT_MAX_INSERTS_REACHED 15031
ERROR_EVT_EVENT_DEFINITION_NOT_FOUND 15032
ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND 15033
ERROR_EVT_VERSION_TOO_OLD 15034
ERROR_EVT_VERSION_TOO_NEW 15035
ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY 15036
ERROR_EVT_PUBLISHER_DISABLED 15037
ERROR_EVT_FILTER_OUT_OF_RANGE 15038
ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE 15080
ERROR_EC_LOG_DISABLED 15081
ERROR_EC_CIRCULAR_FORWARDING 15082
ERROR_EC_CREDSTORE_FULL 15083
ERROR_EC_CRED_NOT_FOUND 15084
ERROR_EC_NO_ACTIVE_CHANNEL 15085
ERROR_MUI_FILE_NOT_FOUND 15100
ERROR_MUI_INVALID_FILE 15101
ERROR_MUI_INVALID_RC_CONFIG 15102
ERROR_MUI_INVALID_LOCALE_NAME 15103
ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME 15104
ERROR_MUI_FILE_NOT_LOADED 15105
ERROR_RESOURCE_ENUM_USER_STOP 15106
ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED 15107
ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME 15108
ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE 15110
ERROR_MRM_INVALID_PRICONFIG 15111
ERROR_MRM_INVALID_FILE_TYPE 15112
ERROR_MRM_UNKNOWN_QUALIFIER 15113
ERROR_MRM_INVALID_QUALIFIER_VALUE 15114
ERROR_MRM_NO_CANDIDATE 15115
ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE 15116
ERROR_MRM_RESOURCE_TYPE_MISMATCH 15117
ERROR_MRM_DUPLICATE_MAP_NAME 15118
ERROR_MRM_DUPLICATE_ENTRY 15119
ERROR_MRM_INVALID_RESOURCE_IDENTIFIER 15120
ERROR_MRM_FILEPATH_TOO_LONG 15121
ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE 15122
ERROR_MRM_INVALID_PRI_FILE 15126
ERROR_MRM_NAMED_RESOURCE_NOT_FOUND 15127
ERROR_MRM_MAP_NOT_FOUND 15135
ERROR_MRM_UNSUPPORTED_PROFILE_TYPE 15136
ERROR_MRM_INVALID_QUALIFIER_OPERATOR 15137
ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE 15138
ERROR_MRM_AUTOMERGE_ENABLED 15139
ERROR_MRM_TOO_MANY_RESOURCES 15140
ERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_MERGE 15141
ERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_LOAD_UNLOAD_PRI_FILE 15142
ERROR_MRM_NO_CURRENT_VIEW_ON_THREAD 15143
ERROR_DIFFERENT_PROFILE_RESOURCE_MANAGER_EXIST 15144
ERROR_OPERATION_NOT_ALLOWED_FROM_SYSTEM_COMPONENT 15145
ERROR_MRM_DIRECT_REF_TO_NON_DEFAULT_RESOURCE 15146
ERROR_MRM_GENERATION_COUNT_MISMATCH 15147
ERROR_PRI_MERGE_VERSION_MISMATCH 15148
ERROR_PRI_MERGE_MISSING_SCHEMA 15149
ERROR_PRI_MERGE_LOAD_FILE_FAILED 15150
ERROR_PRI_MERGE_ADD_FILE_FAILED 15151
ERROR_PRI_MERGE_WRITE_FILE_FAILED 15152
ERROR_PRI_MERGE_MULTIPLE_PACKAGE_FAMILIES_NOT_ALLOWED 15153
ERROR_PRI_MERGE_MULTIPLE_MAIN_PACKAGES_NOT_ALLOWED 15154
ERROR_PRI_MERGE_BUNDLE_PACKAGES_NOT_ALLOWED 15155
ERROR_PRI_MERGE_MAIN_PACKAGE_REQUIRED 15156
ERROR_PRI_MERGE_RESOURCE_PACKAGE_REQUIRED 15157
ERROR_PRI_MERGE_INVALID_FILE_NAME 15158
ERROR_MRM_PACKAGE_NOT_FOUND 15159
ERROR_MRM_MISSING_DEFAULT_LANGUAGE 15160
ERROR_MCA_INVALID_CAPABILITIES_STRING 15200
ERROR_MCA_INVALID_VCP_VERSION 15201
ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION 15202
ERROR_MCA_MCCS_VERSION_MISMATCH 15203
ERROR_MCA_UNSUPPORTED_MCCS_VERSION 15204
ERROR_MCA_INTERNAL_ERROR 15205
ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED 15206
ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE 15207
ERROR_AMBIGUOUS_SYSTEM_DEVICE 15250
ERROR_SYSTEM_DEVICE_NOT_FOUND 15299
ERROR_HASH_NOT_SUPPORTED 15300
ERROR_HASH_NOT_PRESENT 15301
ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED 15321
ERROR_GPIO_CLIENT_INFORMATION_INVALID 15322
ERROR_GPIO_VERSION_NOT_SUPPORTED 15323
ERROR_GPIO_INVALID_REGISTRATION_PACKET 15324
ERROR_GPIO_OPERATION_DENIED 15325
ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE 15326
ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED 15327
ERROR_CANNOT_SWITCH_RUNLEVEL 15400
ERROR_INVALID_RUNLEVEL_SETTING 15401
ERROR_RUNLEVEL_SWITCH_TIMEOUT 15402
ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT 15403
ERROR_RUNLEVEL_SWITCH_IN_PROGRESS 15404
ERROR_SERVICES_FAILED_AUTOSTART 15405
ERROR_COM_TASK_STOP_PENDING 15501
ERROR_INSTALL_OPEN_PACKAGE_FAILED 15600
ERROR_INSTALL_PACKAGE_NOT_FOUND 15601
ERROR_INSTALL_INVALID_PACKAGE 15602
ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED 15603
ERROR_INSTALL_OUT_OF_DISK_SPACE 15604
ERROR_INSTALL_NETWORK_FAILURE 15605
ERROR_INSTALL_REGISTRATION_FAILURE 15606
ERROR_INSTALL_DEREGISTRATION_FAILURE 15607
ERROR_INSTALL_CANCEL 15608
ERROR_INSTALL_FAILED 15609
ERROR_REMOVE_FAILED 15610
ERROR_PACKAGE_ALREADY_EXISTS 15611
ERROR_NEEDS_REMEDIATION 15612
ERROR_INSTALL_PREREQUISITE_FAILED 15613
ERROR_PACKAGE_REPOSITORY_CORRUPTED 15614
ERROR_INSTALL_POLICY_FAILURE 15615
ERROR_PACKAGE_UPDATING 15616
ERROR_DEPLOYMENT_BLOCKED_BY_POLICY 15617
ERROR_PACKAGES_IN_USE 15618
ERROR_RECOVERY_FILE_CORRUPT 15619
ERROR_INVALID_STAGED_SIGNATURE 15620
ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED 15621
ERROR_INSTALL_PACKAGE_DOWNGRADE 15622
ERROR_SYSTEM_NEEDS_REMEDIATION 15623
ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN 15624
ERROR_RESILIENCY_FILE_CORRUPT 15625
ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING 15626
ERROR_PACKAGE_MOVE_FAILED 15627
ERROR_INSTALL_VOLUME_NOT_EMPTY 15628
ERROR_INSTALL_VOLUME_OFFLINE 15629
ERROR_INSTALL_VOLUME_CORRUPT 15630
ERROR_NEEDS_REGISTRATION 15631
ERROR_INSTALL_WRONG_PROCESSOR_ARCHITECTURE 15632
ERROR_DEV_SIDELOAD_LIMIT_EXCEEDED 15633
ERROR_INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE 15634
ERROR_PACKAGE_NOT_SUPPORTED_ON_FILESYSTEM 15635
ERROR_PACKAGE_MOVE_BLOCKED_BY_STREAMING 15636
ERROR_INSTALL_OPTIONAL_PACKAGE_APPLICATIONID_NOT_UNIQUE 15637
ERROR_PACKAGE_STAGING_ONHOLD 15638
ERROR_INSTALL_INVALID_RELATED_SET_UPDATE 15639
ERROR_INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY 15640
ERROR_DEPLOYMENT_BLOCKED_BY_USER_LOG_OFF 15641
ERROR_PROVISION_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_PROVISIONED 15642
ERROR_PACKAGES_REPUTATION_CHECK_FAILED 15643
ERROR_PACKAGES_REPUTATION_CHECK_TIMEDOUT 15644
ERROR_DEPLOYMENT_OPTION_NOT_SUPPORTED 15645
ERROR_APPINSTALLER_ACTIVATION_BLOCKED 15646
ERROR_REGISTRATION_FROM_REMOTE_DRIVE_NOT_SUPPORTED 15647
ERROR_APPX_RAW_DATA_WRITE_FAILED 15648
ERROR_DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_PACKAGE 15649
ERROR_DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_MACHINE 15650
ERROR_DEPLOYMENT_BLOCKED_BY_PROFILE_POLICY 15651
ERROR_DEPLOYMENT_FAILED_CONFLICTING_MUTABLE_PACKAGE_DIRECTORY 15652
ERROR_SINGLETON_RESOURCE_INSTALLED_IN_ACTIVE_USER 15653
ERROR_DIFFERENT_VERSION_OF_PACKAGED_SERVICE_INSTALLED 15654
ERROR_SERVICE_EXISTS_AS_NON_PACKAGED_SERVICE 15655
ERROR_PACKAGED_SERVICE_REQUIRES_ADMIN_PRIVILEGES 15656
ERROR_REDIRECTION_TO_DEFAULT_ACCOUNT_NOT_ALLOWED 15657
ERROR_PACKAGE_LACKS_CAPABILITY_TO_DEPLOY_ON_HOST 15658
ERROR_UNSIGNED_PACKAGE_INVALID_CONTENT 15659
ERROR_UNSIGNED_PACKAGE_INVALID_PUBLISHER_NAMESPACE 15660
ERROR_SIGNED_PACKAGE_INVALID_PUBLISHER_NAMESPACE 15661
ERROR_PACKAGE_EXTERNAL_LOCATION_NOT_ALLOWED 15662
ERROR_INSTALL_FULLTRUST_HOSTRUNTIME_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY 15663
APPMODEL_ERROR_NO_PACKAGE 15700
APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT 15701
APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT 15702
APPMODEL_ERROR_NO_APPLICATION 15703
APPMODEL_ERROR_DYNAMIC_PROPERTY_READ_FAILED 15704
APPMODEL_ERROR_DYNAMIC_PROPERTY_INVALID 15705
APPMODEL_ERROR_PACKAGE_NOT_AVAILABLE 15706
APPMODEL_ERROR_NO_MUTABLE_DIRECTORY 15707
ERROR_STATE_LOAD_STORE_FAILED 15800
ERROR_STATE_GET_VERSION_FAILED 15801
ERROR_STATE_SET_VERSION_FAILED 15802
ERROR_STATE_STRUCTURED_RESET_FAILED 15803
ERROR_STATE_OPEN_CONTAINER_FAILED 15804
ERROR_STATE_CREATE_CONTAINER_FAILED 15805
ERROR_STATE_DELETE_CONTAINER_FAILED 15806
ERROR_STATE_READ_SETTING_FAILED 15807
ERROR_STATE_WRITE_SETTING_FAILED 15808
ERROR_STATE_DELETE_SETTING_FAILED 15809
ERROR_STATE_QUERY_SETTING_FAILED 15810
ERROR_STATE_READ_COMPOSITE_SETTING_FAILED 15811
ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED 15812
ERROR_STATE_ENUMERATE_CONTAINER_FAILED 15813
ERROR_STATE_ENUMERATE_SETTINGS_FAILED 15814
ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED 15815
ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED 15816
ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED 15817
ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED 15818
ERROR_API_UNAVAILABLE 15841
STORE_ERROR_UNLICENSED 15861
STORE_ERROR_UNLICENSED_USER 15862
STORE_ERROR_PENDING_COM_TRANSACTION 15863
STORE_ERROR_LICENSE_REVOKED 15864

HRESULT 错误码

错误码 名称 描述
0x8000FFFFL E_UNEXPECTED Catastrophic failure
0x80004001L E_NOTIMPL Not implemented
0x8007000EL E_OUTOFMEMORY Ran out of memory
0x80070057L E_INVALIDARG One or more arguments are invalid
0x80004002L E_NOINTERFACE No such interface supported
0x80004003L E_POINTER Invalid pointer
0x80070006L E_HANDLE Invalid handle
0x80004004L E_ABORT Operation aborted
0x80004005L E_FAIL Unspecified error
0x80070005L E_ACCESSDENIED General access denied error
0x80000001L E_NOTIMPL Not implemented
0x80000002L E_OUTOFMEMORY Ran out of memory
0x80000003L E_INVALIDARG One or more arguments are invalid
0x80000004L E_NOINTERFACE No such interface supported
0x80000005L E_POINTER Invalid pointer
0x80000006L E_HANDLE Invalid handle
0x80000007L E_ABORT Operation aborted
0x80000008L E_FAIL Unspecified error
0x80000009L E_ACCESSDENIED General access denied error
0x8000000AL E_PENDING The data necessary to complete this operation is not yet available.
0x8000000BL E_BOUNDS The operation attempted to access data outside the valid range
0x8000000CL E_CHANGED_STATE A concurrent or interleaved operation changed the state of the object
0x8000000DL E_ILLEGAL_STATE_CHANGE An illegal state change was requested.
0x8000000EL E_ILLEGAL_METHOD_CALL A method was called at an unexpected time.
0x8000000FL RO_E_METADATA_NAME_NOT_FOUND Typename or Namespace was not found in metadata file.
0x80000010L RO_E_METADATA_NAME_IS_NAMESPACE Name is an existing namespace rather than a typename.
0x80000011L RO_E_METADATA_INVALID_TYPE_FORMAT Typename has an invalid format.
0x80000012L RO_E_INVALID_METADATA_FILE Metadata file is invalid or corrupted.
0x80000013L RO_E_CLOSED The object has been closed.
0x80000014L RO_E_EXCLUSIVE_WRITE Only one thread may access the object during a write operation.
0x80000015L RO_E_CHANGE_NOTIFICATION_IN_PROGRESS Operation is prohibited during change notification.
0x80000016L RO_E_ERROR_STRING_NOT_FOUND The text associated with this error code could not be found.
0x80000017L E_STRING_NOT_NULL_TERMINATED String not null terminated.
0x80000018L E_ILLEGAL_DELEGATE_ASSIGNMENT A delegate was assigned when not allowed.
0x80000019L E_ASYNC_OPERATION_NOT_STARTED An async operation was not properly started.
0x8000001AL E_APPLICATION_EXITING The application is exiting and cannot service this request
0x8000001BL E_APPLICATION_VIEW_EXITING The application view is exiting and cannot service this request
0x8000001CL RO_E_MUST_BE_AGILE The object must support the IAgileObject interface
0x8000001DL RO_E_UNSUPPORTED_FROM_MTA Activating a single-threaded class from MTA is not supported
0x8000001EL RO_E_COMMITTED The object has been committed.
0x8000001FL RO_E_BLOCKED_CROSS_ASTA_CALL A COM call to an ASTA was blocked because the call chain originated in or passed through another ASTA. This call pattern is deadlock-prone and disallowed by apartment call control.
0x80000020L RO_E_CANNOT_ACTIVATE_FULL_TRUST_SERVER A universal application process cannot activate a packaged WinRT server that is declared to run full trust.
0x80000021L RO_E_CANNOT_ACTIVATE_UNIVERSAL_APPLICATION_SERVER A full trust packaged application process cannot activate a packaged WinRT server unless it is also declared to run full trust.
0x80004006L CO_E_INIT_TLS Thread local storage failure
0x80004007L CO_E_INIT_SHARED_ALLOCATOR Get shared memory allocator failure
0x80004008L CO_E_INIT_MEMORY_ALLOCATOR Get memory allocator failure
0x80004009L CO_E_INIT_CLASS_CACHE Unable to initialize class cache
0x8000400AL CO_E_INIT_RPC_CHANNEL Unable to initialize RPC services
0x8000400BL CO_E_INIT_TLS_SET_CHANNEL_CONTROL Cannot set thread local storage channel control
0x8000400CL CO_E_INIT_TLS_CHANNEL_CONTROL Could not allocate thread local storage channel control
0x8000400DL CO_E_INIT_UNACCEPTED_USER_ALLOCATOR The user supplied memory allocator is unacceptable
0x8000400EL CO_E_INIT_SCM_MUTEX_EXISTS The OLE service mutex already exists
0x8000400FL CO_E_INIT_SCM_FILE_MAPPING_EXISTS The OLE service file mapping already exists
0x80004010L CO_E_INIT_SCM_MAP_VIEW_OF_FILE Unable to map view of file for OLE service
0x80004011L CO_E_INIT_SCM_EXEC_FAILURE Failure attempting to launch OLE service
0x80004012L CO_E_INIT_ONLY_SINGLE_THREADED There was an attempt to call CoInitialize a second time while single threaded
0x80004013L CO_E_CANT_REMOTE A Remote activation was necessary but was not allowed
0x80004014L CO_E_BAD_SERVER_NAME A Remote activation was necessary but the server name provided was invalid
0x80004015L CO_E_WRONG_SERVER_IDENTITY The class is configured to run as a security id different from the caller
0x80004016L CO_E_OLE1DDE_DISABLED Use of Ole1 services requiring DDE windows is disabled
0x80004017L CO_E_RUNAS_SYNTAX A RunAs specification must be <user name> or simply
0x80004018L CO_E_CREATEPROCESS_FAILURE The server process could not be started. The pathname may be incorrect.
0x80004019L CO_E_RUNAS_CREATEPROCESS_FAILURE The server process could not be started as the configured identity. The pathname may be incorrect or unavailable.
0x8000401AL CO_E_RUNAS_LOGON_FAILURE The server process could not be started because the configured identity is incorrect. Check the username and password.
0x8000401BL CO_E_LAUNCH_PERMSSION_DENIED The client is not allowed to launch this server.
0x8000401CL CO_E_START_SERVICE_FAILURE The service providing this server could not be started.
0x8000401DL CO_E_REMOTE_COMMUNICATION_FAILURE This computer was unable to communicate with the computer providing the server.
0x8000401EL CO_E_SERVER_START_TIMEOUT The server did not respond after being launched.
0x8000401FL CO_E_CLSREG_INCONSISTENT The registration information for this server is inconsistent or incomplete.
0x80004020L CO_E_IIDREG_INCONSISTENT The registration information for this interface is inconsistent or incomplete.
0x80004021L CO_E_NOT_SUPPORTED The operation attempted is not supported.
0x80004022L CO_E_RELOAD_DLL A dll must be loaded.
0x80004023L CO_E_MSI_ERROR A Microsoft Software Installer error was encountered.
0x80004024L CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT The specified activation could not occur in the client context as specified.
0x80004025L CO_E_SERVER_PAUSED Activations on the server are paused.
0x80004026L CO_E_SERVER_NOT_PAUSED Activations on the server are not paused.
0x80004027L CO_E_CLASS_DISABLED The component or application containing the component has been disabled.
0x80004028L CO_E_CLRNOTAVAILABLE The common language runtime is not available
0x80004029L CO_E_ASYNC_WORK_REJECTED The thread-pool rejected the submitted asynchronous work.
0x8000402AL CO_E_SERVER_INIT_TIMEOUT The server started
0x8000402BL CO_E_NO_SECCTX_IN_ACTIVATE Unable to complete the call since there is no COM+ security context inside IObjectControl.Activate.
0x80004030L CO_E_TRACKER_CONFIG The provided tracker configuration is invalid
0x80004031L CO_E_THREADPOOL_CONFIG The provided thread pool configuration is invalid
0x80004032L CO_E_SXS_CONFIG The provided side-by-side configuration is invalid
0x80004033L CO_E_MALFORMED_SPN The server principal name (SPN) obtained during security negotiation is malformed.
0x80004034L CO_E_UNREVOKED_REGISTRATION_ON_APARTMENT_SHUTDOWN The caller failed to revoke a per-apartment registration before apartment shutdown.
0x80004035L CO_E_PREMATURE_STUB_RUNDOWN The object has been rundown by the stub manager while there are external clients.
0x80040000L OLE_E_OLEVERB Invalid OLEVERB structure
0x80040001L OLE_E_ADVF Invalid advise flags
0x80040002L OLE_E_ENUM_NOMORE Can’t enumerate any more
0x80040003L OLE_E_ADVISENOTSUPPORTED This implementation doesn’t take advises
0x80040004L OLE_E_NOCONNECTION There is no connection for this connection ID
0x80040005L OLE_E_NOTRUNNING Need to run the object to perform this operation
0x80040006L OLE_E_NOCACHE There is no cache to operate on
0x80040007L OLE_E_BLANK Uninitialized object
0x80040008L OLE_E_CLASSDIFF Linked object’s source class has changed
0x80040009L OLE_E_CANT_GETMONIKER Not able to get the moniker of the object
0x8004000AL OLE_E_CANT_BINDTOSOURCE Not able to bind to the source
0x8004000BL OLE_E_STATIC Object is static; operation not allowed
0x8004000CL OLE_E_PROMPTSAVECANCELLED User canceled out of save dialog
0x8004000DL OLE_E_INVALIDRECT Invalid rectangle
0x8004000EL OLE_E_WRONGCOMPOBJ compobj.dll is too old for the ole2.dll initialized
0x8004000FL OLE_E_INVALIDHWND Invalid window handle
0x80040010L OLE_E_NOT_INPLACEACTIVE Object is not in any of the inplace active states
0x80040011L OLE_E_CANTCONVERT Not able to convert object
0x80040012L OLE_E_NOSTORAGE Not able to perform the operation because object is not given storage yet
0x80040064L DV_E_FORMATETC Invalid FORMATETC structure
0x80040065L DV_E_DVTARGETDEVICE Invalid DVTARGETDEVICE structure
0x80040066L DV_E_STGMEDIUM Invalid STDGMEDIUM structure
0x80040067L DV_E_STATDATA Invalid STATDATA structure
0x80040068L DV_E_LINDEX Invalid lindex
0x80040069L DV_E_TYMED Invalid tymed
0x8004006AL DV_E_CLIPFORMAT Invalid clipboard format
0x8004006BL DV_E_DVASPECT Invalid aspect(s)
0x8004006CL DV_E_DVTARGETDEVICE_SIZE tdSize parameter of the DVTARGETDEVICE structure is invalid
0x8004006DL DV_E_NOIVIEWOBJECT Object doesn’t support IViewObject interface
0x80040100L DRAGDROP_E_NOTREGISTERED Trying to revoke a drop target that has not been registered
0x80040101L DRAGDROP_E_ALREADYREGISTERED This window has already been registered as a drop target
0x80040102L DRAGDROP_E_INVALIDHWND Invalid window handle
0x80040103L DRAGDROP_E_CONCURRENT_DRAG_ATTEMPTED A drag operation is already in progress
0x80040110L CLASS_E_NOAGGREGATION Class does not support aggregation (or class object is remote)
0x80040111L CLASS_E_CLASSNOTAVAILABLE ClassFactory cannot supply requested class
0x80040112L CLASS_E_NOTLICENSED Class is not licensed for use
0x80040140L VIEW_E_DRAW Error drawing view
0x80040150L REGDB_E_READREGDB Could not read key from registry
0x80040151L REGDB_E_WRITEREGDB Could not write key to registry
0x80040152L REGDB_E_KEYMISSING Could not find the key in the registry
0x80040153L REGDB_E_INVALIDVALUE Invalid value for registry
0x80040154L REGDB_E_CLASSNOTREG Class not registered
0x80040155L REGDB_E_IIDNOTREG Interface not registered
0x80040156L REGDB_E_BADTHREADINGMODEL Threading model entry is not valid
0x80040157L REGDB_E_PACKAGEPOLICYVIOLATION A registration in a package violates package-specific policies
0x80040160L CAT_E_CATIDNOEXIST CATID does not exist
0x80040161L CAT_E_NODESCRIPTION Description not found
0x80040164L CS_E_PACKAGE_NOTFOUND No package in the software installation data in the Active Directory meets this criteria.
0x80040165L CS_E_NOT_DELETABLE Deleting this will break the referential integrity of the software installation data in the Active Directory.
0x80040166L CS_E_CLASS_NOTFOUND The CLSID was not found in the software installation data in the Active Directory.
0x80040167L CS_E_INVALID_VERSION The software installation data in the Active Directory is corrupt.
0x80040168L CS_E_NO_CLASSSTORE There is no software installation data in the Active Directory.
0x80040169L CS_E_OBJECT_NOTFOUND There is no software installation data object in the Active Directory.
0x8004016AL CS_E_OBJECT_ALREADY_EXISTS The software installation data object in the Active Directory already exists.
0x8004016BL CS_E_INVALID_PATH The path to the software installation data in the Active Directory is not correct.
0x8004016CL CS_E_NETWORK_ERROR A network error interrupted the operation.
0x8004016DL CS_E_ADMIN_LIMIT_EXCEEDED The size of this object exceeds the maximum size set by the Administrator.
0x8004016EL CS_E_SCHEMA_MISMATCH The schema for the software installation data in the Active Directory does not match the required schema.
0x8004016FL CS_E_INTERNAL_ERROR An error occurred in the software installation data in the Active Directory.
0x80040170L CACHE_E_NOCACHE_UPDATED Cache not updated
0x80040180L OLEOBJ_E_NOVERBS No verbs for OLE object
0x80040181L OLEOBJ_E_INVALIDVERB Invalid verb for OLE object
0x800401A0L INPLACE_E_NOTUNDOABLE Undo is not available
0x800401A1L INPLACE_E_NOTOOLSPACE Space for tools is not available
0x800401C0L CONVERT10_E_OLESTREAM_GET OLESTREAM Get method failed
0x800401C1L CONVERT10_E_OLESTREAM_PUT OLESTREAM Put method failed
0x800401C2L CONVERT10_E_OLESTREAM_FMT Contents of the OLESTREAM not in correct format
0x800401C3L CONVERT10_E_OLESTREAM_BITMAP_TO_DIB There was an error in a Windows GDI call while converting the bitmap to a DIB
0x800401C4L CONVERT10_E_STG_FMT Contents of the IStorage not in correct format
0x800401C5L CONVERT10_E_STG_NO_STD_STREAM Contents of IStorage is missing one of the standard streams
0x800401C6L CONVERT10_E_STG_DIB_TO_BITMAP There was an error in a Windows GDI call while converting the DIB to a bitmap.
0x800401D0L CLIPBRD_E_CANT_OPEN OpenClipboard Failed
0x800401D1L CLIPBRD_E_CANT_EMPTY EmptyClipboard Failed
0x800401D2L CLIPBRD_E_CANT_SET SetClipboard Failed
0x800401D3L CLIPBRD_E_BAD_DATA Data on clipboard is invalid
0x800401D4L CLIPBRD_E_CANT_CLOSE CloseClipboard Failed
0x800401E0L MK_E_CONNECTMANUALLY Moniker needs to be connected manually
0x800401E1L MK_E_EXCEEDEDDEADLINE Operation exceeded deadline
0x800401E2L MK_E_NEEDGENERIC Moniker needs to be generic
0x800401E3L MK_E_UNAVAILABLE Operation unavailable
0x800401E4L MK_E_SYNTAX Invalid syntax
0x800401E5L MK_E_NOOBJECT No object for moniker
0x800401E6L MK_E_INVALIDEXTENSION Bad extension for file
0x800401E7L MK_E_INTERMEDIATEINTERFACENOTSUPPORTED Intermediate operation failed
0x800401E8L MK_E_NOTBINDABLE Moniker is not bindable
0x800401E9L MK_E_NOTBOUND Moniker is not bound
0x800401EAL MK_E_CANTOPENFILE Moniker cannot open file
0x800401EBL MK_E_MUSTBOTHERUSER User input required for operation to succeed
0x800401ECL MK_E_NOINVERSE Moniker class has no inverse
0x800401EDL MK_E_NOSTORAGE Moniker does not refer to storage
0x800401EEL MK_E_NOPREFIX No common prefix
0x800401EFL MK_E_ENUMERATION_FAILED Moniker could not be enumerated
0x800401F0L CO_E_NOTINITIALIZED CoInitialize has not been called.
0x800401F1L CO_E_ALREADYINITIALIZED CoInitialize has already been called.
0x800401F2L CO_E_CANTDETERMINECLASS Class of object cannot be determined
0x800401F3L CO_E_CLASSSTRING Invalid class string
0x800401F4L CO_E_IIDSTRING Invalid interface string
0x800401F5L CO_E_APPNOTFOUND Application not found
0x800401F6L CO_E_APPSINGLEUSE Application cannot be run more than once
0x800401F7L CO_E_ERRORINAPP Some error in application program
0x800401F8L CO_E_DLLNOTFOUND DLL for class not found
0x800401F9L CO_E_ERRORINDLL Error in the DLL
0x800401FAL CO_E_WRONGOSFORAPP Wrong OS or OS version for application
0x800401FBL CO_E_OBJNOTREG Object is not registered
0x800401FCL CO_E_OBJISREG Object is already registered
0x800401FDL CO_E_OBJNOTCONNECTED Object is not connected to server
0x800401FEL CO_E_APPDIDNTREG Application was launched but it didn’t register a class factory
0x800401FFL CO_E_RELEASED Object has been released
0x00040200L EVENT_S_SOME_SUBSCRIBERS_FAILED An event was able to invoke some but not all of the subscribers
0x80040201L EVENT_E_ALL_SUBSCRIBERS_FAILED An event was unable to invoke any of the subscribers
0x00040202L EVENT_S_NOSUBSCRIBERS An event was delivered but there were no subscribers
0x80040203L EVENT_E_QUERYSYNTAX A syntax error occurred trying to evaluate a query string
0x80040204L EVENT_E_QUERYFIELD An invalid field name was used in a query string
0x80040205L EVENT_E_INTERNALEXCEPTION An unexpected exception was raised
0x80040206L EVENT_E_INTERNALERROR An unexpected internal error was detected
0x80040207L EVENT_E_INVALID_PER_USER_SID The owner SID on a per-user subscription doesn’t exist
0x80040208L EVENT_E_USER_EXCEPTION A user-supplied component or subscriber raised an exception
0x80040209L EVENT_E_TOO_MANY_METHODS An interface has too many methods to fire events from
0x8004020AL EVENT_E_MISSING_EVENTCLASS A subscription cannot be stored unless its event class already exists
0x8004020BL EVENT_E_NOT_ALL_REMOVED Not all the objects requested could be removed
0x8004020CL EVENT_E_COMPLUS_NOT_INSTALLED COM+ is required for this operation
0x8004020DL EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT Cannot modify or delete an object that was not added using the COM+ Admin SDK
0x8004020EL EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT Cannot modify or delete an object that was added using the COM+ Admin SDK
0x8004020FL EVENT_E_INVALID_EVENT_CLASS_PARTITION The event class for this subscription is in an invalid partition
0x80040210L EVENT_E_PER_USER_SID_NOT_LOGGED_ON The owner of the PerUser subscription is not logged on to the system specified
0x80040241L TPC_E_INVALID_PROPERTY TabletPC inking error code. The property was not found
0x80040212L TPC_E_NO_DEFAULT_TABLET TabletPC inking error code. No default tablet
0x8004021BL TPC_E_UNKNOWN_PROPERTY TabletPC inking error code. Unknown property specified
0x80040219L TPC_E_INVALID_INPUT_RECT TabletPC inking error code. An invalid input rectangle was specified
0x80040222L TPC_E_INVALID_STROKE TabletPC inking error code. The stroke object was deleted
0x80040223L TPC_E_INITIALIZE_FAIL TabletPC inking error code. Initialization failure
0x80040232L TPC_E_NOT_RELEVANT TabletPC inking error code. The data required for the operation was not supplied
0x80040233L TPC_E_INVALID_PACKET_DESCRIPTION TabletPC inking error code. Invalid packet description
0x80040235L TPC_E_RECOGNIZER_NOT_REGISTERED TabletPC inking error code. There are no handwriting recognizers registered
0x80040236L TPC_E_INVALID_RIGHTS TabletPC inking error code. User does not have the necessary rights to read recognizer information
0x80040237L TPC_E_OUT_OF_ORDER_CALL TabletPC inking error code. API calls were made in an incorrect order
0x80040238L TPC_E_QUEUE_FULL TabletPC inking error code. Queue is full
0x80040239L TPC_E_INVALID_CONFIGURATION TabletPC inking error code. RtpEnabled called multiple times
0x8004023AL TPC_E_INVALID_DATA_FROM_RECOGNIZER TabletPC inking error code. A recognizer returned invalid data
0x00040252L TPC_S_TRUNCATED TabletPC inking error code. String was truncated
0x00040253L TPC_S_INTERRUPTED TabletPC inking error code. Recognition or training was interrupted
0x00040254L TPC_S_NO_DATA_TO_PROCESS TabletPC inking error code. No personalization update to the recognizer because no training data found
0x8004D000L XACT_E_ALREADYOTHERSINGLEPHASE Another single phase resource manager has already been enlisted in this transaction.
0x8004D001L XACT_E_CANTRETAIN A retaining commit or abort is not supported
0x8004D002L XACT_E_COMMITFAILED The transaction failed to commit for an unknown reason. The transaction was aborted.
0x8004D003L XACT_E_COMMITPREVENTED Cannot call commit on this transaction object because the calling application did not initiate the transaction.
0x8004D004L XACT_E_HEURISTICABORT Instead of committing
0x8004D005L XACT_E_HEURISTICCOMMIT Instead of aborting
0x8004D006L XACT_E_HEURISTICDAMAGE Some of the states of the resource were committed while others were aborted
0x8004D007L XACT_E_HEURISTICDANGER Some of the states of the resource may have been committed while others may have been aborted
0x8004D008L XACT_E_ISOLATIONLEVEL The requested isolation level is not valid or supported.
0x8004D009L XACT_E_NOASYNC The transaction manager doesn’t support an asynchronous operation for this method.
0x8004D00AL XACT_E_NOENLIST Unable to enlist in the transaction.
0x8004D00BL XACT_E_NOISORETAIN The requested semantics of retention of isolation across retaining commit and abort boundaries cannot be supported by this transaction implementation
0x8004D00CL XACT_E_NORESOURCE There is no resource presently associated with this enlistment
0x8004D00DL XACT_E_NOTCURRENT The transaction failed to commit due to the failure of optimistic concurrency control in at least one of the resource managers.
0x8004D00EL XACT_E_NOTRANSACTION The transaction has already been implicitly or explicitly committed or aborted
0x8004D00FL XACT_E_NOTSUPPORTED An invalid combination of flags was specified
0x8004D010L XACT_E_UNKNOWNRMGRID The resource manager id is not associated with this transaction or the transaction manager.
0x8004D011L XACT_E_WRONGSTATE This method was called in the wrong state
0x8004D012L XACT_E_WRONGUOW The indicated unit of work does not match the unit of work expected by the resource manager.
0x8004D013L XACT_E_XTIONEXISTS An enlistment in a transaction already exists.
0x8004D014L XACT_E_NOIMPORTOBJECT An import object for the transaction could not be found.
0x8004D015L XACT_E_INVALIDCOOKIE The transaction cookie is invalid.
0x8004D016L XACT_E_INDOUBT The transaction status is in doubt. A communication failure occurred
0x8004D017L XACT_E_NOTIMEOUT A time-out was specified
0x8004D018L XACT_E_ALREADYINPROGRESS The requested operation is already in progress for the transaction.
0x8004D019L XACT_E_ABORTED The transaction has already been aborted.
0x8004D01AL XACT_E_LOGFULL The Transaction Manager returned a log full error.
0x8004D01BL XACT_E_TMNOTAVAILABLE The Transaction Manager is not available.
0x8004D01CL XACT_E_CONNECTION_DOWN A connection with the transaction manager was lost.
0x8004D01DL XACT_E_CONNECTION_DENIED A request to establish a connection with the transaction manager was denied.
0x8004D01EL XACT_E_REENLISTTIMEOUT Resource manager reenlistment to determine transaction status timed out.
0x8004D01FL XACT_E_TIP_CONNECT_FAILED This transaction manager failed to establish a connection with another TIP transaction manager.
0x8004D020L XACT_E_TIP_PROTOCOL_ERROR This transaction manager encountered a protocol error with another TIP transaction manager.
0x8004D021L XACT_E_TIP_PULL_FAILED This transaction manager could not propagate a transaction from another TIP transaction manager.
0x8004D022L XACT_E_DEST_TMNOTAVAILABLE The Transaction Manager on the destination machine is not available.
0x8004D023L XACT_E_TIP_DISABLED The Transaction Manager has disabled its support for TIP.
0x8004D024L XACT_E_NETWORK_TX_DISABLED The transaction manager has disabled its support for remote/network transactions.
0x8004D025L XACT_E_PARTNER_NETWORK_TX_DISABLED The partner transaction manager has disabled its support for remote/network transactions.
0x8004D026L XACT_E_XA_TX_DISABLED The transaction manager has disabled its support for XA transactions.
0x8004D027L XACT_E_UNABLE_TO_READ_DTC_CONFIG MSDTC was unable to read its configuration information.
0x8004D028L XACT_E_UNABLE_TO_LOAD_DTC_PROXY MSDTC was unable to load the dtc proxy dll.
0x8004D029L XACT_E_ABORTING The local transaction has aborted.
0x8004D02AL XACT_E_PUSH_COMM_FAILURE The MSDTC transaction manager was unable to push the transaction to the destination transaction manager due to communication problems. Possible causes are: a firewall is present and it doesn’t have an exception for the MSDTC process
0x8004D02BL XACT_E_PULL_COMM_FAILURE The MSDTC transaction manager was unable to pull the transaction from the source transaction manager due to communication problems. Possible causes are: a firewall is present and it doesn’t have an exception for the MSDTC process
0x8004D02CL XACT_E_LU_TX_DISABLED The MSDTC transaction manager has disabled its support for SNA LU 6.2 transactions.
0x8004D080L XACT_E_CLERKNOTFOUND XACT_E_CLERKNOTFOUND
0x8004D081L XACT_E_CLERKEXISTS XACT_E_CLERKEXISTS
0x8004D082L XACT_E_RECOVERYINPROGRESS XACT_E_RECOVERYINPROGRESS
0x8004D083L XACT_E_TRANSACTIONCLOSED XACT_E_TRANSACTIONCLOSED
0x8004D084L XACT_E_INVALIDLSN XACT_E_INVALIDLSN
0x8004D085L XACT_E_REPLAYREQUEST XACT_E_REPLAYREQUEST
0x0004D000L XACT_S_ASYNC An asynchronous operation was specified. The operation has begun
0x0004D001L XACT_S_DEFECT XACT_S_DEFECT
0x0004D002L XACT_S_READONLY The method call succeeded because the transaction was read-only.
0x0004D003L XACT_S_SOMENORETAIN The transaction was successfully aborted. However
0x0004D004L XACT_S_OKINFORM No changes were made during this call
0x0004D005L XACT_S_MADECHANGESCONTENT The sink is content and wishes the transaction to proceed. Changes were made to one or more resources during this call.
0x0004D006L XACT_S_MADECHANGESINFORM The sink is for the moment and wishes the transaction to proceed
0x0004D007L XACT_S_ALLNORETAIN The transaction was successfully aborted. However
0x0004D008L XACT_S_ABORTING An abort operation was already in progress.
0x0004D009L XACT_S_SINGLEPHASE The resource manager has performed a single-phase commit of the transaction.
0x0004D00AL XACT_S_LOCALLY_OK The local transaction has not aborted.
0x0004D010L XACT_S_LASTRESOURCEMANAGER The resource manager has requested to be the coordinator (last resource manager) for the transaction.
0x8004E002L CONTEXT_E_ABORTED The root transaction wanted to commit
0x8004E003L CONTEXT_E_ABORTING You made a method call on a COM+ component that has a transaction that has already aborted or in the process of aborting.
0x8004E004L CONTEXT_E_NOCONTEXT There is no MTS object context
0x8004E005L CONTEXT_E_WOULD_DEADLOCK The component is configured to use synchronization and this method call would cause a deadlock to occur.
0x8004E006L CONTEXT_E_SYNCH_TIMEOUT The component is configured to use synchronization and a thread has timed out waiting to enter the context.
0x8004E007L CONTEXT_E_OLDREF You made a method call on a COM+ component that has a transaction that has already committed or aborted.
0x8004E00CL CONTEXT_E_ROLENOTFOUND The specified role was not configured for the application
0x8004E00FL CONTEXT_E_TMNOTAVAILABLE COM+ was unable to talk to the Microsoft Distributed Transaction Coordinator
0x8004E021L CO_E_ACTIVATIONFAILED An unexpected error occurred during COM+ Activation.
0x8004E022L CO_E_ACTIVATIONFAILED_EVENTLOGGED COM+ Activation failed. Check the event log for more information
0x8004E023L CO_E_ACTIVATIONFAILED_CATALOGERROR COM+ Activation failed due to a catalog or configuration error.
0x8004E024L CO_E_ACTIVATIONFAILED_TIMEOUT COM+ activation failed because the activation could not be completed in the specified amount of time.
0x8004E025L CO_E_INITIALIZATIONFAILED COM+ Activation failed because an initialization function failed. Check the event log for more information.
0x8004E026L CONTEXT_E_NOJIT The requested operation requires that JIT be in the current context and it is not
0x8004E027L CONTEXT_E_NOTRANSACTION The requested operation requires that the current context have a Transaction
0x8004E028L CO_E_THREADINGMODEL_CHANGED The components threading model has changed after install into a COM+ Application. Please re-install component.
0x8004E029L CO_E_NOIISINTRINSICS IIS intrinsics not available. Start your work with IIS.
0x8004E02AL CO_E_NOCOOKIES An attempt to write a cookie failed.
0x8004E02BL CO_E_DBERROR An attempt to use a database generated a database specific error.
0x8004E02CL CO_E_NOTPOOLED The COM+ component you created must use object pooling to work.
0x8004E02DL CO_E_NOTCONSTRUCTED The COM+ component you created must use object construction to work correctly.
0x8004E02EL CO_E_NOSYNCHRONIZATION The COM+ component requires synchronization
0x8004E02FL CO_E_ISOLEVELMISMATCH The TxIsolation Level property for the COM+ component being created is stronger than the TxIsolationLevel for the “root” component for the transaction. The creation failed.
0x8004E030L CO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED The component attempted to make a cross-context call between invocations of EnterTransactionScopeand ExitTransactionScope. This is not allowed. Cross-context calls cannot be made while inside of a transaction scope.
0x8004E031L CO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED The component made a call to EnterTransactionScope
0x00040000L OLE_S_USEREG Use the registry database to provide the requested information
0x00040001L OLE_S_STATIC Success
0x00040002L OLE_S_MAC_CLIPFORMAT Macintosh clipboard format
0x00040100L DRAGDROP_S_DROP Successful drop took place
0x00040101L DRAGDROP_S_CANCEL Drag-drop operation canceled
0x00040102L DRAGDROP_S_USEDEFAULTCURSORS Use the default cursor
0x00040130L DATA_S_SAMEFORMATETC Data has same FORMATETC
0x00040140L VIEW_S_ALREADY_FROZEN View is already frozen
0x00040170L CACHE_S_FORMATETC_NOTSUPPORTED FORMATETC not supported
0x00040171L CACHE_S_SAMECACHE Same cache
0x00040172L CACHE_S_SOMECACHES_NOTUPDATED Some cache(s) not updated
0x00040180L OLEOBJ_S_INVALIDVERB Invalid verb for OLE object
0x00040181L OLEOBJ_S_CANNOT_DOVERB_NOW Verb number is valid but verb cannot be done now
0x00040182L OLEOBJ_S_INVALIDHWND Invalid window handle passed
0x000401A0L INPLACE_S_TRUNCATED Message is too long; some of it had to be truncated before displaying
0x000401C0L CONVERT10_S_NO_PRESENTATION Unable to convert OLESTREAM to IStorage
0x000401E2L MK_S_REDUCED_TO_SELF Moniker reduced to itself
0x000401E4L MK_S_ME Common prefix is this moniker
0x000401E5L MK_S_HIM Common prefix is input moniker
0x000401E6L MK_S_US Common prefix is both monikers
0x000401E7L MK_S_MONIKERALREADYREGISTERED Moniker is already registered in running object table
0x00041300L SCHED_S_TASK_READY The task is ready to run at its next scheduled time.
0x00041301L SCHED_S_TASK_RUNNING The task is currently running.
0x00041302L SCHED_S_TASK_DISABLED The task will not run at the scheduled times because it has been disabled.
0x00041303L SCHED_S_TASK_HAS_NOT_RUN The task has not yet run.
0x00041304L SCHED_S_TASK_NO_MORE_RUNS There are no more runs scheduled for this task.
0x00041305L SCHED_S_TASK_NOT_SCHEDULED One or more of the properties that are needed to run this task on a schedule have not been set.
0x00041306L SCHED_S_TASK_TERMINATED The last run of the task was terminated by the user.
0x00041307L SCHED_S_TASK_NO_VALID_TRIGGERS Either the task has no triggers or the existing triggers are disabled or not set.
0x00041308L SCHED_S_EVENT_TRIGGER Event triggers don’t have set run times.
0x80041309L SCHED_E_TRIGGER_NOT_FOUND Trigger not found.
0x8004130AL SCHED_E_TASK_NOT_READY One or more of the properties that are needed to run this task have not been set.
0x8004130BL SCHED_E_TASK_NOT_RUNNING There is no running instance of the task.
0x8004130CL SCHED_E_SERVICE_NOT_INSTALLED The Task Scheduler Service is not installed on this computer.
0x8004130DL SCHED_E_CANNOT_OPEN_TASK The task object could not be opened.
0x8004130EL SCHED_E_INVALID_TASK The object is either an invalid task object or is not a task object.
0x8004130FL SCHED_E_ACCOUNT_INFORMATION_NOT_SET No account information could be found in the Task Scheduler security database for the task indicated.
0x80041310L SCHED_E_ACCOUNT_NAME_NOT_FOUND Unable to establish existence of the account specified.
0x80041311L SCHED_E_ACCOUNT_DBASE_CORRUPT Corruption was detected in the Task Scheduler security database; the database has been reset.
0x80041312L SCHED_E_NO_SECURITY_SERVICES Task Scheduler security services are available only on Windows NT.
0x80041313L SCHED_E_UNKNOWN_OBJECT_VERSION The task object version is either unsupported or invalid.
0x80041314L SCHED_E_UNSUPPORTED_ACCOUNT_OPTION The task has been configured with an unsupported combination of account settings and run time options.
0x80041315L SCHED_E_SERVICE_NOT_RUNNING The Task Scheduler Service is not running.
0x80041316L SCHED_E_UNEXPECTEDNODE The task XML contains an unexpected node.
0x80041317L SCHED_E_NAMESPACE The task XML contains an element or attribute from an unexpected namespace.
0x80041318L SCHED_E_INVALIDVALUE The task XML contains a value which is incorrectly formatted or out of range.
0x80041319L SCHED_E_MISSINGNODE The task XML is missing a required element or attribute.
0x8004131AL SCHED_E_MALFORMEDXML The task XML is malformed.
0x0004131BL SCHED_S_SOME_TRIGGERS_FAILED The task is registered
0x0004131CL SCHED_S_BATCH_LOGON_PROBLEM The task is registered
0x8004131DL SCHED_E_TOO_MANY_NODES The task XML contains too many nodes of the same type.
0x8004131EL SCHED_E_PAST_END_BOUNDARY The task cannot be started after the trigger’s end boundary.
0x8004131FL SCHED_E_ALREADY_RUNNING An instance of this task is already running.
0x80041320L SCHED_E_USER_NOT_LOGGED_ON The task will not run because the user is not logged on.
0x80041321L SCHED_E_INVALID_TASK_HASH The task image is corrupt or has been tampered with.
0x80041322L SCHED_E_SERVICE_NOT_AVAILABLE The Task Scheduler service is not available.
0x80041323L SCHED_E_SERVICE_TOO_BUSY The Task Scheduler service is too busy to handle your request. Please try again later.
0x80041324L SCHED_E_TASK_ATTEMPTED The Task Scheduler service attempted to run the task
0x00041325L SCHED_S_TASK_QUEUED The Task Scheduler service has asked the task to run.
0x80041326L SCHED_E_TASK_DISABLED The task is disabled.
0x80041327L SCHED_E_TASK_NOT_V1_COMPAT The task has properties that are not compatible with previous versions of Windows.
0x80041328L SCHED_E_START_ON_DEMAND The task settings do not allow the task to start on demand.
0x80041329L SCHED_E_TASK_NOT_UBPM_COMPAT The combination of properties that task is using is not compatible with the scheduling engine.
0x80041330L SCHED_E_DEPRECATED_FEATURE_USED The task definition uses a deprecated feature.
0x80080001L CO_E_CLASS_CREATE_FAILED Attempt to create a class object failed
0x80080002L CO_E_SCM_ERROR OLE service could not bind object
0x80080003L CO_E_SCM_RPC_FAILURE RPC communication failed with OLE service
0x80080004L CO_E_BAD_PATH Bad path to object
0x80080005L CO_E_SERVER_EXEC_FAILURE Server execution failed
0x80080006L CO_E_OBJSRV_RPC_FAILURE OLE service could not communicate with the object server
0x80080007L MK_E_NO_NORMALIZED Moniker path could not be normalized
0x80080008L CO_E_SERVER_STOPPING Object server is stopping when OLE service contacts it
0x80080009L MEM_E_INVALID_ROOT An invalid root block pointer was specified
0x80080010L MEM_E_INVALID_LINK An allocation chain contained an invalid link pointer
0x80080011L MEM_E_INVALID_SIZE The requested allocation size was too large
0x00080012L CO_S_NOTALLINTERFACES Not all the requested interfaces were available
0x00080013L CO_S_MACHINENAMENOTFOUND The specified machine name was not found in the cache.
0x80080015L CO_E_MISSING_DISPLAYNAME The activation requires a display name to be present under the CLSID key.
0x80080016L CO_E_RUNAS_VALUE_MUST_BE_AAA The activation requires that the RunAs value for the application is Activate As Activator.
0x80080017L CO_E_ELEVATION_DISABLED The class is not configured to support Elevated activation.
0x80080200L APPX_E_PACKAGING_INTERNAL Appx packaging API has encountered an internal error.
0x80080201L APPX_E_INTERLEAVING_NOT_ALLOWED The file is not a valid Appx package because its contents are interleaved.
0x80080202L APPX_E_RELATIONSHIPS_NOT_ALLOWED The file is not a valid Appx package because it contains OPC relationships.
0x80080203L APPX_E_MISSING_REQUIRED_FILE The file is not a valid Appx package because it is missing a manifest or block map
0x80080204L APPX_E_INVALID_MANIFEST The Appx package’s manifest is invalid.
0x80080205L APPX_E_INVALID_BLOCKMAP The Appx package’s block map is invalid.
0x80080206L APPX_E_CORRUPT_CONTENT The Appx package’s content cannot be read because it is corrupt.
0x80080207L APPX_E_BLOCK_HASH_INVALID The computed hash value of the block does not match the one stored in the block map.
0x80080208L APPX_E_REQUESTED_RANGE_TOO_LARGE The requested byte range is over 4GB when translated to byte range of blocks.
0x80080209L APPX_E_INVALID_SIP_CLIENT_DATA The SIP_SUBJECTINFO structure used to sign the package didn’t contain the required data.
0x8008020AL APPX_E_INVALID_KEY_INFO The APPX_KEY_INFO structure used to encrypt or decrypt the package contains invalid data.
0x8008020BL APPX_E_INVALID_CONTENTGROUPMAP The Appx package’s content group map is invalid.
0x8008020CL APPX_E_INVALID_APPINSTALLER The .appinstaller file is invalid.
0x8008020DL APPX_E_DELTA_BASELINE_VERSION_MISMATCH The baseline package version in delta package does not match the version in the baseline package to be updated.
0x8008020EL APPX_E_DELTA_PACKAGE_MISSING_FILE The delta package is missing a file from the updated package.
0x8008020FL APPX_E_INVALID_DELTA_PACKAGE The delta package is invalid.
0x80080210L APPX_E_DELTA_APPENDED_PACKAGE_NOT_ALLOWED The delta appended package is not allowed for the current operation.
0x80080211L APPX_E_INVALID_PACKAGING_LAYOUT The packaging layout file is invalid.
0x80080212L APPX_E_INVALID_PACKAGESIGNCONFIG The packageSignConfig file is invalid.
0x80080213L APPX_E_RESOURCESPRI_NOT_ALLOWED The resources.pri file is not allowed when there are no resource elements in the package manifest.
0x80080214L APPX_E_FILE_COMPRESSION_MISMATCH The compression state of file in baseline and updated package does not match.
0x80080215L APPX_E_INVALID_PAYLOAD_PACKAGE_EXTENSION Non appx extensions are not allowed for payload packages targeting older platforms.
0x80080216L APPX_E_INVALID_ENCRYPTION_EXCLUSION_FILE_LIST The encryptionExclusionFileList file is invalid.
0x80080300L BT_E_SPURIOUS_ACTIVATION The background task activation is spurious.
0x80020001L DISP_E_UNKNOWNINTERFACE Unknown interface.
0x80020003L DISP_E_MEMBERNOTFOUND Member not found.
0x80020004L DISP_E_PARAMNOTFOUND Parameter not found.
0x80020005L DISP_E_TYPEMISMATCH Type mismatch.
0x80020006L DISP_E_UNKNOWNNAME Unknown name.
0x80020007L DISP_E_NONAMEDARGS No named arguments.
0x80020008L DISP_E_BADVARTYPE Bad variable type.
0x80020009L DISP_E_EXCEPTION Exception occurred.
0x8002000AL DISP_E_OVERFLOW Out of present range.
0x8002000BL DISP_E_BADINDEX Invalid index.
0x8002000CL DISP_E_UNKNOWNLCID Unknown language.
0x8002000DL DISP_E_ARRAYISLOCKED Memory is locked.
0x8002000EL DISP_E_BADPARAMCOUNT Invalid number of parameters.
0x8002000FL DISP_E_PARAMNOTOPTIONAL Parameter not optional.
0x80020010L DISP_E_BADCALLEE Invalid callee.
0x80020011L DISP_E_NOTACOLLECTION Does not support a collection.
0x80020012L DISP_E_DIVBYZERO Division by zero.
0x80020013L DISP_E_BUFFERTOOSMALL Buffer too small
0x80028016L TYPE_E_BUFFERTOOSMALL Buffer too small.
0x80028017L TYPE_E_FIELDNOTFOUND Field name not defined in the record.
0x80028018L TYPE_E_INVDATAREAD Old format or invalid type library.
0x80028019L TYPE_E_UNSUPFORMAT Old format or invalid type library.
0x8002801CL TYPE_E_REGISTRYACCESS Error accessing the OLE registry.
0x8002801DL TYPE_E_LIBNOTREGISTERED Library not registered.
0x80028027L TYPE_E_UNDEFINEDTYPE Bound to unknown type.
0x80028028L TYPE_E_QUALIFIEDNAMEDISALLOWED Qualified name disallowed.
0x80028029L TYPE_E_INVALIDSTATE Invalid forward reference
0x8002802AL TYPE_E_WRONGTYPEKIND Type mismatch.
0x8002802BL TYPE_E_ELEMENTNOTFOUND Element not found.
0x8002802CL TYPE_E_AMBIGUOUSNAME Ambiguous name.
0x8002802DL TYPE_E_NAMECONFLICT Name already exists in the library.
0x8002802EL TYPE_E_UNKNOWNLCID Unknown LCID.
0x8002802FL TYPE_E_DLLFUNCTIONNOTFOUND Function not defined in specified DLL.
0x800288BDL TYPE_E_BADMODULEKIND Wrong module kind for the operation.
0x800288C5L TYPE_E_SIZETOOBIG Size may not exceed 64K.
0x800288C6L TYPE_E_DUPLICATEID Duplicate ID in inheritance hierarchy.
0x800288CFL TYPE_E_INVALIDID Incorrect inheritance depth in standard OLE hmember.
0x80028CA0L TYPE_E_TYPEMISMATCH Type mismatch.
0x80028CA1L TYPE_E_OUTOFBOUNDS Invalid number of arguments.
0x80028CA2L TYPE_E_IOERROR I/O Error.
0x80028CA3L TYPE_E_CANTCREATETMPFILE Error creating unique tmp file.
0x80029C4AL TYPE_E_CANTLOADLIBRARY Error loading type library/DLL.
0x80029C83L TYPE_E_INCONSISTENTPROPFUNCS Inconsistent property functions.
0x80029C84L TYPE_E_CIRCULARTYPE Circular dependency between types/modules.
0x80030001L STG_E_INVALIDFUNCTION Unable to perform requested operation.
0x80030002L STG_E_FILENOTFOUND %1 could not be found.
0x80030003L STG_E_PATHNOTFOUND The path %1 could not be found.
0x80030004L STG_E_TOOMANYOPENFILES There are insufficient resources to open another file.
0x80030005L STG_E_ACCESSDENIED Access Denied.
0x80030006L STG_E_INVALIDHANDLE Attempted an operation on an invalid object.
0x80030008L STG_E_INSUFFICIENTMEMORY There is insufficient memory available to complete operation.
0x80030009L STG_E_INVALIDPOINTER Invalid pointer error.
0x80030012L STG_E_NOMOREFILES There are no more entries to return.
0x80030013L STG_E_DISKISWRITEPROTECTED Disk is write-protected.
0x80030019L STG_E_SEEKERROR An error occurred during a seek operation.
0x8003001DL STG_E_WRITEFAULT A disk error occurred during a write operation.
0x8003001EL STG_E_READFAULT A disk error occurred during a read operation.
0x80030020L STG_E_SHAREVIOLATION A share violation has occurred.
0x80030021L STG_E_LOCKVIOLATION A lock violation has occurred.
0x80030050L STG_E_FILEALREADYEXISTS %1 already exists.
0x80030057L STG_E_INVALIDPARAMETER Invalid parameter error.
0x80030070L STG_E_MEDIUMFULL There is insufficient disk space to complete operation.
0x800300F0L STG_E_PROPSETMISMATCHED Illegal write of non-simple property to simple property set.
0x800300FAL STG_E_ABNORMALAPIEXIT An API call exited abnormally.
0x800300FBL STG_E_INVALIDHEADER The file %1 is not a valid compound file.
0x800300FCL STG_E_INVALIDNAME The name %1 is not valid.
0x800300FDL STG_E_UNKNOWN An unexpected error occurred.
0x800300FEL STG_E_UNIMPLEMENTEDFUNCTION That function is not implemented.
0x800300FFL STG_E_INVALIDFLAG Invalid flag error.
0x80030100L STG_E_INUSE Attempted to use an object that is busy.
0x80030101L STG_E_NOTCURRENT The storage has been changed since the last commit.
0x80030102L STG_E_REVERTED Attempted to use an object that has ceased to exist.
0x80030103L STG_E_CANTSAVE Can’t save.
0x80030104L STG_E_OLDFORMAT The compound file %1 was produced with an incompatible version of storage.
0x80030105L STG_E_OLDDLL The compound file %1 was produced with a newer version of storage.
0x80030106L STG_E_SHAREREQUIRED Share.exe or equivalent is required for operation.
0x80030107L STG_E_NOTFILEBASEDSTORAGE Illegal operation called on non-file based storage.
0x80030108L STG_E_EXTANTMARSHALLINGS Illegal operation called on object with extant marshallings.
0x80030109L STG_E_DOCFILECORRUPT The docfile has been corrupted.
0x80030110L STG_E_BADBASEADDRESS OLE32.DLL has been loaded at the wrong address.
0x80030111L STG_E_DOCFILETOOLARGE The compound file is too large for the current implementation
0x80030112L STG_E_NOTSIMPLEFORMAT The compound file was not created with the STGM_SIMPLE flag
0x80030201L STG_E_INCOMPLETE The file download was aborted abnormally. The file is incomplete.
0x80030202L STG_E_TERMINATED The file download has been terminated.
0x00030200L STG_S_CONVERTED The underlying file was converted to compound file format.
0x00030201L STG_S_BLOCK The storage operation should block until more data is available.
0x00030202L STG_S_RETRYNOW The storage operation should retry immediately.
0x00030203L STG_S_MONITORING The notified event sink will not influence the storage operation.
0x00030204L STG_S_MULTIPLEOPENS Multiple opens prevent consolidated. (commit succeeded).
0x00030205L STG_S_CONSOLIDATIONFAILED Consolidation of the storage file failed. (commit succeeded).
0x00030206L STG_S_CANNOTCONSOLIDATE Consolidation of the storage file is inappropriate. (commit succeeded).
0x00030207L STG_S_POWER_CYCLE_REQUIRED The device needs to be power cycled. (commit succeeded).
0x80030208L STG_E_FIRMWARE_SLOT_INVALID The specified firmware slot is invalid.
0x80030209L STG_E_FIRMWARE_IMAGE_INVALID The specified firmware image is invalid.
0x8003020AL STG_E_DEVICE_UNRESPONSIVE The storage device is unresponsive.
0x80030305L STG_E_STATUS_COPY_PROTECTION_FAILURE Generic Copy Protection Error.
0x80030306L STG_E_CSS_AUTHENTICATION_FAILURE Copy Protection Error - DVD CSS Authentication failed.
0x80030307L STG_E_CSS_KEY_NOT_PRESENT Copy Protection Error - The given sector does not have a valid CSS key.
0x80030308L STG_E_CSS_KEY_NOT_ESTABLISHED Copy Protection Error - DVD session key not established.
0x80030309L STG_E_CSS_SCRAMBLED_SECTOR Copy Protection Error - The read failed because the sector is encrypted.
0x8003030AL STG_E_CSS_REGION_MISMATCH Copy Protection Error - The current DVD’s region does not correspond to the region setting of the drive.
0x8003030BL STG_E_RESETS_EXHAUSTED Copy Protection Error - The drive’s region setting may be permanent or the number of user resets has been exhausted.
0x80010001L RPC_E_CALL_REJECTED Call was rejected by callee.
0x80010002L RPC_E_CALL_CANCELED Call was canceled by the message filter.
0x80010003L RPC_E_CANTPOST_INSENDCALL The caller is dispatching an intertask SendMessage call and cannot call out via PostMessage.
0x80010004L RPC_E_CANTCALLOUT_INASYNCCALL The caller is dispatching an asynchronous call and cannot make an outgoing call on behalf of this call.
0x80010005L RPC_E_CANTCALLOUT_INEXTERNALCALL It is illegal to call out while inside message filter.
0x80010006L RPC_E_CONNECTION_TERMINATED The connection terminated or is in a bogus state and cannot be used any more. Other connections are still valid.
0x80010007L RPC_E_SERVER_DIED The callee (server [not server application]) is not available and disappeared; all connections are invalid. The call may have executed.
0x80010008L RPC_E_CLIENT_DIED The caller (client) disappeared while the callee (server) was processing a call.
0x80010009L RPC_E_INVALID_DATAPACKET The data packet with the marshalled parameter data is incorrect.
0x8001000AL RPC_E_CANTTRANSMIT_CALL The call was not transmitted properly; the message queue was full and was not emptied after yielding.
0x8001000BL RPC_E_CLIENT_CANTMARSHAL_DATA The client (caller) cannot marshall the parameter data - low memory
0x8001000CL RPC_E_CLIENT_CANTUNMARSHAL_DATA The client (caller) cannot unmarshall the return data - low memory
0x8001000DL RPC_E_SERVER_CANTMARSHAL_DATA The server (callee) cannot marshall the return data - low memory
0x8001000EL RPC_E_SERVER_CANTUNMARSHAL_DATA The server (callee) cannot unmarshall the parameter data - low memory
0x8001000FL RPC_E_INVALID_DATA Received data is invalid; could be server or client data.
0x80010010L RPC_E_INVALID_PARAMETER A particular parameter is invalid and cannot be (un)marshalled.
0x80010011L RPC_E_CANTCALLOUT_AGAIN There is no second outgoing call on same channel in DDE conversation.
0x80010012L RPC_E_SERVER_DIED_DNE The callee (server [not server application]) is not available and disappeared; all connections are invalid. The call did not execute.
0x80010100L RPC_E_SYS_CALL_FAILED System call failed.
0x80010101L RPC_E_OUT_OF_RESOURCES Could not allocate some required resource (memory
0x80010102L RPC_E_ATTEMPTED_MULTITHREAD Attempted to make calls on more than one thread in single threaded mode.
0x80010103L RPC_E_NOT_REGISTERED The requested interface is not registered on the server object.
0x80010104L RPC_E_FAULT RPC could not call the server or could not return the results of calling the server.
0x80010105L RPC_E_SERVERFAULT The server threw an exception.
0x80010106L RPC_E_CHANGED_MODE Cannot change thread mode after it is set.
0x80010107L RPC_E_INVALIDMETHOD The method called does not exist on the server.
0x80010108L RPC_E_DISCONNECTED The object invoked has disconnected from its clients.
0x80010109L RPC_E_RETRY The object invoked chose not to process the call now. Try again later.
0x8001010AL RPC_E_SERVERCALL_RETRYLATER The message filter indicated that the application is busy.
0x8001010BL RPC_E_SERVERCALL_REJECTED The message filter rejected the call.
0x8001010CL RPC_E_INVALID_CALLDATA A call control interfaces was called with invalid data.
0x8001010DL RPC_E_CANTCALLOUT_ININPUTSYNCCALL An outgoing call cannot be made since the application is dispatching an input-synchronous call.
0x8001010EL RPC_E_WRONG_THREAD The application called an interface that was marshalled for a different thread.
0x8001010FL RPC_E_THREAD_NOT_INIT CoInitialize has not been called on the current thread.
0x80010110L RPC_E_VERSION_MISMATCH The version of OLE on the client and server machines does not match.
0x80010111L RPC_E_INVALID_HEADER OLE received a packet with an invalid header.
0x80010112L RPC_E_INVALID_EXTENSION OLE received a packet with an invalid extension.
0x80010113L RPC_E_INVALID_IPID The requested object or interface does not exist.
0x80010114L RPC_E_INVALID_OBJECT The requested object does not exist.
0x80010115L RPC_S_CALLPENDING OLE has sent a request and is waiting for a reply.
0x80010116L RPC_S_WAITONTIMER OLE is waiting before retrying a request.
0x80010117L RPC_E_CALL_COMPLETE Call context cannot be accessed after call completed.
0x80010118L RPC_E_UNSECURE_CALL Impersonate on unsecure calls is not supported.
0x80010119L RPC_E_TOO_LATE Security must be initialized before any interfaces are marshalled or unmarshalled. It cannot be changed once initialized.
0x8001011AL RPC_E_NO_GOOD_SECURITY_PACKAGES No security packages are installed on this machine or the user is not logged on or there are no compatible security packages between the client and server.
0x8001011BL RPC_E_ACCESS_DENIED Access is denied.
0x8001011CL RPC_E_REMOTE_DISABLED Remote calls are not allowed for this process.
0x8001011DL RPC_E_INVALID_OBJREF The marshaled interface data packet (OBJREF) has an invalid or unknown format.
0x8001011EL RPC_E_NO_CONTEXT No context is associated with this call. This happens for some custom marshalled calls and on the client side of the call.
0x8001011FL RPC_E_TIMEOUT This operation returned because the timeout period expired.
0x80010120L RPC_E_NO_SYNC There are no synchronize objects to wait on.
0x80010121L RPC_E_FULLSIC_REQUIRED Full subject issuer chain SSL principal name expected from the server.
0x80010122L RPC_E_INVALID_STD_NAME Principal name is not a valid MSSTD name.
0x80010123L CO_E_FAILEDTOIMPERSONATE Unable to impersonate DCOM client
0x80010124L CO_E_FAILEDTOGETSECCTX Unable to obtain server’s security context
0x80010125L CO_E_FAILEDTOOPENTHREADTOKEN Unable to open the access token of the current thread
0x80010126L CO_E_FAILEDTOGETTOKENINFO Unable to obtain user info from an access token
0x80010127L CO_E_TRUSTEEDOESNTMATCHCLIENT The client who called IAccessControl::IsAccessPermitted was not the trustee provided to the method
0x80010128L CO_E_FAILEDTOQUERYCLIENTBLANKET Unable to obtain the client’s security blanket
0x80010129L CO_E_FAILEDTOSETDACL Unable to set a discretionary ACL into a security descriptor
0x8001012AL CO_E_ACCESSCHECKFAILED The system function
0x8001012BL CO_E_NETACCESSAPIFAILED Either NetAccessDel or NetAccessAdd returned an error code.
0x8001012CL CO_E_WRONGTRUSTEENAMESYNTAX One of the trustee strings provided by the user did not conform to the <Name> syntax and it was not the “*” string
0x8001012DL CO_E_INVALIDSID One of the security identifiers provided by the user was invalid
0x8001012EL CO_E_CONVERSIONFAILED Unable to convert a wide character trustee string to a multibyte trustee string
0x8001012FL CO_E_NOMATCHINGSIDFOUND Unable to find a security identifier that corresponds to a trustee string provided by the user
0x80010130L CO_E_LOOKUPACCSIDFAILED The system function
0x80010131L CO_E_NOMATCHINGNAMEFOUND Unable to find a trustee name that corresponds to a security identifier provided by the user
0x80010132L CO_E_LOOKUPACCNAMEFAILED The system function
0x80010133L CO_E_SETSERLHNDLFAILED Unable to set or reset a serialization handle
0x80010134L CO_E_FAILEDTOGETWINDIR Unable to obtain the Windows directory
0x80010135L CO_E_PATHTOOLONG Path too long
0x80010136L CO_E_FAILEDTOGENUUID Unable to generate a uuid.
0x80010137L CO_E_FAILEDTOCREATEFILE Unable to create file
0x80010138L CO_E_FAILEDTOCLOSEHANDLE Unable to close a serialization handle or a file handle.
0x80010139L CO_E_EXCEEDSYSACLLIMIT The number of ACEs in an ACL exceeds the system limit.
0x8001013AL CO_E_ACESINWRONGORDER Not all the DENY_ACCESS ACEs are arranged in front of the GRANT_ACCESS ACEs in the stream.
0x8001013BL CO_E_INCOMPATIBLESTREAMVERSION The version of ACL format in the stream is not supported by this implementation of IAccessControl
0x8001013CL CO_E_FAILEDTOOPENPROCESSTOKEN Unable to open the access token of the server process
0x8001013DL CO_E_DECODEFAILED Unable to decode the ACL in the stream provided by the user
0x8001013FL CO_E_ACNOTINITIALIZED The COM IAccessControl object is not initialized
0x80010140L CO_E_CANCEL_DISABLED Call Cancellation is disabled
0x8001FFFFL RPC_E_UNEXPECTED An internal error occurred.
0xC0090001L ERROR_AUDITING_DISABLED The specified event is currently not being audited.
0xC0090002L ERROR_ALL_SIDS_FILTERED The SID filtering operation removed all SIDs.
0xC0090003L ERROR_BIZRULES_NOT_ENABLED Business rule scripts are disabled for the calling application.
0x80090001L NTE_BAD_UID Bad UID.
0x80090002L NTE_BAD_HASH Bad Hash.
0x80090003L NTE_BAD_KEY Bad Key.
0x80090004L NTE_BAD_LEN Bad Length.
0x80090005L NTE_BAD_DATA Bad Data.
0x80090006L NTE_BAD_SIGNATURE Invalid Signature.
0x80090007L NTE_BAD_VER Bad Version of provider.
0x80090008L NTE_BAD_ALGID Invalid algorithm specified.
0x80090009L NTE_BAD_FLAGS Invalid flags specified.
0x8009000AL NTE_BAD_TYPE Invalid type specified.
0x8009000BL NTE_BAD_KEY_STATE Key not valid for use in specified state.
0x8009000CL NTE_BAD_HASH_STATE Hash not valid for use in specified state.
0x8009000DL NTE_NO_KEY Key does not exist.
0x8009000EL NTE_NO_MEMORY Insufficient memory available for the operation.
0x8009000FL NTE_EXISTS Object already exists.
0x80090010L NTE_PERM Access denied.
0x80090011L NTE_NOT_FOUND Object was not found.
0x80090012L NTE_DOUBLE_ENCRYPT Data already encrypted.
0x80090013L NTE_BAD_PROVIDER Invalid provider specified.
0x80090014L NTE_BAD_PROV_TYPE Invalid provider type specified.
0x80090015L NTE_BAD_PUBLIC_KEY Provider’s public key is invalid.
0x80090016L NTE_BAD_KEYSET Keyset does not exist
0x80090017L NTE_PROV_TYPE_NOT_DEF Provider type not defined.
0x80090018L NTE_PROV_TYPE_ENTRY_BAD Provider type as registered is invalid.
0x80090019L NTE_KEYSET_NOT_DEF The keyset is not defined.
0x8009001AL NTE_KEYSET_ENTRY_BAD Keyset as registered is invalid.
0x8009001BL NTE_PROV_TYPE_NO_MATCH Provider type does not match registered value.
0x8009001CL NTE_SIGNATURE_FILE_BAD The digital signature file is corrupt.
0x8009001DL NTE_PROVIDER_DLL_FAIL Provider DLL failed to initialize correctly.
0x8009001EL NTE_PROV_DLL_NOT_FOUND Provider DLL could not be found.
0x8009001FL NTE_BAD_KEYSET_PARAM The Keyset parameter is invalid.
0x80090020L NTE_FAIL An internal error occurred.
0x80090021L NTE_SYS_ERR A base error occurred.
0x80090022L NTE_SILENT_CONTEXT Provider could not perform the action since the context was acquired as silent.
0x80090023L NTE_TOKEN_KEYSET_STORAGE_FULL The security token does not have storage space available for an additional container.
0x80090024L NTE_TEMPORARY_PROFILE The profile for the user is a temporary profile.
0x80090025L NTE_FIXEDPARAMETER The key parameters could not be set because the CSP uses fixed parameters.
0x80090026L NTE_INVALID_HANDLE The supplied handle is invalid.
0x80090027L NTE_INVALID_PARAMETER The parameter is incorrect.
0x80090028L NTE_BUFFER_TOO_SMALL The buffer supplied to a function was too small.
0x80090029L NTE_NOT_SUPPORTED The requested operation is not supported.
0x8009002AL NTE_NO_MORE_ITEMS No more data is available.
0x8009002BL NTE_BUFFERS_OVERLAP The supplied buffers overlap incorrectly.
0x8009002CL NTE_DECRYPTION_FAILURE The specified data could not be decrypted.
0x8009002DL NTE_INTERNAL_ERROR An internal consistency check failed.
0x8009002EL NTE_UI_REQUIRED This operation requires input from the user.
0x8009002FL NTE_HMAC_NOT_SUPPORTED The cryptographic provider does not support HMAC.
0x80090030L NTE_DEVICE_NOT_READY The device that is required by this cryptographic provider is not ready for use.
0x80090031L NTE_AUTHENTICATION_IGNORED The dictionary attack mitigation is triggered and the provided authorization was ignored by the provider.
0x80090032L NTE_VALIDATION_FAILED The validation of the provided data failed the integrity or signature validation.
0x80090033L NTE_INCORRECT_PASSWORD Incorrect password.
0x80090034L NTE_ENCRYPTION_FAILURE Encryption failed.
0x80090035L NTE_DEVICE_NOT_FOUND The device that is required by this cryptographic provider is not found on this platform.
0x80090036L NTE_USER_CANCELLED The action was cancelled by the user.
0x80090037L NTE_PASSWORD_CHANGE_REQUIRED The password is no longer valid and must be changed.
0x80090038L NTE_NOT_ACTIVE_CONSOLE The operation cannot be completed from Terminal Server client sessions.
0x80090300L SEC_E_INSUFFICIENT_MEMORY Not enough memory is available to complete this request
0x80090301L SEC_E_INVALID_HANDLE The handle specified is invalid
0x80090302L SEC_E_UNSUPPORTED_FUNCTION The function requested is not supported
0x80090303L SEC_E_TARGET_UNKNOWN The specified target is unknown or unreachable
0x80090304L SEC_E_INTERNAL_ERROR The Local Security Authority cannot be contacted
0x80090305L SEC_E_SECPKG_NOT_FOUND The requested security package does not exist
0x80090306L SEC_E_NOT_OWNER The caller is not the owner of the desired credentials
0x80090307L SEC_E_CANNOT_INSTALL The security package failed to initialize
0x80090308L SEC_E_INVALID_TOKEN The token supplied to the function is invalid
0x80090309L SEC_E_CANNOT_PACK The security package is not able to marshall the logon buffer
0x8009030AL SEC_E_QOP_NOT_SUPPORTED The per-message Quality of Protection is not supported by the security package
0x8009030BL SEC_E_NO_IMPERSONATION The security context does not allow impersonation of the client
0x8009030CL SEC_E_LOGON_DENIED The logon attempt failed
0x8009030DL SEC_E_UNKNOWN_CREDENTIALS The credentials supplied to the package were not recognized
0x8009030EL SEC_E_NO_CREDENTIALS No credentials are available in the security package
0x8009030FL SEC_E_MESSAGE_ALTERED The message or signature supplied for verification has been altered
0x80090310L SEC_E_OUT_OF_SEQUENCE The message supplied for verification is out of sequence
0x80090311L SEC_E_NO_AUTHENTICATING_AUTHORITY No authority could be contacted for authentication.
0x00090312L SEC_I_CONTINUE_NEEDED The function completed successfully
0x00090313L SEC_I_COMPLETE_NEEDED The function completed successfully
0x00090314L SEC_I_COMPLETE_AND_CONTINUE The function completed successfully
0x00090315L SEC_I_LOCAL_LOGON The logon was completed
0x00090316L SEC_I_GENERIC_EXTENSION_RECEIVED Schannel has received a TLS extension the SSPI caller subscribed to.
0x80090316L SEC_E_BAD_PKGID The requested security package does not exist
0x80090317L SEC_E_CONTEXT_EXPIRED The context has expired and can no longer be used.
0x00090317L SEC_I_CONTEXT_EXPIRED The context has expired and can no longer be used.
0x80090318L SEC_E_INCOMPLETE_MESSAGE The supplied message is incomplete. The signature was not verified.
0x80090320L SEC_E_INCOMPLETE_CREDENTIALS The credentials supplied were not complete
0x80090321L SEC_E_BUFFER_TOO_SMALL The buffers supplied to a function was too small.
0x00090320L SEC_I_INCOMPLETE_CREDENTIALS The credentials supplied were not complete
0x00090321L SEC_I_RENEGOTIATE The context data must be renegotiated with the peer.
0x80090322L SEC_E_WRONG_PRINCIPAL The target principal name is incorrect.
0x00090323L SEC_I_NO_LSA_CONTEXT There is no LSA mode context associated with this context.
0x80090324L SEC_E_TIME_SKEW The clocks on the client and server machines are skewed.
0x80090325L SEC_E_UNTRUSTED_ROOT The certificate chain was issued by an authority that is not trusted.
0x80090326L SEC_E_ILLEGAL_MESSAGE The message received was unexpected or badly formatted.
0x80090327L SEC_E_CERT_UNKNOWN An unknown error occurred while processing the certificate.
0x80090328L SEC_E_CERT_EXPIRED The received certificate has expired.
0x80090329L SEC_E_ENCRYPT_FAILURE The specified data could not be encrypted.
0x80090330L SEC_E_DECRYPT_FAILURE The specified data could not be decrypted.
0x80090331L SEC_E_ALGORITHM_MISMATCH The client and server cannot communicate
0x80090332L SEC_E_SECURITY_QOS_FAILED The security context could not be established due to a failure in the requested quality of service (e.g. mutual authentication or delegation).
0x80090333L SEC_E_UNFINISHED_CONTEXT_DELETED A security context was deleted before the context was completed. This is considered a logon failure.
0x80090334L SEC_E_NO_TGT_REPLY The client is trying to negotiate a context and the server requires user-to-user but didn’t send a TGT reply.
0x80090335L SEC_E_NO_IP_ADDRESSES Unable to accomplish the requested task because the local machine does not have any IP addresses.
0x80090336L SEC_E_WRONG_CREDENTIAL_HANDLE The supplied credential handle does not match the credential associated with the security context.
0x80090337L SEC_E_CRYPTO_SYSTEM_INVALID The crypto system or checksum function is invalid because a required function is unavailable.
0x80090338L SEC_E_MAX_REFERRALS_EXCEEDED The number of maximum ticket referrals has been exceeded.
0x80090339L SEC_E_MUST_BE_KDC The local machine must be a Kerberos KDC (domain controller) and it is not.
0x8009033AL SEC_E_STRONG_CRYPTO_NOT_SUPPORTED The other end of the security negotiation is requires strong crypto but it is not supported on the local machine.
0x8009033BL SEC_E_TOO_MANY_PRINCIPALS The KDC reply contained more than one principal name.
0x8009033CL SEC_E_NO_PA_DATA Expected to find PA data for a hint of what etype to use
0x8009033DL SEC_E_PKINIT_NAME_MISMATCH The client certificate does not contain a valid UPN
0x8009033EL SEC_E_SMARTCARD_LOGON_REQUIRED Smartcard logon is required and was not used.
0x8009033FL SEC_E_SHUTDOWN_IN_PROGRESS A system shutdown is in progress.
0x80090340L SEC_E_KDC_INVALID_REQUEST An invalid request was sent to the KDC.
0x80090341L SEC_E_KDC_UNABLE_TO_REFER The KDC was unable to generate a referral for the service requested.
0x80090342L SEC_E_KDC_UNKNOWN_ETYPE The encryption type requested is not supported by the KDC.
0x80090343L SEC_E_UNSUPPORTED_PREAUTH An unsupported preauthentication mechanism was presented to the Kerberos package.
0x80090345L SEC_E_DELEGATION_REQUIRED The requested operation cannot be completed. The computer must be trusted for delegation and the current user account must be configured to allow delegation.
0x80090346L SEC_E_BAD_BINDINGS Client’s supplied SSPI channel bindings were incorrect.
0x80090347L SEC_E_MULTIPLE_ACCOUNTS The received certificate was mapped to multiple accounts.
0x80090348L SEC_E_NO_KERB_KEY SEC_E_NO_KERB_KEY
0x80090349L SEC_E_CERT_WRONG_USAGE The certificate is not valid for the requested usage.
0x80090350L SEC_E_DOWNGRADE_DETECTED The system cannot contact a domain controller to service the authentication request. Please try again later.
0x80090351L SEC_E_SMARTCARD_CERT_REVOKED The smartcard certificate used for authentication has been revoked. Please contact your system administrator. There may be additional information in the event log.
0x80090352L SEC_E_ISSUING_CA_UNTRUSTED An untrusted certificate authority was detected while processing the smartcard certificate used for authentication. Please contact your system administrator.
0x80090353L SEC_E_REVOCATION_OFFLINE_C The revocation status of the smartcard certificate used for authentication could not be determined. Please contact your system administrator.
0x80090354L SEC_E_PKINIT_CLIENT_FAILURE The smartcard certificate used for authentication was not trusted. Please contact your system administrator.
0x80090355L SEC_E_SMARTCARD_CERT_EXPIRED The smartcard certificate used for authentication has expired. Please contact your system administrator.
0x80090356L SEC_E_NO_S4U_PROT_SUPPORT The Kerberos subsystem encountered an error. A service for user protocol request was made against a domain controller which does not support service for user.
0x80090357L SEC_E_CROSSREALM_DELEGATION_FAILURE An attempt was made by this server to make a Kerberos constrained delegation request for a target outside of the server’s realm. This is not supported
0x80090358L SEC_E_REVOCATION_OFFLINE_KDC The revocation status of the domain controller certificate used for smartcard authentication could not be determined. There is additional information in the system event log. Please contact your system administrator.
0x80090359L SEC_E_ISSUING_CA_UNTRUSTED_KDC An untrusted certificate authority was detected while processing the domain controller certificate used for authentication. There is additional information in the system event log. Please contact your system administrator.
0x8009035AL SEC_E_KDC_CERT_EXPIRED The domain controller certificate used for smartcard logon has expired. Please contact your system administrator with the contents of your system event log.
0x8009035BL SEC_E_KDC_CERT_REVOKED The domain controller certificate used for smartcard logon has been revoked. Please contact your system administrator with the contents of your system event log.
0x0009035CL SEC_I_SIGNATURE_NEEDED A signature operation must be performed before the user can authenticate.
0x8009035DL SEC_E_INVALID_PARAMETER One or more of the parameters passed to the function was invalid.
0x8009035EL SEC_E_DELEGATION_POLICY Client policy does not allow credential delegation to target server.
0x8009035FL SEC_E_POLICY_NLTM_ONLY Client policy does not allow credential delegation to target server with NLTM only authentication.
0x00090360L SEC_I_NO_RENEGOTIATION The recipient rejected the renegotiation request.
0x80090361L SEC_E_NO_CONTEXT The required security context does not exist.
0x80090362L SEC_E_PKU2U_CERT_FAILURE The PKU2U protocol encountered an error while attempting to utilize the associated certificates.
0x80090363L SEC_E_MUTUAL_AUTH_FAILED The identity of the server computer could not be verified.
0x00090364L SEC_I_MESSAGE_FRAGMENT The returned buffer is only a fragment of the message. More fragments need to be returned.
0x80090365L SEC_E_ONLY_HTTPS_ALLOWED Only https scheme is allowed.
0x00090366L SEC_I_CONTINUE_NEEDED_MESSAGE_OK The function completed successfully
0x80090367L SEC_E_APPLICATION_PROTOCOL_MISMATCH No common application protocol exists between the client and the server. Application protocol negotiation failed.
0x00090368L SEC_I_ASYNC_CALL_PENDING An asynchronous SSPI routine has been called and the work is pending completion.
0x80090369L SEC_E_INVALID_UPN_NAME You can’t sign in with a user ID in this format. Try using your email address instead.
0x8009036AL SEC_E_EXT_BUFFER_TOO_SMALL The buffer supplied by the SSPI caller to receive generic extensions is too small.
0x8009036BL SEC_E_INSUFFICIENT_BUFFERS Not enough secbuffers were supplied to generate a token.
0x80091001L CRYPT_E_MSG_ERROR An error occurred while performing an operation on a cryptographic message.
0x80091002L CRYPT_E_UNKNOWN_ALGO Unknown cryptographic algorithm.
0x80091003L CRYPT_E_OID_FORMAT The object identifier is poorly formatted.
0x80091004L CRYPT_E_INVALID_MSG_TYPE Invalid cryptographic message type.
0x80091005L CRYPT_E_UNEXPECTED_ENCODING Unexpected cryptographic message encoding.
0x80091006L CRYPT_E_AUTH_ATTR_MISSING The cryptographic message does not contain an expected authenticated attribute.
0x80091007L CRYPT_E_HASH_VALUE The hash value is not correct.
0x80091008L CRYPT_E_INVALID_INDEX The index value is not valid.
0x80091009L CRYPT_E_ALREADY_DECRYPTED The content of the cryptographic message has already been decrypted.
0x8009100AL CRYPT_E_NOT_DECRYPTED The content of the cryptographic message has not been decrypted yet.
0x8009100BL CRYPT_E_RECIPIENT_NOT_FOUND The enveloped-data message does not contain the specified recipient.
0x8009100CL CRYPT_E_CONTROL_TYPE Invalid control type.
0x8009100DL CRYPT_E_ISSUER_SERIALNUMBER Invalid issuer and/or serial number.
0x8009100EL CRYPT_E_SIGNER_NOT_FOUND Cannot find the original signer.
0x8009100FL CRYPT_E_ATTRIBUTES_MISSING The cryptographic message does not contain all of the requested attributes.
0x80091010L CRYPT_E_STREAM_MSG_NOT_READY The streamed cryptographic message is not ready to return data.
0x80091011L CRYPT_E_STREAM_INSUFFICIENT_DATA The streamed cryptographic message requires more data to complete the decode operation.
0x00091012L CRYPT_I_NEW_PROTECTION_REQUIRED The protected data needs to be re-protected.
0x80092001L CRYPT_E_BAD_LEN The length specified for the output data was insufficient.
0x80092002L CRYPT_E_BAD_ENCODE An error occurred during encode or decode operation.
0x80092003L CRYPT_E_FILE_ERROR An error occurred while reading or writing to a file.
0x80092004L CRYPT_E_NOT_FOUND Cannot find object or property.
0x80092005L CRYPT_E_EXISTS The object or property already exists.
0x80092006L CRYPT_E_NO_PROVIDER No provider was specified for the store or object.
0x80092007L CRYPT_E_SELF_SIGNED The specified certificate is self signed.
0x80092008L CRYPT_E_DELETED_PREV The previous certificate or CRL context was deleted.
0x80092009L CRYPT_E_NO_MATCH Cannot find the requested object.
0x8009200AL CRYPT_E_UNEXPECTED_MSG_TYPE The certificate does not have a property that references a private key.
0x8009200BL CRYPT_E_NO_KEY_PROPERTY Cannot find the certificate and private key for decryption.
0x8009200CL CRYPT_E_NO_DECRYPT_CERT Cannot find the certificate and private key to use for decryption.
0x8009200DL CRYPT_E_BAD_MSG Not a cryptographic message or the cryptographic message is not formatted correctly.
0x8009200EL CRYPT_E_NO_SIGNER The signed cryptographic message does not have a signer for the specified signer index.
0x8009200FL CRYPT_E_PENDING_CLOSE Final closure is pending until additional frees or closes.
0x80092010L CRYPT_E_REVOKED The certificate is revoked.
0x80092011L CRYPT_E_NO_REVOCATION_DLL No Dll or exported function was found to verify revocation.
0x80092012L CRYPT_E_NO_REVOCATION_CHECK The revocation function was unable to check revocation for the certificate.
0x80092013L CRYPT_E_REVOCATION_OFFLINE The revocation function was unable to check revocation because the revocation server was offline.
0x80092014L CRYPT_E_NOT_IN_REVOCATION_DATABASE The certificate is not in the revocation server’s database.
0x80092020L CRYPT_E_INVALID_NUMERIC_STRING The string contains a non-numeric character.
0x80092021L CRYPT_E_INVALID_PRINTABLE_STRING The string contains a non-printable character.
0x80092022L CRYPT_E_INVALID_IA5_STRING The string contains a character not in the 7 bit ASCII character set.
0x80092023L CRYPT_E_INVALID_X500_STRING The string contains an invalid X500 name attribute key
0x80092024L CRYPT_E_NOT_CHAR_STRING The dwValueType for the CERT_NAME_VALUE is not one of the character strings. Most likely it is either a CERT_RDN_ENCODED_BLOB or CERT_RDN_OCTET_STRING.
0x80092025L CRYPT_E_FILERESIZED The Put operation cannot continue. The file needs to be resized. However
0x80092026L CRYPT_E_SECURITY_SETTINGS The cryptographic operation failed due to a local security option setting.
0x80092027L CRYPT_E_NO_VERIFY_USAGE_DLL No DLL or exported function was found to verify subject usage.
0x80092028L CRYPT_E_NO_VERIFY_USAGE_CHECK The called function was unable to do a usage check on the subject.
0x80092029L CRYPT_E_VERIFY_USAGE_OFFLINE Since the server was offline
0x8009202AL CRYPT_E_NOT_IN_CTL The subject was not found in a Certificate Trust List (CTL).
0x8009202BL CRYPT_E_NO_TRUSTED_SIGNER None of the signers of the cryptographic message or certificate trust list is trusted.
0x8009202CL CRYPT_E_MISSING_PUBKEY_PARA The public key’s algorithm parameters are missing.
0x8009202DL CRYPT_E_OBJECT_LOCATOR_OBJECT_NOT_FOUND An object could not be located using the object locator infrastructure with the given name.
0x80093000L CRYPT_E_OSS_ERROR See asn1code.h for a definition of the OSS runtime errors. The OSS error values are offset by CRYPT_E_OSS_ERROR.
0x80093001L OSS_MORE_BUF OSS ASN.1 Error: Output Buffer is too small.
0x80093002L OSS_NEGATIVE_UINTEGER OSS ASN.1 Error: Signed integer is encoded as a unsigned integer.
0x80093003L OSS_PDU_RANGE OSS ASN.1 Error: Unknown ASN.1 data type.
0x80093004L OSS_MORE_INPUT OSS ASN.1 Error: Output buffer is too small
0x80093005L OSS_DATA_ERROR OSS ASN.1 Error: Invalid data.
0x80093006L OSS_BAD_ARG OSS ASN.1 Error: Invalid argument.
0x80093007L OSS_BAD_VERSION OSS ASN.1 Error: Encode/Decode version mismatch.
0x80093008L OSS_OUT_MEMORY OSS ASN.1 Error: Out of memory.
0x80093009L OSS_PDU_MISMATCH OSS ASN.1 Error: Encode/Decode Error.
0x8009300AL OSS_LIMITED OSS ASN.1 Error: Internal Error.
0x8009300BL OSS_BAD_PTR OSS ASN.1 Error: Invalid data.
0x8009300CL OSS_BAD_TIME OSS ASN.1 Error: Invalid data.
0x8009300DL OSS_INDEFINITE_NOT_SUPPORTED OSS ASN.1 Error: Unsupported BER indefinite-length encoding.
0x8009300EL OSS_MEM_ERROR OSS ASN.1 Error: Access violation.
0x8009300FL OSS_BAD_TABLE OSS ASN.1 Error: Invalid data.
0x80093010L OSS_TOO_LONG OSS ASN.1 Error: Invalid data.
0x80093011L OSS_CONSTRAINT_VIOLATED OSS ASN.1 Error: Invalid data.
0x80093012L OSS_FATAL_ERROR OSS ASN.1 Error: Internal Error.
0x80093013L OSS_ACCESS_SERIALIZATION_ERROR OSS ASN.1 Error: Multi-threading conflict.
0x80093014L OSS_NULL_TBL OSS ASN.1 Error: Invalid data.
0x80093015L OSS_NULL_FCN OSS ASN.1 Error: Invalid data.
0x80093016L OSS_BAD_ENCRULES OSS ASN.1 Error: Invalid data.
0x80093017L OSS_UNAVAIL_ENCRULES OSS ASN.1 Error: Encode/Decode function not implemented.
0x80093018L OSS_CANT_OPEN_TRACE_WINDOW OSS ASN.1 Error: Trace file error.
0x80093019L OSS_UNIMPLEMENTED OSS ASN.1 Error: Function not implemented.
0x8009301AL OSS_OID_DLL_NOT_LINKED OSS ASN.1 Error: Program link error.
0x8009301BL OSS_CANT_OPEN_TRACE_FILE OSS ASN.1 Error: Trace file error.
0x8009301CL OSS_TRACE_FILE_ALREADY_OPEN OSS ASN.1 Error: Trace file error.
0x8009301DL OSS_TABLE_MISMATCH OSS ASN.1 Error: Invalid data.
0x8009301EL OSS_TYPE_NOT_SUPPORTED OSS ASN.1 Error: Invalid data.
0x8009301FL OSS_REAL_DLL_NOT_LINKED OSS ASN.1 Error: Program link error.
0x80093020L OSS_REAL_CODE_NOT_LINKED OSS ASN.1 Error: Program link error.
0x80093021L OSS_OUT_OF_RANGE OSS ASN.1 Error: Program link error.
0x80093022L OSS_COPIER_DLL_NOT_LINKED OSS ASN.1 Error: Program link error.
0x80093023L OSS_CONSTRAINT_DLL_NOT_LINKED OSS ASN.1 Error: Program link error.
0x80093024L OSS_COMPARATOR_DLL_NOT_LINKED OSS ASN.1 Error: Program link error.
0x80093025L OSS_COMPARATOR_CODE_NOT_LINKED OSS ASN.1 Error: Program link error.
0x80093026L OSS_MEM_MGR_DLL_NOT_LINKED OSS ASN.1 Error: Program link error.
0x80093027L OSS_PDV_DLL_NOT_LINKED OSS ASN.1 Error: Program link error.
0x80093028L OSS_PDV_CODE_NOT_LINKED OSS ASN.1 Error: Program link error.
0x80093029L OSS_API_DLL_NOT_LINKED OSS ASN.1 Error: Program link error.
0x8009302AL OSS_BERDER_DLL_NOT_LINKED OSS ASN.1 Error: Program link error.
0x8009302BL OSS_PER_DLL_NOT_LINKED OSS ASN.1 Error: Program link error.
0x8009302CL OSS_OPEN_TYPE_ERROR OSS ASN.1 Error: Program link error.
0x8009302DL OSS_MUTEX_NOT_CREATED OSS ASN.1 Error: System resource error.
0x8009302EL OSS_CANT_CLOSE_TRACE_FILE OSS ASN.1 Error: Trace file error.
0x80093100L CRYPT_E_ASN1_ERROR ASN1 Certificate encode/decode error code base. The ASN1 error values are offset by CRYPT_E_ASN1_ERROR.
0x80093101L CRYPT_E_ASN1_INTERNAL ASN1 internal encode or decode error.
0x80093102L CRYPT_E_ASN1_EOD ASN1 unexpected end of data.
0x80093103L CRYPT_E_ASN1_CORRUPT ASN1 corrupted data.
0x80093104L CRYPT_E_ASN1_LARGE ASN1 value too large.
0x80093105L CRYPT_E_ASN1_CONSTRAINT ASN1 constraint violated.
0x80093106L CRYPT_E_ASN1_MEMORY ASN1 out of memory.
0x80093107L CRYPT_E_ASN1_OVERFLOW ASN1 buffer overflow.
0x80093108L CRYPT_E_ASN1_BADPDU ASN1 function not supported for this PDU.
0x80093109L CRYPT_E_ASN1_BADARGS ASN1 bad arguments to function call.
0x8009310AL CRYPT_E_ASN1_BADREAL ASN1 bad real value.
0x8009310BL CRYPT_E_ASN1_BADTAG ASN1 bad tag value met.
0x8009310CL CRYPT_E_ASN1_CHOICE ASN1 bad choice value.
0x8009310DL CRYPT_E_ASN1_RULE ASN1 bad encoding rule.
0x8009310EL CRYPT_E_ASN1_UTF8 ASN1 bad unicode (UTF8).
0x80093133L CRYPT_E_ASN1_PDU_TYPE ASN1 bad PDU type.
0x80093134L CRYPT_E_ASN1_NYI ASN1 not yet implemented.
0x80093201L CRYPT_E_ASN1_EXTENDED ASN1 skipped unknown extension(s).
0x80093202L CRYPT_E_ASN1_NOEOD ASN1 end of data expected
0x80094001L CERTSRV_E_BAD_REQUESTSUBJECT The request subject name is invalid or too long.
0x80094002L CERTSRV_E_NO_REQUEST The request does not exist.
0x80094003L CERTSRV_E_BAD_REQUESTSTATUS The request’s current status does not allow this operation.
0x80094004L CERTSRV_E_PROPERTY_EMPTY The requested property value is empty.
0x80094005L CERTSRV_E_INVALID_CA_CERTIFICATE The certification authority’s certificate contains invalid data.
0x80094006L CERTSRV_E_SERVER_SUSPENDED Certificate service has been suspended for a database restore operation.
0x80094007L CERTSRV_E_ENCODING_LENGTH The certificate contains an encoded length that is potentially incompatible with older enrollment software.
0x80094008L CERTSRV_E_ROLECONFLICT The operation is denied. The user has multiple roles assigned and the certification authority is configured to enforce role separation.
0x80094009L CERTSRV_E_RESTRICTEDOFFICER The operation is denied. It can only be performed by a certificate manager that is allowed to manage certificates for the current requester.
0x8009400AL CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED Cannot archive private key. The certification authority is not configured for key archival.
0x8009400BL CERTSRV_E_NO_VALID_KRA Cannot archive private key. The certification authority could not verify one or more key recovery certificates.
0x8009400CL CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL The request is incorrectly formatted. The encrypted private key must be in an unauthenticated attribute in an outermost signature.
0x8009400DL CERTSRV_E_NO_CAADMIN_DEFINED At least one security principal must have the permission to manage this CA.
0x8009400EL CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE The request contains an invalid renewal certificate attribute.
0x8009400FL CERTSRV_E_NO_DB_SESSIONS An attempt was made to open a Certification Authority database session
0x80094010L CERTSRV_E_ALIGNMENT_FAULT A memory reference caused a data alignment fault.
0x80094011L CERTSRV_E_ENROLL_DENIED The permissions on this certification authority do not allow the current user to enroll for certificates.
0x80094012L CERTSRV_E_TEMPLATE_DENIED The permissions on the certificate template do not allow the current user to enroll for this type of certificate.
0x80094013L CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE The contacted domain controller cannot support signed LDAP traffic. Update the domain controller or configure Certificate Services to use SSL for Active Directory access.
0x80094014L CERTSRV_E_ADMIN_DENIED_REQUEST The request was denied by a certificate manager or CA administrator.
0x80094015L CERTSRV_E_NO_POLICY_SERVER An enrollment policy server cannot be located.
0x80094016L CERTSRV_E_WEAK_SIGNATURE_OR_KEY A signature algorithm or public key length does not meet the system’s minimum required strength.
0x80094017L CERTSRV_E_KEY_ATTESTATION_NOT_SUPPORTED Failed to create an attested key. This computer or the cryptographic provider may not meet the hardware requirements to support key attestation.
0x80094018L CERTSRV_E_ENCRYPTION_CERT_REQUIRED No encryption certificate was specified.
0x80094800L CERTSRV_E_UNSUPPORTED_CERT_TYPE The requested certificate template is not supported by this CA.
0x80094801L CERTSRV_E_NO_CERT_TYPE The request contains no certificate template information.
0x80094802L CERTSRV_E_TEMPLATE_CONFLICT The request contains conflicting template information.
0x80094803L CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED The request is missing a required Subject Alternate name extension.
0x80094804L CERTSRV_E_ARCHIVED_KEY_REQUIRED The request is missing a required private key for archival by the server.
0x80094805L CERTSRV_E_SMIME_REQUIRED The request is missing a required SMIME capabilities extension.
0x80094806L CERTSRV_E_BAD_RENEWAL_SUBJECT The request was made on behalf of a subject other than the caller. The certificate template must be configured to require at least one signature to authorize the request.
0x80094807L CERTSRV_E_BAD_TEMPLATE_VERSION The request template version is newer than the supported template version.
0x80094808L CERTSRV_E_TEMPLATE_POLICY_REQUIRED The template is missing a required signature policy attribute.
0x80094809L CERTSRV_E_SIGNATURE_POLICY_REQUIRED The request is missing required signature policy information.
0x8009480AL CERTSRV_E_SIGNATURE_COUNT The request is missing one or more required signatures.
0x8009480BL CERTSRV_E_SIGNATURE_REJECTED One or more signatures did not include the required application or issuance policies. The request is missing one or more required valid signatures.
0x8009480CL CERTSRV_E_ISSUANCE_POLICY_REQUIRED The request is missing one or more required signature issuance policies.
0x8009480DL CERTSRV_E_SUBJECT_UPN_REQUIRED The UPN is unavailable and cannot be added to the Subject Alternate name.
0x8009480EL CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED The Active Directory GUID is unavailable and cannot be added to the Subject Alternate name.
0x8009480FL CERTSRV_E_SUBJECT_DNS_REQUIRED The DNS name is unavailable and cannot be added to the Subject Alternate name.
0x80094810L CERTSRV_E_ARCHIVED_KEY_UNEXPECTED The request includes a private key for archival by the server
0x80094811L CERTSRV_E_KEY_LENGTH The public key does not meet the minimum size required by the specified certificate template.
0x80094812L CERTSRV_E_SUBJECT_EMAIL_REQUIRED The EMail name is unavailable and cannot be added to the Subject or Subject Alternate name.
0x80094813L CERTSRV_E_UNKNOWN_CERT_TYPE One or more certificate templates to be enabled on this certification authority could not be found.
0x80094814L CERTSRV_E_CERT_TYPE_OVERLAP The certificate template renewal period is longer than the certificate validity period. The template should be reconfigured or the CA certificate renewed.
0x80094815L CERTSRV_E_TOO_MANY_SIGNATURES The certificate template requires too many RA signatures. Only one RA signature is allowed.
0x80094816L CERTSRV_E_RENEWAL_BAD_PUBLIC_KEY The certificate template requires renewal with the same public key
0x80094817L CERTSRV_E_INVALID_EK The certification authority cannot interpret or verify the endorsement key information supplied in the request
0x80094818L CERTSRV_E_INVALID_IDBINDING The certification authority cannot validate the Attestation Identity Key Id Binding.
0x80094819L CERTSRV_E_INVALID_ATTESTATION The certification authority cannot validate the private key attestation data.
0x8009481AL CERTSRV_E_KEY_ATTESTATION The request does not support private key attestation as defined in the certificate template.
0x8009481BL CERTSRV_E_CORRUPT_KEY_ATTESTATION The request public key is not consistent with the private key attestation data.
0x8009481CL CERTSRV_E_EXPIRED_CHALLENGE The private key attestation challenge cannot be validated because the encryption certificate has expired
0x8009481DL CERTSRV_E_INVALID_RESPONSE The client’s response could not be validated. It is either unexpected or incorrect.
0x8009481EL CERTSRV_E_INVALID_REQUESTID A valid Request ID was not detected in the request attributes
0x8009481FL CERTSRV_E_REQUEST_PRECERTIFICATE_MISMATCH The request is not consistent with the previously generated precertificate.
0x80094820L CERTSRV_E_PENDING_CLIENT_RESPONSE The request is locked against edits until a response is received from the client.
0x80095000L XENROLL_E_KEY_NOT_EXPORTABLE The key is not exportable.
0x80095001L XENROLL_E_CANNOT_ADD_ROOT_CERT You cannot add the root CA certificate into your local store.
0x80095002L XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND The key archival hash attribute was not found in the response.
0x80095003L XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH An unexpected key archival hash attribute was found in the response.
0x80095004L XENROLL_E_RESPONSE_KA_HASH_MISMATCH There is a key archival hash mismatch between the request and the response.
0x80095005L XENROLL_E_KEYSPEC_SMIME_MISMATCH Signing certificate cannot include SMIME extension.
0x80096001L TRUST_E_SYSTEM_ERROR A system-level error occurred while verifying trust.
0x80096002L TRUST_E_NO_SIGNER_CERT The certificate for the signer of the message is invalid or not found.
0x80096003L TRUST_E_COUNTER_SIGNER One of the counter signatures was invalid.
0x80096004L TRUST_E_CERT_SIGNATURE The signature of the certificate cannot be verified.
0x80096005L TRUST_E_TIME_STAMP The timestamp signature and/or certificate could not be verified or is malformed.
0x80096010L TRUST_E_BAD_DIGEST The digital signature of the object did not verify.
0x80096011L TRUST_E_MALFORMED_SIGNATURE The digital signature of the object is malformed. For technical detail
0x80096019L TRUST_E_BASIC_CONSTRAINTS A certificate’s basic constraint extension has not been observed.
0x8009601EL TRUST_E_FINANCIAL_CRITERIA The certificate does not meet or contain the Authenticode(tm) financial extensions.
0x80097001L MSSIPOTF_E_OUTOFMEMRANGE Tried to reference a part of the file outside the proper range.
0x80097002L MSSIPOTF_E_CANTGETOBJECT Could not retrieve an object from the file.
0x80097003L MSSIPOTF_E_NOHEADTABLE Could not find the head table in the file.
0x80097004L MSSIPOTF_E_BAD_MAGICNUMBER The magic number in the head table is incorrect.
0x80097005L MSSIPOTF_E_BAD_OFFSET_TABLE The offset table has incorrect values.
0x80097006L MSSIPOTF_E_TABLE_TAGORDER Duplicate table tags or tags out of alphabetical order.
0x80097007L MSSIPOTF_E_TABLE_LONGWORD A table does not start on a long word boundary.
0x80097008L MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT First table does not appear after header information.
0x80097009L MSSIPOTF_E_TABLES_OVERLAP Two or more tables overlap.
0x8009700AL MSSIPOTF_E_TABLE_PADBYTES Too many pad bytes between tables or pad bytes are not 0.
0x8009700BL MSSIPOTF_E_FILETOOSMALL File is too small to contain the last table.
0x8009700CL MSSIPOTF_E_TABLE_CHECKSUM A table checksum is incorrect.
0x8009700DL MSSIPOTF_E_FILE_CHECKSUM The file checksum is incorrect.
0x80097010L MSSIPOTF_E_FAILED_POLICY The signature does not have the correct attributes for the policy.
0x80097011L MSSIPOTF_E_FAILED_HINTS_CHECK The file did not pass the hints check.
0x80097012L MSSIPOTF_E_NOT_OPENTYPE The file is not an OpenType file.
0x80097013L MSSIPOTF_E_FILE Failed on a file operation (open
0x80097014L MSSIPOTF_E_CRYPT A call to a CryptoAPI function failed.
0x80097015L MSSIPOTF_E_BADVERSION There is a bad version number in the file.
0x80097016L MSSIPOTF_E_DSIG_STRUCTURE The structure of the DSIG table is incorrect.
0x80097017L MSSIPOTF_E_PCONST_CHECK A check failed in a partially constant table.
0x80097018L MSSIPOTF_E_STRUCTURE Some kind of structural error.
0x80097019L ERROR_CRED_REQUIRES_CONFIRMATION The requested credential requires confirmation.
0x800B0001L TRUST_E_PROVIDER_UNKNOWN Unknown trust provider.
0x800B0002L TRUST_E_ACTION_UNKNOWN The trust verification action specified is not supported by the specified trust provider.
0x800B0003L TRUST_E_SUBJECT_FORM_UNKNOWN The form specified for the subject is not one supported or known by the specified trust provider.
0x800B0004L TRUST_E_SUBJECT_NOT_TRUSTED The subject is not trusted for the specified action.
0x800B0005L DIGSIG_E_ENCODE Error due to problem in ASN.1 encoding process.
0x800B0006L DIGSIG_E_DECODE Error due to problem in ASN.1 decoding process.
0x800B0007L DIGSIG_E_EXTENSIBILITY Reading / writing Extensions where Attributes are appropriate
0x800B0008L DIGSIG_E_CRYPTO Unspecified cryptographic failure.
0x800B0009L PERSIST_E_SIZEDEFINITE The size of the data could not be determined.
0x800B000AL PERSIST_E_SIZEINDEFINITE The size of the indefinite-sized data could not be determined.
0x800B000BL PERSIST_E_NOTSELFSIZING This object does not read and write self-sizing data.
0x800B0100L TRUST_E_NOSIGNATURE No signature was present in the subject.
0x800B0101L CERT_E_EXPIRED A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file.
0x800B0102L CERT_E_VALIDITYPERIODNESTING The validity periods of the certification chain do not nest correctly.
0x800B0103L CERT_E_ROLE A certificate that can only be used as an end-entity is being used as a CA or vice versa.
0x800B0104L CERT_E_PATHLENCONST A path length constraint in the certification chain has been violated.
0x800B0105L CERT_E_CRITICAL A certificate contains an unknown extension that is marked ‘critical’.
0x800B0106L CERT_E_PURPOSE A certificate being used for a purpose other than the ones specified by its CA.
0x800B0107L CERT_E_ISSUERCHAINING A parent of a given certificate in fact did not issue that child certificate.
0x800B0108L CERT_E_MALFORMED A certificate is missing or has an empty value for an important field
0x800B0109L CERT_E_UNTRUSTEDROOT A certificate chain processed
0x800B010AL CERT_E_CHAINING A certificate chain could not be built to a trusted root authority.
0x800B010BL TRUST_E_FAIL Generic trust failure.
0x800B010CL CERT_E_REVOKED A certificate was explicitly revoked by its issuer.
0x800B010DL CERT_E_UNTRUSTEDTESTROOT The certification path terminates with the test root which is not trusted with the current policy settings.
0x800B010EL CERT_E_REVOCATION_FAILURE The revocation process could not continue - the certificate(s) could not be checked.
0x800B010FL CERT_E_CN_NO_MATCH The certificate’s CN name does not match the passed value.
0x800B0110L CERT_E_WRONG_USAGE The certificate is not valid for the requested usage.
0x800B0111L TRUST_E_EXPLICIT_DISTRUST The certificate was explicitly marked as untrusted by the user.
0x800B0112L CERT_E_UNTRUSTEDCA A certification chain processed correctly
0x800B0113L CERT_E_INVALID_POLICY The certificate has invalid policy.
0x800B0114L CERT_E_INVALID_NAME The certificate has an invalid name. The name is not included in the permitted list or is explicitly excluded.
0x800F0000L SPAPI_E_EXPECTED_SECTION_NAME A non-empty line was encountered in the INF before the start of a section.
0x800F0001L SPAPI_E_BAD_SECTION_NAME_LINE A section name marker in the INF is not complete
0x800F0002L SPAPI_E_SECTION_NAME_TOO_LONG An INF section was encountered whose name exceeds the maximum section name length.
0x800F0003L SPAPI_E_GENERAL_SYNTAX The syntax of the INF is invalid.
0x800F0100L SPAPI_E_WRONG_INF_STYLE The style of the INF is different than what was requested.
0x800F0101L SPAPI_E_SECTION_NOT_FOUND The required section was not found in the INF.
0x800F0102L SPAPI_E_LINE_NOT_FOUND The required line was not found in the INF.
0x800F0103L SPAPI_E_NO_BACKUP The files affected by the installation of this file queue have not been backed up for uninstall.
0x800F0200L SPAPI_E_NO_ASSOCIATED_CLASS The INF or the device information set or element does not have an associated install class.
0x800F0201L SPAPI_E_CLASS_MISMATCH The INF or the device information set or element does not match the specified install class.
0x800F0202L SPAPI_E_DUPLICATE_FOUND An existing device was found that is a duplicate of the device being manually installed.
0x800F0203L SPAPI_E_NO_DRIVER_SELECTED There is no driver selected for the device information set or element.
0x800F0204L SPAPI_E_KEY_DOES_NOT_EXIST The requested device registry key does not exist.
0x800F0205L SPAPI_E_INVALID_DEVINST_NAME The device instance name is invalid.
0x800F0206L SPAPI_E_INVALID_CLASS The install class is not present or is invalid.
0x800F0207L SPAPI_E_DEVINST_ALREADY_EXISTS The device instance cannot be created because it already exists.
0x800F0208L SPAPI_E_DEVINFO_NOT_REGISTERED The operation cannot be performed on a device information element that has not been registered.
0x800F0209L SPAPI_E_INVALID_REG_PROPERTY The device property code is invalid.
0x800F020AL SPAPI_E_NO_INF The INF from which a driver list is to be built does not exist.
0x800F020BL SPAPI_E_NO_SUCH_DEVINST The device instance does not exist in the hardware tree.
0x800F020CL SPAPI_E_CANT_LOAD_CLASS_ICON The icon representing this install class cannot be loaded.
0x800F020DL SPAPI_E_INVALID_CLASS_INSTALLER The class installer registry entry is invalid.
0x800F020EL SPAPI_E_DI_DO_DEFAULT The class installer has indicated that the default action should be performed for this installation request.
0x800F020FL SPAPI_E_DI_NOFILECOPY The operation does not require any files to be copied.
0x800F0210L SPAPI_E_INVALID_HWPROFILE The specified hardware profile does not exist.
0x800F0211L SPAPI_E_NO_DEVICE_SELECTED There is no device information element currently selected for this device information set.
0x800F0212L SPAPI_E_DEVINFO_LIST_LOCKED The operation cannot be performed because the device information set is locked.
0x800F0213L SPAPI_E_DEVINFO_DATA_LOCKED The operation cannot be performed because the device information element is locked.
0x800F0214L SPAPI_E_DI_BAD_PATH The specified path does not contain any applicable device INFs.
0x800F0215L SPAPI_E_NO_CLASSINSTALL_PARAMS No class installer parameters have been set for the device information set or element.
0x800F0216L SPAPI_E_FILEQUEUE_LOCKED The operation cannot be performed because the file queue is locked.
0x800F0217L SPAPI_E_BAD_SERVICE_INSTALLSECT A service installation section in this INF is invalid.
0x800F0218L SPAPI_E_NO_CLASS_DRIVER_LIST There is no class driver list for the device information element.
0x800F0219L SPAPI_E_NO_ASSOCIATED_SERVICE The installation failed because a function driver was not specified for this device instance.
0x800F021AL SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE There is presently no default device interface designated for this interface class.
0x800F021BL SPAPI_E_DEVICE_INTERFACE_ACTIVE The operation cannot be performed because the device interface is currently active.
0x800F021CL SPAPI_E_DEVICE_INTERFACE_REMOVED The operation cannot be performed because the device interface has been removed from the system.
0x800F021DL SPAPI_E_BAD_INTERFACE_INSTALLSECT An interface installation section in this INF is invalid.
0x800F021EL SPAPI_E_NO_SUCH_INTERFACE_CLASS This interface class does not exist in the system.
0x800F021FL SPAPI_E_INVALID_REFERENCE_STRING The reference string supplied for this interface device is invalid.
0x800F0220L SPAPI_E_INVALID_MACHINENAME The specified machine name does not conform to UNC naming conventions.
0x800F0221L SPAPI_E_REMOTE_COMM_FAILURE A general remote communication error occurred.
0x800F0222L SPAPI_E_MACHINE_UNAVAILABLE The machine selected for remote communication is not available at this time.
0x800F0223L SPAPI_E_NO_CONFIGMGR_SERVICES The Plug and Play service is not available on the remote machine.
0x800F0224L SPAPI_E_INVALID_PROPPAGE_PROVIDER The property page provider registry entry is invalid.
0x800F0225L SPAPI_E_NO_SUCH_DEVICE_INTERFACE The requested device interface is not present in the system.
0x800F0226L SPAPI_E_DI_POSTPROCESSING_REQUIRED The device’s co-installer has additional work to perform after installation is complete.
0x800F0227L SPAPI_E_INVALID_COINSTALLER The device’s co-installer is invalid.
0x800F0228L SPAPI_E_NO_COMPAT_DRIVERS There are no compatible drivers for this device.
0x800F0229L SPAPI_E_NO_DEVICE_ICON There is no icon that represents this device or device type.
0x800F022AL SPAPI_E_INVALID_INF_LOGCONFIG A logical configuration specified in this INF is invalid.
0x800F022BL SPAPI_E_DI_DONT_INSTALL The class installer has denied the request to install or upgrade this device.
0x800F022CL SPAPI_E_INVALID_FILTER_DRIVER One of the filter drivers installed for this device is invalid.
0x800F022DL SPAPI_E_NON_WINDOWS_NT_DRIVER The driver selected for this device does not support this version of Windows.
0x800F022EL SPAPI_E_NON_WINDOWS_DRIVER The driver selected for this device does not support Windows.
0x800F022FL SPAPI_E_NO_CATALOG_FOR_OEM_INF The third-party INF does not contain digital signature information.
0x800F0230L SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE An invalid attempt was made to use a device installation file queue for verification of digital signatures relative to other platforms.
0x800F0231L SPAPI_E_NOT_DISABLEABLE The device cannot be disabled.
0x800F0232L SPAPI_E_CANT_REMOVE_DEVINST The device could not be dynamically removed.
0x800F0233L SPAPI_E_INVALID_TARGET Cannot copy to specified target.
0x800F0234L SPAPI_E_DRIVER_NONNATIVE Driver is not intended for this platform.
0x800F0235L SPAPI_E_IN_WOW64 Operation not allowed in WOW64.
0x800F0236L SPAPI_E_SET_SYSTEM_RESTORE_POINT The operation involving unsigned file copying was rolled back
0x800F0237L SPAPI_E_INCORRECTLY_COPIED_INF An INF was copied into the Windows INF directory in an improper manner.
0x800F0238L SPAPI_E_SCE_DISABLED The Security Configuration Editor (SCE) APIs have been disabled on this Embedded product.
0x800F0239L SPAPI_E_UNKNOWN_EXCEPTION An unknown exception was encountered.
0x800F023AL SPAPI_E_PNP_REGISTRY_ERROR A problem was encountered when accessing the Plug and Play registry database.
0x800F023BL SPAPI_E_REMOTE_REQUEST_UNSUPPORTED The requested operation is not supported for a remote machine.
0x800F023CL SPAPI_E_NOT_AN_INSTALLED_OEM_INF The specified file is not an installed OEM INF.
0x800F023DL SPAPI_E_INF_IN_USE_BY_DEVICES One or more devices are presently installed using the specified INF.
0x800F023EL SPAPI_E_DI_FUNCTION_OBSOLETE The requested device install operation is obsolete.
0x800F023FL SPAPI_E_NO_AUTHENTICODE_CATALOG A file could not be verified because it does not have an associated catalog signed via Authenticode(tm).
0x800F0240L SPAPI_E_AUTHENTICODE_DISALLOWED Authenticode(tm) signature verification is not supported for the specified INF.
0x800F0241L SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER The INF was signed with an Authenticode(tm) catalog from a trusted publisher.
0x800F0242L SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED The publisher of an Authenticode(tm) signed catalog has not yet been established as trusted.
0x800F0243L SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED The publisher of an Authenticode(tm) signed catalog was not established as trusted.
0x800F0244L SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH The software was tested for compliance with Windows Logo requirements on a different version of Windows
0x800F0245L SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE The file may only be validated by a catalog signed via Authenticode(tm).
0x800F0246L SPAPI_E_DEVICE_INSTALLER_NOT_READY One of the installers for this device cannot perform the installation at this time.
0x800F0247L SPAPI_E_DRIVER_STORE_ADD_FAILED A problem was encountered while attempting to add the driver to the store.
0x800F0248L SPAPI_E_DEVICE_INSTALL_BLOCKED The installation of this device is forbidden by system policy. Contact your system administrator.
0x800F0249L SPAPI_E_DRIVER_INSTALL_BLOCKED The installation of this driver is forbidden by system policy. Contact your system administrator.
0x800F024AL SPAPI_E_WRONG_INF_TYPE The specified INF is the wrong type for this operation.
0x800F024BL SPAPI_E_FILE_HASH_NOT_IN_CATALOG The hash for the file is not present in the specified catalog file. The file is likely corrupt or the victim of tampering.
0x800F024CL SPAPI_E_DRIVER_STORE_DELETE_FAILED A problem was encountered while attempting to delete the driver from the store.
0x800F0300L SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW An unrecoverable stack overflow was encountered.
0x800F1000L SPAPI_E_ERROR_NOT_INSTALLED No installed components were detected.
0x80100001L SCARD_F_INTERNAL_ERROR An internal consistency check failed.
0x80100002L SCARD_E_CANCELLED The action was cancelled by an SCardCancel request.
0x80100003L SCARD_E_INVALID_HANDLE The supplied handle was invalid.
0x80100004L SCARD_E_INVALID_PARAMETER One or more of the supplied parameters could not be properly interpreted.
0x80100005L SCARD_E_INVALID_TARGET Registry startup information is missing or invalid.
0x80100006L SCARD_E_NO_MEMORY Not enough memory available to complete this command.
0x80100007L SCARD_F_WAITED_TOO_LONG An internal consistency timer has expired.
0x80100008L SCARD_E_INSUFFICIENT_BUFFER The data buffer to receive returned data is too small for the returned data.
0x80100009L SCARD_E_UNKNOWN_READER The specified reader name is not recognized.
0x8010000AL SCARD_E_TIMEOUT The user-specified timeout value has expired.
0x8010000BL SCARD_E_SHARING_VIOLATION The smart card cannot be accessed because of other connections outstanding.
0x8010000CL SCARD_E_NO_SMARTCARD The operation requires a smart card
0x8010000DL SCARD_E_UNKNOWN_CARD The specified smart card name is not recognized.
0x8010000EL SCARD_E_CANT_DISPOSE The system could not dispose of the media in the requested manner.
0x8010000FL SCARD_E_PROTO_MISMATCH The requested protocols are incompatible with the protocol currently in use with the smart card.
0x80100010L SCARD_E_NOT_READY The reader or smart card is not ready to accept commands.
0x80100011L SCARD_E_INVALID_VALUE One or more of the supplied parameters values could not be properly interpreted.
0x80100012L SCARD_E_SYSTEM_CANCELLED The action was cancelled by the system
0x80100013L SCARD_F_COMM_ERROR An internal communications error has been detected.
0x80100014L SCARD_F_UNKNOWN_ERROR An internal error has been detected
0x80100015L SCARD_E_INVALID_ATR An ATR obtained from the registry is not a valid ATR string.
0x80100016L SCARD_E_NOT_TRANSACTED An attempt was made to end a non-existent transaction.
0x80100017L SCARD_E_READER_UNAVAILABLE The specified reader is not currently available for use.
0x80100018L SCARD_P_SHUTDOWN The operation has been aborted to allow the server application to exit.
0x80100019L SCARD_E_PCI_TOO_SMALL The PCI Receive buffer was too small.
0x8010001AL SCARD_E_READER_UNSUPPORTED The reader driver does not meet minimal requirements for support.
0x8010001BL SCARD_E_DUPLICATE_READER The reader driver did not produce a unique reader name.
0x8010001CL SCARD_E_CARD_UNSUPPORTED The smart card does not meet minimal requirements for support.
0x8010001DL SCARD_E_NO_SERVICE The Smart Card Resource Manager is not running.
0x8010001EL SCARD_E_SERVICE_STOPPED The Smart Card Resource Manager has shut down.
0x8010001FL SCARD_E_UNEXPECTED An unexpected card error has occurred.
0x80100020L SCARD_E_ICC_INSTALLATION No Primary Provider can be found for the smart card.
0x80100021L SCARD_E_ICC_CREATEORDER The requested order of object creation is not supported.
0x80100022L SCARD_E_UNSUPPORTED_FEATURE This smart card does not support the requested feature.
0x80100023L SCARD_E_DIR_NOT_FOUND The identified directory does not exist in the smart card.
0x80100024L SCARD_E_FILE_NOT_FOUND The identified file does not exist in the smart card.
0x80100025L SCARD_E_NO_DIR The supplied path does not represent a smart card directory.
0x80100026L SCARD_E_NO_FILE The supplied path does not represent a smart card file.
0x80100027L SCARD_E_NO_ACCESS Access is denied to this file.
0x80100028L SCARD_E_WRITE_TOO_MANY The smart card does not have enough memory to store the information.
0x80100029L SCARD_E_BAD_SEEK There was an error trying to set the smart card file object pointer.
0x8010002AL SCARD_E_INVALID_CHV The supplied PIN is incorrect.
0x8010002BL SCARD_E_UNKNOWN_RES_MNG An unrecognized error code was returned from a layered component.
0x8010002CL SCARD_E_NO_SUCH_CERTIFICATE The requested certificate does not exist.
0x8010002DL SCARD_E_CERTIFICATE_UNAVAILABLE The requested certificate could not be obtained.
0x8010002EL SCARD_E_NO_READERS_AVAILABLE Cannot find a smart card reader.
0x8010002FL SCARD_E_COMM_DATA_LOST A communications error with the smart card has been detected. Retry the operation.
0x80100030L SCARD_E_NO_KEY_CONTAINER The requested key container does not exist on the smart card.
0x80100031L SCARD_E_SERVER_TOO_BUSY The Smart Card Resource Manager is too busy to complete this operation.
0x80100032L SCARD_E_PIN_CACHE_EXPIRED The smart card PIN cache has expired.
0x80100033L SCARD_E_NO_PIN_CACHE The smart card PIN cannot be cached.
0x80100034L SCARD_E_READ_ONLY_CARD The smart card is read only and cannot be written to.
0x80100065L SCARD_W_UNSUPPORTED_CARD The reader cannot communicate with the smart card
0x80100066L SCARD_W_UNRESPONSIVE_CARD The smart card is not responding to a reset.
0x80100067L SCARD_W_UNPOWERED_CARD Power has been removed from the smart card
0x80100068L SCARD_W_RESET_CARD The smart card has been reset
0x80100069L SCARD_W_REMOVED_CARD The smart card has been removed
0x8010006AL SCARD_W_SECURITY_VIOLATION Access was denied because of a security violation.
0x8010006BL SCARD_W_WRONG_CHV The card cannot be accessed because the wrong PIN was presented.
0x8010006CL SCARD_W_CHV_BLOCKED The card cannot be accessed because the maximum number of PIN entry attempts has been reached.
0x8010006DL SCARD_W_EOF The end of the smart card file has been reached.
0x8010006EL SCARD_W_CANCELLED_BY_USER The action was cancelled by the user.
0x8010006FL SCARD_W_CARD_NOT_AUTHENTICATED No PIN was presented to the smart card.
0x80100070L SCARD_W_CACHE_ITEM_NOT_FOUND The requested item could not be found in the cache.
0x80100071L SCARD_W_CACHE_ITEM_STALE The requested cache item is too old and was deleted from the cache.
0x80100072L SCARD_W_CACHE_ITEM_TOO_BIG The new cache item exceeds the maximum per-item size defined for the cache.
0x80110401L COMADMIN_E_OBJECTERRORS Errors occurred accessing one or more objects - the ErrorInfo collection may have more detail
0x80110402L COMADMIN_E_OBJECTINVALID One or more of the object’s properties are missing or invalid
0x80110403L COMADMIN_E_KEYMISSING The object was not found in the catalog
0x80110404L COMADMIN_E_ALREADYINSTALLED The object is already registered
0x80110407L COMADMIN_E_APP_FILE_WRITEFAIL Error occurred writing to the application file
0x80110408L COMADMIN_E_APP_FILE_READFAIL Error occurred reading the application file
0x80110409L COMADMIN_E_APP_FILE_VERSION Invalid version number in application file
0x8011040AL COMADMIN_E_BADPATH The file path is invalid
0x8011040BL COMADMIN_E_APPLICATIONEXISTS The application is already installed
0x8011040CL COMADMIN_E_ROLEEXISTS The role already exists
0x8011040DL COMADMIN_E_CANTCOPYFILE An error occurred copying the file
0x8011040FL COMADMIN_E_NOUSER One or more users are not valid
0x80110410L COMADMIN_E_INVALIDUSERIDS One or more users in the application file are not valid
0x80110411L COMADMIN_E_NOREGISTRYCLSID The component’s CLSID is missing or corrupt
0x80110412L COMADMIN_E_BADREGISTRYPROGID The component’s progID is missing or corrupt
0x80110413L COMADMIN_E_AUTHENTICATIONLEVEL Unable to set required authentication level for update request
0x80110414L COMADMIN_E_USERPASSWDNOTVALID The identity or password set on the application is not valid
0x80110418L COMADMIN_E_CLSIDORIIDMISMATCH Application file CLSIDs or IIDs do not match corresponding DLLs
0x80110419L COMADMIN_E_REMOTEINTERFACE Interface information is either missing or changed
0x8011041AL COMADMIN_E_DLLREGISTERSERVER DllRegisterServer failed on component install
0x8011041BL COMADMIN_E_NOSERVERSHARE No server file share available
0x8011041DL COMADMIN_E_DLLLOADFAILED DLL could not be loaded
0x8011041EL COMADMIN_E_BADREGISTRYLIBID The registered TypeLib ID is not valid
0x8011041FL COMADMIN_E_APPDIRNOTFOUND Application install directory not found
0x80110423L COMADMIN_E_REGISTRARFAILED Errors occurred while in the component registrar
0x80110424L COMADMIN_E_COMPFILE_DOESNOTEXIST The file does not exist
0x80110425L COMADMIN_E_COMPFILE_LOADDLLFAIL The DLL could not be loaded
0x80110426L COMADMIN_E_COMPFILE_GETCLASSOBJ GetClassObject failed in the DLL
0x80110427L COMADMIN_E_COMPFILE_CLASSNOTAVAIL The DLL does not support the components listed in the TypeLib
0x80110428L COMADMIN_E_COMPFILE_BADTLB The TypeLib could not be loaded
0x80110429L COMADMIN_E_COMPFILE_NOTINSTALLABLE The file does not contain components or component information
0x8011042AL COMADMIN_E_NOTCHANGEABLE Changes to this object and its sub-objects have been disabled
0x8011042BL COMADMIN_E_NOTDELETEABLE The delete function has been disabled for this object
0x8011042CL COMADMIN_E_SESSION The server catalog version is not supported
0x8011042DL COMADMIN_E_COMP_MOVE_LOCKED The component move was disallowed
0x8011042EL COMADMIN_E_COMP_MOVE_BAD_DEST The component move failed because the destination application no longer exists
0x80110430L COMADMIN_E_REGISTERTLB The system was unable to register the TypeLib
0x80110433L COMADMIN_E_SYSTEMAPP This operation cannot be performed on the system application
0x80110434L COMADMIN_E_COMPFILE_NOREGISTRAR The component registrar referenced in this file is not available
0x80110435L COMADMIN_E_COREQCOMPINSTALLED A component in the same DLL is already installed
0x80110436L COMADMIN_E_SERVICENOTINSTALLED The service is not installed
0x80110437L COMADMIN_E_PROPERTYSAVEFAILED One or more property settings are either invalid or in conflict with each other
0x80110438L COMADMIN_E_OBJECTEXISTS The object you are attempting to add or rename already exists
0x80110439L COMADMIN_E_COMPONENTEXISTS The component already exists
0x8011043BL COMADMIN_E_REGFILE_CORRUPT The registration file is corrupt
0x8011043CL COMADMIN_E_PROPERTY_OVERFLOW The property value is too large
0x8011043EL COMADMIN_E_NOTINREGISTRY Object was not found in registry
0x8011043FL COMADMIN_E_OBJECTNOTPOOLABLE This object is not poolable
0x80110446L COMADMIN_E_APPLID_MATCHES_CLSID A CLSID with the same GUID as the new application ID is already installed on this machine
0x80110447L COMADMIN_E_ROLE_DOES_NOT_EXIST A role assigned to a component
0x80110448L COMADMIN_E_START_APP_NEEDS_COMPONENTS You must have components in an application in order to start the application
0x80110449L COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM This operation is not enabled on this platform
0x8011044AL COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY Application Proxy is not exportable
0x8011044BL COMADMIN_E_CAN_NOT_START_APP Failed to start application because it is either a library application or an application proxy
0x8011044CL COMADMIN_E_CAN_NOT_EXPORT_SYS_APP System application is not exportable
0x8011044DL COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT Cannot subscribe to this component (the component may have been imported)
0x8011044EL COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER An event class cannot also be a subscriber component
0x8011044FL COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE Library applications and application proxies are incompatible
0x80110450L COMADMIN_E_BASE_PARTITION_ONLY This function is valid for the base partition only
0x80110451L COMADMIN_E_START_APP_DISABLED You cannot start an application that has been disabled
0x80110457L COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME The specified partition name is already in use on this computer
0x80110458L COMADMIN_E_CAT_INVALID_PARTITION_NAME The specified partition name is invalid. Check that the name contains at least one visible character
0x80110459L COMADMIN_E_CAT_PARTITION_IN_USE The partition cannot be deleted because it is the default partition for one or more users
0x8011045AL COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES The partition cannot be exported
0x8011045BL COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED Applications that contain one or more imported components cannot be installed into a non-base partition
0x8011045CL COMADMIN_E_AMBIGUOUS_APPLICATION_NAME The application name is not unique and cannot be resolved to an application id
0x8011045DL COMADMIN_E_AMBIGUOUS_PARTITION_NAME The partition name is not unique and cannot be resolved to a partition id
0x80110472L COMADMIN_E_REGDB_NOTINITIALIZED The COM+ registry database has not been initialized
0x80110473L COMADMIN_E_REGDB_NOTOPEN The COM+ registry database is not open
0x80110474L COMADMIN_E_REGDB_SYSTEMERR The COM+ registry database detected a system error
0x80110475L COMADMIN_E_REGDB_ALREADYRUNNING The COM+ registry database is already running
0x80110480L COMADMIN_E_MIG_VERSIONNOTSUPPORTED This version of the COM+ registry database cannot be migrated
0x80110481L COMADMIN_E_MIG_SCHEMANOTFOUND The schema version to be migrated could not be found in the COM+ registry database
0x80110482L COMADMIN_E_CAT_BITNESSMISMATCH There was a type mismatch between binaries
0x80110483L COMADMIN_E_CAT_UNACCEPTABLEBITNESS A binary of unknown or invalid type was provided
0x80110484L COMADMIN_E_CAT_WRONGAPPBITNESS There was a type mismatch between a binary and an application
0x80110485L COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED The application cannot be paused or resumed
0x80110486L COMADMIN_E_CAT_SERVERFAULT The COM+ Catalog Server threw an exception during execution
0x80110600L COMQC_E_APPLICATION_NOT_QUEUED Only COM+ Applications marked “queued” can be invoked using the “queue” moniker
0x80110601L COMQC_E_NO_QUEUEABLE_INTERFACES At least one interface must be marked “queued” in order to create a queued component instance with the “queue” moniker
0x80110602L COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE MSMQ is required for the requested operation and is not installed
0x80110603L COMQC_E_NO_IPERSISTSTREAM Unable to marshal an interface that does not support IPersistStream
0x80110604L COMQC_E_BAD_MESSAGE The message is improperly formatted or was damaged in transit
0x80110605L COMQC_E_UNAUTHENTICATED An unauthenticated message was received by an application that accepts only authenticated messages
0x80110606L COMQC_E_UNTRUSTED_ENQUEUER The message was requeued or moved by a user not in the “QC Trusted User” role
0x80110701L MSDTC_E_DUPLICATE_RESOURCE Cannot create a duplicate resource of type Distributed Transaction Coordinator
0x80110808L COMADMIN_E_OBJECT_PARENT_MISSING One of the objects being inserted or updated does not belong to a valid parent collection
0x80110809L COMADMIN_E_OBJECT_DOES_NOT_EXIST One of the specified objects cannot be found
0x8011080AL COMADMIN_E_APP_NOT_RUNNING The specified application is not currently running
0x8011080BL COMADMIN_E_INVALID_PARTITION The partition(s) specified are not valid.
0x8011080DL COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE COM+ applications that run as NT service may not be pooled or recycled
0x8011080EL COMADMIN_E_USER_IN_SET One or more users are already assigned to a local partition set.
0x8011080FL COMADMIN_E_CANTRECYCLELIBRARYAPPS Library applications may not be recycled.
0x80110811L COMADMIN_E_CANTRECYCLESERVICEAPPS Applications running as NT services may not be recycled.
0x80110812L COMADMIN_E_PROCESSALREADYRECYCLED The process has already been recycled.
0x80110813L COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED A paused process may not be recycled.
0x80110814L COMADMIN_E_CANTMAKEINPROCSERVICE Library applications may not be NT services.
0x80110815L COMADMIN_E_PROGIDINUSEBYCLSID The ProgID provided to the copy operation is invalid. The ProgID is in use by another registered CLSID.
0x80110816L COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET The partition specified as default is not a member of the partition set.
0x80110817L COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED A recycled process may not be paused.
0x80110818L COMADMIN_E_PARTITION_ACCESSDENIED Access to the specified partition is denied.
0x80110819L COMADMIN_E_PARTITION_MSI_ONLY Only Application Files (*.MSI files) can be installed into partitions.
0x8011081AL COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT Applications containing one or more legacy components may not be exported to 1.0 format.
0x8011081BL COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS Legacy components may not exist in non-base partitions.
0x8011081CL COMADMIN_E_COMP_MOVE_SOURCE A component cannot be moved (or copied) from the System Application
0x8011081DL COMADMIN_E_COMP_MOVE_DEST A component cannot be moved (or copied) to the System Application
0x8011081EL COMADMIN_E_COMP_MOVE_PRIVATE A private component cannot be moved (or copied) to a library application or to the base partition
0x8011081FL COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET The Base Application Partition exists in all partition sets and cannot be removed.
0x80110820L COMADMIN_E_CANNOT_ALIAS_EVENTCLASS Alas
0x80110821L COMADMIN_E_PRIVATE_ACCESSDENIED Access is denied because the component is private.
0x80110822L COMADMIN_E_SAFERINVALID The specified SAFER level is invalid.
0x80110823L COMADMIN_E_REGISTRY_ACCESSDENIED The specified user cannot write to the system registry
0x80110824L COMADMIN_E_PARTITIONS_DISABLED COM+ partitions are currently disabled.
0x001B0000L WER_S_REPORT_DEBUG Debugger was attached.
0x001B0001L WER_S_REPORT_UPLOADED Report was uploaded.
0x001B0002L WER_S_REPORT_QUEUED Report was queued.
0x001B0003L WER_S_DISABLED Reporting was disabled.
0x001B0004L WER_S_SUSPENDED_UPLOAD Reporting was temporarily suspended.
0x001B0005L WER_S_DISABLED_QUEUE Report was not queued to queuing being disabled.
0x001B0006L WER_S_DISABLED_ARCHIVE Report was uploaded
0x001B0007L WER_S_REPORT_ASYNC Reporting was successfully spun off as an asynchronous operation.
0x001B0008L WER_S_IGNORE_ASSERT_INSTANCE The assertion was handled.
0x001B0009L WER_S_IGNORE_ALL_ASSERTS The assertion was handled and added to a permanent ignore list.
0x001B000AL WER_S_ASSERT_CONTINUE The assertion was resumed as unhandled.
0x001B000BL WER_S_THROTTLED Report was throttled.
0x001B000CL WER_S_REPORT_UPLOADED_CAB Report was uploaded with cab.
0x801B8000L WER_E_CRASH_FAILURE Crash reporting failed.
0x801B8001L WER_E_CANCELED Report aborted due to user cancellation.
0x801B8002L WER_E_NETWORK_FAILURE Report aborted due to network failure.
0x801B8003L WER_E_NOT_INITIALIZED Report not initialized.
0x801B8004L WER_E_ALREADY_REPORTING Reporting is already in progress for the specified process.
0x801B8005L WER_E_DUMP_THROTTLED Dump not generated due to a throttle.
0x801B8006L WER_E_INSUFFICIENT_CONSENT Operation failed due to insufficient user consent.
0x801B8007L WER_E_TOO_HEAVY Report aborted due to performance criteria.
0x001F0001L ERROR_FLT_IO_COMPLETE The IO was completed by a filter.
0x801F0001L ERROR_FLT_NO_HANDLER_DEFINED A handler was not defined by the filter for this operation.
0x801F0002L ERROR_FLT_CONTEXT_ALREADY_DEFINED A context is already defined for this object.
0x801F0003L ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST Asynchronous requests are not valid for this operation.
0x801F0004L ERROR_FLT_DISALLOW_FAST_IO Disallow the Fast IO path for this operation.
0x801F0005L ERROR_FLT_INVALID_NAME_REQUEST An invalid name request was made. The name requested cannot be retrieved at this time.
0x801F0006L ERROR_FLT_NOT_SAFE_TO_POST_OPERATION Posting this operation to a worker thread for further processing is not safe at this time because it could lead to a system deadlock.
0x801F0007L ERROR_FLT_NOT_INITIALIZED The Filter Manager was not initialized when a filter tried to register. Make sure that the Filter Manager is getting loaded as a driver.
0x801F0008L ERROR_FLT_FILTER_NOT_READY The filter is not ready for attachment to volumes because it has not finished initializing (FltStartFiltering has not been called).
0x801F0009L ERROR_FLT_POST_OPERATION_CLEANUP The filter must cleanup any operation specific context at this time because it is being removed from the system before the operation is completed by the lower drivers.
0x801F000AL ERROR_FLT_INTERNAL_ERROR The Filter Manager had an internal error from which it cannot recover
0x801F000BL ERROR_FLT_DELETING_OBJECT The object specified for this action is in the process of being deleted
0x801F000CL ERROR_FLT_MUST_BE_NONPAGED_POOL Non-paged pool must be used for this type of context.
0x801F000DL ERROR_FLT_DUPLICATE_ENTRY A duplicate handler definition has been provided for an operation.
0x801F000EL ERROR_FLT_CBDQ_DISABLED The callback data queue has been disabled.
0x801F000FL ERROR_FLT_DO_NOT_ATTACH Do not attach the filter to the volume at this time.
0x801F0010L ERROR_FLT_DO_NOT_DETACH Do not detach the filter from the volume at this time.
0x801F0011L ERROR_FLT_INSTANCE_ALTITUDE_COLLISION An instance already exists at this altitude on the volume specified.
0x801F0012L ERROR_FLT_INSTANCE_NAME_COLLISION An instance already exists with this name on the volume specified.
0x801F0013L ERROR_FLT_FILTER_NOT_FOUND The system could not find the filter specified.
0x801F0014L ERROR_FLT_VOLUME_NOT_FOUND The system could not find the volume specified.
0x801F0015L ERROR_FLT_INSTANCE_NOT_FOUND The system could not find the instance specified.
0x801F0016L ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND No registered context allocation definition was found for the given request.
0x801F0017L ERROR_FLT_INVALID_CONTEXT_REGISTRATION An invalid parameter was specified during context registration.
0x801F0018L ERROR_FLT_NAME_CACHE_MISS The name requested was not found in Filter Manager’s name cache and could not be retrieved from the file system.
0x801F0019L ERROR_FLT_NO_DEVICE_OBJECT The requested device object does not exist for the given volume.
0x801F001AL ERROR_FLT_VOLUME_ALREADY_MOUNTED The specified volume is already mounted.
0x801F001BL ERROR_FLT_ALREADY_ENLISTED The specified Transaction Context is already enlisted in a transaction
0x801F001CL ERROR_FLT_CONTEXT_ALREADY_LINKED The specified context is already attached to another object
0x801F0020L ERROR_FLT_NO_WAITER_FOR_REPLY No waiter is present for the filter’s reply to this message.
0x801F0023L ERROR_FLT_REGISTRATION_BUSY The filesystem database resource is in use. Registration cannot complete at this time.
0x80260001L ERROR_HUNG_DISPLAY_DRIVER_THREAD The %hs display driver has stopped working normally. Save your work and reboot the system to restore full display functionality. The next time you reboot the machine a dialog will be displayed giving you a chance to report this failure to Microsoft.
0x80263001L DWM_E_COMPOSITIONDISABLED {Desktop composition is disabled} The operation could not be completed because desktop composition is disabled.
0x80263002L DWM_E_REMOTING_NOT_SUPPORTED {Some desktop composition APIs are not supported while remoting} The operation is not supported while running in a remote session.
0x80263003L DWM_E_NO_REDIRECTION_SURFACE_AVAILABLE {No DWM redirection surface is available} The DWM was unable to provide a redirection surface to complete the DirectX present.
0x80263004L DWM_E_NOT_QUEUING_PRESENTS {DWM is not queuing presents for the specified window} The window specified is not currently using queued presents.
0x80263005L DWM_E_ADAPTER_NOT_FOUND {The adapter specified by the LUID is not found} DWM can not find the adapter specified by the LUID.
0x00263005L DWM_S_GDI_REDIRECTION_SURFACE {GDI redirection surface was returned} GDI redirection surface of the top level window was returned.
0x80263007L DWM_E_TEXTURE_TOO_LARGE {Redirection surface can not be created. The size of the surface is larger than what is supported on this machine} Redirection surface can not be created. The size of the surface is larger than what is supported on this machine.
0x00263008L DWM_S_GDI_REDIRECTION_SURFACE_BLT_VIA_GDI {GDI redirection surface is either on a different adapter or in system memory. Perform blt via GDI} GDI redirection surface is either on a different adapter or in system memory. Perform blt via GDI.
0x00261001L ERROR_MONITOR_NO_DESCRIPTOR Monitor descriptor could not be obtained.
0x00261002L ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT Format of the obtained monitor descriptor is not supported by this release.
0xC0261003L ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM Checksum of the obtained monitor descriptor is invalid.
0xC0261004L ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK Monitor descriptor contains an invalid standard timing block.
0xC0261005L ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED WMI data block registration failed for one of the MSMonitorClass WMI subclasses.
0xC0261006L ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK Provided monitor descriptor block is either corrupted or does not contain monitor’s detailed serial number.
0xC0261007L ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK Provided monitor descriptor block is either corrupted or does not contain monitor’s user friendly name.
0xC0261008L ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA There is no monitor descriptor data at the specified (offset
0xC0261009L ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK Monitor descriptor contains an invalid detailed timing block.
0xC026100AL ERROR_MONITOR_INVALID_MANUFACTURE_DATE Monitor descriptor contains invalid manufacture date.
0xC0262000L ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER Exclusive mode ownership is needed to create unmanaged primary allocation.
0xC0262001L ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER The driver needs more DMA buffer space in order to complete the requested operation.
0xC0262002L ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER Specified display adapter handle is invalid.
0xC0262003L ERROR_GRAPHICS_ADAPTER_WAS_RESET Specified display adapter and all of its state has been reset.
0xC0262004L ERROR_GRAPHICS_INVALID_DRIVER_MODEL The driver stack doesn’t match the expected driver model.
0xC0262005L ERROR_GRAPHICS_PRESENT_MODE_CHANGED Present happened but ended up into the changed desktop mode
0xC0262006L ERROR_GRAPHICS_PRESENT_OCCLUDED Nothing to present due to desktop occlusion
0xC0262007L ERROR_GRAPHICS_PRESENT_DENIED Not able to present due to denial of desktop access
0xC0262008L ERROR_GRAPHICS_CANNOTCOLORCONVERT Not able to present with color conversion
0xC0262009L ERROR_GRAPHICS_DRIVER_MISMATCH The kernel driver detected a version mismatch between it and the user mode driver.
0x4026200AL ERROR_GRAPHICS_PARTIAL_DATA_POPULATED Specified buffer is not big enough to contain entire requested dataset. Partial data populated up to the size of the buffer. Caller needs to provide buffer of size as specified in the partially populated buffer’s content (interface specific).
0xC026200BL ERROR_GRAPHICS_PRESENT_REDIRECTION_DISABLED Present redirection is disabled (desktop windowing management subsystem is off).
0xC026200CL ERROR_GRAPHICS_PRESENT_UNOCCLUDED Previous exclusive VidPn source owner has released its ownership
0xC026200DL ERROR_GRAPHICS_WINDOWDC_NOT_AVAILABLE Window DC is not available for presentation
0xC026200EL ERROR_GRAPHICS_WINDOWLESS_PRESENT_DISABLED Windowless present is disabled (desktop windowing management subsystem is off).
0xC026200FL ERROR_GRAPHICS_PRESENT_INVALID_WINDOW Window handle is invalid
0xC0262010L ERROR_GRAPHICS_PRESENT_BUFFER_NOT_BOUND No buffer is bound to composition surface
0xC0262011L ERROR_GRAPHICS_VAIL_STATE_CHANGED Vail state has been changed
0xC0262012L ERROR_GRAPHICS_INDIRECT_DISPLAY_ABANDON_SWAPCHAIN Notifying indirect display UMDF class driver to abandon current swapchain.
0xC0262013L ERROR_GRAPHICS_INDIRECT_DISPLAY_DEVICE_STOPPED Notifying indirect display UMDF class driver that indirect display device has been stopped.
0xC0262014L ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_CREATE_SUPERWETINK_MESSAGE Failed to send Create Vail Super Wet Ink message.
0xC0262015L ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_DESTROY_SUPERWETINK_MESSAGE Failed to send Destroy Vail Super Wet Ink message.
0xC0262100L ERROR_GRAPHICS_NO_VIDEO_MEMORY Not enough video memory available to complete the operation.
0xC0262101L ERROR_GRAPHICS_CANT_LOCK_MEMORY Couldn’t probe and lock the underlying memory of an allocation.
0xC0262102L ERROR_GRAPHICS_ALLOCATION_BUSY The allocation is currently busy.
0xC0262103L ERROR_GRAPHICS_TOO_MANY_REFERENCES An object being referenced has reach the maximum reference count already and can’t be reference further.
0xC0262104L ERROR_GRAPHICS_TRY_AGAIN_LATER A problem couldn’t be solved due to some currently existing condition. The problem should be tried again later.
0xC0262105L ERROR_GRAPHICS_TRY_AGAIN_NOW A problem couldn’t be solved due to some currently existing condition. The problem should be tried again immediately.
0xC0262106L ERROR_GRAPHICS_ALLOCATION_INVALID The allocation is invalid.
0xC0262107L ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE No more unswizzling aperture are currently available.
0xC0262108L ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED The current allocation can’t be unswizzled by an aperture.
0xC0262109L ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION The request failed because a pinned allocation can’t be evicted.
0xC0262110L ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE The allocation can’t be used from its current segment location for the specified operation.
0xC0262111L ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION A locked allocation can’t be used in the current command buffer.
0xC0262112L ERROR_GRAPHICS_ALLOCATION_CLOSED The allocation being referenced has been closed permanently.
0xC0262113L ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE An invalid allocation instance is being referenced.
0xC0262114L ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE An invalid allocation handle is being referenced.
0xC0262115L ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE The allocation being referenced doesn’t belong to the current device.
0xC0262116L ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST The specified allocation lost its content.
0xC0262200L ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE GPU exception is detected on the given device. The device is not able to be scheduled.
0x40262201L ERROR_GRAPHICS_SKIP_ALLOCATION_PREPARATION Skip preparation of allocations referenced by the DMA buffer.
0xC0262300L ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY Specified VidPN topology is invalid.
0xC0262301L ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED Specified VidPN topology is valid but is not supported by this model of the display adapter.
0xC0262302L ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED Specified VidPN topology is valid but is not supported by the display adapter at this time
0xC0262303L ERROR_GRAPHICS_INVALID_VIDPN Specified VidPN handle is invalid.
0xC0262304L ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE Specified video present source is invalid.
0xC0262305L ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET Specified video present target is invalid.
0xC0262306L ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED Specified VidPN modality is not supported (e.g. at least two of the pinned modes are not cofunctional).
0x00262307L ERROR_GRAPHICS_MODE_NOT_PINNED No mode is pinned on the specified VidPN source/target.
0xC0262308L ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET Specified VidPN source mode set is invalid.
0xC0262309L ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET Specified VidPN target mode set is invalid.
0xC026230AL ERROR_GRAPHICS_INVALID_FREQUENCY Specified video signal frequency is invalid.
0xC026230BL ERROR_GRAPHICS_INVALID_ACTIVE_REGION Specified video signal active region is invalid.
0xC026230CL ERROR_GRAPHICS_INVALID_TOTAL_REGION Specified video signal total region is invalid.
0xC0262310L ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE Specified video present source mode is invalid.
0xC0262311L ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE Specified video present target mode is invalid.
0xC0262312L ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET Pinned mode must remain in the set on VidPN’s cofunctional modality enumeration.
0xC0262313L ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY Specified video present path is already in VidPN’s topology.
0xC0262314L ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET Specified mode is already in the mode set.
0xC0262315L ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET Specified video present source set is invalid.
0xC0262316L ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET Specified video present target set is invalid.
0xC0262317L ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET Specified video present source is already in the video present source set.
0xC0262318L ERROR_GRAPHICS_TARGET_ALREADY_IN_SET Specified video present target is already in the video present target set.
0xC0262319L ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH Specified VidPN present path is invalid.
0xC026231AL ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY Miniport has no recommendation for augmentation of the specified VidPN’s topology.
0xC026231BL ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET Specified monitor frequency range set is invalid.
0xC026231CL ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE Specified monitor frequency range is invalid.
0xC026231DL ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET Specified frequency range is not in the specified monitor frequency range set.
0x0026231EL ERROR_GRAPHICS_NO_PREFERRED_MODE Specified mode set does not specify preference for one of its modes.
0xC026231FL ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET Specified frequency range is already in the specified monitor frequency range set.
0xC0262320L ERROR_GRAPHICS_STALE_MODESET Specified mode set is stale. Please reacquire the new mode set.
0xC0262321L ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET Specified monitor source mode set is invalid.
0xC0262322L ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE Specified monitor source mode is invalid.
0xC0262323L ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN Miniport does not have any recommendation regarding the request to provide a functional VidPN given the current display adapter configuration.
0xC0262324L ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE ID of the specified mode is already used by another mode in the set.
0xC0262325L ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION System failed to determine a mode that is supported by both the display adapter and the monitor connected to it.
0xC0262326L ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES Number of video present targets must be greater than or equal to the number of video present sources.
0xC0262327L ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY Specified present path is not in VidPN’s topology.
0xC0262328L ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE Display adapter must have at least one video present source.
0xC0262329L ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET Display adapter must have at least one video present target.
0xC026232AL ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET Specified monitor descriptor set is invalid.
0xC026232BL ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR Specified monitor descriptor is invalid.
0xC026232CL ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET Specified descriptor is not in the specified monitor descriptor set.
0xC026232DL ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET Specified descriptor is already in the specified monitor descriptor set.
0xC026232EL ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE ID of the specified monitor descriptor is already used by another descriptor in the set.
0xC026232FL ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE Specified video present target subset type is invalid.
0xC0262330L ERROR_GRAPHICS_RESOURCES_NOT_RELATED Two or more of the specified resources are not related to each other
0xC0262331L ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE ID of the specified video present source is already used by another source in the set.
0xC0262332L ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE ID of the specified video present target is already used by another target in the set.
0xC0262333L ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET Specified VidPN source cannot be used because there is no available VidPN target to connect it to.
0xC0262334L ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER Newly arrived monitor could not be associated with a display adapter.
0xC0262335L ERROR_GRAPHICS_NO_VIDPNMGR Display adapter in question does not have an associated VidPN manager.
0xC0262336L ERROR_GRAPHICS_NO_ACTIVE_VIDPN VidPN manager of the display adapter in question does not have an active VidPN.
0xC0262337L ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY Specified VidPN topology is stale. Please reacquire the new topology.
0xC0262338L ERROR_GRAPHICS_MONITOR_NOT_CONNECTED There is no monitor connected on the specified video present target.
0xC0262339L ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY Specified source is not part of the specified VidPN’s topology.
0xC026233AL ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE Specified primary surface size is invalid.
0xC026233BL ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE Specified visible region size is invalid.
0xC026233CL ERROR_GRAPHICS_INVALID_STRIDE Specified stride is invalid.
0xC026233DL ERROR_GRAPHICS_INVALID_PIXELFORMAT Specified pixel format is invalid.
0xC026233EL ERROR_GRAPHICS_INVALID_COLORBASIS Specified color basis is invalid.
0xC026233FL ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE Specified pixel value access mode is invalid.
0xC0262340L ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY Specified target is not part of the specified VidPN’s topology.
0xC0262341L ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT Failed to acquire display mode management interface.
0xC0262342L ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE Specified VidPN source is already owned by a DMM client and cannot be used until that client releases it.
0xC0262343L ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN Specified VidPN is active and cannot be accessed.
0xC0262344L ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL Specified VidPN present path importance ordinal is invalid.
0xC0262345L ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION Specified VidPN present path content geometry transformation is invalid.
0xC0262346L ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED Specified content geometry transformation is not supported on the respective VidPN present path.
0xC0262347L ERROR_GRAPHICS_INVALID_GAMMA_RAMP Specified gamma ramp is invalid.
0xC0262348L ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED Specified gamma ramp is not supported on the respective VidPN present path.
0xC0262349L ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED Multi-sampling is not supported on the respective VidPN present path.
0xC026234AL ERROR_GRAPHICS_MODE_NOT_IN_MODESET Specified mode is not in the specified mode set.
0x0026234BL ERROR_GRAPHICS_DATASET_IS_EMPTY Specified data set (e.g. mode set
0x0026234CL ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET Specified data set (e.g. mode set
0xC026234DL ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON Specified VidPN topology recommendation reason is invalid.
0xC026234EL ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE Specified VidPN present path content type is invalid.
0xC026234FL ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE Specified VidPN present path copy protection type is invalid.
0xC0262350L ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS No more than one unassigned mode set can exist at any given time for a given VidPN source/target.
0x00262351L ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED Specified content transformation is not pinned on the specified VidPN present path.
0xC0262352L ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING Specified scanline ordering type is invalid.
0xC0262353L ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED Topology changes are not allowed for the specified VidPN.
0xC0262354L ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS All available importance ordinals are already used in specified topology.
0xC0262355L ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT Specified primary surface has a different private format attribute than the current primary surface
0xC0262356L ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM Specified mode pruning algorithm is invalid
0xC0262357L ERROR_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN Specified monitor capability origin is invalid.
0xC0262358L ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT Specified monitor frequency range constraint is invalid.
0xC0262359L ERROR_GRAPHICS_MAX_NUM_PATHS_REACHED Maximum supported number of present paths has been reached.
0xC026235AL ERROR_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION Miniport requested that augmentation be cancelled for the specified source of the specified VidPN’s topology.
0xC026235BL ERROR_GRAPHICS_INVALID_CLIENT_TYPE Specified client type was not recognized.
0xC026235CL ERROR_GRAPHICS_CLIENTVIDPN_NOT_SET Client VidPN is not set on this adapter (e.g. no user mode initiated mode changes took place on this adapter yet).
0xC0262400L ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED Specified display adapter child device already has an external device connected to it.
0xC0262401L ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED Specified display adapter child device does not support descriptor exposure.
0x4026242FL ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS Child device presence was not reliably detected.
0xC0262430L ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER The display adapter is not linked to any other adapters.
0xC0262431L ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED Lead adapter in a linked configuration was not enumerated yet.
0xC0262432L ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED Some chain adapters in a linked configuration were not enumerated yet.
0xC0262433L ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY The chain of linked adapters is not ready to start because of an unknown failure.
0xC0262434L ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED An attempt was made to start a lead link display adapter when the chain links were not started yet.
0xC0262435L ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON An attempt was made to power up a lead link display adapter when the chain links were powered down.
0xC0262436L ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE The adapter link was found to be in an inconsistent state. Not all adapters are in an expected PNP/Power state.
0x40262437L ERROR_GRAPHICS_LEADLINK_START_DEFERRED Starting the leadlink adapter has been deferred temporarily.
0xC0262438L ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER The driver trying to start is not the same as the driver for the POSTed display adapter.
0x40262439L ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY The display adapter is being polled for children too frequently at the same polling level.
0x4026243AL ERROR_GRAPHICS_START_DEFERRED Starting the adapter has been deferred temporarily.
0xC026243BL ERROR_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED An operation is being attempted that requires the display adapter to be in a quiescent state.
0x4026243CL ERROR_GRAPHICS_DEPENDABLE_CHILD_STATUS We can depend on the child device presence returned by the driver.
0xC0262500L ERROR_GRAPHICS_OPM_NOT_SUPPORTED The driver does not support OPM.
0xC0262501L ERROR_GRAPHICS_COPP_NOT_SUPPORTED The driver does not support COPP.
0xC0262502L ERROR_GRAPHICS_UAB_NOT_SUPPORTED The driver does not support UAB.
0xC0262503L ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS The specified encrypted parameters are invalid.
0xC0262505L ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST The GDI display device passed to this function does not have any active video outputs.
0xC026250BL ERROR_GRAPHICS_OPM_INTERNAL_ERROR An internal error caused this operation to fail.
0xC026250CL ERROR_GRAPHICS_OPM_INVALID_HANDLE The function failed because the caller passed in an invalid OPM user mode handle.
0xC026250EL ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH A certificate could not be returned because the certificate buffer passed to the function was too small.
0xC026250FL ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED A video output could not be created because the frame buffer is in spanning mode.
0xC0262510L ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED A video output could not be created because the frame buffer is in theater mode.
0xC0262511L ERROR_GRAPHICS_PVP_HFS_FAILED The function failed because the display adapter’s Hardware Functionality Scan failed to validate the graphics hardware.
0xC0262512L ERROR_GRAPHICS_OPM_INVALID_SRM The HDCP System Renewability Message passed to this function did not comply with section 5 of the HDCP 1.1 specification.
0xC0262513L ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP The video output cannot enable the High-bandwidth Digital Content Protection (HDCP) System because it does not support HDCP.
0xC0262514L ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP The video output cannot enable Analogue Copy Protection (ACP) because it does not support ACP.
0xC0262515L ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA The video output cannot enable the Content Generation Management System Analogue (CGMS-A) protection technology because it does not support CGMS-A.
0xC0262516L ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET The IOPMVideoOutput::GetInformation method cannot return the version of the SRM being used because the application never successfully passed an SRM to the video output.
0xC0262517L ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH The IOPMVideoOutput::Configure method cannot enable the specified output protection technology because the output’s screen resolution is too high.
0xC0262518L ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE The IOPMVideoOutput::Configure method cannot enable HDCP because the display adapter’s HDCP hardware is already being used by other physical outputs.
0xC026251AL ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS The operating system asynchronously destroyed this OPM video output because the operating system’s state changed. This error typically occurs because the monitor PDO associated with this video output was removed
0xC026251BL ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS The method failed because the session is changing its type. No IOPMVideoOutput methods can be called when a session is changing its type. There are currently three types of sessions: console
0xC026251CL ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS Either the IOPMVideoOutput::COPPCompatibleGetInformation
0xC026251DL ERROR_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST The IOPMVideoOutput::GetInformation and IOPMVideoOutput::COPPCompatibleGetInformation methods return this error if the passed in sequence number is not the expected sequence number or the passed in OMAC value is invalid.
0xC026251EL ERROR_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR The method failed because an unexpected error occurred inside of a display driver.
0xC026251FL ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS Either the IOPMVideoOutput::COPPCompatibleGetInformation
0xC0262520L ERROR_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED The IOPMVideoOutput::COPPCompatibleGetInformation or IOPMVideoOutput::Configure method failed because the display driver does not support the OPM_GET_ACP_AND_CGMSA_SIGNALING and OPM_SET_ACP_AND_CGMSA_SIGNALING GUIDs.
0xC0262521L ERROR_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST The IOPMVideoOutput::Configure function returns this error code if the passed in sequence number is not the expected sequence number or the passed in OMAC value is invalid.
0xC0262580L ERROR_GRAPHICS_I2C_NOT_SUPPORTED The monitor connected to the specified video output does not have an I2C bus.
0xC0262581L ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST No device on the I2C bus has the specified address.
0xC0262582L ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA An error occurred while transmitting data to the device on the I2C bus.
0xC0262583L ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA An error occurred while receiving data from the device on the I2C bus.
0xC0262584L ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED The monitor does not support the specified VCP code.
0xC0262585L ERROR_GRAPHICS_DDCCI_INVALID_DATA The data received from the monitor is invalid.
0xC0262586L ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE The function failed because a monitor returned an invalid Timing Status byte when the operating system used the DDC/CI Get Timing Report & Timing Message command to get a timing report from a monitor.
0xC0262587L ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING The monitor returned a DDC/CI capabilities string which did not comply with the ACCESS.bus 3.0
0xC0262588L ERROR_GRAPHICS_MCA_INTERNAL_ERROR An internal Monitor Configuration API error occurred.
0xC0262589L ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND An operation failed because a DDC/CI message had an invalid value in its command field.
0xC026258AL ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH An error occurred because the field length of a DDC/CI message contained an invalid value.
0xC026258BL ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM An error occurred because the checksum field in a DDC/CI message did not match the message’s computed checksum value. This error implies that the data was corrupted while it was being transmitted from a monitor to a computer.
0xC026258CL ERROR_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE This function failed because an invalid monitor handle was passed to it.
0xC026258DL ERROR_GRAPHICS_MONITOR_NO_LONGER_EXISTS The operating system asynchronously destroyed the monitor which corresponds to this handle because the operating system’s state changed. This error typically occurs because the monitor PDO associated with this handle was removed
0xC02625D8L ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE A continuous VCP code’s current value is greater than its maximum value. This error code indicates that a monitor returned an invalid value.
0xC02625D9L ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION The monitor’s VCP Version (0xDF) VCP code returned an invalid version value.
0xC02625DAL ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION The monitor does not comply with the MCCS specification it claims to support.
0xC02625DBL ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH The MCCS version in a monitor’s mccs_ver capability does not match the MCCS version the monitor reports when the VCP Version (0xDF) VCP code is used.
0xC02625DCL ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION The Monitor Configuration API only works with monitors which support the MCCS 1.0 specification
0xC02625DEL ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED The monitor returned an invalid monitor technology type. CRT
0xC02625DFL ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE SetMonitorColorTemperature()’s caller passed a color temperature to it which the current monitor did not support. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.
0xC02625E0L ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED This function can only be used if a program is running in the local console session. It cannot be used if the program is running on a remote desktop session or on a terminal server session.
0xC02625E1L ERROR_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME This function cannot find an actual GDI display device which corresponds to the specified GDI display device name.
0xC02625E2L ERROR_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP The function failed because the specified GDI display device was not attached to the Windows desktop.
0xC02625E3L ERROR_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED This function does not support GDI mirroring display devices because GDI mirroring display devices do not have any physical monitors associated with them.
0xC02625E4L ERROR_GRAPHICS_INVALID_POINTER The function failed because an invalid pointer parameter was passed to it. A pointer parameter is invalid if it is NULL
0xC02625E5L ERROR_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE The function failed because the specified GDI device did not have any monitors associated with it.
0xC02625E6L ERROR_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL An array passed to the function cannot hold all of the data that the function must copy into the array.
0xC02625E7L ERROR_GRAPHICS_INTERNAL_ERROR An internal error caused an operation to fail.
0xC02605E8L ERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS The function failed because the current session is changing its type. This function cannot be called when the current session is changing its type. There are currently three types of sessions: console
0x80270001L NAP_E_INVALID_PACKET The NAP SoH packet is invalid.
0x80270002L NAP_E_MISSING_SOH An SoH was missing from the NAP packet.
0x80270003L NAP_E_CONFLICTING_ID The entity ID conflicts with an already registered id.
0x80270004L NAP_E_NO_CACHED_SOH No cached SoH is present.
0x80270005L NAP_E_STILL_BOUND The entity is still bound to the NAP system.
0x80270006L NAP_E_NOT_REGISTERED The entity is not registered with the NAP system.
0x80270007L NAP_E_NOT_INITIALIZED The entity is not initialized with the NAP system.
0x80270008L NAP_E_MISMATCHED_ID The correlation id in the SoH-Request and SoH-Response do not match up.
0x80270009L NAP_E_NOT_PENDING Completion was indicated on a request that is not currently pending.
0x8027000AL NAP_E_ID_NOT_FOUND The NAP component’s id was not found.
0x8027000BL NAP_E_MAXSIZE_TOO_SMALL The maximum size of the connection is too small for an SoH packet.
0x8027000CL NAP_E_SERVICE_NOT_RUNNING The NapAgent service is not running.
0x0027000DL NAP_S_CERT_ALREADY_PRESENT A certificate is already present in the cert store.
0x8027000EL NAP_E_ENTITY_DISABLED The entity is disabled with the NapAgent service.
0x8027000FL NAP_E_NETSH_GROUPPOLICY_ERROR Group Policy is not configured.
0x80270010L NAP_E_TOO_MANY_CALLS Too many simultaneous calls.
0x80270011L NAP_E_SHV_CONFIG_EXISTED SHV configuration already existed.
0x80270012L NAP_E_SHV_CONFIG_NOT_FOUND SHV configuration is not found.
0x80270013L NAP_E_SHV_TIMEOUT SHV timed out on the request.
0x80280000L TPM_E_ERROR_MASK This is an error mask to convert TPM hardware errors to win errors.
0x80280001L TPM_E_AUTHFAIL TPM 1.2: Authentication failed.
0x80280002L TPM_E_BADINDEX TPM 1.2: The index to a PCR
0x80280003L TPM_E_BAD_PARAMETER TPM 1.2: One or more parameter is bad.
0x80280004L TPM_E_AUDITFAILURE TPM 1.2: An operation completed successfully but the auditing of that operation failed.
0x80280005L TPM_E_CLEAR_DISABLED TPM 1.2: The clear disable flag is set and all clear operations now require physical access.
0x80280006L TPM_E_DEACTIVATED TPM 1.2: Activate the Trusted Platform Module (TPM).
0x80280007L TPM_E_DISABLED TPM 1.2: Enable the Trusted Platform Module (TPM).
0x80280008L TPM_E_DISABLED_CMD TPM 1.2: The target command has been disabled.
0x80280009L TPM_E_FAIL TPM 1.2: The operation failed.
0x8028000AL TPM_E_BAD_ORDINAL TPM 1.2: The ordinal was unknown or inconsistent.
0x8028000BL TPM_E_INSTALL_DISABLED TPM 1.2: The ability to install an owner is disabled.
0x8028000CL TPM_E_INVALID_KEYHANDLE TPM 1.2: The key handle cannot be interpreted.
0x8028000DL TPM_E_KEYNOTFOUND TPM 1.2: The key handle points to an invalid key.
0x8028000EL TPM_E_INAPPROPRIATE_ENC TPM 1.2: Unacceptable encryption scheme.
0x8028000FL TPM_E_MIGRATEFAIL TPM 1.2: Migration authorization failed.
0x80280010L TPM_E_INVALID_PCR_INFO TPM 1.2: PCR information could not be interpreted.
0x80280011L TPM_E_NOSPACE TPM 1.2: No room to load key.
0x80280012L TPM_E_NOSRK TPM 1.2: There is no Storage Root Key (SRK) set.
0x80280013L TPM_E_NOTSEALED_BLOB TPM 1.2: An encrypted blob is invalid or was not created by this TPM.
0x80280014L TPM_E_OWNER_SET TPM 1.2: The Trusted Platform Module (TPM) already has an owner.
0x80280015L TPM_E_RESOURCES TPM 1.2: The TPM has insufficient internal resources to perform the requested action.
0x80280016L TPM_E_SHORTRANDOM TPM 1.2: A random string was too short.
0x80280017L TPM_E_SIZE TPM 1.2: The TPM does not have the space to perform the operation.
0x80280018L TPM_E_WRONGPCRVAL TPM 1.2: The named PCR value does not match the current PCR value.
0x80280019L TPM_E_BAD_PARAM_SIZE TPM 1.2: The paramSize argument to the command has the incorrect value .
0x8028001AL TPM_E_SHA_THREAD TPM 1.2: There is no existing SHA-1 thread.
0x8028001BL TPM_E_SHA_ERROR TPM 1.2: The calculation is unable to proceed because the existing SHA-1 thread has already encountered an error.
0x8028001CL TPM_E_FAILEDSELFTEST TPM 1.2: The TPM hardware device reported a failure during its internal self test. Try restarting the computer to resolve the problem. If the problem continues
0x8028001DL TPM_E_AUTH2FAIL TPM 1.2: The authorization for the second key in a 2 key function failed authorization.
0x8028001EL TPM_E_BADTAG TPM 1.2: The tag value sent to for a command is invalid.
0x8028001FL TPM_E_IOERROR TPM 1.2: An IO error occurred transmitting information to the TPM.
0x80280020L TPM_E_ENCRYPT_ERROR TPM 1.2: The encryption process had a problem.
0x80280021L TPM_E_DECRYPT_ERROR TPM 1.2: The decryption process did not complete.
0x80280022L TPM_E_INVALID_AUTHHANDLE TPM 1.2: An invalid handle was used.
0x80280023L TPM_E_NO_ENDORSEMENT TPM 1.2: The TPM does not have an Endorsement Key (EK) installed.
0x80280024L TPM_E_INVALID_KEYUSAGE TPM 1.2: The usage of a key is not allowed.
0x80280025L TPM_E_WRONG_ENTITYTYPE TPM 1.2: The submitted entity type is not allowed.
0x80280026L TPM_E_INVALID_POSTINIT TPM 1.2: The command was received in the wrong sequence relative to TPM_Init and a subsequent TPM_Startup.
0x80280027L TPM_E_INAPPROPRIATE_SIG TPM 1.2: Signed data cannot include additional DER information.
0x80280028L TPM_E_BAD_KEY_PROPERTY TPM 1.2: The key properties in TPM_KEY_PARMs are not supported by this TPM.
0x80280029L TPM_E_BAD_MIGRATION TPM 1.2: The migration properties of this key are incorrect.
0x8028002AL TPM_E_BAD_SCHEME TPM 1.2: The signature or encryption scheme for this key is incorrect or not permitted in this situation.
0x8028002BL TPM_E_BAD_DATASIZE TPM 1.2: The size of the data (or blob) parameter is bad or inconsistent with the referenced key.
0x8028002CL TPM_E_BAD_MODE TPM 1.2: A mode parameter is bad
0x8028002DL TPM_E_BAD_PRESENCE TPM 1.2: Either the physicalPresence or physicalPresenceLock bits have the wrong value.
0x8028002EL TPM_E_BAD_VERSION TPM 1.2: The TPM cannot perform this version of the capability.
0x8028002FL TPM_E_NO_WRAP_TRANSPORT TPM 1.2: The TPM does not allow for wrapped transport sessions.
0x80280030L TPM_E_AUDITFAIL_UNSUCCESSFUL TPM 1.2: TPM audit construction failed and the underlying command was returning a failure code also.
0x80280031L TPM_E_AUDITFAIL_SUCCESSFUL TPM 1.2: TPM audit construction failed and the underlying command was returning success.
0x80280032L TPM_E_NOTRESETABLE TPM 1.2: Attempt to reset a PCR register that does not have the resettable attribute.
0x80280033L TPM_E_NOTLOCAL TPM 1.2: Attempt to reset a PCR register that requires locality and locality modifier not part of command transport.
0x80280034L TPM_E_BAD_TYPE TPM 1.2: Make identity blob not properly typed.
0x80280035L TPM_E_INVALID_RESOURCE TPM 1.2: When saving context identified resource type does not match actual resource.
0x80280036L TPM_E_NOTFIPS TPM 1.2: The TPM is attempting to execute a command only available when in FIPS mode.
0x80280037L TPM_E_INVALID_FAMILY TPM 1.2: The command is attempting to use an invalid family ID.
0x80280038L TPM_E_NO_NV_PERMISSION TPM 1.2: The permission to manipulate the NV storage is not available.
0x80280039L TPM_E_REQUIRES_SIGN TPM 1.2: The operation requires a signed command.
0x8028003AL TPM_E_KEY_NOTSUPPORTED TPM 1.2: Wrong operation to load an NV key.
0x8028003BL TPM_E_AUTH_CONFLICT TPM 1.2: NV_LoadKey blob requires both owner and blob authorization.
0x8028003CL TPM_E_AREA_LOCKED TPM 1.2: The NV area is locked and not writable.
0x8028003DL TPM_E_BAD_LOCALITY TPM 1.2: The locality is incorrect for the attempted operation.
0x8028003EL TPM_E_READ_ONLY TPM 1.2: The NV area is read only and can’t be written to.
0x8028003FL TPM_E_PER_NOWRITE TPM 1.2: There is no protection on the write to the NV area.
0x80280040L TPM_E_FAMILYCOUNT TPM 1.2: The family count value does not match.
0x80280041L TPM_E_WRITE_LOCKED TPM 1.2: The NV area has already been written to.
0x80280042L TPM_E_BAD_ATTRIBUTES TPM 1.2: The NV area attributes conflict.
0x80280043L TPM_E_INVALID_STRUCTURE TPM 1.2: The structure tag and version are invalid or inconsistent.
0x80280044L TPM_E_KEY_OWNER_CONTROL TPM 1.2: The key is under control of the TPM Owner and can only be evicted by the TPM Owner.
0x80280045L TPM_E_BAD_COUNTER TPM 1.2: The counter handle is incorrect.
0x80280046L TPM_E_NOT_FULLWRITE TPM 1.2: The write is not a complete write of the area.
0x80280047L TPM_E_CONTEXT_GAP TPM 1.2: The gap between saved context counts is too large.
0x80280048L TPM_E_MAXNVWRITES TPM 1.2: The maximum number of NV writes without an owner has been exceeded.
0x80280049L TPM_E_NOOPERATOR TPM 1.2: No operator AuthData value is set.
0x8028004AL TPM_E_RESOURCEMISSING TPM 1.2: The resource pointed to by context is not loaded.
0x8028004BL TPM_E_DELEGATE_LOCK TPM 1.2: The delegate administration is locked.
0x8028004CL TPM_E_DELEGATE_FAMILY TPM 1.2: Attempt to manage a family other then the delegated family.
0x8028004DL TPM_E_DELEGATE_ADMIN TPM 1.2: Delegation table management not enabled.
0x8028004EL TPM_E_TRANSPORT_NOTEXCLUSIVE TPM 1.2: There was a command executed outside of an exclusive transport session.
0x8028004FL TPM_E_OWNER_CONTROL TPM 1.2: Attempt to context save a owner evict controlled key.
0x80280050L TPM_E_DAA_RESOURCES TPM 1.2: The DAA command has no resources available to execute the command.
0x80280051L TPM_E_DAA_INPUT_DATA0 TPM 1.2: The consistency check on DAA parameter inputData0 has failed.
0x80280052L TPM_E_DAA_INPUT_DATA1 TPM 1.2: The consistency check on DAA parameter inputData1 has failed.
0x80280053L TPM_E_DAA_ISSUER_SETTINGS TPM 1.2: The consistency check on DAA_issuerSettings has failed.
0x80280054L TPM_E_DAA_TPM_SETTINGS TPM 1.2: The consistency check on DAA_tpmSpecific has failed.
0x80280055L TPM_E_DAA_STAGE TPM 1.2: The atomic process indicated by the submitted DAA command is not the expected process.
0x80280056L TPM_E_DAA_ISSUER_VALIDITY TPM 1.2: The issuer’s validity check has detected an inconsistency.
0x80280057L TPM_E_DAA_WRONG_W TPM 1.2: The consistency check on w has failed.
0x80280058L TPM_E_BAD_HANDLE TPM 1.2: The handle is incorrect.
0x80280059L TPM_E_BAD_DELEGATE TPM 1.2: Delegation is not correct.
0x8028005AL TPM_E_BADCONTEXT TPM 1.2: The context blob is invalid.
0x8028005BL TPM_E_TOOMANYCONTEXTS TPM 1.2: Too many contexts held by the TPM.
0x8028005CL TPM_E_MA_TICKET_SIGNATURE TPM 1.2: Migration authority signature validation failure.
0x8028005DL TPM_E_MA_DESTINATION TPM 1.2: Migration destination not authenticated.
0x8028005EL TPM_E_MA_SOURCE TPM 1.2: Migration source incorrect.
0x8028005FL TPM_E_MA_AUTHORITY TPM 1.2: Incorrect migration authority.
0x80280061L TPM_E_PERMANENTEK TPM 1.2: Attempt to revoke the EK and the EK is not revocable.
0x80280062L TPM_E_BAD_SIGNATURE TPM 1.2: Bad signature of CMK ticket.
0x80280063L TPM_E_NOCONTEXTSPACE TPM 1.2: There is no room in the context list for additional contexts.
0x80280081L TPM_20_E_ASYMMETRIC TPM 2.0: Asymmetric algorithm not supported or not correct.
0x80280082L TPM_20_E_ATTRIBUTES TPM 2.0: Inconsistent attributes.
0x80280083L TPM_20_E_HASH TPM 2.0: Hash algorithm not supported or not appropriate.
0x80280084L TPM_20_E_VALUE TPM 2.0: Value is out of range or is not correct for the context.
0x80280085L TPM_20_E_HIERARCHY TPM 2.0: Hierarchy is not enabled or is not correct for the use.
0x80280087L TPM_20_E_KEY_SIZE TPM 2.0: Key size is not supported.
0x80280088L TPM_20_E_MGF TPM 2.0: Mask generation function not supported.
0x80280089L TPM_20_E_MODE TPM 2.0: Mode of operation not supported.
0x8028008AL TPM_20_E_TYPE TPM 2.0: The type of the value is not appropriate for the use.
0x8028008BL TPM_20_E_HANDLE TPM 2.0: The Handle is not correct for the use.
0x8028008CL TPM_20_E_KDF TPM 2.0: Unsupported key derivation function or function not appropriate for use.
0x8028008DL TPM_20_E_RANGE TPM 2.0: Value was out of allowed range.
0x8028008EL TPM_20_E_AUTH_FAIL TPM 2.0: The authorization HMAC check failed and DA counter incremented.
0x8028008FL TPM_20_E_NONCE TPM 2.0: Invalid nonce size.
0x80280090L TPM_20_E_PP TPM 2.0: Authorization requires assertion of PP.
0x80280092L TPM_20_E_SCHEME TPM 2.0: Unsupported or incompatible scheme.
0x80280095L TPM_20_E_SIZE TPM 2.0: Structure is wrong size.
0x80280096L TPM_20_E_SYMMETRIC TPM 2.0: Unsupported symmetric algorithm or key size
0x80280097L TPM_20_E_TAG TPM 2.0: Incorrect structure tag.
0x80280098L TPM_20_E_SELECTOR TPM 2.0: Union selector is incorrect.
0x8028009AL TPM_20_E_INSUFFICIENT TPM 2.0: The TPM was unable to unmarshal a value because there were not enough octets in the input buffer.
0x8028009BL TPM_20_E_SIGNATURE TPM 2.0: The signature is not valid.
0x8028009CL TPM_20_E_KEY TPM 2.0: Key fields are not compatible with the selected use.
0x8028009DL TPM_20_E_POLICY_FAIL TPM 2.0: A policy check failed.
0x8028009FL TPM_20_E_INTEGRITY TPM 2.0: Integrity check failed.
0x802800A0L TPM_20_E_TICKET TPM 2.0: Invalid ticket.
0x802800A1L TPM_20_E_RESERVED_BITS TPM 2.0: Reserved bits not set to zero as required.
0x802800A2L TPM_20_E_BAD_AUTH TPM 2.0: Authorization failure without DA implications.
0x802800A3L TPM_20_E_EXPIRED TPM 2.0: The policy has expired.
0x802800A4L TPM_20_E_POLICY_CC TPM 2.0: The command code in the policy is not the command code of the command or the command code in a policy command references a command that is not implemented.
0x802800A5L TPM_20_E_BINDING TPM 2.0: Public and sensitive portions of an object are not cryptographically bound.
0x802800A6L TPM_20_E_CURVE TPM 2.0: Curve not supported.
0x802800A7L TPM_20_E_ECC_POINT TPM 2.0: Point is not on the required curve.
0x80280100L TPM_20_E_INITIALIZE TPM 2.0: TPM not initialized.
0x80280101L TPM_20_E_FAILURE TPM 2.0: Commands not being accepted because of a TPM failure.
0x80280103L TPM_20_E_SEQUENCE TPM 2.0: Improper use of a sequence handle.
0x8028010BL TPM_20_E_PRIVATE TPM 2.0: TPM_RC_PRIVATE error.
0x80280119L TPM_20_E_HMAC TPM 2.0: TPM_RC_HMAC.
0x80280120L TPM_20_E_DISABLED TPM 2.0: TPM_RC_DISABLED.
0x80280121L TPM_20_E_EXCLUSIVE TPM 2.0: Command failed because audit sequence required exclusivity.
0x80280123L TPM_20_E_ECC_CURVE TPM 2.0: Unsupported ECC curve.
0x80280124L TPM_20_E_AUTH_TYPE TPM 2.0: Authorization handle is not correct for command.
0x80280125L TPM_20_E_AUTH_MISSING TPM 2.0: Command requires an authorization session for handle and is not present.
0x80280126L TPM_20_E_POLICY TPM 2.0: Policy failure in Math Operation or an invalid authPolicy value.
0x80280127L TPM_20_E_PCR TPM 2.0: PCR check fail.
0x80280128L TPM_20_E_PCR_CHANGED TPM 2.0: PCR have changed since checked.
0x8028012DL TPM_20_E_UPGRADE TPM 2.0: The TPM is not in the right mode for upgrade.
0x8028012EL TPM_20_E_TOO_MANY_CONTEXTS TPM 2.0: Context ID counter is at maximum.
0x8028012FL TPM_20_E_AUTH_UNAVAILABLE TPM 2.0: authValue or authPolicy is not available for selected entity.
0x80280130L TPM_20_E_REBOOT TPM 2.0: A _TPM_Init and Startup(CLEAR) is required before the TPM can resume operation.
0x80280131L TPM_20_E_UNBALANCED TPM 2.0: The protection algorithms (hash and symmetric) are not reasonably balanced. The digest size of the hash must be larger than the key size of the symmetric algorithm.
0x80280142L TPM_20_E_COMMAND_SIZE TPM 2.0: The TPM command’s commandSize value is inconsistent with contents of the command buffer; either the size is not the same as the bytes loaded by the hardware interface layer or the value is not large enough to hold a command header.
0x80280143L TPM_20_E_COMMAND_CODE TPM 2.0: Command code not supported.
0x80280144L TPM_20_E_AUTHSIZE TPM 2.0: The value of authorizationSize is out of range or the number of octets in the authorization Area is greater than required.
0x80280145L TPM_20_E_AUTH_CONTEXT TPM 2.0: Use of an authorization session with a context command or another command that cannot have an authorization session.
0x80280146L TPM_20_E_NV_RANGE TPM 2.0: NV offset+size is out of range.
0x80280147L TPM_20_E_NV_SIZE TPM 2.0: Requested allocation size is larger than allowed.
0x80280148L TPM_20_E_NV_LOCKED TPM 2.0: NV access locked.
0x80280149L TPM_20_E_NV_AUTHORIZATION TPM 2.0: NV access authorization fails in command actions
0x8028014AL TPM_20_E_NV_UNINITIALIZED TPM 2.0: An NV index is used before being initialized or the state saved by TPM2_Shutdown(STATE) could not be restored.
0x8028014BL TPM_20_E_NV_SPACE TPM 2.0: Insufficient space for NV allocation.
0x8028014CL TPM_20_E_NV_DEFINED TPM 2.0: NV index or persistent object already defined.
0x80280150L TPM_20_E_BAD_CONTEXT TPM 2.0: Context in TPM2_ContextLoad() is not valid.
0x80280151L TPM_20_E_CPHASH TPM 2.0: chHash value already set or not correct for use.
0x80280152L TPM_20_E_PARENT TPM 2.0: Handle for parent is not a valid parent.
0x80280153L TPM_20_E_NEEDS_TEST TPM 2.0: Some function needs testing.
0x80280154L TPM_20_E_NO_RESULT TPM 2.0: returned when an internal function cannot process a request due to an unspecified problem. This code is usually related to invalid parameters that are not properly filtered by the input unmarshaling code.
0x80280155L TPM_20_E_SENSITIVE TPM 2.0: The sensitive area did not unmarshal correctly after decryption - this code is used in lieu of the other unmarshaling errors so that an attacker cannot determine where the unmarshaling error occurred.
0x80280400L TPM_E_COMMAND_BLOCKED The command was blocked.
0x80280401L TPM_E_INVALID_HANDLE The specified handle was not found.
0x80280402L TPM_E_DUPLICATE_VHANDLE The TPM returned a duplicate handle and the command needs to be resubmitted.
0x80280403L TPM_E_EMBEDDED_COMMAND_BLOCKED The command within the transport was blocked.
0x80280404L TPM_E_EMBEDDED_COMMAND_UNSUPPORTED The command within the transport is not supported.
0x80280800L TPM_E_RETRY The TPM is too busy to respond to the command immediately
0x80280801L TPM_E_NEEDS_SELFTEST SelfTestFull has not been run.
0x80280802L TPM_E_DOING_SELFTEST The TPM is currently executing a full selftest.
0x80280803L TPM_E_DEFEND_LOCK_RUNNING The TPM is defending against dictionary attacks and is in a time-out period.
0x80280901L TPM_20_E_CONTEXT_GAP TPM 2.0: Gap for context ID is too large.
0x80280902L TPM_20_E_OBJECT_MEMORY TPM 2.0: Out of memory for object contexts.
0x80280903L TPM_20_E_SESSION_MEMORY TPM 2.0: Out of memory for session contexts.
0x80280904L TPM_20_E_MEMORY TPM 2.0: Out of shared object/session memory or need space for internal operations.
0x80280905L TPM_20_E_SESSION_HANDLES TPM 2.0: Out of session handles - a session must be flushed before a nes session may be created.
0x80280906L TPM_20_E_OBJECT_HANDLES TPM 2.0: Out of object handles - the handle space for objects is depleted and a reboot is required.
0x80280907L TPM_20_E_LOCALITY TPM 2.0: Bad locality.
0x80280908L TPM_20_E_YIELDED TPM 2.0: The TPM has suspended operation on the command; forward progress was made and the command may be retried.
0x80280909L TPM_20_E_CANCELED TPM 2.0: The command was canceled.
0x8028090AL TPM_20_E_TESTING TPM 2.0: TPM is performing self-tests.
0x80280920L TPM_20_E_NV_RATE TPM 2.0: The TPM is rate-limiting accesses to prevent wearout of NV
0x80280921L TPM_20_E_LOCKOUT TPM 2.0: Authorization for objects subject to DA protection are not allowed at this time because the TPM is in DA lockout mode.
0x80280922L TPM_20_E_RETRY TPM 2.0: The TPM was not able to start the command.
0x80280923L TPM_20_E_NV_UNAVAILABLE TPM 2.0: the command may require writing of NV and NV is not current accessible.
0x80284001L TBS_E_INTERNAL_ERROR An internal error has occurred within the Trusted Platform Module support program.
0x80284002L TBS_E_BAD_PARAMETER One or more input parameters is bad.
0x80284003L TBS_E_INVALID_OUTPUT_POINTER A specified output pointer is bad.
0x80284004L TBS_E_INVALID_CONTEXT The specified context handle does not refer to a valid context.
0x80284005L TBS_E_INSUFFICIENT_BUFFER A specified output buffer is too small.
0x80284006L TBS_E_IOERROR An error occurred while communicating with the TPM.
0x80284007L TBS_E_INVALID_CONTEXT_PARAM One or more context parameters is invalid.
0x80284008L TBS_E_SERVICE_NOT_RUNNING The TBS service is not running and could not be started.
0x80284009L TBS_E_TOO_MANY_TBS_CONTEXTS A new context could not be created because there are too many open contexts.
0x8028400AL TBS_E_TOO_MANY_RESOURCES A new virtual resource could not be created because there are too many open virtual resources.
0x8028400BL TBS_E_SERVICE_START_PENDING The TBS service has been started but is not yet running.
0x8028400CL TBS_E_PPI_NOT_SUPPORTED The physical presence interface is not supported.
0x8028400DL TBS_E_COMMAND_CANCELED The command was canceled.
0x8028400EL TBS_E_BUFFER_TOO_LARGE The input or output buffer is too large.
0x8028400FL TBS_E_TPM_NOT_FOUND A compatible Trusted Platform Module (TPM) Security Device cannot be found on this computer.
0x80284010L TBS_E_SERVICE_DISABLED The TBS service has been disabled.
0x80284011L TBS_E_NO_EVENT_LOG No TCG event log is available.
0x80284012L TBS_E_ACCESS_DENIED The caller does not have the appropriate rights to perform the requested operation.
0x80284013L TBS_E_PROVISIONING_NOT_ALLOWED The TPM provisioning action is not allowed by the specified flags. For provisioning to be successful
0x80284014L TBS_E_PPI_FUNCTION_UNSUPPORTED The Physical Presence Interface of this firmware does not support the requested method.
0x80284015L TBS_E_OWNERAUTH_NOT_FOUND The requested TPM OwnerAuth value was not found.
0x80284016L TBS_E_PROVISIONING_INCOMPLETE The TPM provisioning did not complete. For more information on completing the provisioning
0x80290100L TPMAPI_E_INVALID_STATE The command buffer is not in the correct state.
0x80290101L TPMAPI_E_NOT_ENOUGH_DATA The command buffer does not contain enough data to satisfy the request.
0x80290102L TPMAPI_E_TOO_MUCH_DATA The command buffer cannot contain any more data.
0x80290103L TPMAPI_E_INVALID_OUTPUT_POINTER One or more output parameters was NULL or invalid.
0x80290104L TPMAPI_E_INVALID_PARAMETER One or more input parameters is invalid.
0x80290105L TPMAPI_E_OUT_OF_MEMORY Not enough memory was available to satisfy the request.
0x80290106L TPMAPI_E_BUFFER_TOO_SMALL The specified buffer was too small.
0x80290107L TPMAPI_E_INTERNAL_ERROR An internal error was detected.
0x80290108L TPMAPI_E_ACCESS_DENIED The caller does not have the appropriate rights to perform the requested operation.
0x80290109L TPMAPI_E_AUTHORIZATION_FAILED The specified authorization information was invalid.
0x8029010AL TPMAPI_E_INVALID_CONTEXT_HANDLE The specified context handle was not valid.
0x8029010BL TPMAPI_E_TBS_COMMUNICATION_ERROR An error occurred while communicating with the TBS.
0x8029010CL TPMAPI_E_TPM_COMMAND_ERROR The TPM returned an unexpected result.
0x8029010DL TPMAPI_E_MESSAGE_TOO_LARGE The message was too large for the encoding scheme.
0x8029010EL TPMAPI_E_INVALID_ENCODING The encoding in the blob was not recognized.
0x8029010FL TPMAPI_E_INVALID_KEY_SIZE The key size is not valid.
0x80290110L TPMAPI_E_ENCRYPTION_FAILED The encryption operation failed.
0x80290111L TPMAPI_E_INVALID_KEY_PARAMS The key parameters structure was not valid
0x80290112L TPMAPI_E_INVALID_MIGRATION_AUTHORIZATION_BLOB The requested supplied data does not appear to be a valid migration authorization blob.
0x80290113L TPMAPI_E_INVALID_PCR_INDEX The specified PCR index was invalid
0x80290114L TPMAPI_E_INVALID_DELEGATE_BLOB The data given does not appear to be a valid delegate blob.
0x80290115L TPMAPI_E_INVALID_CONTEXT_PARAMS One or more of the specified context parameters was not valid.
0x80290116L TPMAPI_E_INVALID_KEY_BLOB The data given does not appear to be a valid key blob
0x80290117L TPMAPI_E_INVALID_PCR_DATA The specified PCR data was invalid.
0x80290118L TPMAPI_E_INVALID_OWNER_AUTH The format of the owner auth data was invalid.
0x80290119L TPMAPI_E_FIPS_RNG_CHECK_FAILED The random number generated did not pass FIPS RNG check.
0x8029011AL TPMAPI_E_EMPTY_TCG_LOG The TCG Event Log does not contain any data.
0x8029011BL TPMAPI_E_INVALID_TCG_LOG_ENTRY An entry in the TCG Event Log was invalid.
0x8029011CL TPMAPI_E_TCG_SEPARATOR_ABSENT A TCG Separator was not found.
0x8029011DL TPMAPI_E_TCG_INVALID_DIGEST_ENTRY A digest value in a TCG Log entry did not match hashed data.
0x8029011EL TPMAPI_E_POLICY_DENIES_OPERATION The requested operation was blocked by current TPM policy. Please contact your system administrator for assistance.
0x8029011FL TPMAPI_E_NV_BITS_NOT_DEFINED The Windows TPM NV Bits index is not defined.
0x80290120L TPMAPI_E_NV_BITS_NOT_READY The Windows TPM NV Bits index is not ready for use.
0x80290121L TPMAPI_E_SEALING_KEY_NOT_AVAILABLE The TPM key that was used to seal the data is no longer available.
0x80290122L TPMAPI_E_NO_AUTHORIZATION_CHAIN_FOUND An authorization chain could not be found that authorizes the PolicyAuthorize unseal.
0x80290123L TPMAPI_E_SVN_COUNTER_NOT_AVAILABLE The SVN counter to which the authorization was bound is not available.
0x80290124L TPMAPI_E_OWNER_AUTH_NOT_NULL The TPM Storage hierarchy (Owner) auth value is required to be NULL for this operation.
0x80290125L TPMAPI_E_ENDORSEMENT_AUTH_NOT_NULL The TPM Endorsement hierarchy auth value is required to be NULL for this operation.
0x80290126L TPMAPI_E_AUTHORIZATION_REVOKED The authorization to perform this operation has been revoked.
0x80290127L TPMAPI_E_MALFORMED_AUTHORIZATION_KEY The authorization public key is malformed.
0x80290128L TPMAPI_E_AUTHORIZING_KEY_NOT_SUPPORTED The authorization public key is not supported.
0x80290129L TPMAPI_E_INVALID_AUTHORIZATION_SIGNATURE The authorization signature is invalid.
0x8029012AL TPMAPI_E_MALFORMED_AUTHORIZATION_POLICY The authorization policy is malformed.
0x8029012BL TPMAPI_E_MALFORMED_AUTHORIZATION_OTHER The authorization data is malformed.
0x8029012CL TPMAPI_E_SEALING_KEY_CHANGED The key used to unseal this data has changed since sealing the data. This may be the result of a TPM clear.
0x8029012DL TPMAPI_E_INVALID_TPM_VERSION The TPM version is invalid.
0x8029012EL TPMAPI_E_INVALID_POLICYAUTH_BLOB_TYPE The policy authorization blob type is invalid.
0x80290200L TBSIMP_E_BUFFER_TOO_SMALL The specified buffer was too small.
0x80290201L TBSIMP_E_CLEANUP_FAILED The context could not be cleaned up.
0x80290202L TBSIMP_E_INVALID_CONTEXT_HANDLE The specified context handle is invalid.
0x80290203L TBSIMP_E_INVALID_CONTEXT_PARAM An invalid context parameter was specified.
0x80290204L TBSIMP_E_TPM_ERROR An error occurred while communicating with the TPM
0x80290205L TBSIMP_E_HASH_BAD_KEY No entry with the specified key was found.
0x80290206L TBSIMP_E_DUPLICATE_VHANDLE The specified virtual handle matches a virtual handle already in use.
0x80290207L TBSIMP_E_INVALID_OUTPUT_POINTER The pointer to the returned handle location was NULL or invalid
0x80290208L TBSIMP_E_INVALID_PARAMETER One or more parameters is invalid
0x80290209L TBSIMP_E_RPC_INIT_FAILED The RPC subsystem could not be initialized.
0x8029020AL TBSIMP_E_SCHEDULER_NOT_RUNNING The TBS scheduler is not running.
0x8029020BL TBSIMP_E_COMMAND_CANCELED The command was canceled.
0x8029020CL TBSIMP_E_OUT_OF_MEMORY There was not enough memory to fulfill the request
0x8029020DL TBSIMP_E_LIST_NO_MORE_ITEMS The specified list is empty
0x8029020EL TBSIMP_E_LIST_NOT_FOUND The specified item was not found in the list.
0x8029020FL TBSIMP_E_NOT_ENOUGH_SPACE The TPM does not have enough space to load the requested resource.
0x80290210L TBSIMP_E_NOT_ENOUGH_TPM_CONTEXTS There are too many TPM contexts in use.
0x80290211L TBSIMP_E_COMMAND_FAILED The TPM command failed.
0x80290212L TBSIMP_E_UNKNOWN_ORDINAL The TBS does not recognize the specified ordinal.
0x80290213L TBSIMP_E_RESOURCE_EXPIRED The requested resource is no longer available.
0x80290214L TBSIMP_E_INVALID_RESOURCE The resource type did not match.
0x80290215L TBSIMP_E_NOTHING_TO_UNLOAD No resources can be unloaded.
0x80290216L TBSIMP_E_HASH_TABLE_FULL No new entries can be added to the hash table.
0x80290217L TBSIMP_E_TOO_MANY_TBS_CONTEXTS A new TBS context could not be created because there are too many open contexts.
0x80290218L TBSIMP_E_TOO_MANY_RESOURCES A new virtual resource could not be created because there are too many open virtual resources.
0x80290219L TBSIMP_E_PPI_NOT_SUPPORTED The physical presence interface is not supported.
0x8029021AL TBSIMP_E_TPM_INCOMPATIBLE TBS is not compatible with the version of TPM found on the system.
0x8029021BL TBSIMP_E_NO_EVENT_LOG No TCG event log is available.
0x80290300L TPM_E_PPI_ACPI_FAILURE A general error was detected when attempting to acquire the BIOS’s response to a Physical Presence command.
0x80290301L TPM_E_PPI_USER_ABORT The user failed to confirm the TPM operation request.
0x80290302L TPM_E_PPI_BIOS_FAILURE The BIOS failure prevented the successful execution of the requested TPM operation (e.g. invalid TPM operation request
0x80290303L TPM_E_PPI_NOT_SUPPORTED The BIOS does not support the physical presence interface.
0x80290304L TPM_E_PPI_BLOCKED_IN_BIOS The Physical Presence command was blocked by current BIOS settings. The system owner may be able to reconfigure the BIOS settings to allow the command.
0x80290400L TPM_E_PCP_ERROR_MASK This is an error mask to convert Platform Crypto Provider errors to win errors.
0x80290401L TPM_E_PCP_DEVICE_NOT_READY The Platform Crypto Device is currently not ready. It needs to be fully provisioned to be operational.
0x80290402L TPM_E_PCP_INVALID_HANDLE The handle provided to the Platform Crypto Provider is invalid.
0x80290403L TPM_E_PCP_INVALID_PARAMETER A parameter provided to the Platform Crypto Provider is invalid.
0x80290404L TPM_E_PCP_FLAG_NOT_SUPPORTED A provided flag to the Platform Crypto Provider is not supported.
0x80290405L TPM_E_PCP_NOT_SUPPORTED The requested operation is not supported by this Platform Crypto Provider.
0x80290406L TPM_E_PCP_BUFFER_TOO_SMALL The buffer is too small to contain all data. No information has been written to the buffer.
0x80290407L TPM_E_PCP_INTERNAL_ERROR An unexpected internal error has occurred in the Platform Crypto Provider.
0x80290408L TPM_E_PCP_AUTHENTICATION_FAILED The authorization to use a provider object has failed.
0x80290409L TPM_E_PCP_AUTHENTICATION_IGNORED The Platform Crypto Device has ignored the authorization for the provider object
0x8029040AL TPM_E_PCP_POLICY_NOT_FOUND The referenced policy was not found.
0x8029040BL TPM_E_PCP_PROFILE_NOT_FOUND The referenced profile was not found.
0x8029040CL TPM_E_PCP_VALIDATION_FAILED The validation was not succesful.
0x8029040EL TPM_E_PCP_WRONG_PARENT An attempt was made to import or load a key under an incorrect storage parent.
0x8029040FL TPM_E_KEY_NOT_LOADED The TPM key is not loaded.
0x80290410L TPM_E_NO_KEY_CERTIFICATION The TPM key certification has not been generated.
0x80290411L TPM_E_KEY_NOT_FINALIZED The TPM key is not yet finalized.
0x80290412L TPM_E_ATTESTATION_CHALLENGE_NOT_SET The TPM attestation challenge is not set.
0x80290413L TPM_E_NOT_PCR_BOUND The TPM PCR info is not available.
0x80290414L TPM_E_KEY_ALREADY_FINALIZED The TPM key is already finalized.
0x80290415L TPM_E_KEY_USAGE_POLICY_NOT_SUPPORTED The TPM key usage policy is not supported.
0x80290416L TPM_E_KEY_USAGE_POLICY_INVALID The TPM key usage policy is invalid.
0x80290417L TPM_E_SOFT_KEY_ERROR There was a problem with the software key being imported into the TPM.
0x80290418L TPM_E_KEY_NOT_AUTHENTICATED The TPM key is not authenticated.
0x80290419L TPM_E_PCP_KEY_NOT_AIK The TPM key is not an AIK.
0x8029041AL TPM_E_KEY_NOT_SIGNING_KEY The TPM key is not a signing key.
0x8029041BL TPM_E_LOCKED_OUT The TPM is locked out.
0x8029041CL TPM_E_CLAIM_TYPE_NOT_SUPPORTED The claim type requested is not supported.
0x8029041DL TPM_E_VERSION_NOT_SUPPORTED TPM version is not supported.
0x8029041EL TPM_E_BUFFER_LENGTH_MISMATCH The buffer lengths do not match.
0x8029041FL TPM_E_PCP_IFX_RSA_KEY_CREATION_BLOCKED The RSA key creation is blocked on this TPM due to known security vulnerabilities.
0x80290420L TPM_E_PCP_TICKET_MISSING A ticket required to use a key was not provided.
0x80290421L TPM_E_PCP_RAW_POLICY_NOT_SUPPORTED This key has a raw policy so the KSP can’t authenticate against it.
0x80290422L TPM_E_PCP_KEY_HANDLE_INVALIDATED The TPM key’s handle was unexpectedly invalidated due to a hardware or firmware issue.
0x40290423L TPM_E_PCP_UNSUPPORTED_PSS_SALT The requested salt size for signing with RSAPSS does not match what the TPM uses.
0x40290424L TPM_E_PCP_PLATFORM_CLAIM_MAY_BE_OUTDATED Validation of the platform claim failed.
0x40290425L TPM_E_PCP_PLATFORM_CLAIM_OUTDATED The requested platform claim is for a previous boot.
0x40290426L TPM_E_PCP_PLATFORM_CLAIM_REBOOT The platform claim is for a previous boot
0x80290500L TPM_E_ZERO_EXHAUST_ENABLED TPM related network operations are blocked as Zero Exhaust mode is enabled on client.
0x80290600L TPM_E_PROVISIONING_INCOMPLETE TPM provisioning did not run to completion.
0x80290601L TPM_E_INVALID_OWNER_AUTH An invalid owner authorization value was specified.
0x80290602L TPM_E_TOO_MUCH_DATA TPM command returned too much data.
0x80300002L PLA_E_DCS_NOT_FOUND Data Collector Set was not found.
0x803000AAL PLA_E_DCS_IN_USE The Data Collector Set or one of its dependencies is already in use.
0x80300045L PLA_E_TOO_MANY_FOLDERS Unable to start Data Collector Set because there are too many folders.
0x80300070L PLA_E_NO_MIN_DISK Not enough free disk space to start Data Collector Set.
0x803000B7L PLA_E_DCS_ALREADY_EXISTS Data Collector Set already exists.
0x00300100L PLA_S_PROPERTY_IGNORED Property value will be ignored.
0x80300101L PLA_E_PROPERTY_CONFLICT Property value conflict.
0x80300102L PLA_E_DCS_SINGLETON_REQUIRED The current configuration for this Data Collector Set requires that it contain exactly one Data Collector.
0x80300103L PLA_E_CREDENTIALS_REQUIRED A user account is required in order to commit the current Data Collector Set properties.
0x80300104L PLA_E_DCS_NOT_RUNNING Data Collector Set is not running.
0x80300105L PLA_E_CONFLICT_INCL_EXCL_API A conflict was detected in the list of include/exclude APIs. Do not specify the same API in both the include list and the exclude list.
0x80300106L PLA_E_NETWORK_EXE_NOT_VALID The executable path you have specified refers to a network share or UNC path.
0x80300107L PLA_E_EXE_ALREADY_CONFIGURED The executable path you have specified is already configured for API tracing.
0x80300108L PLA_E_EXE_PATH_NOT_VALID The executable path you have specified does not exist. Verify that the specified path is correct.
0x80300109L PLA_E_DC_ALREADY_EXISTS Data Collector already exists.
0x8030010AL PLA_E_DCS_START_WAIT_TIMEOUT The wait for the Data Collector Set start notification has timed out.
0x8030010BL PLA_E_DC_START_WAIT_TIMEOUT The wait for the Data Collector to start has timed out.
0x8030010CL PLA_E_REPORT_WAIT_TIMEOUT The wait for the report generation tool to finish has timed out.
0x8030010DL PLA_E_NO_DUPLICATES Duplicate items are not allowed.
0x8030010EL PLA_E_EXE_FULL_PATH_REQUIRED When specifying the executable that you want to trace
0x8030010FL PLA_E_INVALID_SESSION_NAME The session name provided is invalid.
0x80300110L PLA_E_PLA_CHANNEL_NOT_ENABLED The Event Log channel Microsoft-Windows-Diagnosis-PLA/Operational must be enabled to perform this operation.
0x80300111L PLA_E_TASKSCHED_CHANNEL_NOT_ENABLED The Event Log channel Microsoft-Windows-TaskScheduler must be enabled to perform this operation.
0x80300112L PLA_E_RULES_MANAGER_FAILED The execution of the Rules Manager failed.
0x80300113L PLA_E_CABAPI_FAILURE An error occurred while attempting to compress or extract the data.
0x80310000L FVE_E_LOCKED_VOLUME This drive is locked by BitLocker Drive Encryption. You must unlock this drive from Control Panel.
0x80310001L FVE_E_NOT_ENCRYPTED This drive is not encrypted.
0x80310002L FVE_E_NO_TPM_BIOS The BIOS did not correctly communicate with the Trusted Platform Module (TPM). Contact the computer manufacturer for BIOS upgrade instructions.
0x80310003L FVE_E_NO_MBR_METRIC The BIOS did not correctly communicate with the master boot record (MBR). Contact the computer manufacturer for BIOS upgrade instructions.
0x80310004L FVE_E_NO_BOOTSECTOR_METRIC A required TPM measurement is missing. If there is a bootable CD or DVD in your computer
0x80310005L FVE_E_NO_BOOTMGR_METRIC The boot sector of this drive is not compatible with BitLocker Drive Encryption. Use the Bootrec.exe tool in the Windows Recovery Environment to update or repair the boot manager (BOOTMGR).
0x80310006L FVE_E_WRONG_BOOTMGR The boot manager of this operating system is not compatible with BitLocker Drive Encryption. Use the Bootrec.exe tool in the Windows Recovery Environment to update or repair the boot manager (BOOTMGR).
0x80310007L FVE_E_SECURE_KEY_REQUIRED At least one secure key protector is required for this operation to be performed.
0x80310008L FVE_E_NOT_ACTIVATED BitLocker Drive Encryption is not enabled on this drive. Turn on BitLocker.
0x80310009L FVE_E_ACTION_NOT_ALLOWED BitLocker Drive Encryption cannot perform the requested action. This condition may occur when two requests are issued at the same time. Wait a few moments and then try the action again.
0x8031000AL FVE_E_AD_SCHEMA_NOT_INSTALLED The Active Directory Domain Services forest does not contain the required attributes and classes to host BitLocker Drive Encryption or Trusted Platform Module information. Contact your domain administrator to verify that any required BitLocker Active Directory schema extensions have been installed.
0x8031000BL FVE_E_AD_INVALID_DATATYPE The type of the data obtained from Active Directory was not expected. The BitLocker recovery information may be missing or corrupted.
0x8031000CL FVE_E_AD_INVALID_DATASIZE The size of the data obtained from Active Directory was not expected. The BitLocker recovery information may be missing or corrupted.
0x8031000DL FVE_E_AD_NO_VALUES The attribute read from Active Directory does not contain any values. The BitLocker recovery information may be missing or corrupted.
0x8031000EL FVE_E_AD_ATTR_NOT_SET The attribute was not set. Verify that you are logged on with a domain account that has the ability to write information to Active Directory objects.
0x8031000FL FVE_E_AD_GUID_NOT_FOUND The specified attribute cannot be found in Active Directory Domain Services. Contact your domain administrator to verify that any required BitLocker Active Directory schema extensions have been installed.
0x80310010L FVE_E_BAD_INFORMATION The BitLocker metadata for the encrypted drive is not valid. You can attempt to repair the drive to restore access.
0x80310011L FVE_E_TOO_SMALL The drive cannot be encrypted because it does not have enough free space. Delete any unnecessary data on the drive to create additional free space and then try again.
0x80310012L FVE_E_SYSTEM_VOLUME The drive cannot be encrypted because it contains system boot information. Create a separate partition for use as the system drive that contains the boot information and a second partition for use as the operating system drive and then encrypt the operating system drive.
0x80310013L FVE_E_FAILED_WRONG_FS The drive cannot be encrypted because the file system is not supported.
0x80310014L FVE_E_BAD_PARTITION_SIZE The file system size is larger than the partition size in the partition table. This drive may be corrupt or may have been tampered with. To use it with BitLocker
0x80310015L FVE_E_NOT_SUPPORTED This drive cannot be encrypted.
0x80310016L FVE_E_BAD_DATA The data is not valid.
0x80310017L FVE_E_VOLUME_NOT_BOUND The data drive specified is not set to automatically unlock on the current computer and cannot be unlocked automatically.
0x80310018L FVE_E_TPM_NOT_OWNED You must initialize the Trusted Platform Module (TPM) before you can use BitLocker Drive Encryption.
0x80310019L FVE_E_NOT_DATA_VOLUME The operation attempted cannot be performed on an operating system drive.
0x8031001AL FVE_E_AD_INSUFFICIENT_BUFFER The buffer supplied to a function was insufficient to contain the returned data. Increase the buffer size before running the function again.
0x8031001BL FVE_E_CONV_READ A read operation failed while converting the drive. The drive was not converted. Please re-enable BitLocker.
0x8031001CL FVE_E_CONV_WRITE A write operation failed while converting the drive. The drive was not converted. Please re-enable BitLocker.
0x8031001DL FVE_E_KEY_REQUIRED One or more BitLocker key protectors are required. You cannot delete the last key on this drive.
0x8031001EL FVE_E_CLUSTERING_NOT_SUPPORTED Cluster configurations are not supported by BitLocker Drive Encryption.
0x8031001FL FVE_E_VOLUME_BOUND_ALREADY The drive specified is already configured to be automatically unlocked on the current computer.
0x80310020L FVE_E_OS_NOT_PROTECTED The operating system drive is not protected by BitLocker Drive Encryption.
0x80310021L FVE_E_PROTECTION_DISABLED BitLocker Drive Encryption has been suspended on this drive. All BitLocker key protectors configured for this drive are effectively disabled
0x80310022L FVE_E_RECOVERY_KEY_REQUIRED The drive you are attempting to lock does not have any key protectors available for encryption because BitLocker protection is currently suspended. Re-enable BitLocker to lock this drive.
0x80310023L FVE_E_FOREIGN_VOLUME BitLocker cannot use the Trusted Platform Module (TPM) to protect a data drive. TPM protection can only be used with the operating system drive.
0x80310024L FVE_E_OVERLAPPED_UPDATE The BitLocker metadata for the encrypted drive cannot be updated because it was locked for updating by another process. Please try this process again.
0x80310025L FVE_E_TPM_SRK_AUTH_NOT_ZERO The authorization data for the storage root key (SRK) of the Trusted Platform Module (TPM) is not zero and is therefore incompatible with BitLocker. Please initialize the TPM before attempting to use it with BitLocker.
0x80310026L FVE_E_FAILED_SECTOR_SIZE The drive encryption algorithm cannot be used on this sector size.
0x80310027L FVE_E_FAILED_AUTHENTICATION The drive cannot be unlocked with the key provided. Confirm that you have provided the correct key and try again.
0x80310028L FVE_E_NOT_OS_VOLUME The drive specified is not the operating system drive.
0x80310029L FVE_E_AUTOUNLOCK_ENABLED BitLocker Drive Encryption cannot be turned off on the operating system drive until the auto unlock feature has been disabled for the fixed data drives and removable data drives associated with this computer.
0x8031002AL FVE_E_WRONG_BOOTSECTOR The system partition boot sector does not perform Trusted Platform Module (TPM) measurements. Use the Bootrec.exe tool in the Windows Recovery Environment to update or repair the boot sector.
0x8031002BL FVE_E_WRONG_SYSTEM_FS BitLocker Drive Encryption operating system drives must be formatted with the NTFS file system in order to be encrypted. Convert the drive to NTFS
0x8031002CL FVE_E_POLICY_PASSWORD_REQUIRED Group Policy settings require that a recovery password be specified before encrypting the drive.
0x8031002DL FVE_E_CANNOT_SET_FVEK_ENCRYPTED The drive encryption algorithm and key cannot be set on a previously encrypted drive. To encrypt this drive with BitLocker Drive Encryption
0x8031002EL FVE_E_CANNOT_ENCRYPT_NO_KEY BitLocker Drive Encryption cannot encrypt the specified drive because an encryption key is not available. Add a key protector to encrypt this drive.
0x80310030L FVE_E_BOOTABLE_CDDVD BitLocker Drive Encryption detected bootable media (CD or DVD) in the computer. Remove the media and restart the computer before configuring BitLocker.
0x80310031L FVE_E_PROTECTOR_EXISTS This key protector cannot be added. Only one key protector of this type is allowed for this drive.
0x80310032L FVE_E_RELATIVE_PATH The recovery password file was not found because a relative path was specified. Recovery passwords must be saved to a fully qualified path. Environment variables configured on the computer can be used in the path.
0x80310033L FVE_E_PROTECTOR_NOT_FOUND The specified key protector was not found on the drive. Try another key protector.
0x80310034L FVE_E_INVALID_KEY_FORMAT The recovery key provided is corrupt and cannot be used to access the drive. An alternative recovery method
0x80310035L FVE_E_INVALID_PASSWORD_FORMAT The format of the recovery password provided is invalid. BitLocker recovery passwords are 48 digits. Verify that the recovery password is in the correct format and then try again.
0x80310036L FVE_E_FIPS_RNG_CHECK_FAILED The random number generator check test failed.
0x80310037L FVE_E_FIPS_PREVENTS_RECOVERY_PASSWORD The Group Policy setting requiring FIPS compliance prevents a local recovery password from being generated or used by BitLocker Drive Encryption. When operating in FIPS-compliant mode
0x80310038L FVE_E_FIPS_PREVENTS_EXTERNAL_KEY_EXPORT The Group Policy setting requiring FIPS compliance prevents the recovery password from being saved to Active Directory. When operating in FIPS-compliant mode
0x80310039L FVE_E_NOT_DECRYPTED The drive must be fully decrypted to complete this operation.
0x8031003AL FVE_E_INVALID_PROTECTOR_TYPE The key protector specified cannot be used for this operation.
0x8031003BL FVE_E_NO_PROTECTORS_TO_TEST No key protectors exist on the drive to perform the hardware test.
0x8031003CL FVE_E_KEYFILE_NOT_FOUND The BitLocker startup key or recovery password cannot be found on the USB device. Verify that you have the correct USB device
0x8031003DL FVE_E_KEYFILE_INVALID The BitLocker startup key or recovery password file provided is corrupt or invalid. Verify that you have the correct startup key or recovery password file and try again.
0x8031003EL FVE_E_KEYFILE_NO_VMK The BitLocker encryption key cannot be obtained from the startup key or recovery password. Verify that you have the correct startup key or recovery password and try again.
0x8031003FL FVE_E_TPM_DISABLED The Trusted Platform Module (TPM) is disabled. The TPM must be enabled
0x80310040L FVE_E_NOT_ALLOWED_IN_SAFE_MODE The BitLocker configuration of the specified drive cannot be managed because this computer is currently operating in Safe Mode. While in Safe Mode
0x80310041L FVE_E_TPM_INVALID_PCR The Trusted Platform Module (TPM) was unable to unlock the drive. Either the system boot information changed after choosing BitLocker settings or the PIN did not match. If the problem persists after several tries
0x80310042L FVE_E_TPM_NO_VMK The BitLocker encryption key cannot be obtained from the Trusted Platform Module (TPM).
0x80310043L FVE_E_PIN_INVALID The BitLocker encryption key cannot be obtained from the Trusted Platform Module (TPM) and PIN.
0x80310044L FVE_E_AUTH_INVALID_APPLICATION A boot application has changed since BitLocker Drive Encryption was enabled.
0x80310045L FVE_E_AUTH_INVALID_CONFIG The Boot Configuration Data (BCD) settings have changed since BitLocker Drive Encryption was enabled.
0x80310046L FVE_E_FIPS_DISABLE_PROTECTION_NOT_ALLOWED The Group Policy setting requiring FIPS compliance prohibits the use of unencrypted keys
0x80310047L FVE_E_FS_NOT_EXTENDED This drive cannot be encrypted by BitLocker Drive Encryption because the file system does not extend to the end of the drive. Repartition this drive and then try again.
0x80310048L FVE_E_FIRMWARE_TYPE_NOT_SUPPORTED BitLocker Drive Encryption cannot be enabled on the operating system drive. Contact the computer manufacturer for BIOS upgrade instructions.
0x80310049L FVE_E_NO_LICENSE This version of Windows does not include BitLocker Drive Encryption. To use BitLocker Drive Encryption
0x8031004AL FVE_E_NOT_ON_STACK BitLocker Drive Encryption cannot be used because critical BitLocker system files are missing or corrupted. Use Windows Startup Repair to restore these files to your computer.
0x8031004BL FVE_E_FS_MOUNTED The drive cannot be locked when the drive is in use.
0x8031004CL FVE_E_TOKEN_NOT_IMPERSONATED The access token associated with the current thread is not an impersonated token.
0x8031004DL FVE_E_DRY_RUN_FAILED The BitLocker encryption key cannot be obtained. Verify that the Trusted Platform Module (TPM) is enabled and ownership has been taken. If this computer does not have a TPM
0x8031004EL FVE_E_REBOOT_REQUIRED You must restart your computer before continuing with BitLocker Drive Encryption.
0x8031004FL FVE_E_DEBUGGER_ENABLED Drive encryption cannot occur while boot debugging is enabled. Use the bcdedit command-line tool to turn off boot debugging.
0x80310050L FVE_E_RAW_ACCESS No action was taken as BitLocker Drive Encryption is in raw access mode.
0x80310051L FVE_E_RAW_BLOCKED BitLocker Drive Encryption cannot enter raw access mode for this drive because the drive is currently in use.
0x80310052L FVE_E_BCD_APPLICATIONS_PATH_INCORRECT The path specified in the Boot Configuration Data (BCD) for a BitLocker Drive Encryption integrity-protected application is incorrect. Please verify and correct your BCD settings and try again.
0x80310053L FVE_E_NOT_ALLOWED_IN_VERSION BitLocker Drive Encryption can only be used for limited provisioning or recovery purposes when the computer is running in pre-installation or recovery environments.
0x80310054L FVE_E_NO_AUTOUNLOCK_MASTER_KEY The auto-unlock master key was not available from the operating system drive.
0x80310055L FVE_E_MOR_FAILED The system firmware failed to enable clearing of system memory when the computer was restarted.
0x80310056L FVE_E_HIDDEN_VOLUME The hidden drive cannot be encrypted.
0x80310057L FVE_E_TRANSIENT_STATE BitLocker encryption keys were ignored because the drive was in a transient state.
0x80310058L FVE_E_PUBKEY_NOT_ALLOWED Public key based protectors are not allowed on this drive.
0x80310059L FVE_E_VOLUME_HANDLE_OPEN BitLocker Drive Encryption is already performing an operation on this drive. Please complete all operations before continuing.
0x8031005AL FVE_E_NO_FEATURE_LICENSE This version of Windows does not support this feature of BitLocker Drive Encryption. To use this feature
0x8031005BL FVE_E_INVALID_STARTUP_OPTIONS The Group Policy settings for BitLocker startup options are in conflict and cannot be applied. Contact your system administrator for more information.
0x8031005CL FVE_E_POLICY_RECOVERY_PASSWORD_NOT_ALLOWED Group Policy settings do not permit the creation of a recovery password.
0x8031005DL FVE_E_POLICY_RECOVERY_PASSWORD_REQUIRED Group Policy settings require the creation of a recovery password.
0x8031005EL FVE_E_POLICY_RECOVERY_KEY_NOT_ALLOWED Group Policy settings do not permit the creation of a recovery key.
0x8031005FL FVE_E_POLICY_RECOVERY_KEY_REQUIRED Group Policy settings require the creation of a recovery key.
0x80310060L FVE_E_POLICY_STARTUP_PIN_NOT_ALLOWED Group Policy settings do not permit the use of a PIN at startup. Please choose a different BitLocker startup option.
0x80310061L FVE_E_POLICY_STARTUP_PIN_REQUIRED Group Policy settings require the use of a PIN at startup. Please choose this BitLocker startup option.
0x80310062L FVE_E_POLICY_STARTUP_KEY_NOT_ALLOWED Group Policy settings do not permit the use of a startup key. Please choose a different BitLocker startup option.
0x80310063L FVE_E_POLICY_STARTUP_KEY_REQUIRED Group Policy settings require the use of a startup key. Please choose this BitLocker startup option.
0x80310064L FVE_E_POLICY_STARTUP_PIN_KEY_NOT_ALLOWED Group Policy settings do not permit the use of a startup key and PIN. Please choose a different BitLocker startup option.
0x80310065L FVE_E_POLICY_STARTUP_PIN_KEY_REQUIRED Group Policy settings require the use of a startup key and PIN. Please choose this BitLocker startup option.
0x80310066L FVE_E_POLICY_STARTUP_TPM_NOT_ALLOWED Group policy does not permit the use of TPM-only at startup. Please choose a different BitLocker startup option.
0x80310067L FVE_E_POLICY_STARTUP_TPM_REQUIRED Group Policy settings require the use of TPM-only at startup. Please choose this BitLocker startup option.
0x80310068L FVE_E_POLICY_INVALID_PIN_LENGTH The PIN provided does not meet minimum or maximum length requirements.
0x80310069L FVE_E_KEY_PROTECTOR_NOT_SUPPORTED The key protector is not supported by the version of BitLocker Drive Encryption currently on the drive. Upgrade the drive to add the key protector.
0x8031006AL FVE_E_POLICY_PASSPHRASE_NOT_ALLOWED Group Policy settings do not permit the creation of a password.
0x8031006BL FVE_E_POLICY_PASSPHRASE_REQUIRED Group Policy settings require the creation of a password.
0x8031006CL FVE_E_FIPS_PREVENTS_PASSPHRASE The Group Policy setting requiring FIPS compliance prevents passwords from being generated or used. Please contact your system administrator for more information.
0x8031006DL FVE_E_OS_VOLUME_PASSPHRASE_NOT_ALLOWED A password cannot be added to the operating system drive.
0x8031006EL FVE_E_INVALID_BITLOCKER_OID The BitLocker object identifier (OID) on the drive appears to be invalid or corrupt. Use manage-BDE to reset the OID on this drive.
0x8031006FL FVE_E_VOLUME_TOO_SMALL The drive is too small to be protected using BitLocker Drive Encryption.
0x80310070L FVE_E_DV_NOT_SUPPORTED_ON_FS The selected discovery drive type is incompatible with the file system on the drive. BitLocker To Go discovery drives must be created on FAT formatted drives.
0x80310071L FVE_E_DV_NOT_ALLOWED_BY_GP The selected discovery drive type is not allowed by the computer’s Group Policy settings. Verify that Group Policy settings allow the creation of discovery drives for use with BitLocker To Go.
0x80310072L FVE_E_POLICY_USER_CERTIFICATE_NOT_ALLOWED Group Policy settings do not permit user certificates such as smart cards to be used with BitLocker Drive Encryption.
0x80310073L FVE_E_POLICY_USER_CERTIFICATE_REQUIRED Group Policy settings require that you have a valid user certificate
0x80310074L FVE_E_POLICY_USER_CERT_MUST_BE_HW Group Policy settings requires that you use a smart card-based key protector with BitLocker Drive Encryption.
0x80310075L FVE_E_POLICY_USER_CONFIGURE_FDV_AUTOUNLOCK_NOT_ALLOWED Group Policy settings do not permit BitLocker-protected fixed data drives to be automatically unlocked.
0x80310076L FVE_E_POLICY_USER_CONFIGURE_RDV_AUTOUNLOCK_NOT_ALLOWED Group Policy settings do not permit BitLocker-protected removable data drives to be automatically unlocked.
0x80310077L FVE_E_POLICY_USER_CONFIGURE_RDV_NOT_ALLOWED Group Policy settings do not permit you to configure BitLocker Drive Encryption on removable data drives.
0x80310078L FVE_E_POLICY_USER_ENABLE_RDV_NOT_ALLOWED Group Policy settings do not permit you to turn on BitLocker Drive Encryption on removable data drives. Please contact your system administrator if you need to turn on BitLocker.
0x80310079L FVE_E_POLICY_USER_DISABLE_RDV_NOT_ALLOWED Group Policy settings do not permit turning off BitLocker Drive Encryption on removable data drives. Please contact your system administrator if you need to turn off BitLocker.
0x80310080L FVE_E_POLICY_INVALID_PASSPHRASE_LENGTH Your password does not meet minimum password length requirements. By default
0x80310081L FVE_E_POLICY_PASSPHRASE_TOO_SIMPLE Your password does not meet the complexity requirements set by your system administrator. Try adding upper and lowercase characters
0x80310082L FVE_E_RECOVERY_PARTITION This drive cannot be encrypted because it is reserved for Windows System Recovery Options.
0x80310083L FVE_E_POLICY_CONFLICT_FDV_RK_OFF_AUK_ON BitLocker Drive Encryption cannot be applied to this drive because of conflicting Group Policy settings. BitLocker cannot be configured to automatically unlock fixed data drives when user recovery options are disabled. If you want BitLocker-protected fixed data drives to be automatically unlocked after key validation has occurred
0x80310084L FVE_E_POLICY_CONFLICT_RDV_RK_OFF_AUK_ON BitLocker Drive Encryption cannot be applied to this drive because of conflicting Group Policy settings. BitLocker cannot be configured to automatically unlock removable data drives when user recovery option are disabled. If you want BitLocker-protected removable data drives to be automatically unlocked after key validation has occurred
0x80310085L FVE_E_NON_BITLOCKER_OID The Enhanced Key Usage (EKU) attribute of the specified certificate does not permit it to be used for BitLocker Drive Encryption. BitLocker does not require that a certificate have an EKU attribute
0x80310086L FVE_E_POLICY_PROHIBITS_SELFSIGNED BitLocker Drive Encryption cannot be applied to this drive as currently configured because of Group Policy settings. The certificate you provided for drive encryption is self-signed. Current Group Policy settings do not permit the use of self-signed certificates. Obtain a new certificate from your certification authority before attempting to enable BitLocker.
0x80310087L FVE_E_POLICY_CONFLICT_RO_AND_STARTUP_KEY_REQUIRED BitLocker Encryption cannot be applied to this drive because of conflicting Group Policy settings. When write access to drives not protected by BitLocker is denied
0x80310088L FVE_E_CONV_RECOVERY_FAILED BitLocker Drive Encryption failed to recover from an abruptly terminated conversion. This could be due to either all conversion logs being corrupted or the media being write-protected.
0x80310089L FVE_E_VIRTUALIZED_SPACE_TOO_BIG The requested virtualization size is too big.
0x80310090L FVE_E_POLICY_CONFLICT_OSV_RP_OFF_ADB_ON BitLocker Drive Encryption cannot be applied to this drive because there are conflicting Group Policy settings for recovery options on operating system drives. Storing recovery information to Active Directory Domain Services cannot be required when the generation of recovery passwords is not permitted. Please have your system administrator resolve these policy conflicts before attempting to enable BitLocker.
0x80310091L FVE_E_POLICY_CONFLICT_FDV_RP_OFF_ADB_ON BitLocker Drive Encryption cannot be applied to this drive because there are conflicting Group Policy settings for recovery options on fixed data drives. Storing recovery information to Active Directory Domain Services cannot be required when the generation of recovery passwords is not permitted. Please have your system administrator resolve these policy conflicts before attempting to enable BitLocker.
0x80310092L FVE_E_POLICY_CONFLICT_RDV_RP_OFF_ADB_ON BitLocker Drive Encryption cannot be applied to this drive because there are conflicting Group Policy settings for recovery options on removable data drives. Storing recovery information to Active Directory Domain Services cannot be required when the generation of recovery passwords is not permitted. Please have your system administrator resolve these policy conflicts before attempting to enable BitLocker.
0x80310093L FVE_E_NON_BITLOCKER_KU The Key Usage (KU) attribute of the specified certificate does not permit it to be used for BitLocker Drive Encryption. BitLocker does not require that a certificate have a KU attribute
0x80310094L FVE_E_PRIVATEKEY_AUTH_FAILED The private key associated with the specified certificate cannot be authorized. The private key authorization was either not provided or the provided authorization was invalid.
0x80310095L FVE_E_REMOVAL_OF_DRA_FAILED Removal of the data recovery agent certificate must be done using the Certificates snap-in.
0x80310096L FVE_E_OPERATION_NOT_SUPPORTED_ON_VISTA_VOLUME This drive was encrypted using the version of BitLocker Drive Encryption included with Windows Vista and Windows Server 2008 which does not support organizational identifiers. To specify organizational identifiers for this drive upgrade the drive encryption to the latest version using the “manage-bde-upgrade” command.
0x80310097L FVE_E_CANT_LOCK_AUTOUNLOCK_ENABLED_VOLUME The drive cannot be locked because it is automatically unlocked on this computer. Remove the automatic unlock protector to lock this drive.
0x80310098L FVE_E_FIPS_HASH_KDF_NOT_ALLOWED The default BitLocker Key Derivation Function SP800-56A for ECC smart cards is not supported by your smart card. The Group Policy setting requiring FIPS-compliance prevents BitLocker from using any other key derivation function for encryption. You have to use a FIPS compliant smart card in FIPS restricted environments.
0x80310099L FVE_E_ENH_PIN_INVALID The BitLocker encryption key could not be obtained from the Trusted Platform Module (TPM) and enhanced PIN. Try using a PIN containing only numerals.
0x8031009AL FVE_E_INVALID_PIN_CHARS The requested TPM PIN contains invalid characters.
0x8031009BL FVE_E_INVALID_DATUM_TYPE The management information stored on the drive contained an unknown type. If you are using an old version of Windows
0x8031009CL FVE_E_EFI_ONLY The feature is only supported on EFI systems.
0x8031009DL FVE_E_MULTIPLE_NKP_CERTS More than one Network Key Protector certificate has been found on the system.
0x8031009EL FVE_E_REMOVAL_OF_NKP_FAILED Removal of the Network Key Protector certificate must be done using the Certificates snap-in.
0x8031009FL FVE_E_INVALID_NKP_CERT An invalid certificate has been found in the Network Key Protector certificate store.
0x803100A0L FVE_E_NO_EXISTING_PIN This drive isn’t protected with a PIN.
0x803100A1L FVE_E_PROTECTOR_CHANGE_PIN_MISMATCH Please enter the correct current PIN.
0x803100A2L FVE_E_PIN_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED You must be logged on with an administrator account to change the PIN. Click the link to reset the PIN as an administrator.
0x803100A3L FVE_E_PROTECTOR_CHANGE_MAX_PIN_CHANGE_ATTEMPTS_REACHED BitLocker has disabled PIN changes after too many failed requests. Click the link to reset the PIN as an administrator.
0x803100A4L FVE_E_POLICY_PASSPHRASE_REQUIRES_ASCII Your system administrator requires that passwords contain only printable ASCII characters. This includes unaccented letters (A-Z
0x803100A5L FVE_E_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE BitLocker Drive Encryption only supports Used Space Only encryption on thin provisioned storage.
0x803100A6L FVE_E_WIPE_NOT_ALLOWED_ON_TP_STORAGE BitLocker Drive Encryption does not support wiping free space on thin provisioned storage.
0x803100A7L FVE_E_KEY_LENGTH_NOT_SUPPORTED_BY_EDRIVE The required authentication key length is not supported by the drive.
0x803100A8L FVE_E_NO_EXISTING_PASSPHRASE This drive isn’t protected with a password.
0x803100A9L FVE_E_PROTECTOR_CHANGE_PASSPHRASE_MISMATCH Please enter the correct current password.
0x803100AAL FVE_E_PASSPHRASE_TOO_LONG The password cannot exceed 256 characters.
0x803100ABL FVE_E_NO_PASSPHRASE_WITH_TPM A password key protector cannot be added because a TPM protector exists on the drive.
0x803100ACL FVE_E_NO_TPM_WITH_PASSPHRASE A TPM key protector cannot be added because a password protector exists on the drive.
0x803100ADL FVE_E_NOT_ALLOWED_ON_CSV_STACK This command can only be performed from the coordinator node for the specified CSV volume.
0x803100AEL FVE_E_NOT_ALLOWED_ON_CLUSTER This command cannot be performed on a volume when it is part of a cluster.
0x803100AFL FVE_E_EDRIVE_NO_FAILOVER_TO_SW BitLocker did not revert to using BitLocker software encryption due to group policy configuration.
0x803100B0L FVE_E_EDRIVE_BAND_IN_USE The drive cannot be managed by BitLocker because the drive’s hardware encryption feature is already in use.
0x803100B1L FVE_E_EDRIVE_DISALLOWED_BY_GP Group Policy settings do not allow the use of hardware-based encryption.
0x803100B2L FVE_E_EDRIVE_INCOMPATIBLE_VOLUME The drive specified does not support hardware-based encryption.
0x803100B3L FVE_E_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING BitLocker cannot be upgraded during disk encryption or decryption.
0x803100B4L FVE_E_EDRIVE_DV_NOT_SUPPORTED Discovery Volumes are not supported for volumes using hardware encryption.
0x803100B5L FVE_E_NO_PREBOOT_KEYBOARD_DETECTED No pre-boot keyboard detected. The user may not be able to provide required input to unlock the volume.
0x803100B6L FVE_E_NO_PREBOOT_KEYBOARD_OR_WINRE_DETECTED No pre-boot keyboard or Windows Recovery Environment detected. The user may not be able to provide required input to unlock the volume.
0x803100B7L FVE_E_POLICY_REQUIRES_STARTUP_PIN_ON_TOUCH_DEVICE Group Policy settings require the creation of a startup PIN
0x803100B8L FVE_E_POLICY_REQUIRES_RECOVERY_PASSWORD_ON_TOUCH_DEVICE Group Policy settings require the creation of a recovery password
0x803100B9L FVE_E_WIPE_CANCEL_NOT_APPLICABLE Wipe of free space is not currently taking place.
0x803100BAL FVE_E_SECUREBOOT_DISABLED BitLocker cannot use Secure Boot for platform integrity because Secure Boot has been disabled.
0x803100BBL FVE_E_SECUREBOOT_CONFIGURATION_INVALID BitLocker cannot use Secure Boot for platform integrity because the Secure Boot configuration does not meet the requirements for BitLocker.
0x803100BCL FVE_E_EDRIVE_DRY_RUN_FAILED Your computer doesn’t support BitLocker hardware-based encryption. Check with your computer manufacturer for firmware updates.
0x803100BDL FVE_E_SHADOW_COPY_PRESENT BitLocker cannot be enabled on the volume because it contains a Volume Shadow Copy. Remove all Volume Shadow Copies before encrypting the volume.
0x803100BEL FVE_E_POLICY_INVALID_ENHANCED_BCD_SETTINGS BitLocker Drive Encryption cannot be applied to this drive because the Group Policy setting for Enhanced Boot Configuration Data contains invalid data. Please have your system administrator resolve this invalid configuration before attempting to enable BitLocker.
0x803100BFL FVE_E_EDRIVE_INCOMPATIBLE_FIRMWARE This PC’s firmware is not capable of supporting hardware encryption.
0x803100C0L FVE_E_PROTECTOR_CHANGE_MAX_PASSPHRASE_CHANGE_ATTEMPTS_REACHED BitLocker has disabled password changes after too many failed requests. Click the link to reset the password as an administrator.
0x803100C1L FVE_E_PASSPHRASE_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED You must be logged on with an administrator account to change the password. Click the link to reset the password as an administrator.
0x803100C2L FVE_E_LIVEID_ACCOUNT_SUSPENDED BitLocker cannot save the recovery password because the specified Microsoft account is Suspended.
0x803100C3L FVE_E_LIVEID_ACCOUNT_BLOCKED BitLocker cannot save the recovery password because the specified Microsoft account is Blocked.
0x803100C4L FVE_E_NOT_PROVISIONED_ON_ALL_VOLUMES This PC is not provisioned to support device encryption. Please enable BitLocker on all volumes to comply with device encryption policy.
0x803100C5L FVE_E_DE_FIXED_DATA_NOT_SUPPORTED This PC cannot support device encryption because unencrypted fixed data volumes are present.
0x803100C6L FVE_E_DE_HARDWARE_NOT_COMPLIANT This PC does not meet the hardware requirements to support device encryption.
0x803100C7L FVE_E_DE_WINRE_NOT_CONFIGURED This PC cannot support device encryption because WinRE is not properly configured.
0x803100C8L FVE_E_DE_PROTECTION_SUSPENDED Protection is enabled on the volume but has been suspended. This is likely to have happened due to an update being applied to your system. Please try again after a reboot.
0x803100C9L FVE_E_DE_OS_VOLUME_NOT_PROTECTED This PC is not provisioned to support device encryption.
0x803100CAL FVE_E_DE_DEVICE_LOCKEDOUT Device Lock has been triggered due to too many incorrect password attempts.
0x803100CBL FVE_E_DE_PROTECTION_NOT_YET_ENABLED Protection has not been enabled on the volume. Enabling protection requires a connected account. If you already have a connected account and are seeing this error
0x803100CCL FVE_E_INVALID_PIN_CHARS_DETAILED Your PIN can only contain numbers from 0 to 9.
0x803100CDL FVE_E_DEVICE_LOCKOUT_COUNTER_UNAVAILABLE BitLocker cannot use hardware replay protection because no counter is available on your PC.
0x803100CEL FVE_E_DEVICELOCKOUT_COUNTER_MISMATCH Device Lockout state validation failed due to counter mismatch.
0x803100CFL FVE_E_BUFFER_TOO_LARGE The input buffer is too large.
0x803100D0L FVE_E_NO_SUCH_CAPABILITY_ON_TARGET The target of an invocation does not support requested capability.
0x803100D1L FVE_E_DE_PREVENTED_FOR_OS Device encryption is currently blocked by this PC’s configuration.
0x803100D2L FVE_E_DE_VOLUME_OPTED_OUT This drive has been opted out of device encryption.
0x803100D3L FVE_E_DE_VOLUME_NOT_SUPPORTED Device encryption isn’t available for this drive.
0x803100D4L FVE_E_EOW_NOT_SUPPORTED_IN_VERSION The encrypt on write mode for BitLocker is not supported in this version of Windows. You can turn on BitLocker without using the encrypt on write mode.
0x803100D5L FVE_E_ADBACKUP_NOT_ENABLED Group policy prevents you from backing up your recovery password to Active Directory for this drive type. For more info
0x803100D6L FVE_E_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT Device encryption can’t be turned off while this drive is being encrypted. Please try again later.
0x803100D7L FVE_E_NOT_DE_VOLUME This action isn’t supported because this drive isn’t automatically managed with device encryption.
0x803100D8L FVE_E_PROTECTION_CANNOT_BE_DISABLED BitLocker can’t be suspended on this drive until the next restart.
0x803100D9L FVE_E_OSV_KSR_NOT_ALLOWED BitLocker Drive Encryption policy does not allow KSR operation with protected OS volume.
0x803100DAL FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_OS_DRIVE BitLocker recovery password rotation cannot be performed because backup policy for BitLocker recovery information is not set to required for the OS drive.
0x803100DBL FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_FIXED_DRIVE BitLocker recovery password rotation cannot be performed because backup policy for BitLocker recovery information is not set to required for fixed data drives.
0x803100DCL FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_REMOVABLE_DRIVE BitLocker recovery password rotation cannot be performed because backup policy for BitLocker recovery information is not set to required for removable data drives
0x803100DDL FVE_E_KEY_ROTATION_NOT_SUPPORTED BitLocker recovery password rotation not supported.
0x803100DEL FVE_E_EXECUTE_REQUEST_SENT_TOO_SOON A server issued BitLocker recovery password rotation was denied because requests must be 15 minutes apart.
0x803100DFL FVE_E_KEY_ROTATION_NOT_ENABLED BitLocker recovery password key rotation policy is not enabled.
0x803100E0L FVE_E_DEVICE_NOT_JOINED BitLocker recovery password key rotation could not be performed because the device is neither Azure AD joined nor Hybrid Azure AD joined.
0x803100E1L FVE_E_AAD_ENDPOINT_BUSY BitLocker recovery key backup endpoint is busy and cannot perform requested operation. Please retry after sometime.
0x80320001L FWP_E_CALLOUT_NOT_FOUND The callout does not exist.
0x80320002L FWP_E_CONDITION_NOT_FOUND The filter condition does not exist.
0x80320003L FWP_E_FILTER_NOT_FOUND The filter does not exist.
0x80320004L FWP_E_LAYER_NOT_FOUND The layer does not exist.
0x80320005L FWP_E_PROVIDER_NOT_FOUND The provider does not exist.
0x80320006L FWP_E_PROVIDER_CONTEXT_NOT_FOUND The provider context does not exist.
0x80320007L FWP_E_SUBLAYER_NOT_FOUND The sublayer does not exist.
0x80320008L FWP_E_NOT_FOUND The object does not exist.
0x80320009L FWP_E_ALREADY_EXISTS An object with that GUID or LUID already exists.
0x8032000AL FWP_E_IN_USE The object is referenced by other objects so cannot be deleted.
0x8032000BL FWP_E_DYNAMIC_SESSION_IN_PROGRESS The call is not allowed from within a dynamic session.
0x8032000CL FWP_E_WRONG_SESSION The call was made from the wrong session so cannot be completed.
0x8032000DL FWP_E_NO_TXN_IN_PROGRESS The call must be made from within an explicit transaction.
0x8032000EL FWP_E_TXN_IN_PROGRESS The call is not allowed from within an explicit transaction.
0x8032000FL FWP_E_TXN_ABORTED The explicit transaction has been forcibly cancelled.
0x80320010L FWP_E_SESSION_ABORTED The session has been cancelled.
0x80320011L FWP_E_INCOMPATIBLE_TXN The call is not allowed from within a read-only transaction.
0x80320012L FWP_E_TIMEOUT The call timed out while waiting to acquire the transaction lock.
0x80320013L FWP_E_NET_EVENTS_DISABLED Collection of network diagnostic events is disabled.
0x80320014L FWP_E_INCOMPATIBLE_LAYER The operation is not supported by the specified layer.
0x80320015L FWP_E_KM_CLIENTS_ONLY The call is allowed for kernel-mode callers only.
0x80320016L FWP_E_LIFETIME_MISMATCH The call tried to associate two objects with incompatible lifetimes.
0x80320017L FWP_E_BUILTIN_OBJECT The object is built in so cannot be deleted.
0x80320018L FWP_E_TOO_MANY_CALLOUTS The maximum number of callouts has been reached.
0x80320019L FWP_E_NOTIFICATION_DROPPED A notification could not be delivered because a message queue is at its maximum capacity.
0x8032001AL FWP_E_TRAFFIC_MISMATCH The traffic parameters do not match those for the security association context.
0x8032001BL FWP_E_INCOMPATIBLE_SA_STATE The call is not allowed for the current security association state.
0x8032001CL FWP_E_NULL_POINTER A required pointer is null.
0x8032001DL FWP_E_INVALID_ENUMERATOR An enumerator is not valid.
0x8032001EL FWP_E_INVALID_FLAGS The flags field contains an invalid value.
0x8032001FL FWP_E_INVALID_NET_MASK A network mask is not valid.
0x80320020L FWP_E_INVALID_RANGE An FWP_RANGE is not valid.
0x80320021L FWP_E_INVALID_INTERVAL The time interval is not valid.
0x80320022L FWP_E_ZERO_LENGTH_ARRAY An array that must contain at least one element is zero length.
0x80320023L FWP_E_NULL_DISPLAY_NAME The displayData.name field cannot be null.
0x80320024L FWP_E_INVALID_ACTION_TYPE The action type is not one of the allowed action types for a filter.
0x80320025L FWP_E_INVALID_WEIGHT The filter weight is not valid.
0x80320026L FWP_E_MATCH_TYPE_MISMATCH A filter condition contains a match type that is not compatible with the operands.
0x80320027L FWP_E_TYPE_MISMATCH An FWP_VALUE or FWPM_CONDITION_VALUE is of the wrong type.
0x80320028L FWP_E_OUT_OF_BOUNDS An integer value is outside the allowed range.
0x80320029L FWP_E_RESERVED A reserved field is non-zero.
0x8032002AL FWP_E_DUPLICATE_CONDITION A filter cannot contain multiple conditions operating on a single field.
0x8032002BL FWP_E_DUPLICATE_KEYMOD A policy cannot contain the same keying module more than once.
0x8032002CL FWP_E_ACTION_INCOMPATIBLE_WITH_LAYER The action type is not compatible with the layer.
0x8032002DL FWP_E_ACTION_INCOMPATIBLE_WITH_SUBLAYER The action type is not compatible with the sublayer.
0x8032002EL FWP_E_CONTEXT_INCOMPATIBLE_WITH_LAYER The raw context or the provider context is not compatible with the layer.
0x8032002FL FWP_E_CONTEXT_INCOMPATIBLE_WITH_CALLOUT The raw context or the provider context is not compatible with the callout.
0x80320030L FWP_E_INCOMPATIBLE_AUTH_METHOD The authentication method is not compatible with the policy type.
0x80320031L FWP_E_INCOMPATIBLE_DH_GROUP The Diffie-Hellman group is not compatible with the policy type.
0x80320032L FWP_E_EM_NOT_SUPPORTED An IKE policy cannot contain an Extended Mode policy.
0x80320033L FWP_E_NEVER_MATCH The enumeration template or subscription will never match any objects.
0x80320034L FWP_E_PROVIDER_CONTEXT_MISMATCH The provider context is of the wrong type.
0x80320035L FWP_E_INVALID_PARAMETER The parameter is incorrect.
0x80320036L FWP_E_TOO_MANY_SUBLAYERS The maximum number of sublayers has been reached.
0x80320037L FWP_E_CALLOUT_NOTIFICATION_FAILED The notification function for a callout returned an error.
0x80320038L FWP_E_INVALID_AUTH_TRANSFORM The IPsec authentication transform is not valid.
0x80320039L FWP_E_INVALID_CIPHER_TRANSFORM The IPsec cipher transform is not valid.
0x8032003AL FWP_E_INCOMPATIBLE_CIPHER_TRANSFORM The IPsec cipher transform is not compatible with the policy.
0x8032003BL FWP_E_INVALID_TRANSFORM_COMBINATION The combination of IPsec transform types is not valid.
0x8032003CL FWP_E_DUPLICATE_AUTH_METHOD A policy cannot contain the same auth method more than once.
0x8032003DL FWP_E_INVALID_TUNNEL_ENDPOINT A tunnel endpoint configuration is invalid.
0x8032003EL FWP_E_L2_DRIVER_NOT_READY The WFP MAC Layers are not ready.
0x8032003FL FWP_E_KEY_DICTATOR_ALREADY_REGISTERED A key manager capable of key dictation is already registered
0x80320040L FWP_E_KEY_DICTATION_INVALID_KEYING_MATERIAL A key manager dictated invalid keys
0x80320041L FWP_E_CONNECTIONS_DISABLED The BFE IPsec Connection Tracking is disabled.
0x80320042L FWP_E_INVALID_DNS_NAME The DNS name is invalid.
0x80320043L FWP_E_STILL_ON The engine option is still enabled due to other configuration settings.
0x80320044L FWP_E_IKEEXT_NOT_RUNNING The IKEEXT service is not running. This service only runs when there is IPsec policy applied to the machine.
0x80320104L FWP_E_DROP_NOICMP The packet should be dropped
0x003D0000L WS_S_ASYNC The function call is completing asynchronously.
0x003D0001L WS_S_END There are no more messages available on the channel.
0x803D0000L WS_E_INVALID_FORMAT The input data was not in the expected format or did not have the expected value.
0x803D0001L WS_E_OBJECT_FAULTED The operation could not be completed because the object is in a faulted state due to a previous error.
0x803D0002L WS_E_NUMERIC_OVERFLOW The operation could not be completed because it would lead to numeric overflow.
0x803D0003L WS_E_INVALID_OPERATION The operation is not allowed due to the current state of the object.
0x803D0004L WS_E_OPERATION_ABORTED The operation was aborted.
0x803D0005L WS_E_ENDPOINT_ACCESS_DENIED Access was denied by the remote endpoint.
0x803D0006L WS_E_OPERATION_TIMED_OUT The operation did not complete within the time allotted.
0x803D0007L WS_E_OPERATION_ABANDONED The operation was abandoned.
0x803D0008L WS_E_QUOTA_EXCEEDED A quota was exceeded.
0x803D0009L WS_E_NO_TRANSLATION_AVAILABLE The information was not available in the specified language.
0x803D000AL WS_E_SECURITY_VERIFICATION_FAILURE Security verification was not successful for the received data.
0x803D000BL WS_E_ADDRESS_IN_USE The address is already being used.
0x803D000CL WS_E_ADDRESS_NOT_AVAILABLE The address is not valid for this context.
0x803D000DL WS_E_ENDPOINT_NOT_FOUND The remote endpoint does not exist or could not be located.
0x803D000EL WS_E_ENDPOINT_NOT_AVAILABLE The remote endpoint is not currently in service at this location.
0x803D000FL WS_E_ENDPOINT_FAILURE The remote endpoint could not process the request.
0x803D0010L WS_E_ENDPOINT_UNREACHABLE The remote endpoint was not reachable.
0x803D0011L WS_E_ENDPOINT_ACTION_NOT_SUPPORTED The operation was not supported by the remote endpoint.
0x803D0012L WS_E_ENDPOINT_TOO_BUSY The remote endpoint is unable to process the request due to being overloaded.
0x803D0013L WS_E_ENDPOINT_FAULT_RECEIVED A message containing a fault was received from the remote endpoint.
0x803D0014L WS_E_ENDPOINT_DISCONNECTED The connection with the remote endpoint was terminated.
0x803D0015L WS_E_PROXY_FAILURE The HTTP proxy server could not process the request.
0x803D0016L WS_E_PROXY_ACCESS_DENIED Access was denied by the HTTP proxy server.
0x803D0017L WS_E_NOT_SUPPORTED The requested feature is not available on this platform.
0x803D0018L WS_E_PROXY_REQUIRES_BASIC_AUTH The HTTP proxy server requires HTTP authentication scheme ‘basic’.
0x803D0019L WS_E_PROXY_REQUIRES_DIGEST_AUTH The HTTP proxy server requires HTTP authentication scheme ‘digest’.
0x803D001AL WS_E_PROXY_REQUIRES_NTLM_AUTH The HTTP proxy server requires HTTP authentication scheme ‘NTLM’.
0x803D001BL WS_E_PROXY_REQUIRES_NEGOTIATE_AUTH The HTTP proxy server requires HTTP authentication scheme ‘negotiate’.
0x803D001CL WS_E_SERVER_REQUIRES_BASIC_AUTH The remote endpoint requires HTTP authentication scheme ‘basic’.
0x803D001DL WS_E_SERVER_REQUIRES_DIGEST_AUTH The remote endpoint requires HTTP authentication scheme ‘digest’.
0x803D001EL WS_E_SERVER_REQUIRES_NTLM_AUTH The remote endpoint requires HTTP authentication scheme ‘NTLM’.
0x803D001FL WS_E_SERVER_REQUIRES_NEGOTIATE_AUTH The remote endpoint requires HTTP authentication scheme ‘negotiate’.
0x803D0020L WS_E_INVALID_ENDPOINT_URL The endpoint address URL is invalid.
0x803D0021L WS_E_OTHER Unrecognized error occurred in the Windows Web Services framework.
0x803D0022L WS_E_SECURITY_TOKEN_EXPIRED A security token was rejected by the server because it has expired.
0x803D0023L WS_E_SECURITY_SYSTEM_FAILURE A security operation failed in the Windows Web Services framework.
0x80340002L ERROR_NDIS_INTERFACE_CLOSING The binding to the network interface is being closed.
0x80340004L ERROR_NDIS_BAD_VERSION An invalid version was specified.
0x80340005L ERROR_NDIS_BAD_CHARACTERISTICS An invalid characteristics table was used.
0x80340006L ERROR_NDIS_ADAPTER_NOT_FOUND Failed to find the network interface or network interface is not ready.
0x80340007L ERROR_NDIS_OPEN_FAILED Failed to open the network interface.
0x80340008L ERROR_NDIS_DEVICE_FAILED Network interface has encountered an internal unrecoverable failure.
0x80340009L ERROR_NDIS_MULTICAST_FULL The multicast list on the network interface is full.
0x8034000AL ERROR_NDIS_MULTICAST_EXISTS An attempt was made to add a duplicate multicast address to the list.
0x8034000BL ERROR_NDIS_MULTICAST_NOT_FOUND At attempt was made to remove a multicast address that was never added.
0x8034000CL ERROR_NDIS_REQUEST_ABORTED Netowork interface aborted the request.
0x8034000DL ERROR_NDIS_RESET_IN_PROGRESS Network interface can not process the request because it is being reset.
0x803400BBL ERROR_NDIS_NOT_SUPPORTED Netword interface does not support this request.
0x8034000FL ERROR_NDIS_INVALID_PACKET An attempt was made to send an invalid packet on a network interface.
0x80340011L ERROR_NDIS_ADAPTER_NOT_READY Network interface is not ready to complete this operation.
0x80340014L ERROR_NDIS_INVALID_LENGTH The length of the buffer submitted for this operation is not valid.
0x80340015L ERROR_NDIS_INVALID_DATA The data used for this operation is not valid.
0x80340016L ERROR_NDIS_BUFFER_TOO_SHORT The length of buffer submitted for this operation is too small.
0x80340017L ERROR_NDIS_INVALID_OID Network interface does not support this OID (Object Identifier)
0x80340018L ERROR_NDIS_ADAPTER_REMOVED The network interface has been removed.
0x80340019L ERROR_NDIS_UNSUPPORTED_MEDIA Network interface does not support this media type.
0x8034001AL ERROR_NDIS_GROUP_ADDRESS_IN_USE An attempt was made to remove a token ring group address that is in use by other components.
0x8034001BL ERROR_NDIS_FILE_NOT_FOUND An attempt was made to map a file that can not be found.
0x8034001CL ERROR_NDIS_ERROR_READING_FILE An error occurred while NDIS tried to map the file.
0x8034001DL ERROR_NDIS_ALREADY_MAPPED An attempt was made to map a file that is alreay mapped.
0x8034001EL ERROR_NDIS_RESOURCE_CONFLICT An attempt to allocate a hardware resource failed because the resource is used by another component.
0x8034001FL ERROR_NDIS_MEDIA_DISCONNECTED The I/O operation failed because network media is disconnected or wireless access point is out of range.
0x80340022L ERROR_NDIS_INVALID_ADDRESS The network address used in the request is invalid.
0x80340010L ERROR_NDIS_INVALID_DEVICE_REQUEST The specified request is not a valid operation for the target device.
0x8034002AL ERROR_NDIS_PAUSED The offload operation on the network interface has been paused.
0x8034002BL ERROR_NDIS_INTERFACE_NOT_FOUND Network interface was not found.
0x8034002CL ERROR_NDIS_UNSUPPORTED_REVISION The revision number specified in the structure is not supported.
0x8034002DL ERROR_NDIS_INVALID_PORT The specified port does not exist on this network interface.
0x8034002EL ERROR_NDIS_INVALID_PORT_STATE The current state of the specified port on this network interface does not support the requested operation.
0x8034002FL ERROR_NDIS_LOW_POWER_STATE The miniport adapter is in low power state.
0x80340030L ERROR_NDIS_REINIT_REQUIRED This operation requires the miniport adapter to be reinitialized.
0x80340031L ERROR_NDIS_NO_QUEUES There are not enough queues to complete the operation.
0x80342000L ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED The wireless local area network interface is in auto configuration mode and doesn’t support the requested parameter change operation.
0x80342001L ERROR_NDIS_DOT11_MEDIA_IN_USE The wireless local area network interface is busy and can not perform the requested operation.
0x80342002L ERROR_NDIS_DOT11_POWER_STATE_INVALID The wireless local area network interface is powered down and doesn’t support the requested operation.
0x80342003L ERROR_NDIS_PM_WOL_PATTERN_LIST_FULL The list of wake on LAN patterns is full.
0x80342004L ERROR_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL The list of low power protocol offloads is full.
0x80342005L ERROR_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE The wireless local area network interface cannot start an AP on the specified channel right now.
0x80342006L ERROR_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE The wireless local area network interface cannot start an AP on the specified band right now.
0x80342007L ERROR_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED The wireless local area network interface cannot start an AP on this channel due to regulatory reasons.
0x80342008L ERROR_NDIS_DOT11_AP_BAND_NOT_ALLOWED The wireless local area network interface cannot start an AP on this band due to regulatory reasons.
0x00340001L ERROR_NDIS_INDICATION_REQUIRED The request will be completed later by NDIS status indication.
0xC034100FL ERROR_NDIS_OFFLOAD_POLICY The TCP connection is not offloadable because of a local policy setting.
0xC0341012L ERROR_NDIS_OFFLOAD_CONNECTION_REJECTED The TCP connection is not offloadable by the Chimney Offload target.
0xC0341013L ERROR_NDIS_OFFLOAD_PATH_REJECTED The IP Path object is not in an offloadable state.
0xC0350002L ERROR_HV_INVALID_HYPERCALL_CODE The hypervisor does not support the operation because the specified hypercall code is not supported.
0xC0350003L ERROR_HV_INVALID_HYPERCALL_INPUT The hypervisor does not support the operation because the encoding for the hypercall input register is not supported.
0xC0350004L ERROR_HV_INVALID_ALIGNMENT The hypervisor could not perform the operation because a parameter has an invalid alignment.
0xC0350005L ERROR_HV_INVALID_PARAMETER The hypervisor could not perform the operation because an invalid parameter was specified.
0xC0350006L ERROR_HV_ACCESS_DENIED Access to the specified object was denied.
0xC0350007L ERROR_HV_INVALID_PARTITION_STATE The hypervisor could not perform the operation because the partition is entering or in an invalid state.
0xC0350008L ERROR_HV_OPERATION_DENIED The operation is not allowed in the current state.
0xC0350009L ERROR_HV_UNKNOWN_PROPERTY The hypervisor does not recognize the specified partition property.
0xC035000AL ERROR_HV_PROPERTY_VALUE_OUT_OF_RANGE The specified value of a partition property is out of range or violates an invariant.
0xC035000BL ERROR_HV_INSUFFICIENT_MEMORY There is not enough memory in the hypervisor pool to complete the operation.
0xC035000CL ERROR_HV_PARTITION_TOO_DEEP The maximum partition depth has been exceeded for the partition hierarchy.
0xC035000DL ERROR_HV_INVALID_PARTITION_ID A partition with the specified partition Id does not exist.
0xC035000EL ERROR_HV_INVALID_VP_INDEX The hypervisor could not perform the operation because the specified VP index is invalid.
0xC0350011L ERROR_HV_INVALID_PORT_ID The hypervisor could not perform the operation because the specified port identifier is invalid.
0xC0350012L ERROR_HV_INVALID_CONNECTION_ID The hypervisor could not perform the operation because the specified connection identifier is invalid.
0xC0350013L ERROR_HV_INSUFFICIENT_BUFFERS Not enough buffers were supplied to send a message.
0xC0350014L ERROR_HV_NOT_ACKNOWLEDGED The previous virtual interrupt has not been acknowledged.
0xC0350015L ERROR_HV_INVALID_VP_STATE A virtual processor is not in the correct state for the indicated operation.
0xC0350016L ERROR_HV_ACKNOWLEDGED The previous virtual interrupt has already been acknowledged.
0xC0350017L ERROR_HV_INVALID_SAVE_RESTORE_STATE The indicated partition is not in a valid state for saving or restoring.
0xC0350018L ERROR_HV_INVALID_SYNIC_STATE The hypervisor could not complete the operation because a required feature of the synthetic interrupt controller (SynIC) was disabled.
0xC0350019L ERROR_HV_OBJECT_IN_USE The hypervisor could not perform the operation because the object or value was either already in use or being used for a purpose that would not permit completing the operation.
0xC035001AL ERROR_HV_INVALID_PROXIMITY_DOMAIN_INFO The proximity domain information is invalid.
0xC035001BL ERROR_HV_NO_DATA An attempt to retrieve debugging data failed because none was available.
0xC035001CL ERROR_HV_INACTIVE The physical connection being used for debugging has not recorded any receive activity since the last operation.
0xC035001DL ERROR_HV_NO_RESOURCES There are not enough resources to complete the operation.
0xC035001EL ERROR_HV_FEATURE_UNAVAILABLE A hypervisor feature is not available to the user.
0xC0350033L ERROR_HV_INSUFFICIENT_BUFFER The specified buffer was too small to contain all of the requested data.
0xC0350038L ERROR_HV_INSUFFICIENT_DEVICE_DOMAINS The maximum number of domains supported by the platform I/O remapping hardware is currently in use. No domains are available to assign this device to this partition.
0xC035003CL ERROR_HV_CPUID_FEATURE_VALIDATION Validation of CPUID data of the processor failed.
0xC035003DL ERROR_HV_CPUID_XSAVE_FEATURE_VALIDATION Validation of XSAVE CPUID data of the processor failed.
0xC035003EL ERROR_HV_PROCESSOR_STARTUP_TIMEOUT Processor did not respond within the timeout period.
0xC035003FL ERROR_HV_SMX_ENABLED SMX has been enabled in the BIOS.
0xC0350041L ERROR_HV_INVALID_LP_INDEX The hypervisor could not perform the operation because the specified LP index is invalid.
0xC0350050L ERROR_HV_INVALID_REGISTER_VALUE The supplied register value is invalid.
0xC0350051L ERROR_HV_INVALID_VTL_STATE The supplied virtual trust level is not in the correct state to perform the requested operation.
0xC0350055L ERROR_HV_NX_NOT_DETECTED No execute feature (NX) is not present or not enabled in the BIOS.
0xC0350057L ERROR_HV_INVALID_DEVICE_ID The supplied device ID is invalid.
0xC0350058L ERROR_HV_INVALID_DEVICE_STATE The operation is not allowed in the current device state.
0x00350059L ERROR_HV_PENDING_PAGE_REQUESTS The device had pending page requests which were discarded.
0xC0350060L ERROR_HV_PAGE_REQUEST_INVALID The supplied page request specifies a memory access that the guest does not have permissions to perform.
0xC035006FL ERROR_HV_INVALID_CPU_GROUP_ID A CPU group with the specified CPU group Id does not exist.
0xC0350070L ERROR_HV_INVALID_CPU_GROUP_STATE The hypervisor could not perform the operation because the CPU group is entering or in an invalid state.
0xC0350071L ERROR_HV_OPERATION_FAILED The requested operation failed.
0xC0350072L ERROR_HV_NOT_ALLOWED_WITH_NESTED_VIRT_ACTIVE The hypervisor could not perform the operation because it is not allowed with nested virtualization active.
0xC0350073L ERROR_HV_INSUFFICIENT_ROOT_MEMORY There is not enough memory in the root partition’s pool to complete the operation.
0xC0350074L ERROR_HV_EVENT_BUFFER_ALREADY_FREED The provided event log buffer was already marked as freed.
0xC0350075L ERROR_HV_INSUFFICIENT_CONTIGUOUS_MEMORY There is not enough contiguous memory in the partition’s pool to complete the operation.
0xC0351000L ERROR_HV_NOT_PRESENT No hypervisor is present on this system.
0xC0370001L ERROR_VID_DUPLICATE_HANDLER The handler for the virtualization infrastructure driver is already registered. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370002L ERROR_VID_TOO_MANY_HANDLERS The number of registered handlers for the virtualization infrastructure driver exceeded the maximum. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370003L ERROR_VID_QUEUE_FULL The message queue for the virtualization infrastructure driver is full and cannot accept new messages. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370004L ERROR_VID_HANDLER_NOT_PRESENT No handler exists to handle the message for the virtualization infrastructure driver. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370005L ERROR_VID_INVALID_OBJECT_NAME The name of the partition or message queue for the virtualization infrastructure driver is invalid. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370006L ERROR_VID_PARTITION_NAME_TOO_LONG The partition name of the virtualization infrastructure driver exceeds the maximum.
0xC0370007L ERROR_VID_MESSAGE_QUEUE_NAME_TOO_LONG The message queue name of the virtualization infrastructure driver exceeds the maximum.
0xC0370008L ERROR_VID_PARTITION_ALREADY_EXISTS Cannot create the partition for the virtualization infrastructure driver because another partition with the same name already exists.
0xC0370009L ERROR_VID_PARTITION_DOES_NOT_EXIST The virtualization infrastructure driver has encountered an error. The requested partition does not exist. Restarting the virtual machine may fix the problem. If the problem persists
0xC037000AL ERROR_VID_PARTITION_NAME_NOT_FOUND The virtualization infrastructure driver has encountered an error. Could not find the requested partition. Restarting the virtual machine may fix the problem. If the problem persists
0xC037000BL ERROR_VID_MESSAGE_QUEUE_ALREADY_EXISTS A message queue with the same name already exists for the virtualization infrastructure driver.
0xC037000CL ERROR_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT The memory block page for the virtualization infrastructure driver cannot be mapped because the page map limit has been reached. Restarting the virtual machine may fix the problem. If the problem persists
0xC037000DL ERROR_VID_MB_STILL_REFERENCED The memory block for the virtualization infrastructure driver is still being used and cannot be destroyed.
0xC037000EL ERROR_VID_CHILD_GPA_PAGE_SET_CORRUPTED Cannot unlock the page array for the guest operating system memory address because it does not match a previous lock request. Restarting the virtual machine may fix the problem. If the problem persists
0xC037000FL ERROR_VID_INVALID_NUMA_SETTINGS The non-uniform memory access (NUMA) node settings do not match the system NUMA topology. In order to start the virtual machine
0xC0370010L ERROR_VID_INVALID_NUMA_NODE_INDEX The non-uniform memory access (NUMA) node index does not match a valid index in the system NUMA topology.
0xC0370011L ERROR_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED The memory block for the virtualization infrastructure driver is already associated with a message queue.
0xC0370012L ERROR_VID_INVALID_MEMORY_BLOCK_HANDLE The handle is not a valid memory block handle for the virtualization infrastructure driver.
0xC0370013L ERROR_VID_PAGE_RANGE_OVERFLOW The request exceeded the memory block page limit for the virtualization infrastructure driver. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370014L ERROR_VID_INVALID_MESSAGE_QUEUE_HANDLE The handle is not a valid message queue handle for the virtualization infrastructure driver.
0xC0370015L ERROR_VID_INVALID_GPA_RANGE_HANDLE The handle is not a valid page range handle for the virtualization infrastructure driver.
0xC0370016L ERROR_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE Cannot install client notifications because no message queue for the virtualization infrastructure driver is associated with the memory block.
0xC0370017L ERROR_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED The request to lock or map a memory block page failed because the virtualization infrastructure driver memory block limit has been reached. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370018L ERROR_VID_INVALID_PPM_HANDLE The handle is not a valid parent partition mapping handle for the virtualization infrastructure driver.
0xC0370019L ERROR_VID_MBPS_ARE_LOCKED Notifications cannot be created on the memory block because it is use.
0xC037001AL ERROR_VID_MESSAGE_QUEUE_CLOSED The message queue for the virtualization infrastructure driver has been closed. Restarting the virtual machine may fix the problem. If the problem persists
0xC037001BL ERROR_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED Cannot add a virtual processor to the partition because the maximum has been reached.
0xC037001CL ERROR_VID_STOP_PENDING Cannot stop the virtual processor immediately because of a pending intercept.
0xC037001DL ERROR_VID_INVALID_PROCESSOR_STATE Invalid state for the virtual processor. Restarting the virtual machine may fix the problem. If the problem persists
0xC037001EL ERROR_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT The maximum number of kernel mode clients for the virtualization infrastructure driver has been reached. Restarting the virtual machine may fix the problem. If the problem persists
0xC037001FL ERROR_VID_KM_INTERFACE_ALREADY_INITIALIZED This kernel mode interface for the virtualization infrastructure driver has already been initialized. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370020L ERROR_VID_MB_PROPERTY_ALREADY_SET_RESET Cannot set or reset the memory block property more than once for the virtualization infrastructure driver. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370021L ERROR_VID_MMIO_RANGE_DESTROYED The memory mapped I/O for this page range no longer exists. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370022L ERROR_VID_INVALID_CHILD_GPA_PAGE_SET The lock or unlock request uses an invalid guest operating system memory address. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370023L ERROR_VID_RESERVE_PAGE_SET_IS_BEING_USED Cannot destroy or reuse the reserve page set for the virtualization infrastructure driver because it is in use. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370024L ERROR_VID_RESERVE_PAGE_SET_TOO_SMALL The reserve page set for the virtualization infrastructure driver is too small to use in the lock request. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370025L ERROR_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE Cannot lock or map the memory block page for the virtualization infrastructure driver because it has already been locked using a reserve page set page. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370026L ERROR_VID_MBP_COUNT_EXCEEDED_LIMIT Cannot create the memory block for the virtualization infrastructure driver because the requested number of pages exceeded the limit. Restarting the virtual machine may fix the problem. If the problem persists
0xC0370027L ERROR_VID_SAVED_STATE_CORRUPT Cannot restore this virtual machine because the saved state data cannot be read. Delete the saved state data and then try to start the virtual machine.
0xC0370028L ERROR_VID_SAVED_STATE_UNRECOGNIZED_ITEM Cannot restore this virtual machine because an item read from the saved state data is not recognized. Delete the saved state data and then try to start the virtual machine.
0xC0370029L ERROR_VID_SAVED_STATE_INCOMPATIBLE Cannot restore this virtual machine to the saved state because of hypervisor incompatibility. Delete the saved state data and then try to start the virtual machine.
0xC037002AL ERROR_VID_VTL_ACCESS_DENIED The specified VTL does not have the permission to access the resource.
0xC0370100L ERROR_VMCOMPUTE_TERMINATED_DURING_START The virtual machine or container exited unexpectedly while starting.
0xC0370101L ERROR_VMCOMPUTE_IMAGE_MISMATCH The container operating system does not match the host operating system.
0xC0370102L ERROR_VMCOMPUTE_HYPERV_NOT_INSTALLED The virtual machine could not be started because a required feature is not installed.
0xC0370103L ERROR_VMCOMPUTE_OPERATION_PENDING The call to start an asynchronous operation succeeded and the operation is performed in the background.
0xC0370104L ERROR_VMCOMPUTE_TOO_MANY_NOTIFICATIONS The supported number of notification callbacks has been exceeded.
0xC0370105L ERROR_VMCOMPUTE_INVALID_STATE The requested virtual machine or container operation is not valid in the current state.
0xC0370106L ERROR_VMCOMPUTE_UNEXPECTED_EXIT The virtual machine or container exited unexpectedly.
0xC0370107L ERROR_VMCOMPUTE_TERMINATED The virtual machine or container was forcefully exited.
0xC0370108L ERROR_VMCOMPUTE_CONNECT_FAILED A connection could not be established with the container or virtual machine.
0xC0370109L ERROR_VMCOMPUTE_TIMEOUT The operation timed out because a response was not received from the virtual machine or container.
0xC037010AL ERROR_VMCOMPUTE_CONNECTION_CLOSED The connection with the virtual machine or container was closed.
0xC037010BL ERROR_VMCOMPUTE_UNKNOWN_MESSAGE An unknown internal message was received by the virtual machine or container.
0xC037010CL ERROR_VMCOMPUTE_UNSUPPORTED_PROTOCOL_VERSION The virtual machine or container does not support an available version of the communication protocol with the host.
0xC037010DL ERROR_VMCOMPUTE_INVALID_JSON The virtual machine or container JSON document is invalid.
0xC037010EL ERROR_VMCOMPUTE_SYSTEM_NOT_FOUND A virtual machine or container with the specified identifier does not exist.
0xC037010FL ERROR_VMCOMPUTE_SYSTEM_ALREADY_EXISTS A virtual machine or container with the specified identifier already exists.
0xC0370110L ERROR_VMCOMPUTE_SYSTEM_ALREADY_STOPPED The virtual machine or container with the specified identifier is not running.
0xC0370111L ERROR_VMCOMPUTE_PROTOCOL_ERROR A communication protocol error has occurred between the virtual machine or container and the host.
0xC0370112L ERROR_VMCOMPUTE_INVALID_LAYER The container image contains a layer with an unrecognized format.
0xC0370113L ERROR_VMCOMPUTE_WINDOWS_INSIDER_REQUIRED To use this container image
0x80370100L HCS_E_TERMINATED_DURING_START The virtual machine or container exited unexpectedly while starting.
0x80370101L HCS_E_IMAGE_MISMATCH The container operating system does not match the host operating system.
0x80370102L HCS_E_HYPERV_NOT_INSTALLED The virtual machine could not be started because a required feature is not installed.
0x80370105L HCS_E_INVALID_STATE The requested virtual machine or container operation is not valid in the current state.
0x80370106L HCS_E_UNEXPECTED_EXIT The virtual machine or container exited unexpectedly.
0x80370107L HCS_E_TERMINATED The virtual machine or container was forcefully exited.
0x80370108L HCS_E_CONNECT_FAILED A connection could not be established with the container or virtual machine.
0x80370109L HCS_E_CONNECTION_TIMEOUT The operation timed out because a response was not received from the virtual machine or container.
0x8037010AL HCS_E_CONNECTION_CLOSED The connection with the virtual machine or container was closed.
0x8037010BL HCS_E_UNKNOWN_MESSAGE An unknown internal message was received by the virtual machine or container.
0x8037010CL HCS_E_UNSUPPORTED_PROTOCOL_VERSION The virtual machine or container does not support an available version of the communication protocol with the host.
0x8037010DL HCS_E_INVALID_JSON The virtual machine or container JSON document is invalid.
0x8037010EL HCS_E_SYSTEM_NOT_FOUND A virtual machine or container with the specified identifier does not exist.
0x8037010FL HCS_E_SYSTEM_ALREADY_EXISTS A virtual machine or container with the specified identifier already exists.
0x80370110L HCS_E_SYSTEM_ALREADY_STOPPED The virtual machine or container with the specified identifier is not running.
0x80370111L HCS_E_PROTOCOL_ERROR A communication protocol error has occurred between the virtual machine or container and the host.
0x80370112L HCS_E_INVALID_LAYER The container image contains a layer with an unrecognized format.
0x80370113L HCS_E_WINDOWS_INSIDER_REQUIRED To use this container image
0x80370114L HCS_E_SERVICE_NOT_AVAILABLE The operation could not be started because a required feature is not installed.
0x80370115L HCS_E_OPERATION_NOT_STARTED The operation has not started.
0x80370116L HCS_E_OPERATION_ALREADY_STARTED The operation is already running.
0x80370117L HCS_E_OPERATION_PENDING The operation is still running.
0x80370118L HCS_E_OPERATION_TIMEOUT The operation did not complete in time.
0x80370119L HCS_E_OPERATION_SYSTEM_CALLBACK_ALREADY_SET An event callback has already been registered on this handle.
0x8037011AL HCS_E_OPERATION_RESULT_ALLOCATION_FAILED Not enough memory available to return the result of the operation.
0x8037011BL HCS_E_ACCESS_DENIED Insufficient privileges. Only administrators or users that are members of the Hyper-V Administrators user group are permitted to access virtual machines or containers. To add yourself to the Hyper-V Administrators user group
0x8037011CL HCS_E_GUEST_CRITICAL_ERROR The virtual machine or container reported a critical error and was stopped or restarted.
0x8037011DL HCS_E_PROCESS_INFO_NOT_AVAILABLE The process information is not available.
0x8037011EL HCS_E_SERVICE_DISCONNECT The host compute system service has disconnected unexpectedly.
0x8037011FL HCS_E_PROCESS_ALREADY_STOPPED The process has already exited.
0xC0370200L ERROR_VNET_VIRTUAL_SWITCH_NAME_NOT_FOUND A virtual switch with the given name was not found.
0x80370001L ERROR_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED A virtual machine is running with its memory allocated across multiple NUMA nodes. This does not indicate a problem unless the performance of your virtual machine is unusually slow. If you are experiencing performance problems
0x80370300L WHV_E_UNKNOWN_CAPABILITY The specified capability does not exist.
0x80370301L WHV_E_INSUFFICIENT_BUFFER The specified buffer is too small for the requested data.
0x80370302L WHV_E_UNKNOWN_PROPERTY The specified property does not exist.
0x80370303L WHV_E_UNSUPPORTED_HYPERVISOR_CONFIG The configuration of the hypervisor on this system is not supported.
0x80370304L WHV_E_INVALID_PARTITION_CONFIG The configuration of the partition is not valid.
0x80370305L WHV_E_GPA_RANGE_NOT_FOUND The specified GPA range was not found.
0x80370306L WHV_E_VP_ALREADY_EXISTS A virtual processor with the specified index already exists.
0x80370307L WHV_E_VP_DOES_NOT_EXIST A virtual processor with the specified index does not exist.
0x80370308L WHV_E_INVALID_VP_STATE The virtual processor is not in the correct state to perform the requested operation.
0x80370309L WHV_E_INVALID_VP_REGISTER_NAME A virtual processor register with the specified name does not exist.
0x80370310L WHV_E_UNSUPPORTED_PROCESSOR_CONFIG The Windows Hypervisor Platform is not supported due to a processor limitation.
0xC0370400L ERROR_VSMB_SAVED_STATE_FILE_NOT_FOUND Cannot restore this virtual machine because a file read from the vSMB saved state data could not be found. Delete the saved state data and then try to start the virtual machine.
0xC0370401L ERROR_VSMB_SAVED_STATE_CORRUPT Cannot restore this virtual machine because the vSMB saved state data cannot be read. Delete the saved state data and then try to start the virtual machine.
0xC0370500L VM_SAVED_STATE_DUMP_E_PARTITION_STATE_NOT_FOUND Partition state blob not found. Make sure the virtual machine is saved for this content to be included in the saved state file(s).
0xC0370501L VM_SAVED_STATE_DUMP_E_GUEST_MEMORY_NOT_FOUND Guest memory not found. Make sure the virtual machine is saved for this content to be included in the saved state file(s).
0xC0370502L VM_SAVED_STATE_DUMP_E_NO_VP_FOUND_IN_PARTITION_STATE No virtual processor information found in the saved partition blob. Make sure the virtual machine is saved successfully for this content to be included in the partition state.
0xC0370503L VM_SAVED_STATE_DUMP_E_NESTED_VIRTUALIZATION_NOT_SUPPORTED A virtual processor has been detected to have nested virtualization enabled. Nested Virtualization is not supported yet by VmSavedStateDumpProvider.
0xC0370504L VM_SAVED_STATE_DUMP_E_WINDOWS_KERNEL_IMAGE_NOT_FOUND The Windows kernel image address could not be found in the virtual machine saved state.
0xC0370505L VM_SAVED_STATE_DUMP_E_PXE_NOT_PRESENT Failed to read Page Map Level 4 entry (pxe) for a virtual address.
0xC0370506L VM_SAVED_STATE_DUMP_E_PDPTE_NOT_PRESENT Failed to read Page Directory Page Table entry (pdpte) for a virtual address.
0xC0370507L VM_SAVED_STATE_DUMP_E_PDE_NOT_PRESENT Failed to read Page Directory entry (pde) for a virtual address.
0xC0370508L VM_SAVED_STATE_DUMP_E_PTE_NOT_PRESENT Failed to read Page Table entry (pte) for a virtual address.
0x80380001L ERROR_VOLMGR_INCOMPLETE_REGENERATION The regeneration operation was not able to copy all data from the active plexes due to bad sectors.
0x80380002L ERROR_VOLMGR_INCOMPLETE_DISK_MIGRATION One or more disks were not fully migrated to the target pack. They may or may not require reimport after fixing the hardware problems.
0xC0380001L ERROR_VOLMGR_DATABASE_FULL The configuration database is full.
0xC0380002L ERROR_VOLMGR_DISK_CONFIGURATION_CORRUPTED The configuration data on the disk is corrupted.
0xC0380003L ERROR_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC The configuration on the disk is not insync with the in-memory configuration.
0xC0380004L ERROR_VOLMGR_PACK_CONFIG_UPDATE_FAILED A majority of disks failed to be updated with the new configuration.
0xC0380005L ERROR_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME The disk contains non-simple volumes.
0xC0380006L ERROR_VOLMGR_DISK_DUPLICATE The same disk was specified more than once in the migration list.
0xC0380007L ERROR_VOLMGR_DISK_DYNAMIC The disk is already dynamic.
0xC0380008L ERROR_VOLMGR_DISK_ID_INVALID The specified disk id is invalid. There are no disks with the specified disk id.
0xC0380009L ERROR_VOLMGR_DISK_INVALID The specified disk is an invalid disk. Operation cannot complete on an invalid disk.
0xC038000AL ERROR_VOLMGR_DISK_LAST_VOTER The specified disk(s) cannot be removed since it is the last remaining voter.
0xC038000BL ERROR_VOLMGR_DISK_LAYOUT_INVALID The specified disk has an invalid disk layout.
0xC038000CL ERROR_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS The disk layout contains non-basic partitions which appear after basic partitions. This is an invalid disk layout.
0xC038000DL ERROR_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED The disk layout contains partitions which are not cylinder aligned.
0xC038000EL ERROR_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL The disk layout contains partitions which are smaller than the minimum size.
0xC038000FL ERROR_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS The disk layout contains primary partitions in between logical drives. This is an invalid disk layout.
0xC0380010L ERROR_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS The disk layout contains more than the maximum number of supported partitions.
0xC0380011L ERROR_VOLMGR_DISK_MISSING The specified disk is missing. The operation cannot complete on a missing disk.
0xC0380012L ERROR_VOLMGR_DISK_NOT_EMPTY The specified disk is not empty.
0xC0380013L ERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE There is not enough usable space for this operation.
0xC0380014L ERROR_VOLMGR_DISK_REVECTORING_FAILED The force revectoring of bad sectors failed.
0xC0380015L ERROR_VOLMGR_DISK_SECTOR_SIZE_INVALID The specified disk has an invalid sector size.
0xC0380016L ERROR_VOLMGR_DISK_SET_NOT_CONTAINED The specified disk set contains volumes which exist on disks outside of the set.
0xC0380017L ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS A disk in the volume layout provides extents to more than one member of a plex.
0xC0380018L ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES A disk in the volume layout provides extents to more than one plex.
0xC0380019L ERROR_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED Dynamic disks are not supported on this system.
0xC038001AL ERROR_VOLMGR_EXTENT_ALREADY_USED The specified extent is already used by other volumes.
0xC038001BL ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS The specified volume is retained and can only be extended into a contiguous extent. The specified extent to grow the volume is not contiguous with the specified volume.
0xC038001CL ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION The specified volume extent is not within the public region of the disk.
0xC038001DL ERROR_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED The specified volume extent is not sector aligned.
0xC038001EL ERROR_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION The specified partition overlaps an EBR (the first track of an extended partition on an MBR disk).
0xC038001FL ERROR_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH The specified extent lengths cannot be used to construct a volume with specified length.
0xC0380020L ERROR_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED The system does not support fault tolerant volumes.
0xC0380021L ERROR_VOLMGR_INTERLEAVE_LENGTH_INVALID The specified interleave length is invalid.
0xC0380022L ERROR_VOLMGR_MAXIMUM_REGISTERED_USERS There is already a maximum number of registered users.
0xC0380023L ERROR_VOLMGR_MEMBER_IN_SYNC The specified member is already in-sync with the other active members. It does not need to be regenerated.
0xC0380024L ERROR_VOLMGR_MEMBER_INDEX_DUPLICATE The same member index was specified more than once.
0xC0380025L ERROR_VOLMGR_MEMBER_INDEX_INVALID The specified member index is greater or equal than the number of members in the volume plex.
0xC0380026L ERROR_VOLMGR_MEMBER_MISSING The specified member is missing. It cannot be regenerated.
0xC0380027L ERROR_VOLMGR_MEMBER_NOT_DETACHED The specified member is not detached. Cannot replace a member which is not detached.
0xC0380028L ERROR_VOLMGR_MEMBER_REGENERATING The specified member is already regenerating.
0xC0380029L ERROR_VOLMGR_ALL_DISKS_FAILED All disks belonging to the pack failed.
0xC038002AL ERROR_VOLMGR_NO_REGISTERED_USERS There are currently no registered users for notifications. The task number is irrelevant unless there are registered users.
0xC038002BL ERROR_VOLMGR_NO_SUCH_USER The specified notification user does not exist. Failed to unregister user for notifications.
0xC038002CL ERROR_VOLMGR_NOTIFICATION_RESET The notifications have been reset. Notifications for the current user are invalid. Unregister and re-register for notifications.
0xC038002DL ERROR_VOLMGR_NUMBER_OF_MEMBERS_INVALID The specified number of members is invalid.
0xC038002EL ERROR_VOLMGR_NUMBER_OF_PLEXES_INVALID The specified number of plexes is invalid.
0xC038002FL ERROR_VOLMGR_PACK_DUPLICATE The specified source and target packs are identical.
0xC0380030L ERROR_VOLMGR_PACK_ID_INVALID The specified pack id is invalid. There are no packs with the specified pack id.
0xC0380031L ERROR_VOLMGR_PACK_INVALID The specified pack is the invalid pack. The operation cannot complete with the invalid pack.
0xC0380032L ERROR_VOLMGR_PACK_NAME_INVALID The specified pack name is invalid.
0xC0380033L ERROR_VOLMGR_PACK_OFFLINE The specified pack is offline.
0xC0380034L ERROR_VOLMGR_PACK_HAS_QUORUM The specified pack already has a quorum of healthy disks.
0xC0380035L ERROR_VOLMGR_PACK_WITHOUT_QUORUM The pack does not have a quorum of healthy disks.
0xC0380036L ERROR_VOLMGR_PARTITION_STYLE_INVALID The specified disk has an unsupported partition style. Only MBR and GPT partition styles are supported.
0xC0380037L ERROR_VOLMGR_PARTITION_UPDATE_FAILED Failed to update the disk’s partition layout.
0xC0380038L ERROR_VOLMGR_PLEX_IN_SYNC The specified plex is already in-sync with the other active plexes. It does not need to be regenerated.
0xC0380039L ERROR_VOLMGR_PLEX_INDEX_DUPLICATE The same plex index was specified more than once.
0xC038003AL ERROR_VOLMGR_PLEX_INDEX_INVALID The specified plex index is greater or equal than the number of plexes in the volume.
0xC038003BL ERROR_VOLMGR_PLEX_LAST_ACTIVE The specified plex is the last active plex in the volume. The plex cannot be removed or else the volume will go offline.
0xC038003CL ERROR_VOLMGR_PLEX_MISSING The specified plex is missing.
0xC038003DL ERROR_VOLMGR_PLEX_REGENERATING The specified plex is currently regenerating.
0xC038003EL ERROR_VOLMGR_PLEX_TYPE_INVALID The specified plex type is invalid.
0xC038003FL ERROR_VOLMGR_PLEX_NOT_RAID5 The operation is only supported on RAID-5 plexes.
0xC0380040L ERROR_VOLMGR_PLEX_NOT_SIMPLE The operation is only supported on simple plexes.
0xC0380041L ERROR_VOLMGR_STRUCTURE_SIZE_INVALID The Size fields in the VM_VOLUME_LAYOUT input structure are incorrectly set.
0xC0380042L ERROR_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS There is already a pending request for notifications. Wait for the existing request to return before requesting for more notifications.
0xC0380043L ERROR_VOLMGR_TRANSACTION_IN_PROGRESS There is currently a transaction in process.
0xC0380044L ERROR_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE An unexpected layout change occurred outside of the volume manager.
0xC0380045L ERROR_VOLMGR_VOLUME_CONTAINS_MISSING_DISK The specified volume contains a missing disk.
0xC0380046L ERROR_VOLMGR_VOLUME_ID_INVALID The specified volume id is invalid. There are no volumes with the specified volume id.
0xC0380047L ERROR_VOLMGR_VOLUME_LENGTH_INVALID The specified volume length is invalid.
0xC0380048L ERROR_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE The specified size for the volume is not a multiple of the sector size.
0xC0380049L ERROR_VOLMGR_VOLUME_NOT_MIRRORED The operation is only supported on mirrored volumes.
0xC038004AL ERROR_VOLMGR_VOLUME_NOT_RETAINED The specified volume does not have a retain partition.
0xC038004BL ERROR_VOLMGR_VOLUME_OFFLINE The specified volume is offline.
0xC038004CL ERROR_VOLMGR_VOLUME_RETAINED The specified volume already has a retain partition.
0xC038004DL ERROR_VOLMGR_NUMBER_OF_EXTENTS_INVALID The specified number of extents is invalid.
0xC038004EL ERROR_VOLMGR_DIFFERENT_SECTOR_SIZE All disks participating to the volume must have the same sector size.
0xC038004FL ERROR_VOLMGR_BAD_BOOT_DISK The boot disk experienced failures.
0xC0380050L ERROR_VOLMGR_PACK_CONFIG_OFFLINE The configuration of the pack is offline.
0xC0380051L ERROR_VOLMGR_PACK_CONFIG_ONLINE The configuration of the pack is online.
0xC0380052L ERROR_VOLMGR_NOT_PRIMARY_PACK The specified pack is not the primary pack.
0xC0380053L ERROR_VOLMGR_PACK_LOG_UPDATE_FAILED All disks failed to be updated with the new content of the log.
0xC0380054L ERROR_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID The specified number of disks in a plex is invalid.
0xC0380055L ERROR_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID The specified number of disks in a plex member is invalid.
0xC0380056L ERROR_VOLMGR_VOLUME_MIRRORED The operation is not supported on mirrored volumes.
0xC0380057L ERROR_VOLMGR_PLEX_NOT_SIMPLE_SPANNED The operation is only supported on simple and spanned plexes.
0xC0380058L ERROR_VOLMGR_NO_VALID_LOG_COPIES The pack has no valid log copies.
0xC0380059L ERROR_VOLMGR_PRIMARY_PACK_PRESENT A primary pack is already present.
0xC038005AL ERROR_VOLMGR_NUMBER_OF_DISKS_INVALID The specified number of disks is invalid.
0xC038005BL ERROR_VOLMGR_MIRROR_NOT_SUPPORTED The system does not support mirrored volumes.
0xC038005CL ERROR_VOLMGR_RAID5_NOT_SUPPORTED The system does not support RAID-5 volumes.
0x80390001L ERROR_BCD_NOT_ALL_ENTRIES_IMPORTED Some BCD entries were not imported correctly from the BCD store.
0xC0390002L ERROR_BCD_TOO_MANY_ELEMENTS Entries enumerated have exceeded the allowed threshold.
0x80390003L ERROR_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED Some BCD entries were not synchronized correctly with the firmware.
0xC03A0001L ERROR_VHD_DRIVE_FOOTER_MISSING The virtual hard disk is corrupted. The virtual hard disk drive footer is missing.
0xC03A0002L ERROR_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH The virtual hard disk is corrupted. The virtual hard disk drive footer checksum does not match the on-disk checksum.
0xC03A0003L ERROR_VHD_DRIVE_FOOTER_CORRUPT The virtual hard disk is corrupted. The virtual hard disk drive footer in the virtual hard disk is corrupted.
0xC03A0004L ERROR_VHD_FORMAT_UNKNOWN The system does not recognize the file format of this virtual hard disk.
0xC03A0005L ERROR_VHD_FORMAT_UNSUPPORTED_VERSION The version does not support this version of the file format.
0xC03A0006L ERROR_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH The virtual hard disk is corrupted. The sparse header checksum does not match the on-disk checksum.
0xC03A0007L ERROR_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION The system does not support this version of the virtual hard disk.This version of the sparse header is not supported.
0xC03A0008L ERROR_VHD_SPARSE_HEADER_CORRUPT The virtual hard disk is corrupted. The sparse header in the virtual hard disk is corrupt.
0xC03A0009L ERROR_VHD_BLOCK_ALLOCATION_FAILURE Failed to write to the virtual hard disk failed because the system failed to allocate a new block in the virtual hard disk.
0xC03A000AL ERROR_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT The virtual hard disk is corrupted. The block allocation table in the virtual hard disk is corrupt.
0xC03A000BL ERROR_VHD_INVALID_BLOCK_SIZE The system does not support this version of the virtual hard disk. The block size is invalid.
0xC03A000CL ERROR_VHD_BITMAP_MISMATCH The virtual hard disk is corrupted. The block bitmap does not match with the block data present in the virtual hard disk.
0xC03A000DL ERROR_VHD_PARENT_VHD_NOT_FOUND The chain of virtual hard disks is broken. The system cannot locate the parent virtual hard disk for the differencing disk.
0xC03A000EL ERROR_VHD_CHILD_PARENT_ID_MISMATCH The chain of virtual hard disks is corrupted. There is a mismatch in the identifiers of the parent virtual hard disk and differencing disk.
0xC03A000FL ERROR_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH The chain of virtual hard disks is corrupted. The time stamp of the parent virtual hard disk does not match the time stamp of the differencing disk.
0xC03A0010L ERROR_VHD_METADATA_READ_FAILURE Failed to read the metadata of the virtual hard disk.
0xC03A0011L ERROR_VHD_METADATA_WRITE_FAILURE Failed to write to the metadata of the virtual hard disk.
0xC03A0012L ERROR_VHD_INVALID_SIZE The size of the virtual hard disk is not valid.
0xC03A0013L ERROR_VHD_INVALID_FILE_SIZE The file size of this virtual hard disk is not valid.
0xC03A0014L ERROR_VIRTDISK_PROVIDER_NOT_FOUND A virtual disk support provider for the specified file was not found.
0xC03A0015L ERROR_VIRTDISK_NOT_VIRTUAL_DISK The specified disk is not a virtual disk.
0xC03A0016L ERROR_VHD_PARENT_VHD_ACCESS_DENIED The chain of virtual hard disks is inaccessible. The process has not been granted access rights to the parent virtual hard disk for the differencing disk.
0xC03A0017L ERROR_VHD_CHILD_PARENT_SIZE_MISMATCH The chain of virtual hard disks is corrupted. There is a mismatch in the virtual sizes of the parent virtual hard disk and differencing disk.
0xC03A0018L ERROR_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED The chain of virtual hard disks is corrupted. A differencing disk is indicated in its own parent chain.
0xC03A0019L ERROR_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT The chain of virtual hard disks is inaccessible. There was an error opening a virtual hard disk further up the chain.
0xC03A001AL ERROR_VIRTUAL_DISK_LIMITATION The requested operation could not be completed due to a virtual disk system limitation. Virtual hard disk files must be uncompressed and unencrypted and must not be sparse.
0xC03A001BL ERROR_VHD_INVALID_TYPE The requested operation cannot be performed on a virtual disk of this type.
0xC03A001CL ERROR_VHD_INVALID_STATE The requested operation cannot be performed on the virtual disk in its current state.
0xC03A001DL ERROR_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE The sector size of the physical disk on which the virtual disk resides is not supported.
0xC03A001EL ERROR_VIRTDISK_DISK_ALREADY_OWNED The disk is already owned by a different owner.
0xC03A001FL ERROR_VIRTDISK_DISK_ONLINE_AND_WRITABLE The disk must be offline or read-only.
0xC03A0020L ERROR_CTLOG_TRACKING_NOT_INITIALIZED Change Tracking is not initialized for this virtual disk.
0xC03A0021L ERROR_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE Size of change tracking file exceeded the maximum size limit.
0xC03A0022L ERROR_CTLOG_VHD_CHANGED_OFFLINE VHD file is changed due to compaction
0xC03A0023L ERROR_CTLOG_INVALID_TRACKING_STATE Change Tracking for the virtual disk is not in a valid state to perform this request. Change tracking could be discontinued or already in the requested state.
0xC03A0024L ERROR_CTLOG_INCONSISTENT_TRACKING_FILE Change Tracking file for the virtual disk is not in a valid state.
0xC03A0025L ERROR_VHD_RESIZE_WOULD_TRUNCATE_DATA The requested resize operation could not be completed because it might truncate user data residing on the virtual disk.
0xC03A0026L ERROR_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE The requested operation could not be completed because the virtual disk’s minimum safe size could not be determined. This may be due to a missing or corrupt partition table.
0xC03A0027L ERROR_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE The requested operation could not be completed because the virtual disk’s size cannot be safely reduced further.
0xC03A0028L ERROR_VHD_METADATA_FULL There is not enough space in the virtual disk file for the provided metadata item.
0xC03A0029L ERROR_VHD_INVALID_CHANGE_TRACKING_ID The specified change tracking identifier is not valid.
0xC03A002AL ERROR_VHD_CHANGE_TRACKING_DISABLED Change tracking is disabled for the specified virtual hard disk
0xC03A0030L ERROR_VHD_MISSING_CHANGE_TRACKING_INFORMATION There is no change tracking data available associated with the specified change tracking identifier.
0x803A0001L ERROR_QUERY_STORAGE_ERROR The virtualization storage subsystem has generated an error.
0x803B0001L HCN_E_NETWORK_NOT_FOUND The network was not found.
0x803B0002L HCN_E_ENDPOINT_NOT_FOUND The endpoint was not found.
0x803B0003L HCN_E_LAYER_NOT_FOUND The network’s underlying layer was not found.
0x803B0004L HCN_E_SWITCH_NOT_FOUND The virtual switch was not found.
0x803B0005L HCN_E_SUBNET_NOT_FOUND The network does not have a subnet for this endpoint.
0x803B0006L HCN_E_ADAPTER_NOT_FOUND An adapter was not found.
0x803B0007L HCN_E_PORT_NOT_FOUND The switch-port was not found.
0x803B0008L HCN_E_POLICY_NOT_FOUND An expected policy was not found.
0x803B0009L HCN_E_VFP_PORTSETTING_NOT_FOUND A required VFP port setting was not found.
0x803B000AL HCN_E_INVALID_NETWORK The provided network configuration is invalid or missing parameters.
0x803B000BL HCN_E_INVALID_NETWORK_TYPE Invalid network type.
0x803B000CL HCN_E_INVALID_ENDPOINT The provided endpoint configuration is invalid or missing parameters.
0x803B000DL HCN_E_INVALID_POLICY The provided policy configuration is invalid or missing parameters.
0x803B000EL HCN_E_INVALID_POLICY_TYPE Invalid policy type.
0x803B000FL HCN_E_INVALID_REMOTE_ENDPOINT_OPERATION This requested operation is invalid for a remote endpoint.
0x803B0010L HCN_E_NETWORK_ALREADY_EXISTS A network with this name already exists.
0x803B0011L HCN_E_LAYER_ALREADY_EXISTS A network with this name already exists.
0x803B0012L HCN_E_POLICY_ALREADY_EXISTS Policy information already exists on this object.
0x803B0013L HCN_E_PORT_ALREADY_EXISTS The specified port already exists.
0x803B0014L HCN_E_ENDPOINT_ALREADY_ATTACHED This endpoint is already attached to the switch.
0x803B0015L HCN_E_REQUEST_UNSUPPORTED The specified request is unsupported.
0x803B0016L HCN_E_MAPPING_NOT_SUPPORTED Port mapping is not supported on the given network.
0x803B0017L HCN_E_DEGRADED_OPERATION There was an operation attempted on a degraded object.
0x803B0018L HCN_E_SHARED_SWITCH_MODIFICATION Cannot modify a switch shared by multiple networks.
0x803B0019L HCN_E_GUID_CONVERSION_FAILURE Failed to interpret a parameter as a GUID.
0x803B001AL HCN_E_REGKEY_FAILURE Failed to process registry key.
0x803B001BL HCN_E_INVALID_JSON Invalid JSON document string.
0x803B001CL HCN_E_INVALID_JSON_REFERENCE The reference is invalid in the JSON document.
0x803B001DL HCN_E_ENDPOINT_SHARING_DISABLED Endpoint sharing is disabled.
0x803B001EL HCN_E_INVALID_IP IP address is either invalid or not part of any configured subnet(s).
0x803B001FL HCN_E_SWITCH_EXTENSION_NOT_FOUND The specified switch extension does not exist on this switch.
0x803B0020L HCN_E_MANAGER_STOPPED Operation cannot be performed while service is stopping.
0x803B0021L GCN_E_MODULE_NOT_FOUND Operation cannot be performed while service module not found.
0x803B0022L GCN_E_NO_REQUEST_HANDLERS Request Handlers not present to handle the JSON request.
0x803B0023L GCN_E_REQUEST_UNSUPPORTED The specified request is unsupported.
0x803B0024L GCN_E_RUNTIMEKEYS_FAILED Add runtime keys to container failed.
0x803B0025L GCN_E_NETADAPTER_TIMEOUT Timeout while waiting for network adapter with the given instance id
0x803B0026L GCN_E_NETADAPTER_NOT_FOUND Network adapter not found for the given instance id
0x803B0027L GCN_E_NETCOMPARTMENT_NOT_FOUND Network compartment not found for the given id
0x803B0028L GCN_E_NETINTERFACE_NOT_FOUND Network interface not found for the given id
0x803B0029L GCN_E_DEFAULTNAMESPACE_EXISTS Default Namespace already exists
0x803B002AL HCN_E_ICS_DISABLED Internet Connection Sharing service (SharedAccess) is disabled and cannot be started
0x803B002BL HCN_E_ENDPOINT_NAMESPACE_ALREADY_EXISTS This requested operation is invalid as endpoint is already part of a network namespace.
0x803B002CL HCN_E_ENTITY_HAS_REFERENCES The specified entity cannot be removed while it still has references.
0x803B002DL HCN_E_INVALID_INTERNAL_PORT The internal port must exist and cannot be zero.
0x803B002EL HCN_E_NAMESPACE_ATTACH_FAILED The requested operation for attach namespace failed.
0x803B002FL HCN_E_ADDR_INVALID_OR_RESERVED An address provided is invalid or reserved.
0x803B0030L HCN_E_INVALID_PREFIX The prefix provided is invalid.
0x803B0031L HCN_E_OBJECT_USED_AFTER_UNLOAD A call was performed against an object that was torn down.
0x803B0032L HCN_E_INVALID_SUBNET The provided subnet configuration is invalid or missing parameters.
0x803B0033L HCN_E_INVALID_IP_SUBNET The provided IP subnet configuration is invalid or missing parameters.
0x803B0034L HCN_E_ENDPOINT_NOT_ATTACHED The endpoint must be attached to complete the operation.
0x803B0035L HCN_E_ENDPOINT_NOT_LOCAL The endpoint must be local to complete the operation.
0x803B0036L HCN_INTERFACEPARAMETERS_ALREADY_APPLIED Cannot apply more than one InterfaceParameters policy.
0x803C0100L SDIAG_E_CANCELLED The operation was cancelled.
0x803C0101L SDIAG_E_SCRIPT An error occurred when running a PowerShell script.
0x803C0102L SDIAG_E_POWERSHELL An error occurred when interacting with PowerShell runtime.
0x803C0103L SDIAG_E_MANAGEDHOST An error occurred in the Scripted Diagnostic Managed Host.
0x803C0104L SDIAG_E_NOVERIFIER The troubleshooting pack does not contain a required verifier to complete the verification.
0x003C0105L SDIAG_S_CANNOTRUN The troubleshooting pack cannot be executed on this system.
0x803C0106L SDIAG_E_DISABLED Scripted diagnostics is disabled by group policy.
0x803C0107L SDIAG_E_TRUST Trust validation of the troubleshooting pack failed.
0x803C0108L SDIAG_E_CANNOTRUN The troubleshooting pack cannot be executed on this system.
0x803C0109L SDIAG_E_VERSION This version of the troubleshooting pack is not supported.
0x803C010AL SDIAG_E_RESOURCE A required resource cannot be loaded.
0x803C010BL SDIAG_E_ROOTCAUSE The troubleshooting pack reported information for a root cause without adding the root cause.
0x803E0100L WPN_E_CHANNEL_CLOSED The notification channel has already been closed.
0x803E0101L WPN_E_CHANNEL_REQUEST_NOT_COMPLETE The notification channel request did not complete successfully.
0x803E0102L WPN_E_INVALID_APP The application identifier provided is invalid.
0x803E0103L WPN_E_OUTSTANDING_CHANNEL_REQUEST A notification channel request for the provided application identifier is in progress.
0x803E0104L WPN_E_DUPLICATE_CHANNEL The channel identifier is already tied to another application endpoint.
0x803E0105L WPN_E_PLATFORM_UNAVAILABLE The notification platform is unavailable.
0x803E0106L WPN_E_NOTIFICATION_POSTED The notification has already been posted.
0x803E0107L WPN_E_NOTIFICATION_HIDDEN The notification has already been hidden.
0x803E0108L WPN_E_NOTIFICATION_NOT_POSTED The notification cannot be hidden until it has been shown.
0x803E0109L WPN_E_CLOUD_DISABLED Cloud notifications have been turned off.
0x803E0110L WPN_E_CLOUD_INCAPABLE The application does not have the cloud notification capability.
0x803E011AL WPN_E_CLOUD_AUTH_UNAVAILABLE The notification platform is unable to retrieve the authentication credentials required to connect to the cloud notification service.
0x803E011BL WPN_E_CLOUD_SERVICE_UNAVAILABLE The notification platform is unable to connect to the cloud notification service.
0x803E011CL WPN_E_FAILED_LOCK_SCREEN_UPDATE_INTIALIZATION The notification platform is unable to initialize a callback for lock screen updates.
0x803E0111L WPN_E_NOTIFICATION_DISABLED Settings prevent the notification from being delivered.
0x803E0112L WPN_E_NOTIFICATION_INCAPABLE Application capabilities prevent the notification from being delivered.
0x803E0113L WPN_E_INTERNET_INCAPABLE The application does not have the internet access capability.
0x803E0114L WPN_E_NOTIFICATION_TYPE_DISABLED Settings prevent the notification type from being delivered.
0x803E0115L WPN_E_NOTIFICATION_SIZE The size of the notification content is too large.
0x803E0116L WPN_E_TAG_SIZE The size of the notification tag is too large.
0x803E0117L WPN_E_ACCESS_DENIED The notification platform doesn’t have appropriate privilege on resources.
0x803E0118L WPN_E_DUPLICATE_REGISTRATION The notification platform found application is already registered.
0x803E0119L WPN_E_PUSH_NOTIFICATION_INCAPABLE The application background task does not have the push notification capability.
0x803E0120L WPN_E_DEV_ID_SIZE The size of the developer id for scheduled notification is too large.
0x803E012AL WPN_E_TAG_ALPHANUMERIC The notification tag is not alphanumeric.
0x803E012BL WPN_E_INVALID_HTTP_STATUS_CODE The notification platform has received invalid HTTP status code other than 2xx for polling.
0x803E0200L WPN_E_OUT_OF_SESSION The notification platform has run out of presentation layer sessions.
0x803E0201L WPN_E_POWER_SAVE The notification platform rejects image download request due to system in power save mode.
0x803E0202L WPN_E_IMAGE_NOT_FOUND_IN_CACHE The notification platform doesn’t have the requested image in its cache.
0x803E0203L WPN_E_ALL_URL_NOT_COMPLETED The notification platform cannot complete all of requested image.
0x803E0204L WPN_E_INVALID_CLOUD_IMAGE A cloud image downloaded from the notification platform is invalid.
0x803E0205L WPN_E_NOTIFICATION_ID_MATCHED Notification Id provided as filter is matched with what the notification platform maintains.
0x803E0206L WPN_E_CALLBACK_ALREADY_REGISTERED Notification callback interface is already registered.
0x803E0207L WPN_E_TOAST_NOTIFICATION_DROPPED Toast Notification was dropped without being displayed to the user.
0x803E0208L WPN_E_STORAGE_LOCKED The notification platform does not have the proper privileges to complete the request.
0x803E0209L WPN_E_GROUP_SIZE The size of the notification group is too large.
0x803E020AL WPN_E_GROUP_ALPHANUMERIC The notification group is not alphanumeric.
0x803E020BL WPN_E_CLOUD_DISABLED_FOR_APP Cloud notifications have been disabled for the application due to a policy setting.
0x80548201L E_MBN_CONTEXT_NOT_ACTIVATED Context is not activated.
0x80548202L E_MBN_BAD_SIM Bad SIM is inserted.
0x80548203L E_MBN_DATA_CLASS_NOT_AVAILABLE Requested data class is not available.
0x80548204L E_MBN_INVALID_ACCESS_STRING Access point name (APN) or Access string is incorrect.
0x80548205L E_MBN_MAX_ACTIVATED_CONTEXTS Max activated contexts have reached.
0x80548206L E_MBN_PACKET_SVC_DETACHED Device is in packet detach state.
0x80548207L E_MBN_PROVIDER_NOT_VISIBLE Provider is not visible.
0x80548208L E_MBN_RADIO_POWER_OFF Radio is powered off.
0x80548209L E_MBN_SERVICE_NOT_ACTIVATED MBN subscription is not activated.
0x8054820AL E_MBN_SIM_NOT_INSERTED SIM is not inserted.
0x8054820BL E_MBN_VOICE_CALL_IN_PROGRESS Voice call in progress.
0x8054820CL E_MBN_INVALID_CACHE Visible provider cache is invalid.
0x8054820DL E_MBN_NOT_REGISTERED Device is not registered.
0x8054820EL E_MBN_PROVIDERS_NOT_FOUND Providers not found.
0x8054820FL E_MBN_PIN_NOT_SUPPORTED Pin is not supported.
0x80548210L E_MBN_PIN_REQUIRED Pin is required.
0x80548211L E_MBN_PIN_DISABLED PIN is disabled.
0x80548212L E_MBN_FAILURE Generic Failure.
0x80548218L E_MBN_INVALID_PROFILE Profile is invalid.
0x80548219L E_MBN_DEFAULT_PROFILE_EXIST Default profile exist.
0x80548220L E_MBN_SMS_ENCODING_NOT_SUPPORTED SMS encoding is not supported.
0x80548221L E_MBN_SMS_FILTER_NOT_SUPPORTED SMS filter is not supported.
0x80548222L E_MBN_SMS_INVALID_MEMORY_INDEX Invalid SMS memory index is used.
0x80548223L E_MBN_SMS_LANG_NOT_SUPPORTED SMS language is not supported.
0x80548224L E_MBN_SMS_MEMORY_FAILURE SMS memory failure occurred.
0x80548225L E_MBN_SMS_NETWORK_TIMEOUT SMS network timeout happened.
0x80548226L E_MBN_SMS_UNKNOWN_SMSC_ADDRESS Unknown SMSC address is used.
0x80548227L E_MBN_SMS_FORMAT_NOT_SUPPORTED SMS format is not supported.
0x80548228L E_MBN_SMS_OPERATION_NOT_ALLOWED SMS operation is not allowed.
0x80548229L E_MBN_SMS_MEMORY_FULL Device SMS memory is full.
0x80630001L PEER_E_IPV6_NOT_INSTALLED The IPv6 protocol is not installed.
0x80630002L PEER_E_NOT_INITIALIZED The component has not been initialized.
0x80630003L PEER_E_CANNOT_START_SERVICE The required service cannot be started.
0x80630004L PEER_E_NOT_LICENSED The P2P protocol is not licensed to run on this OS.
0x80630010L PEER_E_INVALID_GRAPH The graph handle is invalid.
0x80630011L PEER_E_DBNAME_CHANGED The graph database name has changed.
0x80630012L PEER_E_DUPLICATE_GRAPH A graph with the same ID already exists.
0x80630013L PEER_E_GRAPH_NOT_READY The graph is not ready.
0x80630014L PEER_E_GRAPH_SHUTTING_DOWN The graph is shutting down.
0x80630015L PEER_E_GRAPH_IN_USE The graph is still in use.
0x80630016L PEER_E_INVALID_DATABASE The graph database is corrupt.
0x80630017L PEER_E_TOO_MANY_ATTRIBUTES Too many attributes have been used.
0x80630103L PEER_E_CONNECTION_NOT_FOUND The connection can not be found.
0x80630106L PEER_E_CONNECT_SELF The peer attempted to connect to itself.
0x80630107L PEER_E_ALREADY_LISTENING The peer is already listening for connections.
0x80630108L PEER_E_NODE_NOT_FOUND The node was not found.
0x80630109L PEER_E_CONNECTION_FAILED The Connection attempt failed.
0x8063010AL PEER_E_CONNECTION_NOT_AUTHENTICATED The peer connection could not be authenticated.
0x8063010BL PEER_E_CONNECTION_REFUSED The connection was refused.
0x80630201L PEER_E_CLASSIFIER_TOO_LONG The peer name classifier is too long.
0x80630202L PEER_E_TOO_MANY_IDENTITIES The maximum number of identities have been created.
0x80630203L PEER_E_NO_KEY_ACCESS Unable to access a key.
0x80630204L PEER_E_GROUPS_EXIST The group already exists.
0x80630301L PEER_E_RECORD_NOT_FOUND The requested record could not be found.
0x80630302L PEER_E_DATABASE_ACCESSDENIED Access to the database was denied.
0x80630303L PEER_E_DBINITIALIZATION_FAILED The Database could not be initialized.
0x80630304L PEER_E_MAX_RECORD_SIZE_EXCEEDED The record is too big.
0x80630305L PEER_E_DATABASE_ALREADY_PRESENT The database already exists.
0x80630306L PEER_E_DATABASE_NOT_PRESENT The database could not be found.
0x80630401L PEER_E_IDENTITY_NOT_FOUND The identity could not be found.
0x80630501L PEER_E_EVENT_HANDLE_NOT_FOUND The event handle could not be found.
0x80630601L PEER_E_INVALID_SEARCH Invalid search.
0x80630602L PEER_E_INVALID_ATTRIBUTES The search attributes are invalid.
0x80630701L PEER_E_INVITATION_NOT_TRUSTED The invitation is not trusted.
0x80630703L PEER_E_CHAIN_TOO_LONG The certchain is too long.
0x80630705L PEER_E_INVALID_TIME_PERIOD The time period is invalid.
0x80630706L PEER_E_CIRCULAR_CHAIN_DETECTED A circular cert chain was detected.
0x80630801L PEER_E_CERT_STORE_CORRUPTED The certstore is corrupted.
0x80631001L PEER_E_NO_CLOUD The specified PNRP cloud does not exist.
0x80631005L PEER_E_CLOUD_NAME_AMBIGUOUS The cloud name is ambiguous.
0x80632010L PEER_E_INVALID_RECORD The record is invalid.
0x80632020L PEER_E_NOT_AUTHORIZED Not authorized.
0x80632021L PEER_E_PASSWORD_DOES_NOT_MEET_POLICY The password does not meet policy requirements.
0x80632030L PEER_E_DEFERRED_VALIDATION The record validation has been deferred.
0x80632040L PEER_E_INVALID_GROUP_PROPERTIES The group properties are invalid.
0x80632050L PEER_E_INVALID_PEER_NAME The peername is invalid.
0x80632060L PEER_E_INVALID_CLASSIFIER The classifier is invalid.
0x80632070L PEER_E_INVALID_FRIENDLY_NAME The friendly name is invalid.
0x80632071L PEER_E_INVALID_ROLE_PROPERTY Invalid role property.
0x80632072L PEER_E_INVALID_CLASSIFIER_PROPERTY Invalid classifier property.
0x80632080L PEER_E_INVALID_RECORD_EXPIRATION Invalid record expiration.
0x80632081L PEER_E_INVALID_CREDENTIAL_INFO Invalid credential info.
0x80632082L PEER_E_INVALID_CREDENTIAL Invalid credential.
0x80632083L PEER_E_INVALID_RECORD_SIZE Invalid record size.
0x80632090L PEER_E_UNSUPPORTED_VERSION Unsupported version.
0x80632091L PEER_E_GROUP_NOT_READY The group is not ready.
0x80632092L PEER_E_GROUP_IN_USE The group is still in use.
0x80632093L PEER_E_INVALID_GROUP The group is invalid.
0x80632094L PEER_E_NO_MEMBERS_FOUND No members were found.
0x80632095L PEER_E_NO_MEMBER_CONNECTIONS There are no member connections.
0x80632096L PEER_E_UNABLE_TO_LISTEN Unable to listen.
0x806320A0L PEER_E_IDENTITY_DELETED The identity does not exist.
0x806320A1L PEER_E_SERVICE_NOT_AVAILABLE The service is not available.
0x80636001L PEER_E_CONTACT_NOT_FOUND THe contact could not be found.
0x00630001L PEER_S_GRAPH_DATA_CREATED The graph data was created.
0x00630002L PEER_S_NO_EVENT_DATA There is not more event data.
0x00632000L PEER_S_ALREADY_CONNECTED The graph is already connect.
0x00636000L PEER_S_SUBSCRIPTION_EXISTS The subscription already exists.
0x00630005L PEER_S_NO_CONNECTIVITY No connectivity.
0x00630006L PEER_S_ALREADY_A_MEMBER Already a member.
0x80634001L PEER_E_CANNOT_CONVERT_PEER_NAME The peername could not be converted to a DNS pnrp name.
0x80634002L PEER_E_INVALID_PEER_HOST_NAME Invalid peer host name.
0x80634003L PEER_E_NO_MORE No more data could be found.
0x80634005L PEER_E_PNRP_DUPLICATE_PEER_NAME The existing peer name is already registered.
0x80637000L PEER_E_INVITE_CANCELLED The app invite request was cancelled by the user.
0x80637001L PEER_E_INVITE_RESPONSE_NOT_AVAILABLE No response of the invite was received.
0x80637003L PEER_E_NOT_SIGNED_IN User is not signed into serverless presence.
0x80637004L PEER_E_PRIVACY_DECLINED The user declined the privacy policy prompt.
0x80637005L PEER_E_TIMEOUT A timeout occurred.
0x80637007L PEER_E_INVALID_ADDRESS The address is invalid.
0x80637008L PEER_E_FW_EXCEPTION_DISABLED A required firewall exception is disabled.
0x80637009L PEER_E_FW_BLOCKED_BY_POLICY The service is blocked by a firewall policy.
0x8063700AL PEER_E_FW_BLOCKED_BY_SHIELDS_UP Firewall exceptions are disabled.
0x8063700BL PEER_E_FW_DECLINED The user declined to enable the firewall exceptions.
0x802A0001L UI_E_CREATE_FAILED The object could not be created.
0x802A0002L UI_E_SHUTDOWN_CALLED Shutdown was already called on this object or the object that owns it.
0x802A0003L UI_E_ILLEGAL_REENTRANCY This method cannot be called during this type of callback.
0x802A0004L UI_E_OBJECT_SEALED This object has been sealed
0x802A0005L UI_E_VALUE_NOT_SET The requested value was never set.
0x802A0006L UI_E_VALUE_NOT_DETERMINED The requested value cannot be determined.
0x802A0007L UI_E_INVALID_OUTPUT A callback returned an invalid output parameter.
0x802A0008L UI_E_BOOLEAN_EXPECTED A callback returned a success code other than S_OK or S_FALSE.
0x802A0009L UI_E_DIFFERENT_OWNER A parameter that should be owned by this object is owned by a different object.
0x802A000AL UI_E_AMBIGUOUS_MATCH More than one item matched the search criteria.
0x802A000BL UI_E_FP_OVERFLOW A floating-point overflow occurred.
0x802A000CL UI_E_WRONG_THREAD This method can only be called from the thread that created the object.
0x802A0101L UI_E_STORYBOARD_ACTIVE The storyboard is currently in the schedule.
0x802A0102L UI_E_STORYBOARD_NOT_PLAYING The storyboard is not playing.
0x802A0103L UI_E_START_KEYFRAME_AFTER_END The start keyframe might occur after the end keyframe.
0x802A0104L UI_E_END_KEYFRAME_NOT_DETERMINED It might not be possible to determine the end keyframe time when the start keyframe is reached.
0x802A0105L UI_E_LOOPS_OVERLAP Two repeated portions of a storyboard might overlap.
0x802A0106L UI_E_TRANSITION_ALREADY_USED The transition has already been added to a storyboard.
0x802A0107L UI_E_TRANSITION_NOT_IN_STORYBOARD The transition has not been added to a storyboard.
0x802A0108L UI_E_TRANSITION_ECLIPSED The transition might eclipse the beginning of another transition in the storyboard.
0x802A0109L UI_E_TIME_BEFORE_LAST_UPDATE The given time is earlier than the time passed to the last update.
0x802A010AL UI_E_TIMER_CLIENT_ALREADY_CONNECTED This client is already connected to a timer.
0x802A010BL UI_E_INVALID_DIMENSION The passed dimension is invalid or does not match the object’s dimension.
0x802A010CL UI_E_PRIMITIVE_OUT_OF_BOUNDS The added primitive begins at or beyond the duration of the interpolator.
0x802A0201L UI_E_WINDOW_CLOSED The operation cannot be completed because the window is being closed.
0x80650001L E_BLUETOOTH_ATT_INVALID_HANDLE The attribute handle given was not valid on this server.
0x80650002L E_BLUETOOTH_ATT_READ_NOT_PERMITTED The attribute cannot be read.
0x80650003L E_BLUETOOTH_ATT_WRITE_NOT_PERMITTED The attribute cannot be written.
0x80650004L E_BLUETOOTH_ATT_INVALID_PDU The attribute PDU was invalid.
0x80650005L E_BLUETOOTH_ATT_INSUFFICIENT_AUTHENTICATION The attribute requires authentication before it can be read or written.
0x80650006L E_BLUETOOTH_ATT_REQUEST_NOT_SUPPORTED Attribute server does not support the request received from the client.
0x80650007L E_BLUETOOTH_ATT_INVALID_OFFSET Offset specified was past the end of the attribute.
0x80650008L E_BLUETOOTH_ATT_INSUFFICIENT_AUTHORIZATION The attribute requires authorization before it can be read or written.
0x80650009L E_BLUETOOTH_ATT_PREPARE_QUEUE_FULL Too many prepare writes have been queued.
0x8065000AL E_BLUETOOTH_ATT_ATTRIBUTE_NOT_FOUND No attribute found within the given attribute handle range.
0x8065000BL E_BLUETOOTH_ATT_ATTRIBUTE_NOT_LONG The attribute cannot be read or written using the Read Blob Request.
0x8065000CL E_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE The Encryption Key Size used for encrypting this link is insufficient.
0x8065000DL E_BLUETOOTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH The attribute value length is invalid for the operation.
0x8065000EL E_BLUETOOTH_ATT_UNLIKELY The attribute request that was requested has encountered an error that was unlikely
0x8065000FL E_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION The attribute requires encryption before it can be read or written.
0x80650010L E_BLUETOOTH_ATT_UNSUPPORTED_GROUP_TYPE The attribute type is not a supported grouping attribute as defined by a higher layer specification.
0x80650011L E_BLUETOOTH_ATT_INSUFFICIENT_RESOURCES Insufficient Resources to complete the request.
0x80651000L E_BLUETOOTH_ATT_UNKNOWN_ERROR An error that lies in the reserved range has been received.
0x80660001L E_AUDIO_ENGINE_NODE_NOT_FOUND PortCls could not find an audio engine node exposed by a miniport driver claiming support for IMiniportAudioEngineNode.
0x80660002L E_HDAUDIO_EMPTY_CONNECTION_LIST HD Audio widget encountered an unexpected empty connection list.
0x80660003L E_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED HD Audio widget does not support the connection list parameter.
0x80660004L E_HDAUDIO_NO_LOGICAL_DEVICES_CREATED No HD Audio subdevices were successfully created.
0x80660005L E_HDAUDIO_NULL_LINKED_LIST_ENTRY An unexpected NULL pointer was encountered in a linked list.
0x80670001L STATEREPOSITORY_E_CONCURRENCY_LOCKING_FAILURE Optimistic locking failure. Data cannot be updated if it has changed since it was read.
0x80670002L STATEREPOSITORY_E_STATEMENT_INPROGRESS A prepared statement has been stepped at least once but not run to completion or reset. This may result in busy waits.
0x80670003L STATEREPOSITORY_E_CONFIGURATION_INVALID The StateRepository configuration is not valid.
0x80670004L STATEREPOSITORY_E_UNKNOWN_SCHEMA_VERSION The StateRepository schema version is not known.
0x80670005L STATEREPOSITORY_ERROR_DICTIONARY_CORRUPTED A StateRepository dictionary is not valid.
0x80670006L STATEREPOSITORY_E_BLOCKED The request failed because the StateRepository is actively blocking requests.
0x80670007L STATEREPOSITORY_E_BUSY_RETRY The database file is locked. The request will be retried.
0x80670008L STATEREPOSITORY_E_BUSY_RECOVERY_RETRY The database file is locked because another process is busy recovering the database. The request will be retried.
0x80670009L STATEREPOSITORY_E_LOCKED_RETRY A table in the database is locked. The request will be retried.
0x8067000AL STATEREPOSITORY_E_LOCKED_SHAREDCACHE_RETRY The shared cache for the database is locked by another connection. The request will be retried.
0x8067000BL STATEREPOSITORY_E_TRANSACTION_REQUIRED A transaction is required to perform the request operation.
0x8067000CL STATEREPOSITORY_E_BUSY_TIMEOUT_EXCEEDED The database file is locked. The request has exceeded the allowed threshold.
0x8067000DL STATEREPOSITORY_E_BUSY_RECOVERY_TIMEOUT_EXCEEDED The database file is locked because another process is busy recovering the database. The request has exceeded the allowed threshold.
0x8067000EL STATEREPOSITORY_E_LOCKED_TIMEOUT_EXCEEDED A table in the database is locked. The request has exceeded the allowed threshold.
0x8067000FL STATEREPOSITORY_E_LOCKED_SHAREDCACHE_TIMEOUT_EXCEEDED The shared cache for the database is locked by another connection. The request has exceeded the allowed threshold.
0x80670010L STATEREPOSITORY_E_SERVICE_STOP_IN_PROGRESS The StateRepository service Stop event is in progress.
0x80670011L STATEREPOSTORY_E_NESTED_TRANSACTION_NOT_SUPPORTED Nested transactions are not supported.
0x80670012L STATEREPOSITORY_ERROR_CACHE_CORRUPTED The StateRepository cache is not valid.
0x00670013L STATEREPOSITORY_TRANSACTION_CALLER_ID_CHANGED The transaction caller id has changed.
0x00670014L STATEREPOSITORY_TRANSACTION_IN_PROGRESS A transaction is in progress for the database connection.
0x00E70001L ERROR_SPACES_POOL_WAS_DELETED The storage pool was deleted by the driver. The object cache should be updated.
0x80E70001L ERROR_SPACES_FAULT_DOMAIN_TYPE_INVALID The specified fault domain type or combination of minimum / maximum fault domain type is not valid.
0x80E70002L ERROR_SPACES_INTERNAL_ERROR A Storage Spaces internal error occurred.
0x80E70003L ERROR_SPACES_RESILIENCY_TYPE_INVALID The specified resiliency type is not valid.
0x80E70004L ERROR_SPACES_DRIVE_SECTOR_SIZE_INVALID The physical disk’s sector size is not supported by the storage pool.
0x80E70006L ERROR_SPACES_DRIVE_REDUNDANCY_INVALID The requested redundancy is outside of the supported range of values.
0x80E70007L ERROR_SPACES_NUMBER_OF_DATA_COPIES_INVALID The number of data copies requested is outside of the supported range of values.
0x80E70008L ERROR_SPACES_PARITY_LAYOUT_INVALID The value for ParityLayout is outside of the supported range of values.
0x80E70009L ERROR_SPACES_INTERLEAVE_LENGTH_INVALID The value for interleave length is outside of the supported range of values or is not a power of 2.
0x80E7000AL ERROR_SPACES_NUMBER_OF_COLUMNS_INVALID The number of columns specified is outside of the supported range of values.
0x80E7000BL ERROR_SPACES_NOT_ENOUGH_DRIVES There were not enough physical disks to complete the requested operation.
0x80E7000CL ERROR_SPACES_EXTENDED_ERROR Extended error information is available.
0x80E7000DL ERROR_SPACES_PROVISIONING_TYPE_INVALID The specified provisioning type is not valid.
0x80E7000EL ERROR_SPACES_ALLOCATION_SIZE_INVALID The allocation size is outside of the supported range of values.
0x80E7000FL ERROR_SPACES_ENCLOSURE_AWARE_INVALID Enclosure awareness is not supported for this virtual disk.
0x80E70010L ERROR_SPACES_WRITE_CACHE_SIZE_INVALID The write cache size is outside of the supported range of values.
0x80E70011L ERROR_SPACES_NUMBER_OF_GROUPS_INVALID The value for number of groups is outside of the supported range of values.
0x80E70012L ERROR_SPACES_DRIVE_OPERATIONAL_STATE_INVALID The OperationalState of the physical disk is invalid for this operation.
0x80E70013L ERROR_SPACES_ENTRY_INCOMPLETE The specified log entry is not complete.
0x80E70014L ERROR_SPACES_ENTRY_INVALID The specified log entry is not valid.
0x80820001L ERROR_VOLSNAP_BOOTFILE_NOT_VALID The bootfile is too small to support persistent snapshots.
0x80820002L ERROR_VOLSNAP_ACTIVATION_TIMEOUT Activation of persistent snapshots on this volume took longer than was allowed.
0x80830001L ERROR_TIERING_NOT_SUPPORTED_ON_VOLUME The specified volume does not support storage tiers.
0x80830002L ERROR_TIERING_VOLUME_DISMOUNT_IN_PROGRESS The Storage Tiers Management service detected that the specified volume is in the process of being dismounted.
0x80830003L ERROR_TIERING_STORAGE_TIER_NOT_FOUND The specified storage tier could not be found on the volume. Confirm that the storage tier name is valid.
0x80830004L ERROR_TIERING_INVALID_FILE_ID The file identifier specified is not valid on the volume.
0x80830005L ERROR_TIERING_WRONG_CLUSTER_NODE Storage tier operations must be called on the clustering node that owns the metadata volume.
0x80830006L ERROR_TIERING_ALREADY_PROCESSING The Storage Tiers Management service is already optimizing the storage tiers on the specified volume.
0x80830007L ERROR_TIERING_CANNOT_PIN_OBJECT The requested object type cannot be assigned to a storage tier.
0x80830008L ERROR_TIERING_FILE_IS_NOT_PINNED The requested file is not pinned to a tier.
0x80830009L ERROR_NOT_A_TIERED_VOLUME The volume is not a tiered volume.
0x8083000AL ERROR_ATTRIBUTE_NOT_PRESENT The requested attribute is not present on the specified file or directory.
0xC0E80000L ERROR_SECCORE_INVALID_COMMAND The command was not recognized by the security core
0xC0EA0001L ERROR_NO_APPLICABLE_APP_LICENSES_FOUND No applicable app licenses found.
0xC0EA0002L ERROR_CLIP_LICENSE_NOT_FOUND CLiP license not found.
0xC0EA0003L ERROR_CLIP_DEVICE_LICENSE_MISSING CLiP device license not found.
0xC0EA0004L ERROR_CLIP_LICENSE_INVALID_SIGNATURE CLiP license has an invalid signature.
0xC0EA0005L ERROR_CLIP_KEYHOLDER_LICENSE_MISSING_OR_INVALID CLiP keyholder license is invalid or missing.
0xC0EA0006L ERROR_CLIP_LICENSE_EXPIRED CLiP license has expired.
0xC0EA0007L ERROR_CLIP_LICENSE_SIGNED_BY_UNKNOWN_SOURCE CLiP license is signed by an unknown source.
0xC0EA0008L ERROR_CLIP_LICENSE_NOT_SIGNED CLiP license is not signed.
0xC0EA0009L ERROR_CLIP_LICENSE_HARDWARE_ID_OUT_OF_TOLERANCE CLiP license hardware ID is out of tolerance.
0xC0EA000AL ERROR_CLIP_LICENSE_DEVICE_ID_MISMATCH CLiP license device ID does not match the device ID in the bound device license.
0x087A0001L DXGI_STATUS_OCCLUDED The Present operation was invisible to the user.
0x087A0002L DXGI_STATUS_CLIPPED The Present operation was partially invisible to the user.
0x087A0004L DXGI_STATUS_NO_REDIRECTION The driver is requesting that the DXGI runtime not use shared resources to communicate with the Desktop Window Manager.
0x087A0005L DXGI_STATUS_NO_DESKTOP_ACCESS The Present operation was not visible because the Windows session has switched to another desktop (for example
0x087A0006L DXGI_STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE The Present operation was not visible because the target monitor was being used for some other purpose.
0x087A0007L DXGI_STATUS_MODE_CHANGED The Present operation was not visible because the display mode changed. DXGI will have re-attempted the presentation.
0x087A0008L DXGI_STATUS_MODE_CHANGE_IN_PROGRESS The Present operation was not visible because another Direct3D device was attempting to take fullscreen mode at the time.
0x887A0001L DXGI_ERROR_INVALID_CALL The application made a call that is invalid. Either the parameters of the call or the state of some object was incorrect. Enable the D3D debug layer in order to see details via debug messages.
0x887A0002L DXGI_ERROR_NOT_FOUND The object was not found. If calling IDXGIFactory::EnumAdaptes
0x887A0003L DXGI_ERROR_MORE_DATA The caller did not supply a sufficiently large buffer.
0x887A0004L DXGI_ERROR_UNSUPPORTED The specified device interface or feature level is not supported on this system.
0x887A0005L DXGI_ERROR_DEVICE_REMOVED The GPU device instance has been suspended. Use GetDeviceRemovedReason to determine the appropriate action.
0x887A0006L DXGI_ERROR_DEVICE_HUNG The GPU will not respond to more commands
0x887A0007L DXGI_ERROR_DEVICE_RESET The GPU will not respond to more commands
0x887A000AL DXGI_ERROR_WAS_STILL_DRAWING The GPU was busy at the moment when the call was made
0x887A000BL DXGI_ERROR_FRAME_STATISTICS_DISJOINT An event (such as power cycle) interrupted the gathering of presentation statistics. Any previous statistics should be considered invalid.
0x887A000CL DXGI_ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE Fullscreen mode could not be achieved because the specified output was already in use.
0x887A0020L DXGI_ERROR_DRIVER_INTERNAL_ERROR An internal issue prevented the driver from carrying out the specified operation. The driver’s state is probably suspect
0x887A0021L DXGI_ERROR_NONEXCLUSIVE A global counter resource was in use
0x887A0022L DXGI_ERROR_NOT_CURRENTLY_AVAILABLE A resource is not available at the time of the call
0x887A0023L DXGI_ERROR_REMOTE_CLIENT_DISCONNECTED The application’s remote device has been removed due to session disconnect or network disconnect. The application should call IDXGIFactory1::IsCurrent to find out when the remote device becomes available again.
0x887A0024L DXGI_ERROR_REMOTE_OUTOFMEMORY The device has been removed during a remote session because the remote computer ran out of memory.
0x887A0026L DXGI_ERROR_ACCESS_LOST The keyed mutex was abandoned.
0x887A0027L DXGI_ERROR_WAIT_TIMEOUT The timeout value has elapsed and the resource is not yet available.
0x887A0028L DXGI_ERROR_SESSION_DISCONNECTED The output duplication has been turned off because the Windows session ended or was disconnected. This happens when a remote user disconnects
0x887A0029L DXGI_ERROR_RESTRICT_TO_OUTPUT_STALE The DXGI output (monitor) to which the swapchain content was restricted
0x887A002AL DXGI_ERROR_CANNOT_PROTECT_CONTENT DXGI is unable to provide content protection on the swapchain. This is typically caused by an older driver
0x887A002BL DXGI_ERROR_ACCESS_DENIED The application is trying to use a resource to which it does not have the required access privileges. This is most commonly caused by writing to a shared resource with read-only access.
0x887A002CL DXGI_ERROR_NAME_ALREADY_EXISTS The application is trying to create a shared handle using a name that is already associated with some other resource.
0x887A002DL DXGI_ERROR_SDK_COMPONENT_MISSING The application requested an operation that depends on an SDK component that is missing or mismatched.
0x887A002EL DXGI_ERROR_NOT_CURRENT The DXGI objects that the application has created are no longer current & need to be recreated for this operation to be performed.
0x887A0030L DXGI_ERROR_HW_PROTECTION_OUTOFMEMORY Insufficient HW protected memory exits for proper function.
0x887A0031L DXGI_ERROR_DYNAMIC_CODE_POLICY_VIOLATION Creating this device would violate the process’s dynamic code policy.
0x887A0032L DXGI_ERROR_NON_COMPOSITED_UI The operation failed because the compositor is not in control of the output.
0x88800001L DXCORE_ERROR_EVENT_NOT_UNREGISTERED The application failed to unregister from an event it registered for.
0x087A0009L DXGI_STATUS_UNOCCLUDED The swapchain has become unoccluded.
0x087A000AL DXGI_STATUS_DDA_WAS_STILL_DRAWING The adapter did not have access to the required resources to complete the Desktop Duplication Present() call
0x887A0025L DXGI_ERROR_MODE_CHANGE_IN_PROGRESS An on-going mode change prevented completion of the call. The call may succeed if attempted later.
0x087A002FL DXGI_STATUS_PRESENT_REQUIRED The present succeeded but the caller should present again on the next V-sync
0x887A0033L DXGI_ERROR_CACHE_CORRUPT The cache is corrupt and either could not be opened or could not be reset.
0x887A0034L DXGI_ERROR_CACHE_FULL This entry would cause the cache to exceed its quota. On a load operation
0x887A0035L DXGI_ERROR_CACHE_HASH_COLLISION A cache entry was found
0x887A0036L DXGI_ERROR_ALREADY_EXISTS The desired element already exists.
0x887B0001L DXGI_DDI_ERR_WASSTILLDRAWING The GPU was busy when the operation was requested.
0x887B0002L DXGI_DDI_ERR_UNSUPPORTED The driver has rejected the creation of this resource.
0x887B0003L DXGI_DDI_ERR_NONEXCLUSIVE The GPU counter was in use by another process or d3d device when application requested access to it.
0x88790001L D3D10_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS The application has exceeded the maximum number of unique state objects per Direct3D device. The limit is 4096 for feature levels up to 11.1.
0x88790002L D3D10_ERROR_FILE_NOT_FOUND The specified file was not found.
0x887C0001L D3D11_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS The application has exceeded the maximum number of unique state objects per Direct3D device. The limit is 4096 for feature levels up to 11.1.
0x887C0002L D3D11_ERROR_FILE_NOT_FOUND The specified file was not found.
0x887C0003L D3D11_ERROR_TOO_MANY_UNIQUE_VIEW_OBJECTS The application has exceeded the maximum number of unique view objects per Direct3D device. The limit is 2^20 for feature levels up to 11.1.
0x887C0004L D3D11_ERROR_DEFERRED_CONTEXT_MAP_WITHOUT_INITIAL_DISCARD The application’s first call per command list to Map on a deferred context did not use D3D11_MAP_WRITE_DISCARD.
0x887E0001L D3D12_ERROR_ADAPTER_NOT_FOUND The blob provided does not match the adapter that the device was created on.
0x887E0002L D3D12_ERROR_DRIVER_VERSION_MISMATCH The blob provided was created for a different version of the driver
0x88990001L D2DERR_WRONG_STATE The object was not in the correct state to process the method.
0x88990002L D2DERR_NOT_INITIALIZED The object has not yet been initialized.
0x88990003L D2DERR_UNSUPPORTED_OPERATION The requested operation is not supported.
0x88990004L D2DERR_SCANNER_FAILED The geometry scanner failed to process the data.
0x88990005L D2DERR_SCREEN_ACCESS_DENIED Direct2D could not access the screen.
0x88990006L D2DERR_DISPLAY_STATE_INVALID A valid display state could not be determined.
0x88990007L D2DERR_ZERO_VECTOR The supplied vector is zero.
0x88990008L D2DERR_INTERNAL_ERROR An internal error (Direct2D bug) occurred. On checked builds
0x88990009L D2DERR_DISPLAY_FORMAT_NOT_SUPPORTED The display format Direct2D needs to render is not supported by the hardware device.
0x8899000AL D2DERR_INVALID_CALL A call to this method is invalid.
0x8899000BL D2DERR_NO_HARDWARE_DEVICE No hardware rendering device is available for this operation.
0x8899000CL D2DERR_RECREATE_TARGET There has been a presentation error that may be recoverable. The caller needs to recreate
0x8899000DL D2DERR_TOO_MANY_SHADER_ELEMENTS Shader construction failed because it was too complex.
0x8899000EL D2DERR_SHADER_COMPILE_FAILED Shader compilation failed.
0x8899000FL D2DERR_MAX_TEXTURE_SIZE_EXCEEDED Requested DirectX surface size exceeded maximum texture size.
0x88990010L D2DERR_UNSUPPORTED_VERSION The requested Direct2D version is not supported.
0x88990011L D2DERR_BAD_NUMBER Invalid number.
0x88990012L D2DERR_WRONG_FACTORY Objects used together must be created from the same factory instance.
0x88990013L D2DERR_LAYER_ALREADY_IN_USE A layer resource can only be in use once at any point in time.
0x88990014L D2DERR_POP_CALL_DID_NOT_MATCH_PUSH The pop call did not match the corresponding push call.
0x88990015L D2DERR_WRONG_RESOURCE_DOMAIN The resource was realized on the wrong render target.
0x88990016L D2DERR_PUSH_POP_UNBALANCED The push and pop calls were unbalanced.
0x88990017L D2DERR_RENDER_TARGET_HAS_LAYER_OR_CLIPRECT Attempt to copy from a render target while a layer or clip rect is applied.
0x88990018L D2DERR_INCOMPATIBLE_BRUSH_TYPES The brush types are incompatible for the call.
0x88990019L D2DERR_WIN32_ERROR An unknown win32 failure occurred.
0x8899001AL D2DERR_TARGET_NOT_GDI_COMPATIBLE The render target is not compatible with GDI.
0x8899001BL D2DERR_TEXT_EFFECT_IS_WRONG_TYPE A text client drawing effect object is of the wrong type.
0x8899001CL D2DERR_TEXT_RENDERER_NOT_RELEASED The application is holding a reference to the IDWriteTextRenderer interface after the corresponding DrawText or DrawTextLayout call has returned. The IDWriteTextRenderer instance will be invalid.
0x8899001DL D2DERR_EXCEEDS_MAX_BITMAP_SIZE The requested size is larger than the guaranteed supported texture size at the Direct3D device’s current feature level.
0x8899001EL D2DERR_INVALID_GRAPH_CONFIGURATION There was a configuration error in the graph.
0x8899001FL D2DERR_INVALID_INTERNAL_GRAPH_CONFIGURATION There was a internal configuration error in the graph.
0x88990020L D2DERR_CYCLIC_GRAPH There was a cycle in the graph.
0x88990021L D2DERR_BITMAP_CANNOT_DRAW Cannot draw with a bitmap that has the D2D1_BITMAP_OPTIONS_CANNOT_DRAW option.
0x88990022L D2DERR_OUTSTANDING_BITMAP_REFERENCES The operation cannot complete while there are outstanding references to the target bitmap.
0x88990023L D2DERR_ORIGINAL_TARGET_NOT_BOUND The operation failed because the original target is not currently bound as a target.
0x88990024L D2DERR_INVALID_TARGET Cannot set the image as a target because it is either an effect or is a bitmap that does not have the D2D1_BITMAP_OPTIONS_TARGET flag set.
0x88990025L D2DERR_BITMAP_BOUND_AS_TARGET Cannot draw with a bitmap that is currently bound as the target bitmap.
0x88990026L D2DERR_INSUFFICIENT_DEVICE_CAPABILITIES D3D Device does not have sufficient capabilities to perform the requested action.
0x88990027L D2DERR_INTERMEDIATE_TOO_LARGE The graph could not be rendered with the context’s current tiling settings.
0x88990028L D2DERR_EFFECT_IS_NOT_REGISTERED The CLSID provided to Unregister did not correspond to a registered effect.
0x88990029L D2DERR_INVALID_PROPERTY The specified property does not exist.
0x8899002AL D2DERR_NO_SUBPROPERTIES The specified sub-property does not exist.
0x8899002BL D2DERR_PRINT_JOB_CLOSED AddPage or Close called after print job is already closed.
0x8899002CL D2DERR_PRINT_FORMAT_NOT_SUPPORTED Error during print control creation. Indicates that none of the package target types (representing printer formats) are supported by Direct2D print control.
0x8899002DL D2DERR_TOO_MANY_TRANSFORM_INPUTS An effect attempted to use a transform with too many inputs.
0x8899002EL D2DERR_INVALID_GLYPH_IMAGE An error was encountered while decoding or parsing the requested glyph image.
0x88985000L DWRITE_E_FILEFORMAT Indicates an error in an input file such as a font file.
0x88985001L DWRITE_E_UNEXPECTED Indicates an error originating in DirectWrite code
0x88985002L DWRITE_E_NOFONT Indicates the specified font does not exist.
0x88985003L DWRITE_E_FILENOTFOUND A font file could not be opened because the file
0x88985004L DWRITE_E_FILEACCESS A font file exists but could not be opened due to access denied
0x88985005L DWRITE_E_FONTCOLLECTIONOBSOLETE A font collection is obsolete due to changes in the system.
0x88985006L DWRITE_E_ALREADYREGISTERED The given interface is already registered.
0x88985007L DWRITE_E_CACHEFORMAT The font cache contains invalid data.
0x88985008L DWRITE_E_CACHEVERSION A font cache file corresponds to a different version of DirectWrite.
0x88985009L DWRITE_E_UNSUPPORTEDOPERATION The operation is not supported for this type of font.
0x8898500AL DWRITE_E_TEXTRENDERERINCOMPATIBLE The version of the text renderer interface is not compatible.
0x8898500BL DWRITE_E_FLOWDIRECTIONCONFLICTS The flow direction conflicts with the reading direction. They must be perpendicular to each other.
0x8898500CL DWRITE_E_NOCOLOR The font or glyph run does not contain any colored glyphs.
0x8898500DL DWRITE_E_REMOTEFONT A font resource could not be accessed because it is remote.
0x8898500EL DWRITE_E_DOWNLOADCANCELLED A font download was canceled.
0x8898500FL DWRITE_E_DOWNLOADFAILED A font download failed.
0x88985010L DWRITE_E_TOOMANYDOWNLOADS A font download request was not added or a download failed because there are too many active downloads.
0x88982F04L WINCODEC_ERR_WRONGSTATE The codec is in the wrong state.
0x88982F05L WINCODEC_ERR_VALUEOUTOFRANGE The value is out of range.
0x88982F07L WINCODEC_ERR_UNKNOWNIMAGEFORMAT The image format is unknown.
0x88982F0BL WINCODEC_ERR_UNSUPPORTEDVERSION The SDK version is unsupported.
0x88982F0CL WINCODEC_ERR_NOTINITIALIZED The component is not initialized.
0x88982F0DL WINCODEC_ERR_ALREADYLOCKED There is already an outstanding read or write lock.
0x88982F40L WINCODEC_ERR_PROPERTYNOTFOUND The specified bitmap property cannot be found.
0x88982F41L WINCODEC_ERR_PROPERTYNOTSUPPORTED The bitmap codec does not support the bitmap property.
0x88982F42L WINCODEC_ERR_PROPERTYSIZE The bitmap property size is invalid.
0x88982F43L WINCODEC_ERR_CODECPRESENT An unknown error has occurred.
0x88982F44L WINCODEC_ERR_CODECNOTHUMBNAIL The bitmap codec does not support a thumbnail.
0x88982F45L WINCODEC_ERR_PALETTEUNAVAILABLE The bitmap palette is unavailable.
0x88982F46L WINCODEC_ERR_CODECTOOMANYSCANLINES Too many scanlines were requested.
0x88982F48L WINCODEC_ERR_INTERNALERROR An internal error occurred.
0x88982F49L WINCODEC_ERR_SOURCERECTDOESNOTMATCHDIMENSIONS The bitmap bounds do not match the bitmap dimensions.
0x88982F50L WINCODEC_ERR_COMPONENTNOTFOUND The component cannot be found.
0x88982F51L WINCODEC_ERR_IMAGESIZEOUTOFRANGE The bitmap size is outside the valid range.
0x88982F52L WINCODEC_ERR_TOOMUCHMETADATA There is too much metadata to be written to the bitmap.
0x88982F60L WINCODEC_ERR_BADIMAGE The image is unrecognized.
0x88982F61L WINCODEC_ERR_BADHEADER The image header is unrecognized.
0x88982F62L WINCODEC_ERR_FRAMEMISSING The bitmap frame is missing.
0x88982F63L WINCODEC_ERR_BADMETADATAHEADER The image metadata header is unrecognized.
0x88982F70L WINCODEC_ERR_BADSTREAMDATA The stream data is unrecognized.
0x88982F71L WINCODEC_ERR_STREAMWRITE Failed to write to the stream.
0x88982F72L WINCODEC_ERR_STREAMREAD Failed to read from the stream.
0x88982F73L WINCODEC_ERR_STREAMNOTAVAILABLE The stream is not available.
0x88982F80L WINCODEC_ERR_UNSUPPORTEDPIXELFORMAT The bitmap pixel format is unsupported.
0x88982F81L WINCODEC_ERR_UNSUPPORTEDOPERATION The operation is unsupported.
0x88982F8AL WINCODEC_ERR_INVALIDREGISTRATION The component registration is invalid.
0x88982F8BL WINCODEC_ERR_COMPONENTINITIALIZEFAILURE The component initialization has failed.
0x88982F8CL WINCODEC_ERR_INSUFFICIENTBUFFER The buffer allocated is insufficient.
0x88982F8DL WINCODEC_ERR_DUPLICATEMETADATAPRESENT Duplicate metadata is present.
0x88982F8EL WINCODEC_ERR_PROPERTYUNEXPECTEDTYPE The bitmap property type is unexpected.
0x88982F8FL WINCODEC_ERR_UNEXPECTEDSIZE The size is unexpected.
0x88982F90L WINCODEC_ERR_INVALIDQUERYREQUEST The property query is invalid.
0x88982F91L WINCODEC_ERR_UNEXPECTEDMETADATATYPE The metadata type is unexpected.
0x88982F92L WINCODEC_ERR_REQUESTONLYVALIDATMETADATAROOT The specified bitmap property is only valid at root level.
0x88982F93L WINCODEC_ERR_INVALIDQUERYCHARACTER The query string contains an invalid character.
0x88982F94L WINCODEC_ERR_WIN32ERROR Windows Codecs received an error from the Win32 system.
0x88982F95L WINCODEC_ERR_INVALIDPROGRESSIVELEVEL The requested level of detail is not present.
0x88982F96L WINCODEC_ERR_INVALIDJPEGSCANINDEX The scan index is invalid.
0x88980001L MILERR_OBJECTBUSY MILERR_OBJECTBUSY
0x88980002L MILERR_INSUFFICIENTBUFFER MILERR_INSUFFICIENTBUFFER
0x88980003L MILERR_WIN32ERROR MILERR_WIN32ERROR
0x88980004L MILERR_SCANNER_FAILED MILERR_SCANNER_FAILED
0x88980005L MILERR_SCREENACCESSDENIED MILERR_SCREENACCESSDENIED
0x88980006L MILERR_DISPLAYSTATEINVALID MILERR_DISPLAYSTATEINVALID
0x88980007L MILERR_NONINVERTIBLEMATRIX MILERR_NONINVERTIBLEMATRIX
0x88980008L MILERR_ZEROVECTOR MILERR_ZEROVECTOR
0x88980009L MILERR_TERMINATED MILERR_TERMINATED
0x8898000AL MILERR_BADNUMBER MILERR_BADNUMBER
0x88980080L MILERR_INTERNALERROR An internal error (MIL bug) occurred. On checked builds
0x88980084L MILERR_DISPLAYFORMATNOTSUPPORTED The display format we need to render is not supported by the hardware device.
0x88980085L MILERR_INVALIDCALL A call to this method is invalid.
0x88980086L MILERR_ALREADYLOCKED Lock attempted on an already locked object.
0x88980087L MILERR_NOTLOCKED Unlock attempted on an unlocked object.
0x88980088L MILERR_DEVICECANNOTRENDERTEXT No algorithm available to render text with this device
0x88980089L MILERR_GLYPHBITMAPMISSED Some glyph bitmaps
0x8898008AL MILERR_MALFORMEDGLYPHCACHE Some glyph bitmaps in glyph cache are unexpectedly big.
0x8898008BL MILERR_GENERIC_IGNORE Marker error for known Win32 errors that are currently being ignored by the compositor. This is to avoid returning S_OK when an error has occurred
0x8898008CL MILERR_MALFORMED_GUIDELINE_DATA Guideline coordinates are not sorted properly or contain NaNs.
0x8898008DL MILERR_NO_HARDWARE_DEVICE No HW rendering device is available for this operation.
0x8898008EL MILERR_NEED_RECREATE_AND_PRESENT There has been a presentation error that may be recoverable. The caller needs to recreate
0x8898008FL MILERR_ALREADY_INITIALIZED The object has already been initialized.
0x88980090L MILERR_MISMATCHED_SIZE The size of the object does not match the expected size.
0x88980091L MILERR_NO_REDIRECTION_SURFACE_AVAILABLE No Redirection surface available.
0x88980092L MILERR_REMOTING_NOT_SUPPORTED Remoting of this content is not supported.
0x88980093L MILERR_QUEUED_PRESENT_NOT_SUPPORTED Queued Presents are not supported.
0x88980094L MILERR_NOT_QUEUING_PRESENTS Queued Presents are not being used.
0x88980095L MILERR_NO_REDIRECTION_SURFACE_RETRY_LATER No redirection surface was available. Caller should retry the call.
0x88980096L MILERR_TOOMANYSHADERELEMNTS Shader construction failed because it was too complex.
0x88980097L MILERR_MROW_READLOCK_FAILED MROW attempt to get a read lock failed.
0x88980098L MILERR_MROW_UPDATE_FAILED MROW attempt to update the data failed because another update was outstanding.
0x88980099L MILERR_SHADER_COMPILE_FAILED Shader compilation failed.
0x8898009AL MILERR_MAX_TEXTURE_SIZE_EXCEEDED Requested DX redirection surface size exceeded maximum texture size.
0x8898009BL MILERR_QPC_TIME_WENT_BACKWARD QueryPerformanceCounter returned a time in the past.
0x8898009DL MILERR_DXGI_ENUMERATION_OUT_OF_SYNC Primary Display device returned an invalid refresh rate.
0x8898009EL MILERR_ADAPTER_NOT_FOUND DWM can not find the adapter specified by the LUID.
0x8898009FL MILERR_COLORSPACE_NOT_SUPPORTED The requested bitmap color space is not supported.
0x889800A0L MILERR_PREFILTER_NOT_SUPPORTED The requested bitmap pre-filtering state is not supported.
0x889800A1L MILERR_DISPLAYID_ACCESS_DENIED Access is denied to the requested bitmap for the specified display id.
0x88980400L UCEERR_INVALIDPACKETHEADER UCEERR_INVALIDPACKETHEADER
0x88980401L UCEERR_UNKNOWNPACKET UCEERR_UNKNOWNPACKET
0x88980402L UCEERR_ILLEGALPACKET UCEERR_ILLEGALPACKET
0x88980403L UCEERR_MALFORMEDPACKET UCEERR_MALFORMEDPACKET
0x88980404L UCEERR_ILLEGALHANDLE UCEERR_ILLEGALHANDLE
0x88980405L UCEERR_HANDLELOOKUPFAILED UCEERR_HANDLELOOKUPFAILED
0x88980406L UCEERR_RENDERTHREADFAILURE UCEERR_RENDERTHREADFAILURE
0x88980407L UCEERR_CTXSTACKFRSTTARGETNULL UCEERR_CTXSTACKFRSTTARGETNULL
0x88980408L UCEERR_CONNECTIONIDLOOKUPFAILED UCEERR_CONNECTIONIDLOOKUPFAILED
0x88980409L UCEERR_BLOCKSFULL UCEERR_BLOCKSFULL
0x8898040AL UCEERR_MEMORYFAILURE UCEERR_MEMORYFAILURE
0x8898040BL UCEERR_PACKETRECORDOUTOFRANGE UCEERR_PACKETRECORDOUTOFRANGE
0x8898040CL UCEERR_ILLEGALRECORDTYPE UCEERR_ILLEGALRECORDTYPE
0x8898040DL UCEERR_OUTOFHANDLES UCEERR_OUTOFHANDLES
0x8898040EL UCEERR_UNCHANGABLE_UPDATE_ATTEMPTED UCEERR_UNCHANGABLE_UPDATE_ATTEMPTED
0x8898040FL UCEERR_NO_MULTIPLE_WORKER_THREADS UCEERR_NO_MULTIPLE_WORKER_THREADS
0x88980410L UCEERR_REMOTINGNOTSUPPORTED UCEERR_REMOTINGNOTSUPPORTED
0x88980411L UCEERR_MISSINGENDCOMMAND UCEERR_MISSINGENDCOMMAND
0x88980412L UCEERR_MISSINGBEGINCOMMAND UCEERR_MISSINGBEGINCOMMAND
0x88980413L UCEERR_CHANNELSYNCTIMEDOUT UCEERR_CHANNELSYNCTIMEDOUT
0x88980414L UCEERR_CHANNELSYNCABANDONED UCEERR_CHANNELSYNCABANDONED
0x88980415L UCEERR_UNSUPPORTEDTRANSPORTVERSION UCEERR_UNSUPPORTEDTRANSPORTVERSION
0x88980416L UCEERR_TRANSPORTUNAVAILABLE UCEERR_TRANSPORTUNAVAILABLE
0x88980417L UCEERR_FEEDBACK_UNSUPPORTED UCEERR_FEEDBACK_UNSUPPORTED
0x88980418L UCEERR_COMMANDTRANSPORTDENIED UCEERR_COMMANDTRANSPORTDENIED
0x88980419L UCEERR_GRAPHICSSTREAMUNAVAILABLE UCEERR_GRAPHICSSTREAMUNAVAILABLE
0x88980420L UCEERR_GRAPHICSSTREAMALREADYOPEN UCEERR_GRAPHICSSTREAMALREADYOPEN
0x88980421L UCEERR_TRANSPORTDISCONNECTED UCEERR_TRANSPORTDISCONNECTED
0x88980422L UCEERR_TRANSPORTOVERLOADED UCEERR_TRANSPORTOVERLOADED
0x88980423L UCEERR_PARTITION_ZOMBIED UCEERR_PARTITION_ZOMBIED
0x88980500L MILAVERR_NOCLOCK MILAVERR_NOCLOCK
0x88980501L MILAVERR_NOMEDIATYPE MILAVERR_NOMEDIATYPE
0x88980502L MILAVERR_NOVIDEOMIXER MILAVERR_NOVIDEOMIXER
0x88980503L MILAVERR_NOVIDEOPRESENTER MILAVERR_NOVIDEOPRESENTER
0x88980504L MILAVERR_NOREADYFRAMES MILAVERR_NOREADYFRAMES
0x88980505L MILAVERR_MODULENOTLOADED MILAVERR_MODULENOTLOADED
0x88980506L MILAVERR_WMPFACTORYNOTREGISTERED MILAVERR_WMPFACTORYNOTREGISTERED
0x88980507L MILAVERR_INVALIDWMPVERSION MILAVERR_INVALIDWMPVERSION
0x88980508L MILAVERR_INSUFFICIENTVIDEORESOURCES MILAVERR_INSUFFICIENTVIDEORESOURCES
0x88980509L MILAVERR_VIDEOACCELERATIONNOTAVAILABLE MILAVERR_VIDEOACCELERATIONNOTAVAILABLE
0x8898050AL MILAVERR_REQUESTEDTEXTURETOOBIG MILAVERR_REQUESTEDTEXTURETOOBIG
0x8898050BL MILAVERR_SEEKFAILED MILAVERR_SEEKFAILED
0x8898050CL MILAVERR_UNEXPECTEDWMPFAILURE MILAVERR_UNEXPECTEDWMPFAILURE
0x8898050DL MILAVERR_MEDIAPLAYERCLOSED MILAVERR_MEDIAPLAYERCLOSED
0x8898050EL MILAVERR_UNKNOWNHARDWAREERROR MILAVERR_UNKNOWNHARDWAREERROR
0x8898060EL MILEFFECTSERR_UNKNOWNPROPERTY MILEFFECTSERR_UNKNOWNPROPERTY
0x8898060FL MILEFFECTSERR_EFFECTNOTPARTOFGROUP MILEFFECTSERR_EFFECTNOTPARTOFGROUP
0x88980610L MILEFFECTSERR_NOINPUTSOURCEATTACHED MILEFFECTSERR_NOINPUTSOURCEATTACHED
0x88980611L MILEFFECTSERR_CONNECTORNOTCONNECTED MILEFFECTSERR_CONNECTORNOTCONNECTED
0x88980612L MILEFFECTSERR_CONNECTORNOTASSOCIATEDWITHEFFECT MILEFFECTSERR_CONNECTORNOTASSOCIATEDWITHEFFECT
0x88980613L MILEFFECTSERR_RESERVED MILEFFECTSERR_RESERVED
0x88980614L MILEFFECTSERR_CYCLEDETECTED MILEFFECTSERR_CYCLEDETECTED
0x88980615L MILEFFECTSERR_EFFECTINMORETHANONEGRAPH MILEFFECTSERR_EFFECTINMORETHANONEGRAPH
0x88980616L MILEFFECTSERR_EFFECTALREADYINAGRAPH MILEFFECTSERR_EFFECTALREADYINAGRAPH
0x88980617L MILEFFECTSERR_EFFECTHASNOCHILDREN MILEFFECTSERR_EFFECTHASNOCHILDREN
0x88980618L MILEFFECTSERR_ALREADYATTACHEDTOLISTENER MILEFFECTSERR_ALREADYATTACHEDTOLISTENER
0x88980619L MILEFFECTSERR_NOTAFFINETRANSFORM MILEFFECTSERR_NOTAFFINETRANSFORM
0x8898061AL MILEFFECTSERR_EMPTYBOUNDS MILEFFECTSERR_EMPTYBOUNDS
0x8898061BL MILEFFECTSERR_OUTPUTSIZETOOLARGE MILEFFECTSERR_OUTPUTSIZETOOLARGE
0x88980700L DWMERR_STATE_TRANSITION_FAILED DWMERR_STATE_TRANSITION_FAILED
0x88980701L DWMERR_THEME_FAILED DWMERR_THEME_FAILED
0x88980702L DWMERR_CATASTROPHIC_FAILURE DWMERR_CATASTROPHIC_FAILURE
0x88980800L DCOMPOSITION_ERROR_WINDOW_ALREADY_COMPOSED DCOMPOSITION_ERROR_WINDOW_ALREADY_COMPOSED
0x88980801L DCOMPOSITION_ERROR_SURFACE_BEING_RENDERED DCOMPOSITION_ERROR_SURFACE_BEING_RENDERED
0x88980802L DCOMPOSITION_ERROR_SURFACE_NOT_BEING_RENDERED DCOMPOSITION_ERROR_SURFACE_NOT_BEING_RENDERED
0x80860001L ONL_E_INVALID_AUTHENTICATION_TARGET Authentication target is invalid or not configured correctly.
0x80860002L ONL_E_ACCESS_DENIED_BY_TOU Your application cannot get the Online Id properties due to the Terms of Use accepted by the user.
0x80860003L ONL_E_INVALID_APPLICATION The application requesting authentication tokens is either disabled or incorrectly configured.
0x80860004L ONL_E_PASSWORD_UPDATE_REQUIRED Online Id password must be updated before signin.
0x80860005L ONL_E_ACCOUNT_UPDATE_REQUIRED Online Id account properties must be updated before signin.
0x80860006L ONL_E_FORCESIGNIN To help protect your Online Id account you must signin again.
0x80860007L ONL_E_ACCOUNT_LOCKED Online Id account was locked because there have been too many attempts to sign in.
0x80860008L ONL_E_PARENTAL_CONSENT_REQUIRED Online Id account requires parental consent before proceeding.
0x80860009L ONL_E_EMAIL_VERIFICATION_REQUIRED Online Id signin name is not yet verified. Email verification is required before signin.
0x8086000AL ONL_E_ACCOUNT_SUSPENDED_COMPROIMISE We have noticed some unusual activity in your Online Id account. Your action is needed to make sure no one else is using your account.
0x8086000BL ONL_E_ACCOUNT_SUSPENDED_ABUSE We detected some suspicious activity with your Online Id account. To help protect you
0x8086000CL ONL_E_ACTION_REQUIRED User interaction is required for authentication.
0x8086000DL ONL_CONNECTION_COUNT_LIMIT User has reached the maximum device associations per user limit.
0x8086000EL ONL_E_CONNECTED_ACCOUNT_CAN_NOT_SIGNOUT Cannot sign out from the application since the user account is connected.
0x8086000FL ONL_E_USER_AUTHENTICATION_REQUIRED User authentication is required for this operation.
0x80860010L ONL_E_REQUEST_THROTTLED We want to make sure this is you. User interaction is required for authentication.
0x80270220L FA_E_MAX_PERSISTED_ITEMS_REACHED The maximum number of items for the access list has been reached. An item must be removed before another item is added.
0x80270222L FA_E_HOMEGROUP_NOT_AVAILABLE Cannot access Homegroup. Homegroup may not be set up or may have encountered an error.
0x80270250L E_MONITOR_RESOLUTION_TOO_LOW This app can’t start because the screen resolution is below 1024x768. Choose a higher screen resolution and then try again.
0x80270251L E_ELEVATED_ACTIVATION_NOT_SUPPORTED This app can’t be activated from an elevated context.
0x80270252L E_UAC_DISABLED This app can’t be activated when UAC is disabled.
0x80270253L E_FULL_ADMIN_NOT_SUPPORTED This app can’t be activated by the Built-in Administrator.
0x80270254L E_APPLICATION_NOT_REGISTERED This app does not support the contract specified or is not installed.
0x80270255L E_MULTIPLE_EXTENSIONS_FOR_APPLICATION This app has multiple extensions registered to support the specified contract. Activation by AppUserModelId is ambiguous.
0x80270256L E_MULTIPLE_PACKAGES_FOR_FAMILY This app’s package family has more than one package installed. This is not supported.
0x80270257L E_APPLICATION_MANAGER_NOT_RUNNING The app manager is required to activate applications
0x00270258L S_STORE_LAUNCHED_FOR_REMEDIATION The Store was launched instead of the specified app because the app’s package was in an invalid state.
0x00270259L S_APPLICATION_ACTIVATION_ERROR_HANDLED_BY_DIALOG This app failed to launch
0x8027025AL E_APPLICATION_ACTIVATION_TIMED_OUT The app didn’t start in the required time.
0x8027025BL E_APPLICATION_ACTIVATION_EXEC_FAILURE The app didn’t start.
0x8027025CL E_APPLICATION_TEMPORARY_LICENSE_ERROR This app failed to launch because of an issue with its license. Please try again in a moment.
0x8027025DL E_APPLICATION_TRIAL_LICENSE_EXPIRED This app failed to launch because its trial license has expired.
0x80270260L E_SKYDRIVE_ROOT_TARGET_FILE_SYSTEM_NOT_SUPPORTED Please choose a folder on a drive that’s formatted with the NTFS file system.
0x80270261L E_SKYDRIVE_ROOT_TARGET_OVERLAP This location is already being used. Please choose a different location.
0x80270262L E_SKYDRIVE_ROOT_TARGET_CANNOT_INDEX This location cannot be indexed. Please choose a different location.
0x80270263L E_SKYDRIVE_FILE_NOT_UPLOADED Sorry
0x80270264L E_SKYDRIVE_UPDATE_AVAILABILITY_FAIL Sorry
0x80270265L E_SKYDRIVE_ROOT_TARGET_VOLUME_ROOT_NOT_SUPPORTED This content can only be moved to a folder. To move the content to this drive
0x8802B001L E_SYNCENGINE_FILE_SIZE_OVER_LIMIT The file size is larger than supported by the sync engine.
0x8802B002L E_SYNCENGINE_FILE_SIZE_EXCEEDS_REMAINING_QUOTA The file cannot be uploaded because it doesn’t fit in the user’s available service provided storage space.
0x8802B003L E_SYNCENGINE_UNSUPPORTED_FILE_NAME The file name contains invalid characters.
0x8802B004L E_SYNCENGINE_FOLDER_ITEM_COUNT_LIMIT_EXCEEDED The maximum file count has been reached for this folder in the sync engine.
0x8802B005L E_SYNCENGINE_FILE_SYNC_PARTNER_ERROR The file sync has been delegated to another program and has run into an issue.
0x8802B006L E_SYNCENGINE_SYNC_PAUSED_BY_SERVICE Sync has been delayed due to a throttling request from the service.
0x8802C002L E_SYNCENGINE_FILE_IDENTIFIER_UNKNOWN We can’t seem to find that file. Please try again later.
0x8802C003L E_SYNCENGINE_SERVICE_AUTHENTICATION_FAILED The account you’re signed in with doesn’t have permission to open this file.
0x8802C004L E_SYNCENGINE_UNKNOWN_SERVICE_ERROR There was a problem connecting to the service. Please try again later.
0x8802C005L E_SYNCENGINE_SERVICE_RETURNED_UNEXPECTED_SIZE Sorry
0x8802C006L E_SYNCENGINE_REQUEST_BLOCKED_BY_SERVICE We’re having trouble downloading the file right now. Please try again later.
0x8802C007L E_SYNCENGINE_REQUEST_BLOCKED_DUE_TO_CLIENT_ERROR We’re having trouble downloading the file right now. Please try again later.
0x8802D001L E_SYNCENGINE_FOLDER_INACCESSIBLE The sync engine does not have permissions to access a local folder under the sync root.
0x8802D002L E_SYNCENGINE_UNSUPPORTED_FOLDER_NAME The folder name contains invalid characters.
0x8802D003L E_SYNCENGINE_UNSUPPORTED_MARKET The sync engine is not allowed to run in your current market.
0x8802D004L E_SYNCENGINE_PATH_LENGTH_LIMIT_EXCEEDED All files and folders can’t be uploaded because a path of a file or folder is too long.
0x8802D005L E_SYNCENGINE_REMOTE_PATH_LENGTH_LIMIT_EXCEEDED All file and folders cannot be synchronized because a path of a file or folder would exceed the local path limit.
0x8802D006L E_SYNCENGINE_CLIENT_UPDATE_NEEDED Updates are needed in order to use the sync engine.
0x8802D007L E_SYNCENGINE_PROXY_AUTHENTICATION_REQUIRED The sync engine needs to authenticate with a proxy server.
0x8802D008L E_SYNCENGINE_STORAGE_SERVICE_PROVISIONING_FAILED There was a problem setting up the storage services for the account.
0x8802D009L E_SYNCENGINE_UNSUPPORTED_REPARSE_POINT Files can’t be uploaded because there’s an unsupported reparse point.
0x8802D00AL E_SYNCENGINE_STORAGE_SERVICE_BLOCKED The service has blocked your account from accessing the storage service.
0x8802D00BL E_SYNCENGINE_FOLDER_IN_REDIRECTION The action can’t be performed right now because this folder is being moved. Please try again later.
0x80550001L EAS_E_POLICY_NOT_MANAGED_BY_OS Windows cannot evaluate this EAS policy since this is not managed by the operating system.
0x80550002L EAS_E_POLICY_COMPLIANT_WITH_ACTIONS The system can be made compliant to this EAS policy if certain actions are performed by the user.
0x80550003L EAS_E_REQUESTED_POLICY_NOT_ENFORCEABLE The EAS policy being evaluated cannot be enforced by the system.
0x80550004L EAS_E_CURRENT_USER_HAS_BLANK_PASSWORD EAS password policies for the user cannot be evaluated as the user has a blank password.
0x80550005L EAS_E_REQUESTED_POLICY_PASSWORD_EXPIRATION_INCOMPATIBLE EAS password expiration policy cannot be satisfied as the password expiration interval is less than the minimum password interval of the system.
0x80550006L EAS_E_USER_CANNOT_CHANGE_PASSWORD The user is not allowed to change her password.
0x80550007L EAS_E_ADMINS_HAVE_BLANK_PASSWORD EAS password policies cannot be evaluated as one or more admins have blank passwords.
0x80550008L EAS_E_ADMINS_CANNOT_CHANGE_PASSWORD One or more admins are not allowed to change their password.
0x80550009L EAS_E_LOCAL_CONTROLLED_USERS_CANNOT_CHANGE_PASSWORD There are other standard users present who are not allowed to change their password.
0x8055000AL EAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CONNECTED_ADMINS The EAS password policy cannot be enforced by the connected account provider of at least one administrator.
0x8055000BL EAS_E_CONNECTED_ADMINS_NEED_TO_CHANGE_PASSWORD There is at least one administrator whose connected account password needs to be changed for EAS password policy compliance.
0x8055000CL EAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CURRENT_CONNECTED_USER The EAS password policy cannot be enforced by the connected account provider of the current user.
0x8055000DL EAS_E_CURRENT_CONNECTED_USER_NEED_TO_CHANGE_PASSWORD The connected account password of the current user needs to be changed for EAS password policy compliance.
0x83750001L WEB_E_UNSUPPORTED_FORMAT Unsupported format.
0x83750002L WEB_E_INVALID_XML Invalid XML.
0x83750003L WEB_E_MISSING_REQUIRED_ELEMENT Missing required element.
0x83750004L WEB_E_MISSING_REQUIRED_ATTRIBUTE Missing required attribute.
0x83750005L WEB_E_UNEXPECTED_CONTENT Unexpected content.
0x83750006L WEB_E_RESOURCE_TOO_LARGE Resource too large.
0x83750007L WEB_E_INVALID_JSON_STRING Invalid JSON string.
0x83750008L WEB_E_INVALID_JSON_NUMBER Invalid JSON number.
0x83750009L WEB_E_JSON_VALUE_NOT_FOUND JSON value not found.
0x80190001L HTTP_E_STATUS_UNEXPECTED Unexpected HTTP status code.
0x80190003L HTTP_E_STATUS_UNEXPECTED_REDIRECTION Unexpected redirection status code (3xx).
0x80190004L HTTP_E_STATUS_UNEXPECTED_CLIENT_ERROR Unexpected client error status code (4xx).
0x80190005L HTTP_E_STATUS_UNEXPECTED_SERVER_ERROR Unexpected server error status code (5xx).
0x8019012CL HTTP_E_STATUS_AMBIGUOUS Multiple choices (300).
0x8019012DL HTTP_E_STATUS_MOVED Moved permanently (301).
0x8019012EL HTTP_E_STATUS_REDIRECT Found (302).
0x8019012FL HTTP_E_STATUS_REDIRECT_METHOD See Other (303).
0x80190130L HTTP_E_STATUS_NOT_MODIFIED Not modified (304).
0x80190131L HTTP_E_STATUS_USE_PROXY Use proxy (305).
0x80190133L HTTP_E_STATUS_REDIRECT_KEEP_VERB Temporary redirect (307).
0x80190190L HTTP_E_STATUS_BAD_REQUEST Bad request (400).
0x80190191L HTTP_E_STATUS_DENIED Unauthorized (401).
0x80190192L HTTP_E_STATUS_PAYMENT_REQ Payment required (402).
0x80190193L HTTP_E_STATUS_FORBIDDEN Forbidden (403).
0x80190194L HTTP_E_STATUS_NOT_FOUND Not found (404).
0x80190195L HTTP_E_STATUS_BAD_METHOD Method not allowed (405).
0x80190196L HTTP_E_STATUS_NONE_ACCEPTABLE Not acceptable (406).
0x80190197L HTTP_E_STATUS_PROXY_AUTH_REQ Proxy authentication required (407).
0x80190198L HTTP_E_STATUS_REQUEST_TIMEOUT Request timeout (408).
0x80190199L HTTP_E_STATUS_CONFLICT Conflict (409).
0x8019019AL HTTP_E_STATUS_GONE Gone (410).
0x8019019BL HTTP_E_STATUS_LENGTH_REQUIRED Length required (411).
0x8019019CL HTTP_E_STATUS_PRECOND_FAILED Precondition failed (412).
0x8019019DL HTTP_E_STATUS_REQUEST_TOO_LARGE Request entity too large (413).
0x8019019EL HTTP_E_STATUS_URI_TOO_LONG Request-URI too long (414).
0x8019019FL HTTP_E_STATUS_UNSUPPORTED_MEDIA Unsupported media type (415).
0x801901A0L HTTP_E_STATUS_RANGE_NOT_SATISFIABLE Requested range not satisfiable (416).
0x801901A1L HTTP_E_STATUS_EXPECTATION_FAILED Expectation failed (417).
0x801901F4L HTTP_E_STATUS_SERVER_ERROR Internal server error (500).
0x801901F5L HTTP_E_STATUS_NOT_SUPPORTED Not implemented (501).
0x801901F6L HTTP_E_STATUS_BAD_GATEWAY Bad gateway (502).
0x801901F7L HTTP_E_STATUS_SERVICE_UNAVAIL Service unavailable (503).
0x801901F8L HTTP_E_STATUS_GATEWAY_TIMEOUT Gateway timeout (504).
0x801901F9L HTTP_E_STATUS_VERSION_NOT_SUP Version not supported (505).
0x83760001L E_INVALID_PROTOCOL_OPERATION Invalid operation performed by the protocol.
0x83760002L E_INVALID_PROTOCOL_FORMAT Invalid data format for the specific protocol operation.
0x83760003L E_PROTOCOL_EXTENSIONS_NOT_SUPPORTED Protocol extensions are not supported.
0x83760004L E_SUBPROTOCOL_NOT_SUPPORTED Subprotocol is not supported.
0x83760005L E_PROTOCOL_VERSION_NOT_SUPPORTED Incorrect protocol version.
0x80400000L INPUT_E_OUT_OF_ORDER Input data cannot be processed in the non-chronological order.
0x80400001L INPUT_E_REENTRANCY Requested operation cannot be performed inside the callback or event handler.
0x80400002L INPUT_E_MULTIMODAL Input cannot be processed because there is ongoing interaction with another pointer type.
0x80400003L INPUT_E_PACKET One or more fields in the input packet are invalid.
0x80400004L INPUT_E_FRAME Packets in the frame are inconsistent. Either pointer ids are not unique or there is a discrepancy in timestamps
0x80400005L INPUT_E_HISTORY The history of frames is inconsistent. Pointer ids
0x80400006L INPUT_E_DEVICE_INFO Failed to retrieve information about the input device.
0x80400007L INPUT_E_TRANSFORM Coordinate system transformation failed to transform the data.
0x80400008L INPUT_E_DEVICE_PROPERTY The property is not supported or not reported correctly by the input device.
0x800C0002L INET_E_INVALID_URL The URL is invalid.
0x800C0003L INET_E_NO_SESSION No Internet session has been established.
0x800C0004L INET_E_CANNOT_CONNECT Unable to connect to the target server.
0x800C0005L INET_E_RESOURCE_NOT_FOUND The system cannot locate the resource specified.
0x800C0006L INET_E_OBJECT_NOT_FOUND The system cannot locate the object specified.
0x800C0007L INET_E_DATA_NOT_AVAILABLE No data is available for the requested resource.
0x800C0008L INET_E_DOWNLOAD_FAILURE The download of the specified resource has failed.
0x800C0009L INET_E_AUTHENTICATION_REQUIRED Authentication is required to access this resource.
0x800C000AL INET_E_NO_VALID_MEDIA The server could not recognize the provided mime type.
0x800C000BL INET_E_CONNECTION_TIMEOUT The operation was timed out.
0x800C000CL INET_E_INVALID_REQUEST The server did not understand the request
0x800C000DL INET_E_UNKNOWN_PROTOCOL The specified protocol is unknown.
0x800C000EL INET_E_SECURITY_PROBLEM A security problem occurred.
0x800C000FL INET_E_CANNOT_LOAD_DATA The system could not load the persisted data.
0x800C0010L INET_E_CANNOT_INSTANTIATE_OBJECT Unable to instantiate the object.
0x800C0019L INET_E_INVALID_CERTIFICATE Security certificate required to access this resource is invalid.
0x800C0014L INET_E_REDIRECT_FAILED A redirection problem occurred.
0x800C0015L INET_E_REDIRECT_TO_DIR The requested resource is a directory
0x80B00001L ERROR_DBG_CREATE_PROCESS_FAILURE_LOCKDOWN Could not create new process from ARM architecture device.
0x80B00002L ERROR_DBG_ATTACH_PROCESS_FAILURE_LOCKDOWN Could not attach to the application process from ARM architecture device.
0x80B00003L ERROR_DBG_CONNECT_SERVER_FAILURE_LOCKDOWN Could not connect to dbgsrv server from ARM architecture device.
0x80B00004L ERROR_DBG_START_SERVER_FAILURE_LOCKDOWN Could not start dbgsrv server from ARM architecture device.
0x89010001L ERROR_IO_PREEMPTED The operation was preempted by a higher priority operation. It must be resumed later.
0x89020001L JSCRIPT_E_CANTEXECUTE Function could not execute because it was deleted or garbage collected.
0x88010001L WEP_E_NOT_PROVISIONED_ON_ALL_VOLUMES One or more fixed volumes are not provisioned with the 3rd party encryption providers to support device encryption. Enable encryption with the 3rd party provider to comply with policy.
0x88010002L WEP_E_FIXED_DATA_NOT_SUPPORTED This computer is not fully encrypted. There are fixed volumes present which are not supported for encryption.
0x88010003L WEP_E_HARDWARE_NOT_COMPLIANT This computer does not meet the hardware requirements to support device encryption with the installed 3rd party provider.
0x88010004L WEP_E_LOCK_NOT_CONFIGURED This computer cannot support device encryption because the requisites for the device lock feature are not configured.
0x88010005L WEP_E_PROTECTION_SUSPENDED Protection is enabled on this volume but is not in the active state.
0x88010006L WEP_E_NO_LICENSE The 3rd party provider has been installed
0x88010007L WEP_E_OS_NOT_PROTECTED The operating system drive is not protected by 3rd party drive encryption.
0x88010008L WEP_E_UNEXPECTED_FAIL Unexpected failure was encountered while calling into the 3rd Party drive encryption plugin.
0x88010009L WEP_E_BUFFER_TOO_LARGE The input buffer size for the lockout metadata used by the 3rd party drive encryption is too large.
0xC05C0000L ERROR_SVHDX_ERROR_STORED The proper error code with sense data was stored on server side.
0xC05CFF00L ERROR_SVHDX_ERROR_NOT_AVAILABLE The requested error data is not available on the server.
0xC05CFF01L ERROR_SVHDX_UNIT_ATTENTION_AVAILABLE Unit Attention data is available for the initiator to query.
0xC05CFF02L ERROR_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED The data capacity of the device has changed
0xC05CFF03L ERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED A previous operation resulted in this initiator’s reservations being preempted
0xC05CFF04L ERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED A previous operation resulted in this initiator’s reservations being released
0xC05CFF05L ERROR_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED A previous operation resulted in this initiator’s registrations being preempted
0xC05CFF06L ERROR_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED The data storage format of the device has changed
0xC05CFF07L ERROR_SVHDX_RESERVATION_CONFLICT The current initiator is not allowed to perform the SCSI command because of a reservation conflict.
0xC05CFF08L ERROR_SVHDX_WRONG_FILE_TYPE Multiple virtual machines sharing a virtual hard disk is supported only on Fixed or Dynamic VHDX format virtual hard disks.
0xC05CFF09L ERROR_SVHDX_VERSION_MISMATCH The server version does not match the requested version.
0xC05CFF0AL ERROR_VHD_SHARED The requested operation cannot be performed on the virtual disk as it is currently used in shared mode.
0xC05CFF0BL ERROR_SVHDX_NO_INITIATOR Invalid Shared VHDX open due to lack of initiator ID. Check for related Continuous Availability failures.
0xC05CFF0CL ERROR_VHDSET_BACKING_STORAGE_NOT_FOUND The requested operation failed due to a missing backing storage file.
0xC05D0000L ERROR_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP Failed to negotiate a preauthentication integrity hash function.
0xC05D0001L ERROR_SMB_BAD_CLUSTER_DIALECT The current cluster functional level does not support this SMB dialect.
0x80072EE1L WININET_E_OUT_OF_HANDLES No more Internet handles can be allocated
0x80072EE2L WININET_E_TIMEOUT The operation timed out
0x80072EE3L WININET_E_EXTENDED_ERROR The server returned extended information
0x80072EE4L WININET_E_INTERNAL_ERROR An internal error occurred in the Microsoft Internet extensions
0x80072EE5L WININET_E_INVALID_URL The URL is invalid
0x80072EE6L WININET_E_UNRECOGNIZED_SCHEME The URL does not use a recognized protocol
0x80072EE7L WININET_E_NAME_NOT_RESOLVED The server name or address could not be resolved
0x80072EE8L WININET_E_PROTOCOL_NOT_FOUND A protocol with the required capabilities was not found
0x80072EE9L WININET_E_INVALID_OPTION The option is invalid
0x80072EEAL WININET_E_BAD_OPTION_LENGTH The length is incorrect for the option type
0x80072EEBL WININET_E_OPTION_NOT_SETTABLE The option value cannot be set
0x80072EECL WININET_E_SHUTDOWN Microsoft Internet Extension support has been shut down
0x80072EEDL WININET_E_INCORRECT_USER_NAME The user name was not allowed
0x80072EEEL WININET_E_INCORRECT_PASSWORD The password was not allowed
0x80072EEFL WININET_E_LOGIN_FAILURE The login request was denied
0x80072EF0L WININET_E_INVALID_OPERATION The requested operation is invalid
0x80072EF1L WININET_E_OPERATION_CANCELLED The operation has been canceled
0x80072EF2L WININET_E_INCORRECT_HANDLE_TYPE The supplied handle is the wrong type for the requested operation
0x80072EF3L WININET_E_INCORRECT_HANDLE_STATE The handle is in the wrong state for the requested operation
0x80072EF4L WININET_E_NOT_PROXY_REQUEST The request cannot be made on a Proxy session
0x80072EF5L WININET_E_REGISTRY_VALUE_NOT_FOUND The registry value could not be found
0x80072EF6L WININET_E_BAD_REGISTRY_PARAMETER The registry parameter is incorrect
0x80072EF7L WININET_E_NO_DIRECT_ACCESS Direct Internet access is not available
0x80072EF8L WININET_E_NO_CONTEXT No context value was supplied
0x80072EF9L WININET_E_NO_CALLBACK No status callback was supplied
0x80072EFAL WININET_E_REQUEST_PENDING There are outstanding requests
0x80072EFBL WININET_E_INCORRECT_FORMAT The information format is incorrect
0x80072EFCL WININET_E_ITEM_NOT_FOUND The requested item could not be found
0x80072EFDL WININET_E_CANNOT_CONNECT A connection with the server could not be established
0x80072EFEL WININET_E_CONNECTION_ABORTED The connection with the server was terminated abnormally
0x80072EFFL WININET_E_CONNECTION_RESET The connection with the server was reset
0x80072F00L WININET_E_FORCE_RETRY The action must be retried
0x80072F01L WININET_E_INVALID_PROXY_REQUEST The proxy request is invalid
0x80072F02L WININET_E_NEED_UI User interaction is required to complete the operation
0x80072F04L WININET_E_HANDLE_EXISTS The handle already exists
0x80072F05L WININET_E_SEC_CERT_DATE_INVALID The date in the certificate is invalid or has expired
0x80072F06L WININET_E_SEC_CERT_CN_INVALID The host name in the certificate is invalid or does not match
0x80072F07L WININET_E_HTTP_TO_HTTPS_ON_REDIR A redirect request will change a non-secure to a secure connection
0x80072F08L WININET_E_HTTPS_TO_HTTP_ON_REDIR A redirect request will change a secure to a non-secure connection
0x80072F09L WININET_E_MIXED_SECURITY Mixed secure and non-secure connections
0x80072F0AL WININET_E_CHG_POST_IS_NON_SECURE Changing to non-secure post
0x80072F0BL WININET_E_POST_IS_NON_SECURE Data is being posted on a non-secure connection
0x80072F0CL WININET_E_CLIENT_AUTH_CERT_NEEDED A certificate is required to complete client authentication
0x80072F0DL WININET_E_INVALID_CA The certificate authority is invalid or incorrect
0x80072F0EL WININET_E_CLIENT_AUTH_NOT_SETUP Client authentication has not been correctly installed
0x80072F0FL WININET_E_ASYNC_THREAD_FAILED An error has occurred in a Wininet asynchronous thread. You may need to restart
0x80072F10L WININET_E_REDIRECT_SCHEME_CHANGE The protocol scheme has changed during a redirect operation
0x80072F11L WININET_E_DIALOG_PENDING There are operations awaiting retry
0x80072F12L WININET_E_RETRY_DIALOG The operation must be retried
0x80072F13L WININET_E_NO_NEW_CONTAINERS There are no new cache containers
0x80072F14L WININET_E_HTTPS_HTTP_SUBMIT_REDIR A security zone check indicates the operation must be retried
0x80072F17L WININET_E_SEC_CERT_ERRORS The SSL certificate contains errors.
0x80072F19L WININET_E_SEC_CERT_REV_FAILED It was not possible to connect to the revocation server or a definitive response could not be obtained.
0x80072F76L WININET_E_HEADER_NOT_FOUND The requested header was not found
0x80072F77L WININET_E_DOWNLEVEL_SERVER The server does not support the requested protocol level
0x80072F78L WININET_E_INVALID_SERVER_RESPONSE The server returned an invalid or unrecognized response
0x80072F79L WININET_E_INVALID_HEADER The supplied HTTP header is invalid
0x80072F7AL WININET_E_INVALID_QUERY_REQUEST The request for a HTTP header is invalid
0x80072F7BL WININET_E_HEADER_ALREADY_EXISTS The HTTP header already exists
0x80072F7CL WININET_E_REDIRECT_FAILED The HTTP redirect request failed
0x80072F7DL WININET_E_SECURITY_CHANNEL_ERROR An error occurred in the secure channel support
0x80072F7EL WININET_E_UNABLE_TO_CACHE_FILE The file could not be written to the cache
0x80072F7FL WININET_E_TCPIP_NOT_INSTALLED The TCP/IP protocol is not installed properly
0x80072F83L WININET_E_DISCONNECTED The computer is disconnected from the network
0x80072F84L WININET_E_SERVER_UNREACHABLE The server is unreachable
0x80072F85L WININET_E_PROXY_SERVER_UNREACHABLE The proxy server is unreachable
0x80072F86L WININET_E_BAD_AUTO_PROXY_SCRIPT The proxy auto-configuration script is in error
0x80072F87L WININET_E_UNABLE_TO_DOWNLOAD_SCRIPT Could not download the proxy auto-configuration script file
0x80072F89L WININET_E_SEC_INVALID_CERT The supplied certificate is invalid
0x80072F8AL WININET_E_SEC_CERT_REVOKED The supplied certificate has been revoked
0x80072F8BL WININET_E_FAILED_DUETOSECURITYCHECK The Dialup failed because file sharing was turned on and a failure was requested if security check was needed
0x80072F8CL WININET_E_NOT_INITIALIZED Initialization of the WinINet API has not occurred
0x80072F8EL WININET_E_LOGIN_FAILURE_DISPLAY_ENTITY_BODY Login failed and the client should display the entity body to the user
0x80072F8FL WININET_E_DECODING_FAILED Content decoding has failed
0x80072F80L WININET_E_NOT_REDIRECTED The HTTP request was not redirected
0x80072F81L WININET_E_COOKIE_NEEDS_CONFIRMATION A cookie from the server must be confirmed by the user
0x80072F82L WININET_E_COOKIE_DECLINED A cookie from the server has been declined acceptance
0x80072F88L WININET_E_REDIRECT_NEEDS_CONFIRMATION The HTTP redirect request must be confirmed by the user
0x87AF0001L SQLITE_E_ERROR SQL error or missing database
0x87AF0002L SQLITE_E_INTERNAL Internal logic error in SQLite
0x87AF0003L SQLITE_E_PERM Access permission denied
0x87AF0004L SQLITE_E_ABORT Callback routine requested an abort
0x87AF0005L SQLITE_E_BUSY The database file is locked
0x87AF0006L SQLITE_E_LOCKED A table in the database is locked
0x87AF0007L SQLITE_E_NOMEM A malloc() failed
0x87AF0008L SQLITE_E_READONLY Attempt to write a readonly database
0x87AF0009L SQLITE_E_INTERRUPT Operation terminated by sqlite3_interrupt()
0x87AF000AL SQLITE_E_IOERR Some kind of disk I/O error occurred
0x87AF000BL SQLITE_E_CORRUPT The database disk image is malformed
0x87AF000CL SQLITE_E_NOTFOUND Unknown opcode in sqlite3_file_control()
0x87AF000DL SQLITE_E_FULL Insertion failed because database is full
0x87AF000EL SQLITE_E_CANTOPEN Unable to open the database file
0x87AF000FL SQLITE_E_PROTOCOL Database lock protocol error
0x87AF0010L SQLITE_E_EMPTY Database is empty
0x87AF0011L SQLITE_E_SCHEMA The database schema changed
0x87AF0012L SQLITE_E_TOOBIG String or BLOB exceeds size limit
0x87AF0013L SQLITE_E_CONSTRAINT Abort due to constraint violation
0x87AF0014L SQLITE_E_MISMATCH Data type mismatch
0x87AF0015L SQLITE_E_MISUSE Library used incorrectly
0x87AF0016L SQLITE_E_NOLFS Uses OS features not supported on host
0x87AF0017L SQLITE_E_AUTH Authorization denied
0x87AF0018L SQLITE_E_FORMAT Auxiliary database format error
0x87AF0019L SQLITE_E_RANGE 2nd parameter to sqlite3_bind out of range
0x87AF001AL SQLITE_E_NOTADB File opened that is not a database file
0x87AF001BL SQLITE_E_NOTICE Notifications from sqlite3_log()
0x87AF001CL SQLITE_E_WARNING Warnings from sqlite3_log()
0x87AF0064L SQLITE_E_ROW sqlite3_step() has another row ready
0x87AF0065L SQLITE_E_DONE sqlite3_step() has finished executing
0x87AF010AL SQLITE_E_IOERR_READ SQLITE_IOERR_READ
0x87AF020AL SQLITE_E_IOERR_SHORT_READ SQLITE_IOERR_SHORT_READ
0x87AF030AL SQLITE_E_IOERR_WRITE SQLITE_IOERR_WRITE
0x87AF040AL SQLITE_E_IOERR_FSYNC SQLITE_IOERR_FSYNC
0x87AF050AL SQLITE_E_IOERR_DIR_FSYNC SQLITE_IOERR_DIR_FSYNC
0x87AF060AL SQLITE_E_IOERR_TRUNCATE SQLITE_IOERR_TRUNCATE
0x87AF070AL SQLITE_E_IOERR_FSTAT SQLITE_IOERR_FSTAT
0x87AF080AL SQLITE_E_IOERR_UNLOCK SQLITE_IOERR_UNLOCK
0x87AF090AL SQLITE_E_IOERR_RDLOCK SQLITE_IOERR_RDLOCK
0x87AF0A0AL SQLITE_E_IOERR_DELETE SQLITE_IOERR_DELETE
0x87AF0B0AL SQLITE_E_IOERR_BLOCKED SQLITE_IOERR_BLOCKED
0x87AF0C0AL SQLITE_E_IOERR_NOMEM SQLITE_IOERR_NOMEM
0x87AF0D0AL SQLITE_E_IOERR_ACCESS SQLITE_IOERR_ACCESS
0x87AF0E0AL SQLITE_E_IOERR_CHECKRESERVEDLOCK SQLITE_IOERR_CHECKRESERVEDLOCK
0x87AF0F0AL SQLITE_E_IOERR_LOCK SQLITE_IOERR_LOCK
0x87AF100AL SQLITE_E_IOERR_CLOSE SQLITE_IOERR_CLOSE
0x87AF110AL SQLITE_E_IOERR_DIR_CLOSE SQLITE_IOERR_DIR_CLOSE
0x87AF120AL SQLITE_E_IOERR_SHMOPEN SQLITE_IOERR_SHMOPEN
0x87AF130AL SQLITE_E_IOERR_SHMSIZE SQLITE_IOERR_SHMSIZE
0x87AF140AL SQLITE_E_IOERR_SHMLOCK SQLITE_IOERR_SHMLOCK
0x87AF150AL SQLITE_E_IOERR_SHMMAP SQLITE_IOERR_SHMMAP
0x87AF160AL SQLITE_E_IOERR_SEEK SQLITE_IOERR_SEEK
0x87AF170AL SQLITE_E_IOERR_DELETE_NOENT SQLITE_IOERR_DELETE_NOENT
0x87AF180AL SQLITE_E_IOERR_MMAP SQLITE_IOERR_MMAP
0x87AF190AL SQLITE_E_IOERR_GETTEMPPATH SQLITE_IOERR_GETTEMPPATH
0x87AF1A0AL SQLITE_E_IOERR_CONVPATH SQLITE_IOERR_CONVPATH
0x87AF1A02L SQLITE_E_IOERR_VNODE SQLITE_IOERR_VNODE
0x87AF1A03L SQLITE_E_IOERR_AUTH SQLITE_IOERR_AUTH
0x87AF0106L SQLITE_E_LOCKED_SHAREDCACHE SQLITE_LOCKED_SHAREDCACHE
0x87AF0105L SQLITE_E_BUSY_RECOVERY SQLITE_BUSY_RECOVERY
0x87AF0205L SQLITE_E_BUSY_SNAPSHOT SQLITE_BUSY_SNAPSHOT
0x87AF010EL SQLITE_E_CANTOPEN_NOTEMPDIR SQLITE_CANTOPEN_NOTEMPDIR
0x87AF020EL SQLITE_E_CANTOPEN_ISDIR SQLITE_CANTOPEN_ISDIR
0x87AF030EL SQLITE_E_CANTOPEN_FULLPATH SQLITE_CANTOPEN_FULLPATH
0x87AF040EL SQLITE_E_CANTOPEN_CONVPATH SQLITE_CANTOPEN_CONVPATH
0x87AF010BL SQLITE_E_CORRUPT_VTAB SQLITE_CORRUPT_VTAB
0x87AF0108L SQLITE_E_READONLY_RECOVERY SQLITE_READONLY_RECOVERY
0x87AF0208L SQLITE_E_READONLY_CANTLOCK SQLITE_READONLY_CANTLOCK
0x87AF0308L SQLITE_E_READONLY_ROLLBACK SQLITE_READONLY_ROLLBACK
0x87AF0408L SQLITE_E_READONLY_DBMOVED SQLITE_READONLY_DBMOVED
0x87AF0204L SQLITE_E_ABORT_ROLLBACK SQLITE_ABORT_ROLLBACK
0x87AF0113L SQLITE_E_CONSTRAINT_CHECK SQLITE_CONSTRAINT_CHECK
0x87AF0213L SQLITE_E_CONSTRAINT_COMMITHOOK SQLITE_CONSTRAINT_COMMITHOOK
0x87AF0313L SQLITE_E_CONSTRAINT_FOREIGNKEY SQLITE_CONSTRAINT_FOREIGNKEY
0x87AF0413L SQLITE_E_CONSTRAINT_FUNCTION SQLITE_CONSTRAINT_FUNCTION
0x87AF0513L SQLITE_E_CONSTRAINT_NOTNULL SQLITE_CONSTRAINT_NOTNULL
0x87AF0613L SQLITE_E_CONSTRAINT_PRIMARYKEY SQLITE_CONSTRAINT_PRIMARYKEY
0x87AF0713L SQLITE_E_CONSTRAINT_TRIGGER SQLITE_CONSTRAINT_TRIGGER
0x87AF0813L SQLITE_E_CONSTRAINT_UNIQUE SQLITE_CONSTRAINT_UNIQUE
0x87AF0913L SQLITE_E_CONSTRAINT_VTAB SQLITE_CONSTRAINT_VTAB
0x87AF0A13L SQLITE_E_CONSTRAINT_ROWID SQLITE_CONSTRAINT_ROWID
0x87AF011BL SQLITE_E_NOTICE_RECOVER_WAL SQLITE_NOTICE_RECOVER_WAL
0x87AF021BL SQLITE_E_NOTICE_RECOVER_ROLLBACK SQLITE_NOTICE_RECOVER_ROLLBACK
0x87AF011CL SQLITE_E_WARNING_AUTOINDEX SQLITE_WARNING_AUTOINDEX
0x87C51001L UTC_E_TOGGLE_TRACE_STARTED Toggle (alternative) trace started
0x87C51002L UTC_E_ALTERNATIVE_TRACE_CANNOT_PREEMPT Cannot pre-empt running trace: The current trace has a higher priority
0x87C51003L UTC_E_AOT_NOT_RUNNING The always-on-trace is not running
0x87C51004L UTC_E_SCRIPT_TYPE_INVALID RunScriptAction contains an invalid script type
0x87C51005L UTC_E_SCENARIODEF_NOT_FOUND Requested scenario definition cannot be found
0x87C51006L UTC_E_TRACEPROFILE_NOT_FOUND Requested trace profile cannot be found
0x87C51007L UTC_E_FORWARDER_ALREADY_ENABLED Trigger forwarder is already enabled
0x87C51008L UTC_E_FORWARDER_ALREADY_DISABLED Trigger forwarder is already disabled
0x87C51009L UTC_E_EVENTLOG_ENTRY_MALFORMED Cannot parse EventLog XML: The entry is malformed
0x87C5100AL UTC_E_DIAGRULES_SCHEMAVERSION_MISMATCH node contains a schemaversion which is not compatible with this client
0x87C5100BL UTC_E_SCRIPT_TERMINATED RunScriptAction was forced to terminate a script
0x87C5100CL UTC_E_INVALID_CUSTOM_FILTER ToggleTraceWithCustomFilterAction contains an invalid custom filter
0x87C5100DL UTC_E_TRACE_NOT_RUNNING The trace is not running
0x87C5100EL UTC_E_REESCALATED_TOO_QUICKLY A scenario failed to escalate: This scenario has escalated too recently
0x87C5100FL UTC_E_ESCALATION_ALREADY_RUNNING A scenario failed to escalate: This scenario is already running an escalation
0x87C51010L UTC_E_PERFTRACK_ALREADY_TRACING Cannot start tracing: PerfTrack component is already tracing
0x87C51011L UTC_E_REACHED_MAX_ESCALATIONS A scenario failed to escalate: This scenario has reached max escalations for this escalation type
0x87C51012L UTC_E_FORWARDER_PRODUCER_MISMATCH Cannot update forwarder: The forwarder passed to the function is of a different type
0x87C51013L UTC_E_INTENTIONAL_SCRIPT_FAILURE RunScriptAction failed intentionally to force this escalation to terminate
0x87C51014L UTC_E_SQM_INIT_FAILED Failed to initialize SQM logger
0x87C51015L UTC_E_NO_WER_LOGGER_SUPPORTED Failed to initialize WER logger: This system does not support WER for UTC
0x87C51016L UTC_E_TRACERS_DONT_EXIST The TraceManager has attempted to take a tracing action without initializing tracers
0x87C51017L UTC_E_WINRT_INIT_FAILED WinRT initialization failed
0x87C51018L UTC_E_SCENARIODEF_SCHEMAVERSION_MISMATCH node contains a schemaversion that is not compatible with this client
0x87C51019L UTC_E_INVALID_FILTER Scenario contains an invalid filter that can never be satisfied
0x87C5101AL UTC_E_EXE_TERMINATED RunExeWithArgsAction was forced to terminate a running executable
0x87C5101BL UTC_E_ESCALATION_NOT_AUTHORIZED Escalation for scenario failed due to insufficient permissions
0x87C5101CL UTC_E_SETUP_NOT_AUTHORIZED Setup for scenario failed due to insufficient permissions
0x87C5101DL UTC_E_CHILD_PROCESS_FAILED A process launched by UTC failed with a non-zero exit code.
0x87C5101EL UTC_E_COMMAND_LINE_NOT_AUTHORIZED A RunExeWithArgs action contains an unauthorized command line.
0x87C5101FL UTC_E_CANNOT_LOAD_SCENARIO_EDITOR_XML UTC cannot load Scenario Editor XML. Convert the scenario file to a DiagTrack XML using the editor.
0x87C51020L UTC_E_ESCALATION_TIMED_OUT Escalation for scenario has timed out
0x87C51021L UTC_E_SETUP_TIMED_OUT Setup for scenario has timed out
0x87C51022L UTC_E_TRIGGER_MISMATCH The given trigger does not match the expected trigger type
0x87C51023L UTC_E_TRIGGER_NOT_FOUND Requested trigger cannot be found
0x87C51024L UTC_E_SIF_NOT_SUPPORTED SIF is not supported on the machine
0x87C51025L UTC_E_DELAY_TERMINATED The delay action was terminated
0x87C51026L UTC_E_DEVICE_TICKET_ERROR The device ticket was not obtained
0x87C51027L UTC_E_TRACE_BUFFER_LIMIT_EXCEEDED The trace profile needs more memory than is available for tracing
0x87C51028L UTC_E_API_RESULT_UNAVAILABLE The API was not completed successfully so the result is unavailable
0x87C51029L UTC_E_RPC_TIMEOUT The requested API encountered a timeout in the API manager
0x87C5102AL UTC_E_RPC_WAIT_FAILED The synchronous API encountered a wait failure
0x87C5102BL UTC_E_API_BUSY The UTC API is busy with another request
0x87C5102CL UTC_E_TRACE_MIN_DURATION_REQUIREMENT_NOT_MET The running trace profile does not have a sufficient runtime to fulfill the escalation request
0x87C5102DL UTC_E_EXCLUSIVITY_NOT_AVAILABLE The trace profile could not be started because it requires exclusivity and another higher priority trace is already running
0x87C5102EL UTC_E_GETFILE_FILE_PATH_NOT_APPROVED The file path is not approved for the GetFile escalation action
0x87C5102FL UTC_E_ESCALATION_DIRECTORY_ALREADY_EXISTS The escalation working directory for the requested escalation could not be created because it already exists
0x87C51030L UTC_E_TIME_TRIGGER_ON_START_INVALID Time triggers cannot be used on a transition originating from the “_start” state
0x87C51031L UTC_E_TIME_TRIGGER_ONLY_VALID_ON_SINGLE_TRANSITION Time triggers can only be attached to a single transition
0x87C51032L UTC_E_TIME_TRIGGER_INVALID_TIME_RANGE Time trigger duration must fall within an inclusive range of one second and 15 minutes
0x87C51033L UTC_E_MULTIPLE_TIME_TRIGGER_ON_SINGLE_STATE Only one Time Trigger is allowed per state
0x87C51034L UTC_E_BINARY_MISSING A RunExeWithArgs action contains a binary which is not present on the targeted device.
0x87C51036L UTC_E_FAILED_TO_RESOLVE_CONTAINER_ID UTC failed to identify the container id to use for a scenario escalation action.
0x87C51037L UTC_E_UNABLE_TO_RESOLVE_SESSION Failed to resolve session ID during API invocation.
0x87C51038L UTC_E_THROTTLED UTC has throttled the event for firing too often.
0x87C51039L UTC_E_UNAPPROVED_SCRIPT The script is not approved to run as part of DiagTrack scenario.
0x87C5103AL UTC_E_SCRIPT_MISSING The script referenced in DiagTrack scenario is not present on the system.
0x87C5103BL UTC_E_SCENARIO_THROTTLED A trigger in this scenario is throttled
0x87C5103CL UTC_E_API_NOT_SUPPORTED The requested UTC API call is not supported on this device.
0x87C5103DL UTC_E_GETFILE_EXTERNAL_PATH_NOT_APPROVED The file path is not approved for collection on external rings for the GetFile escalation action.
0x87C5103EL UTC_E_TRY_GET_SCENARIO_TIMEOUT_EXCEEDED Querying a scenario definition exceeded the specified maximum timeout.
0x87C5103FL UTC_E_CERT_REV_FAILED Certification revocation checking has been enabled
0x87C51040L UTC_E_FAILED_TO_START_NDISCAP Failed to start NDISCAP service for network packet capture trace.
0x87C51041L UTC_E_KERNELDUMP_LIMIT_REACHED UTC can perform no more than one KernelDump action on a device every 24 hours.
0x87C51042L UTC_E_MISSING_AGGREGATE_EVENT_TAG The event contained an aggregation or differential privacy structure
0x87C51043L UTC_E_INVALID_AGGREGATION_STRUCT The event contained an invalid aggregation or differential privacy structure.
0x87C51044L UTC_E_ACTION_NOT_SUPPORTED_IN_DESTINATION The action cannot be completed in the specified destination.
0x87C51045L UTC_E_FILTER_MISSING_ATTRIBUTE Filter command is missing a required attribute.
0x87C51046L UTC_E_FILTER_INVALID_TYPE Filter command contains an unsupported type.
0x87C51047L UTC_E_FILTER_VARIABLE_NOT_FOUND Filter variable does not exist at point of evaluation.
0x87C51048L UTC_E_FILTER_FUNCTION_RESTRICTED Filter command is not allowed in the current context.
0x87C51049L UTC_E_FILTER_VERSION_MISMATCH Requested filter version is incompatible with available version.
0x87C51050L UTC_E_FILTER_INVALID_FUNCTION Filter does not support this function.
0x87C51051L UTC_E_FILTER_INVALID_FUNCTION_PARAMS Filter function does not accept the provided parameter types and/or count.
0x87C51052L UTC_E_FILTER_INVALID_COMMAND Filter command does not exist or is incorrectly formatted.
0x87C51053L UTC_E_FILTER_ILLEGAL_EVAL Filter types can not be compared to each other.
0x87C51054L UTC_E_TTTRACER_RETURNED_ERROR TTTracer executable returned a code other than ERROR_SUCCESS.
0x87C51055L UTC_E_AGENT_DIAGNOSTICS_TOO_LARGE The total size of the compressed escalation data payload exceeded the allowable limit.
0x87C51056L UTC_E_FAILED_TO_RECEIVE_AGENT_DIAGNOSTICS Escalation data was not completely transferred from agent to host.
0x87C51057L UTC_E_SCENARIO_HAS_NO_ACTIONS An escalation was requested for a scenario which has no actions for the passed type.
0x87C51058L UTC_E_TTTRACER_STORAGE_FULL UTC allocated space for TTTracer escalations is full.
0x87C51059L UTC_E_INSUFFICIENT_SPACE_TO_START_TRACE Disk needs minimum of 15GB to start TTD recording session.
0x87C5105AL UTC_E_ESCALATION_CANCELLED_AT_SHUTDOWN Escalation was cancelled due to component shutdown.
0x87C5105BL UTC_E_GETFILEINFOACTION_FILE_NOT_APPROVED The file for the GetFileInfo action must be under the \Windows
0x87C5105CL UTC_E_SETREGKEYACTION_TYPE_NOT_APPROVED The registry value type for SetRegKey action must be REG_SZ
0x88900001L WINML_ERR_INVALID_DEVICE The device is invalid or does not support machine learning.
0x88900002L WINML_ERR_INVALID_BINDING The binding is incomplete or does not match the input/output description.
0x88900003L WINML_ERR_VALUE_NOTFOUND An attempt was made to bind an unknown input or output.
0x88900004L WINML_ERR_SIZE_MISMATCH The size of the buffer provided for a bound variable is invalid.
0x80410000L ERROR_QUIC_HANDSHAKE_FAILURE The QUIC connection handshake failed.
0x80410001L ERROR_QUIC_VER_NEG_FAILURE The QUIC connection failed to negotiate a compatible protocol version.
PermaLink:
https://lazywang.life/2021/12/04/Windows-Error-Code/