rebol [
	file: %win32-errors.r
	title: "REBOL Mapping of all win32 API errors"
	date: 2010-09-09
	version: 1.0
	author: "Maxim Olivier-Adlhoch"
	license: "MIT"
]

if not value? 'k32-lib [
	k32-lib: load/library join to-rebol-file get-env "systemroot" %"/system32/Kernel32.dll"
]

GetLastWin32Error: make routine! [
	return: [integer!]
] k32-lib "GetLastError"



ERROR_SUCCESS: 0
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_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
ERRO_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY: 218
ERROR_BAD_PIPE: 230
ERROR_PIPE_BUSY: 231
ERROR_NO_DATA: 232
ERROR_PIPE_NOT_CONNECTED: 233
ERROR_MORE_DATA: 234
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_MR_MID_NOT_FOUND: 317
ERROR_SCOPE_NOT_FOUND: 318
ERROR_INVALID_ADDRESS: 487
ERROR_ARITHMETIC_OVERFLOW: 534
ERROR_PIPE_CONNECTED: 535
ERROR_PIPE_LISTENING: 536
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_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
SEC_E_SMARTCARD_CERT_REVOKED: 1266
SEC_E_ISSUING_CA_UNTRUSTED: 1267
SEC_E_REVOCATION_OFFLINE_C: 1268
SEC_E_PKINIT_CLIENT_FAILUR: 1269
SEC_E_SMARTCARD_CERT_EXPIRED: 1270
ERROR_MACHINE_LOCKED: 1271
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_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_EVENTLOG_FILE_CORRUPT: 1500
ERROR_EVENTLOG_CANT_START: 1501
ERROR_LOG_FILE_FULL: 1502
ERROR_EVENTLOG_FILE_CHANGED: 1503
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
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_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_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_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_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_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
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_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_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_VOLUME_NOT_SIS_ENABLED: 4500
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_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_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_NO_BROWSER_SERVERS_FOUND: 6118
SCHED_E_SERVICE_NOT_LOCALSYSTEM: 6200
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
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_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_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_CONLICT: 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
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_INFO_NO_RECORDS: 9501
DNS_ERROR_BAD_PACKET: 9502
DNS_ERROR_NO_PACKET: 9503
DNS_ERROR_RCODE: 9504
DNS_ERROR_UNSECURE_PACKET: 9505
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_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_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_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_INFO_AXFR_COMPLETE: 9751
DNS_ERROR_AXFR: 9752
DNS_INFO_ADDED_LOCAL_WINS: 9753
DNS_STATUS_CONTINUE_NEEDED: 9801
DNS_ERROR_NO_TCPIP: 9851
DNS_ERROR_NO_DNS_SERVERS: 9852
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
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_EUNKNOWNPSOBJ: 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
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_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_DH_FAIL: 13822
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_CERT_KEYLEN: 13881
ERROR_IPSEC_IKE_MM_LIMIT: 13882
ERROR_IPSEC_IKE_NEGOTIATION_DISABLED: 13883
ERROR_IPSEC_IKE_NEG_STATUS_END: 13884
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
win32-error-messages: [
    0 "The operation completed successfully." 
    1 "Incorrect function." 
    2 "The system cannot find the file specified." 
    3 "The system cannot find the path specified." 
    4 "The system cannot open the file." 
    5 "Access is denied." 
    6 "The handle is invalid." 
    7 "The storage control blocks were destroyed." 
    8 {Not enough storage is available to process this command.} 
    9 "The storage control block address is invalid." 
    10 "The environment is incorrect." 
    11 {An attempt was made to load a program with an incorrect format.} 
    12 "The access code is invalid." 
    13 "The data is invalid." 
    14 {Not enough storage is available to complete this operation.} 
    15 "The system cannot find the drive specified." 
    16 "The directory cannot be removed." 
    17 {The system cannot move the file to a different disk drive.} 
    18 "There are no more files." 
    19 "The media is write protected." 
    20 "The system cannot find the device specified." 
    21 "The device is not ready." 
    22 "The device does not recognize the command." 
    23 "Data error (cyclic redundancy check)." 
    24 {The program issued a command but the command length is incorrect.} 
    25 {The drive cannot locate a specific area or track on the disk.} 
    26 "The specified disk or diskette cannot be accessed." 
    27 "The drive cannot find the sector requested." 
    28 "The printer is out of paper." 
    29 "The system cannot write to the specified device." 
    30 "The system cannot read from the specified device." 
    31 {A device attached to the system is not functioning.} 
    32 {The process cannot access the file because it is being used by another process.} 
    33 {The process cannot access the file because another process has locked a portion of the file.} 
    34 {The wrong diskette is in the drive. Insert %2 (Volume Serial Number: %3) into drive %1.} 
    36 "Too many files opened for sharing." 
    38 "Reached the end of the file." 
    39 "The disk is full." 
    50 "The request is not supported." 
    51 {Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator.} 
    52 {You were not connected because a duplicate name exists on the network. Go to System in the Control Panel to change the computer name and try again.} 
    53 "The network path was not found." 
    54 "The network is busy." 
    55 {The specified network resource or device is no longer available.} 
    56 "The network BIOS command limit has been reached." 
    57 "A network adapter hardware error occurred." 
    58 {The specified server cannot perform the requested operation.} 
    59 "An unexpected network error occurred." 
    60 "The remote adapter is not compatible." 
    61 "The printer queue is full." 
    62 {Space to store the file waiting to be printed is not available on the server.} 
    63 "Your file waiting to be printed was deleted." 
    64 "The specified network name is no longer available." 
    65 "Network access is denied." 
    66 "The network resource type is not correct." 
    67 "The network name cannot be found." 
    68 {The name limit for the local computer network adapter card was exceeded.} 
    69 "The network BIOS session limit was exceeded." 
    70 {The remote server has been paused or is in the process of being started.} 
    71 {No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.} 
    72 {The specified printer or disk device has been paused.} 
    80 "The file exists." 
    82 "The directory or file cannot be created." 
    83 "Fail on INT 24." 
    84 "Storage to process this request is not available." 
    85 "The local device name is already in use." 
    86 "The specified network password is not correct." 
    87 "The parameter is incorrect." 
    88 "A write fault occurred on the network." 
    89 {The system cannot start another process at this time.} 
    100 "Cannot create another system semaphore." 
    101 {The exclusive semaphore is owned by another process.} 
    102 "The semaphore is set and cannot be closed." 
    103 "The semaphore cannot be set again." 
    104 {Cannot request exclusive semaphores at interrupt time.} 
    105 {The previous ownership of this semaphore has ended.} 
    106 "Insert the diskette for drive %1." 
    107 {The program stopped because an alternate diskette was not inserted.} 
    108 "The disk is in use or locked by another process." 
    109 "The pipe has been ended." 
    110 {The system cannot open the device or file specified.} 
    111 "The file name is too long." 
    112 "There is not enough space on the disk." 
    113 "No more internal file identifiers available." 
    114 "The target internal file identifier is incorrect." 
    117 {The IOCTL call made by the application program is not correct.} 
    118 {The verify-on-write switch parameter value is not correct.} 
    119 "The system does not support the command requested." 
    120 "This function is not supported on this system." 
    121 "The semaphore timeout period has expired." 
    122 {The data area passed to a system call is too small.} 
    123 {The filename, directory name, or volume label syntax is incorrect.} 
    124 "The system call level is not correct." 
    125 "The disk has no volume label." 
    126 "The specified module could not be found." 
    127 "The specified procedure could not be found." 
    128 "There are no child processes to wait for." 
    129 "The %1 application cannot be run in Win32 mode." 
    130 {Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.} 
    131 {An attempt was made to move the file pointer before the beginning of the file.} 
    132 {The file pointer cannot be set on the specified device or file.} 
    133 {A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.} 
    134 {An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.} 
    135 {An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.} 
    136 {The system tried to delete the JOIN of a drive that is not joined.} 
    137 {The system tried to delete the substitution of a drive that is not substituted.} 
    138 {The system tried to join a drive to a directory on a joined drive.} 
    139 {The system tried to substitute a drive to a directory on a substituted drive.} 
    140 {The system tried to join a drive to a directory on a substituted drive.} 
    141 {The system tried to SUBST a drive to a directory on a joined drive.} 
    142 {The system cannot perform a JOIN or SUBST at this time.} 
    143 {The system cannot join or substitute a drive to or for a directory on the same drive.} 
    144 {The directory is not a subdirectory of the root directory.} 
    145 "The directory is not empty." 
    146 "The path specified is being used in a substitute." 
    147 {Not enough resources are available to process this command.} 
    148 "The path specified cannot be used at this time." 
    149 {An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.} 
    150 {System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.} 
    151 {The number of specified semaphore events for DosMuxSemWait is not correct.} 
    152 {DosMuxSemWait did not execute; too many semaphores are already set.} 
    153 "The DosMuxSemWait list is not correct." 
    154 {The volume label you entered exceeds the label character limit of the target file system.} 
    155 "Cannot create another thread." 
    156 "The recipient process has refused the signal." 
    157 {The segment is already discarded and cannot be locked.} 
    158 "The segment is already unlocked." 
    159 "The address for the thread ID is not correct." 
    160 {The argument string passed to DosExecPgm is not correct.} 
    161 "The specified path is invalid." 
    162 "A signal is already pending." 
    164 "No more threads can be created in the system." 
    167 "Unable to lock a region of a file." 
    170 "The requested resource is in use." 
    173 {A lock request was not outstanding for the supplied cancel region.} 
    174 {The file system does not support atomic changes to the lock type.} 
    180 {The system detected a segment number that was not correct.} 
    182 "The operating system cannot run %1." 
    183 {Cannot create a file when that file already exists.} 
    186 "The flag passed is not correct." 
    187 "The specified system semaphore name was not found." 
    188 "The operating system cannot run %1." 
    189 "The operating system cannot run %1." 
    190 "The operating system cannot run %1." 
    191 "Cannot run %1 in Win32 mode." 
    192 "The operating system cannot run %1." 
    193 "%1 is not a valid Win32 application." 
    194 "The operating system cannot run %1." 
    195 "The operating system cannot run %1." 
    196 {The operating system cannot run this application program.} 
    197 {The operating system is not presently configured to run this application.} 
    198 "The operating system cannot run %1." 
    199 {The operating system cannot run this application program.} 
    200 {The code segment cannot be greater than or equal to 64K.} 
    201 "The operating system cannot run %1." 
    202 "The operating system cannot run %1." 
    203 {The system could not find the environment option that was entered.} 
    205 {No process in the command subtree has a signal handler.} 
    206 "The filename or extension is too long." 
    207 "The ring 2 stack is in use." 
    208 {The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified.} 
    209 "The signal being posted is not correct." 
    210 "The signal handler cannot be set." 
    212 "The segment is locked and cannot be reallocated." 
    214 {Too many dynamic-link modules are attached to this program or dynamic-link module.} 
    215 "Cannot nest calls to LoadModule." 
    216 {The image file %1 is valid, but is for a machine type other than the current machine.} 
    217 "The image file %1 is signed, unable to modify." 
    218 {The image file %1 is strong signed, unable to modify.} 
    230 "The pipe state is invalid." 
    231 "All pipe instances are busy." 
    232 "The pipe is being closed." 
    233 "No process is on the other end of the pipe." 
    234 "More data is available." 
    240 "The session was canceled." 
    254 "The specified extended attribute name was invalid." 
    255 "The extended attributes are inconsistent." 
    258 "The wait operation timed out." 
    259 "No more data is available." 
    266 "The copy functions cannot be used." 
    267 "The directory name is invalid." 
    275 "The extended attributes did not fit in the buffer." 
    276 {The extended attribute file on the mounted file system is corrupt.} 
    277 "The extended attribute table file is full." 
    278 {The specified extended attribute handle is invalid.} 
    282 {The mounted file system does not support extended attributes.} 
    288 "Attempt to release mutex not owned by caller." 
    298 "Too many posts were made to a semaphore." 
    299 {Only part of a ReadProcessMemory or WriteProcessMemory request was completed.} 
    300 "The oplock request is denied." 
    301 {An invalid oplock acknowledgment was received by the system.} 
    302 {The volume is too fragmented to complete this operation.} 
    303 {The file cannot be opened because it is in the process of being deleted.} 
    317 {The system cannot find message text for message number 0x%1 in the message file for %2.} 
    318 "The scope specified was not found." 
    487 "Attempt to access invalid address." 
    534 "Arithmetic result exceeded 32 bits." 
    535 "There is a process on other end of the pipe." 
    536 {Waiting for a process to open the other end of the pipe.} 
    994 "Access to the extended attribute was denied." 
    995 {The I/O operation has been aborted because of either a thread exit or an application request.} 
    996 "Overlapped I/O event is not in a signaled state." 
    997 "Overlapped I/O operation is in progress." 
    998 "Invalid access to memory location." 
    999 "Error performing inpage operation." 
    1001 "Recursion too deep; the stack overflowed." 
    1002 "The window cannot act on the sent message." 
    1003 "Cannot complete this function." 
    1004 "Invalid flags." 
    1005 {The volume does not contain a recognized file system. Please make sure that all required file system drivers are loaded and that the volume is not corrupted.} 
    1006 {The volume for a file has been externally altered so that the opened file is no longer valid.} 
    1007 {The requested operation cannot be performed in full-screen mode.} 
    1008 {An attempt was made to reference a token that does not exist.} 
    1009 "The configuration registry database is corrupt." 
    1010 "The configuration registry key is invalid." 
    1011 {The configuration registry key could not be opened.} 
    1012 "The configuration registry key could not be read." 
    1013 {The configuration registry key could not be written.} 
    1014 {One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.} 
    1015 {The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted.} 
    1016 {An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry.} 
    1017 {The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format.} 
    1018 {Illegal operation attempted on a registry key that has been marked for deletion.} 
    1019 {System could not allocate the required space in a registry log.} 
    1020 {Cannot create a symbolic link in a registry key that already has subkeys or values.} 
    1021 {Cannot create a stable subkey under a volatile parent key.} 
    1022 {A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes.} 
    1051 {A stop control has been sent to a service that other running services are dependent on.} 
    1052 {The requested control is not valid for this service.} 
    1053 {The service did not respond to the start or control request in a timely fashion.} 
    1054 "A thread could not be created for the service." 
    1055 "The service database is locked." 
    1056 "An instance of the service is already running." 
    1057 {The account name is invalid or does not exist, or the password is invalid for the account name specified.} 
    1058 {The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.} 
    1059 "Circular service dependency was specified." 
    1060 {The specified service does not exist as an installed service.} 
    1061 {The service cannot accept control messages at this time.} 
    1062 "The service has not been started." 
    1063 {The service process could not connect to the service controller.} 
    1064 {An exception occurred in the service when handling the control request.} 
    1065 "The database specified does not exist." 
    1066 {The service has returned a service-specific error code.} 
    1067 "The process terminated unexpectedly." 
    1068 "The dependency service or group failed to start." 
    1069 "The service did not start due to a logon failure." 
    1070 {After starting, the service hung in a start-pending state.} 
    1071 "The specified service database lock is invalid." 
    1072 {The specified service has been marked for deletion.} 
    1073 "The specified service already exists." 
    1074 {The system is currently running with the last-known-good configuration.} 
    1075 {The dependency service does not exist or has been marked for deletion.} 
    1076 {The current boot has already been accepted for use as the last-known-good control set.} 
    1077 {No attempts to start the service have been made since the last boot.} 
    1078 {The name is already in use as either a service name or a service display name.} 
    1079 {The account specified for this service is different from the account specified for other services running in the same process.} 
    1080 {Failure actions can only be set for Win32 services, not for drivers.} 
    1081 {This service runs in the same process as the service control manager. Therefore, the service control manager cannot take action if this service's process terminates unexpectedly.} 
    1082 {No recovery program has been configured for this service.} 
    1083 {The executable program that this service is configured to run in does not implement the service.} 
    1084 "This service cannot be started in Safe Mode." 
    1100 "The physical end of the tape has been reached." 
    1101 "A tape access reached a filemark." 
    1102 {The beginning of the tape or a partition was encountered.} 
    1103 "A tape access reached the end of a set of files." 
    1104 "No more data is on the tape." 
    1105 "Tape could not be partitioned." 
    1106 {When accessing a new tape of a multivolume partition, the current block size is incorrect.} 
    1107 {Tape partition information could not be found when loading a tape.} 
    1108 "Unable to lock the media eject mechanism." 
    1109 "Unable to unload the media." 
    1110 "The media in the drive may have changed." 
    1111 "The I/O bus was reset." 
    1112 "No media in drive." 
    1113 {No mapping for the Unicode character exists in the target multi-byte code page.} 
    1114 {A dynamic link library (DLL) initialization routine failed.} 
    1115 "A system shutdown is in progress." 
    1116 {Unable to abort the system shutdown because no shutdown was in progress.} 
    1117 {The request could not be performed because of an I/O device error.} 
    1118 {No serial device was successfully initialized. The serial driver will unload.} 
    1119 {Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened.} 
    1120 {A serial I/O operation was completed by another write to the serial port. (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)} 
    1121 {A serial I/O operation completed because the timeout period expired. (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)} 
    1122 "No ID address mark was found on the floppy disk." 
    1123 {Mismatch between the floppy disk sector ID field and the floppy disk controller track address.} 
    1124 {The floppy disk controller reported an error that is not recognized by the floppy disk driver.} 
    1125 {The floppy disk controller returned inconsistent results in its registers.} 
    1126 {While accessing the hard disk, a recalibrate operation failed, even after retries.} 
    1127 {While accessing the hard disk, a disk operation failed even after retries.} 
    1128 {While accessing the hard disk, a disk controller reset was needed, but even that failed.} 
    1129 "Physical end of tape encountered." 
    1130 {Not enough server storage is available to process this command.} 
    1131 "A potential deadlock condition has been detected." 
    1132 {The base address or the file offset specified does not have the proper alignment.} 
    1140 {An attempt to change the system power state was vetoed by another application or driver.} 
    1141 {The system BIOS failed an attempt to change the system power state.} 
    1142 {An attempt was made to create more links on a file than the file system supports.} 
    1150 {The specified program requires a newer version of Windows.} 
    1151 {The specified program is not a Windows or MS-DOS program.} 
    1152 {Cannot start more than one instance of the specified program.} 
    1153 {The specified program was written for an earlier version of Windows.} 
    1154 {One of the library files needed to run this application is damaged.} 
    1155 {No application is associated with the specified file for this operation.} 
    1156 {An error occurred in sending the command to the application.} 
    1157 {One of the library files needed to run this application cannot be found.} 
    1158 {The current process has used all of its system allowance of handles for Window Manager objects.} 
    1159 {The message can be used only with synchronous operations.} 
    1160 "The indicated source element has no media." 
    1161 {The indicated destination element already contains media.} 
    1162 "The indicated element does not exist." 
    1163 {The indicated element is part of a magazine that is not present.} 
    1164 {The indicated device requires reinitialization due to hardware errors.} 
    1165 {The device has indicated that cleaning is required before further operations are attempted.} 
    1166 "The device has indicated that its door is open." 
    1167 "The device is not connected." 
    1168 "Element not found." 
    1169 {There was no match for the specified key in the index.} 
    1170 {The property set specified does not exist on the object.} 
    1171 {The point passed to GetMouseMovePointsEx is not in the buffer.} 
    1172 "The tracking (workstation) service is not running." 
    1173 "The Volume ID could not be found." 
    1175 "Unable to remove the file to be replaced." 
    1176 {Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name.} 
    1177 {Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name.} 
    1178 "The volume change journal is being deleted." 
    1179 "The volume change journal is not active." 
    1180 {A file was found, but it may not be the correct file.} 
    1181 {The journal entry has been deleted from the journal.} 
    1200 "The specified device name is invalid." 
    1201 {The device is not currently connected but it is a remembered connection.} 
    1202 {The local device name has a remembered connection to another network resource.} 
    1203 {No network provider accepted the given network path.} 
    1204 "The specified network provider name is invalid." 
    1205 "Unable to open the network connection profile." 
    1206 "The network connection profile is corrupted." 
    1207 "Cannot enumerate a noncontainer." 
    1208 "An extended error has occurred." 
    1209 "The format of the specified group name is invalid." 
    1210 {The format of the specified computer name is invalid.} 
    1211 "The format of the specified event name is invalid." 
    1212 {The format of the specified domain name is invalid.} 
    1213 {The format of the specified service name is invalid.} 
    1214 {The format of the specified network name is invalid.} 
    1215 "The format of the specified share name is invalid." 
    1216 "The format of the specified password is invalid." 
    1217 {The format of the specified message name is invalid.} 
    1218 {The format of the specified message destination is invalid.} 
    1219 {Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again.} 
    1220 {An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.} 
    1221 {The workgroup or domain name is already in use by another computer on the network.} 
    1222 "The network is not present or not started." 
    1223 "The operation was canceled by the user." 
    1224 {The requested operation cannot be performed on a file with a user-mapped section open.} 
    1225 "The remote system refused the network connection." 
    1226 "The network connection was gracefully closed." 
    1227 {The network transport endpoint already has an address associated with it.} 
    1228 {An address has not yet been associated with the network endpoint.} 
    1229 {An operation was attempted on a nonexistent network connection.} 
    1230 {An invalid operation was attempted on an active network connection.} 
    1231 {The network location cannot be reached. For information about network troubleshooting, see Windows Help.} 
    1232 {The network location cannot be reached. For information about network troubleshooting, see Windows Help.} 
    1233 {The network location cannot be reached. For information about network troubleshooting, see Windows Help.} 
    1234 {No service is operating at the destination network endpoint on the remote system.} 
    1235 "The request was aborted." 
    1236 {The network connection was aborted by the local system.} 
    1237 {The operation could not be completed. A retry should be performed.} 
    1238 {A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.} 
    1239 {Attempting to log in during an unauthorized time of day for this account.} 
    1240 {The account is not authorized to log in from this station.} 
    1241 {The network address could not be used for the operation requested.} 
    1242 "The service is already registered." 
    1243 "The specified service does not exist." 
    1244 {The operation being requested was not performed because the user has not been authenticated.} 
    1245 {The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist.} 
    1246 "Continue with work in progress." 
    1247 {An attempt was made to perform an initialization operation when initialization has already been completed.} 
    1248 "No more local devices." 
    1249 "The specified site does not exist." 
    1250 {A domain controller with the specified name already exists.} 
    1251 {This operation is supported only when you are connected to the server.} 
    1252 {The group policy framework should call the extension even if there are no changes.} 
    1253 "The specified user does not have a valid profile." 
    1254 {This operation is not supported on a Microsoft Small Business Server.} 
    1255 "The server machine is shutting down." 
    1256 {The remote system is not available. For information about network troubleshooting, see Windows Help.} 
    1257 {The security identifier provided is not from an account domain.} 
    1258 {The security identifier provided does not have a domain component.} 
    1259 {AppHelp dialog canceled thus preventing the application from starting.} 
    1260 {Windows cannot open this program because it has been prevented by a software restriction policy. For more information, open Event Viewer or contact your system administrator.} 
    1261 {A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific.} 
    1262 "The share is currently offline or does not exist." 
    1263 {The kerberos protocol encountered an error while validating the KDC certificate during smartcard logon.} 
    1264 {The kerberos protocol encountered an error while attempting to utilize the smartcard subsystem.} 
    1265 {The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you.} 
    1266 {The smartcard certificate used for authentication has been revoked. Please contact your system administrator. There may be additional information in the event log.} 
    1267 {An untrusted certificate authority was detected while processing the smartcard certificate used for authentication. Please contact your system administrator.} 
    1268 {The revocation status of the smartcard certificate used for authentication could not be determined. Please contact your system administrator.} 
    1269 {The smartcard certificate used for authentication was not trusted. Please contact your system administrator.} 
    1270 {The smartcard certificate used for authentication has expired. Please contact your system administrator.} 
    1271 {The machine is locked and cannot be shut down without the force option.} 
    1273 {An application-defined callback gave invalid data when called.} 
    1274 {The group policy framework should call the extension in the synchronous foreground policy refresh.} 
    1275 "This driver has been blocked from loading." 
    1276 {A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.} 
    1277 {Windows cannot open this program since it has been disabled.} 
    1278 {Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.} 
    1279 "A transaction recovery failed." 
    1280 {The current thread has already been converted to a fiber.} 
    1281 {The current thread has already been converted from a fiber.} 
    1282 {The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application.} 
    1283 {Data present in one of the parameters is more than the function can operate on.} 
    1284 {An attempt to do an operation on a debug object failed because the object is in the process of being deleted.} 
    1300 {Not all privileges referenced are assigned to the caller.} 
    1301 {Some mapping between account names and security IDs was not done.} 
    1302 {No system quota limits are specifically set for this account.} 
    1303 {No encryption key is available. A well-known encryption key was returned.} 
    1304 {The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string.} 
    1305 "The revision level is unknown." 
    1306 "Indicates two revision levels are incompatible." 
    1307 {This security ID may not be assigned as the owner of this object.} 
    1308 {This security ID may not be assigned as the primary group of an object.} 
    1309 {An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.} 
    1310 "The group may not be disabled." 
    1311 {There are currently no logon servers available to service the logon request.} 
    1312 {A specified logon session does not exist. It may already have been terminated.} 
    1313 "A specified privilege does not exist." 
    1314 "A required privilege is not held by the client." 
    1315 {The name provided is not a properly formed account name.} 
    1316 "The specified user already exists." 
    1317 "The specified user does not exist." 
    1318 "The specified group already exists." 
    1319 "The specified group does not exist." 
    1320 {Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member.} 
    1321 {The specified user account is not a member of the specified group account.} 
    1322 {The last remaining administration account cannot be disabled or deleted.} 
    1323 {Unable to update the password. The value provided as the current password is incorrect.} 
    1324 {Unable to update the password. The value provided for the new password contains values that are not allowed in passwords.} 
    1325 {Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirement of the domain.} 
    1326 "Logon failure: unknown user name or bad password." 
    1327 {Logon failure: user account restriction. Possible reasons are blank passwords not allowed, logon hour restrictions, or a policy restriction has been enforced.} 
    1328 {Logon failure: account logon time restriction violation.} 
    1329 {Logon failure: user not allowed to log on to this computer.} 
    1330 {Logon failure: the specified account password has expired.} 
    1331 "Logon failure: account currently disabled." 
    1332 {No mapping between account names and security IDs was done.} 
    1333 {Too many local user identifiers (LUIDs) were requested at one time.} 
    1334 {No more local user identifiers (LUIDs) are available.} 
    1335 {The subauthority part of a security ID is invalid for this particular use.} 
    1336 {The access control list (ACL) structure is invalid.} 
    1337 "The security ID structure is invalid." 
    1338 "The security descriptor structure is invalid." 
    1340 {The inherited access control list (ACL) or access control entry (ACE) could not be built.} 
    1341 "The server is currently disabled." 
    1342 "The server is currently enabled." 
    1343 {The value provided was an invalid value for an identifier authority.} 
    1344 {No more memory is available for security information updates.} 
    1345 {The specified attributes are invalid, or incompatible with the attributes for the group as a whole.} 
    1346 {Either a required impersonation level was not provided, or the provided impersonation level is invalid.} 
    1347 "Cannot open an anonymous level security token." 
    1348 {The validation information class requested was invalid.} 
    1349 {The type of the token is inappropriate for its attempted use.} 
    1350 {Unable to perform a security operation on an object that has no associated security.} 
    1351 {Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.} 
    1352 {The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation.} 
    1353 {The domain was in the wrong state to perform the security operation.} 
    1354 {This operation is only allowed for the Primary Domain Controller of the domain.} 
    1355 {The specified domain either does not exist or could not be contacted.} 
    1356 "The specified domain already exists." 
    1357 {An attempt was made to exceed the limit on the number of domains per server.} 
    1358 {Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.} 
    1359 "An internal error occurred." 
    1360 {Generic access types were contained in an access mask which should already be mapped to nongeneric types.} 
    1361 {A security descriptor is not in the right format (absolute or self-relative).} 
    1362 {The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.} 
    1363 {Cannot start a new logon session with an ID that is already in use.} 
    1364 "A specified authentication package is unknown." 
    1365 {The logon session is not in a state that is consistent with the requested operation.} 
    1366 "The logon session ID is already in use." 
    1367 {A logon request contained an invalid logon type value.} 
    1368 {Unable to impersonate using a named pipe until data has been read from that pipe.} 
    1369 {The transaction state of a registry subtree is incompatible with the requested operation.} 
    1370 {An internal security database corruption has been encountered.} 
    1371 {Cannot perform this operation on built-in accounts.} 
    1372 {Cannot perform this operation on this built-in special group.} 
    1373 {Cannot perform this operation on this built-in special user.} 
    1374 {The user cannot be removed from a group because the group is currently the user's primary group.} 
    1375 "The token is already in use as a primary token." 
    1376 "The specified local group does not exist." 
    1377 {The specified account name is not a member of the local group.} 
    1378 {The specified account name is already a member of the local group.} 
    1379 "The specified local group already exists." 
    1380 {Logon failure: the user has not been granted the requested logon type at this computer.} 
    1381 {The maximum number of secrets that may be stored in a single system has been exceeded.} 
    1382 {The length of a secret exceeds the maximum length allowed.} 
    1383 {The local security authority database contains an internal inconsistency.} 
    1384 {During a logon attempt, the user's security context accumulated too many security IDs.} 
    1385 {Logon failure: the user has not been granted the requested logon type at this computer.} 
    1386 {A cross-encrypted password is necessary to change a user password.} 
    1387 {A new member could not be added to or removed from the local group because the member does not exist.} 
    1388 {A new member could not be added to a local group because the member has the wrong account type.} 
    1389 "Too many security IDs have been specified." 
    1390 {A cross-encrypted password is necessary to change this user password.} 
    1391 {Indicates an ACL contains no inheritable components.} 
    1392 "The file or directory is corrupted and unreadable." 
    1393 "The disk structure is corrupted and unreadable." 
    1394 {There is no user session key for the specified logon session.} 
    1395 {The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because there are already as many connections as the service can accept.} 
    1396 {Logon Failure: The target account name is incorrect.} 
    1397 {Mutual Authentication failed. The server's password is out of date at the domain controller.} 
    1398 {There is a time and/or date difference between the client and server.} 
    1399 {This operation cannot be performed on the current domain.} 
    1400 "Invalid window handle." 
    1401 "Invalid menu handle." 
    1402 "Invalid cursor handle." 
    1403 "Invalid accelerator table handle." 
    1404 "Invalid hook handle." 
    1405 {Invalid handle to a multiple-window position structure.} 
    1406 "Cannot create a top-level child window." 
    1407 "Cannot find window class." 
    1408 "Invalid window; it belongs to other thread." 
    1409 "Hot key is already registered." 
    1410 "Class already exists." 
    1411 "Class does not exist." 
    1412 "Class still has open windows." 
    1413 "Invalid index." 
    1414 "Invalid icon handle." 
    1415 "Using private DIALOG window words." 
    1416 "The list box identifier was not found." 
    1417 "No wildcards were found." 
    1418 "Thread does not have a clipboard open." 
    1419 "Hot key is not registered." 
    1420 "The window is not a valid dialog window." 
    1421 "Control ID not found." 
    1422 {Invalid message for a combo box because it does not have an edit control.} 
    1423 "The window is not a combo box." 
    1424 "Height must be less than 256." 
    1425 "Invalid device context (DC) handle." 
    1426 "Invalid hook procedure type." 
    1427 "Invalid hook procedure." 
    1428 "Cannot set nonlocal hook without a module handle." 
    1429 "This hook procedure can only be set globally." 
    1430 "The journal hook procedure is already installed." 
    1431 "The hook procedure is not installed." 
    1432 "Invalid message for single-selection list box." 
    1433 "LB_SETCOUNT sent to non-lazy list box." 
    1434 "This list box does not support tab stops." 
    1435 "Cannot destroy object created by another thread." 
    1436 "Child windows cannot have menus." 
    1437 "The window does not have a system menu." 
    1438 "Invalid message box style." 
    1439 "Invalid system-wide (SPI_*) parameter." 
    1440 "Screen already locked." 
    1441 {All handles to windows in a multiple-window position structure must have the same parent.} 
    1442 "The window is not a child window." 
    1443 "Invalid GW_* command." 
    1444 "Invalid thread identifier." 
    1445 {Cannot process a message from a window that is not a multiple document interface (MDI) window.} 
    1446 "Popup menu already active." 
    1447 "The window does not have scroll bars." 
    1448 "Scroll bar range cannot be greater than MAXLONG." 
    1449 {Cannot show or remove the window in the way specified.} 
    1450 {Insufficient system resources exist to complete the requested service.} 
    1451 {Insufficient system resources exist to complete the requested service.} 
    1452 {Insufficient system resources exist to complete the requested service.} 
    1453 {Insufficient quota to complete the requested service.} 
    1454 {Insufficient quota to complete the requested service.} 
    1455 {The paging file is too small for this operation to complete.} 
    1456 "A menu item was not found." 
    1457 "Invalid keyboard layout handle." 
    1458 "Hook type not allowed." 
    1459 {This operation requires an interactive window station.} 
    1460 {This operation returned because the timeout period expired.} 
    1461 "Invalid monitor handle." 
    1500 "The event log file is corrupted." 
    1501 {No event log file could be opened, so the event logging service did not start.} 
    1502 "The event log file is full." 
    1503 {The event log file has changed between read operations.} 
    1601 {The Windows Installer service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personnel for assistance.} 
    1602 "User cancelled installation." 
    1603 "Fatal error during installation." 
    1604 "Installation suspended, incomplete." 
    1605 {This action is only valid for products that are currently installed.} 
    1606 "Feature ID not registered." 
    1607 "Component ID not registered." 
    1608 "Unknown property." 
    1609 "Handle is in an invalid state." 
    1610 {The configuration data for this product is corrupt. Contact your support personnel.} 
    1611 "Component qualifier not present." 
    1612 {The installation source for this product is not available. Verify that the source exists and that you can access it.} 
    1613 {This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.} 
    1614 "Product is uninstalled." 
    1615 "SQL query syntax invalid or unsupported." 
    1616 "Record field does not exist." 
    1617 "The device has been removed." 
    1618 {Another installation is already in progress. Complete that installation before proceeding with this install.} 
    1619 {This installation package could not be opened. Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package.} 
    1620 {This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package.} 
    1621 {There was an error starting the Windows Installer service user interface. Contact your support personnel.} 
    1622 {Error opening installation log file. Verify that the specified log file location exists and that you can write to it.} 
    1623 {The language of this installation package is not supported by your system.} 
    1624 {Error applying transforms. Verify that the specified transform paths are valid.} 
    1625 {This installation is forbidden by system policy. Contact your system administrator.} 
    1626 "Function could not be executed." 
    1627 "Function failed during execution." 
    1628 "Invalid or unknown table specified." 
    1629 "Data supplied is of wrong type." 
    1630 "Data of this type is not supported." 
    1631 {The Windows Installer service failed to start. Contact your support personnel.} 
    1632 {The Temp folder is on a drive that is full or inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder.} 
    1633 {This installation package is not supported by this processor type. Contact your product vendor.} 
    1634 "Component not used on this computer." 
    1635 {This patch package could not be opened. Verify that the patch package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer patch package.} 
    1636 {This patch package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer patch package.} 
    1637 {This patch package cannot be processed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.} 
    1638 {Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel.} 
    1639 {Invalid command line argument. Consult the Windows Installer SDK for detailed command line help.} 
    1640 {Only administrators have permission to add, remove, or configure server software during a Terminal Services remote session. If you want to install or configure software on the server, contact your network administrator.} 
    1641 {The requested operation completed successfully. The system will be restarted so the changes can take effect.} 
    1642 {The upgrade patch cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade patch may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade patch.} 
    1643 {The patch package is not permitted by software restriction policy.} 
    1644 {One or more customizations are not permitted by software restriction policy.} 
    1645 {The Windows Installer does not permit installation from a Remote Desktop Connection.} 
    1700 "The string binding is invalid." 
    1701 "The binding handle is not the correct type." 
    1702 "The binding handle is invalid." 
    1703 "The RPC protocol sequence is not supported." 
    1704 "The RPC protocol sequence is invalid." 
    1705 {The string universal unique identifier (UUID) is invalid.} 
    1706 "The endpoint format is invalid." 
    1707 "The network address is invalid." 
    1708 "No endpoint was found." 
    1709 "The timeout value is invalid." 
    1710 {The object universal unique identifier (UUID) was not found.} 
    1711 {The object universal unique identifier (UUID) has already been registered.} 
    1712 {The type universal unique identifier (UUID) has already been registered.} 
    1713 "The RPC server is already listening." 
    1714 "No protocol sequences have been registered." 
    1715 "The RPC server is not listening." 
    1716 "The manager type is unknown." 
    1717 "The interface is unknown." 
    1718 "There are no bindings." 
    1719 "There are no protocol sequences." 
    1720 "The endpoint cannot be created." 
    1721 {Not enough resources are available to complete this operation.} 
    1722 "The RPC server is unavailable." 
    1723 {The RPC server is too busy to complete this operation.} 
    1724 "The network options are invalid." 
    1725 {There are no remote procedure calls active on this thread.} 
    1726 "The remote procedure call failed." 
    1727 {The remote procedure call failed and did not execute.} 
    1728 {A remote procedure call (RPC) protocol error occurred.} 
    1730 {The transfer syntax is not supported by the RPC server.} 
    1732 {The universal unique identifier (UUID) type is not supported.} 
    1733 "The tag is invalid." 
    1734 "The array bounds are invalid." 
    1735 "The binding does not contain an entry name." 
    1736 "The name syntax is invalid." 
    1737 "The name syntax is not supported." 
    1739 {No network address is available to use to construct a universal unique identifier (UUID).} 
    1740 "The endpoint is a duplicate." 
    1741 "The authentication type is unknown." 
    1742 "The maximum number of calls is too small." 
    1743 "The string is too long." 
    1744 "The RPC protocol sequence was not found." 
    1745 "The procedure number is out of range." 
    1746 {The binding does not contain any authentication information.} 
    1747 "The authentication service is unknown." 
    1748 "The authentication level is unknown." 
    1749 "The security context is invalid." 
    1750 "The authorization service is unknown." 
    1751 "The entry is invalid." 
    1752 "The server endpoint cannot perform the operation." 
    1753 {There are no more endpoints available from the endpoint mapper.} 
    1754 "No interfaces have been exported." 
    1755 "The entry name is incomplete." 
    1756 "The version option is invalid." 
    1757 "There are no more members." 
    1758 "There is nothing to unexport." 
    1759 "The interface was not found." 
    1760 "The entry already exists." 
    1761 "The entry is not found." 
    1762 "The name service is unavailable." 
    1763 "The network address family is invalid." 
    1764 "The requested operation is not supported." 
    1765 {No security context is available to allow impersonation.} 
    1766 {An internal error occurred in a remote procedure call (RPC).} 
    1767 {The RPC server attempted an integer division by zero.} 
    1768 "An addressing error occurred in the RPC server." 
    1769 {A floating-point operation at the RPC server caused a division by zero.} 
    1770 {A floating-point underflow occurred at the RPC server.} 
    1771 {A floating-point overflow occurred at the RPC server.} 
    1772 {The list of RPC servers available for the binding of auto handles has been exhausted.} 
    1773 {Unable to open the character translation table file.} 
    1774 {The file containing the character translation table has fewer than 512 bytes.} 
    1775 {A null context handle was passed from the client to the host during a remote procedure call.} 
    1777 {The context handle changed during a remote procedure call.} 
    1778 {The binding handles passed to a remote procedure call do not match.} 
    1779 {The stub is unable to get the remote procedure call handle.} 
    1780 "A null reference pointer was passed to the stub." 
    1781 "The enumeration value is out of range." 
    1782 "The byte count is too small." 
    1783 "The stub received bad data." 
    1784 {The supplied user buffer is not valid for the requested operation.} 
    1785 {The disk media is not recognized. It may not be formatted.} 
    1786 "The workstation does not have a trust secret." 
    1787 {The security database on the server does not have a computer account for this workstation trust relationship.} 
    1788 {The trust relationship between the primary domain and the trusted domain failed.} 
    1789 {The trust relationship between this workstation and the primary domain failed.} 
    1790 "The network logon failed." 
    1791 {A remote procedure call is already in progress for this thread.} 
    1792 {An attempt was made to logon, but the network logon service was not started.} 
    1793 "The user's account has expired." 
    1794 "The redirector is in use and cannot be unloaded." 
    1795 "The specified printer driver is already installed." 
    1796 "The specified port is unknown." 
    1797 "The printer driver is unknown." 
    1798 "The print processor is unknown." 
    1799 "The specified separator file is invalid." 
    1800 "The specified priority is invalid." 
    1801 "The printer name is invalid." 
    1802 "The printer already exists." 
    1803 "The printer command is invalid." 
    1804 "The specified datatype is invalid." 
    1805 "The environment specified is invalid." 
    1806 "There are no more bindings." 
    1807 {The account used is an interdomain trust account. Use your global user account or local user account to access this server.} 
    1808 {The account used is a computer account. Use your global user account or local user account to access this server.} 
    1809 {The account used is a server trust account. Use your global user account or local user account to access this server.} 
    1810 {The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain.} 
    1811 "The server is in use and cannot be unloaded." 
    1812 {The specified image file did not contain a resource section.} 
    1813 {The specified resource type cannot be found in the image file.} 
    1814 {The specified resource name cannot be found in the image file.} 
    1815 {The specified resource language ID cannot be found in the image file.} 
    1816 {Not enough quota is available to process this command.} 
    1817 "No interfaces have been registered." 
    1818 "The remote procedure call was cancelled." 
    1819 {The binding handle does not contain all required information.} 
    1820 {A communications failure occurred during a remote procedure call.} 
    1821 {The requested authentication level is not supported.} 
    1822 "No principal name registered." 
    1823 {The error specified is not a valid Windows RPC error code.} 
    1824 {A UUID that is valid only on this computer has been allocated.} 
    1825 "A security package specific error occurred." 
    1826 "Thread is not canceled." 
    1827 "Invalid operation on the encoding/decoding handle." 
    1828 "Incompatible version of the serializing package." 
    1829 "Incompatible version of the RPC stub." 
    1830 "The RPC pipe object is invalid or corrupted." 
    1831 {An invalid operation was attempted on an RPC pipe object.} 
    1832 "Unsupported RPC pipe version." 
    1898 "The group member was not found." 
    1899 {The endpoint mapper database entry could not be created.} 
    1900 {The object universal unique identifier (UUID) is the nil UUID.} 
    1901 "The specified time is invalid." 
    1902 "The specified form name is invalid." 
    1903 "The specified form size is invalid." 
    1904 {The specified printer handle is already being waited on} 
    1905 "The specified printer has been deleted." 
    1906 "The state of the printer is invalid." 
    1907 {The user's password must be changed before logging on the first time.} 
    1908 {Could not find the domain controller for this domain.} 
    1909 {The referenced account is currently locked out and may not be logged on to.} 
    1910 "The object exporter specified was not found." 
    1911 "The object specified was not found." 
    1912 "The object resolver set specified was not found." 
    1913 {Some data remains to be sent in the request buffer.} 
    1914 "Invalid asynchronous remote procedure call handle." 
    1915 {Invalid asynchronous RPC call handle for this operation.} 
    1916 "The RPC pipe object has already been closed." 
    1917 {The RPC call completed before all pipes were processed.} 
    1918 "No more data is available from the RPC pipe." 
    1919 "No site name is available for this machine." 
    1920 "The file cannot be accessed by the system." 
    1921 {The name of the file cannot be resolved by the system.} 
    1922 "The entry is not of the expected type." 
    1923 {Not all object UUIDs could be exported to the specified entry.} 
    1924 {Interface could not be exported to the specified entry.} 
    1925 "The specified profile entry could not be added." 
    1926 "The specified profile element could not be added." 
    1927 {The specified profile element could not be removed.} 
    1928 "The group element could not be added." 
    1929 "The group element could not be removed." 
    1930 {The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers.} 
    1931 "The context has expired and can no longer be used." 
    1932 {The current user's delegated trust creation quota has been exceeded.} 
    1933 {The total delegated trust creation quota has been exceeded.} 
    1934 {The current user's delegated trust deletion quota has been exceeded.} 
    2000 "The pixel format is invalid." 
    2001 "The specified driver is invalid." 
    2002 {The window style or class attribute is invalid for this operation.} 
    2003 "The requested metafile operation is not supported." 
    2004 {The requested transformation operation is not supported.} 
    2005 "The requested clipping operation is not supported." 
    2010 "The specified color management module is invalid." 
    2011 "The specified color profile is invalid." 
    2012 "The specified tag was not found." 
    2013 "A required tag is not present." 
    2014 "The specified tag is already present." 
    2015 {The specified color profile is not associated with any device.} 
    2016 "The specified color profile was not found." 
    2017 "The specified color space is invalid." 
    2018 "Image Color Management is not enabled." 
    2019 {There was an error while deleting the color transform.} 
    2020 "The specified color transform is invalid." 
    2021 {The specified transform does not match the bitmap's color space.} 
    2022 {The specified named color index is not present in the profile.} 
    2108 {The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified.} 
    2109 {The network connection was made successfully using default credentials.} 
    2202 "The specified username is invalid." 
    2250 "This network connection does not exist." 
    2401 {This network connection has files open or requests pending.} 
    2402 "Active connections still exist." 
    2404 {The device is in use by an active process and cannot be disconnected.} 
    3000 "The specified print monitor is unknown." 
    3001 "The specified printer driver is currently in use." 
    3002 "The spool file was not found." 
    3003 "A StartDocPrinter call was not issued." 
    3004 "An AddJob call was not issued." 
    3005 {The specified print processor has already been installed.} 
    3006 {The specified print monitor has already been installed.} 
    3007 {The specified print monitor does not have the required functions.} 
    3008 "The specified print monitor is currently in use." 
    3009 {The requested operation is not allowed when there are jobs queued to the printer.} 
    3010 {The requested operation is successful. Changes will not be effective until the system is rebooted.} 
    3011 {The requested operation is successful. Changes will not be effective until the service is restarted.} 
    3012 "No printers were found." 
    3013 "The printer driver is known to be unreliable." 
    3014 "The printer driver is known to harm the system." 
    4000 {WINS encountered an error while processing the command.} 
    4001 "The local WINS cannot be deleted." 
    4002 "The importation from the file failed." 
    4003 "The backup failed. Was a full backup done before?" 
    4004 {The backup failed. Check the directory to which you are backing the database.} 
    4005 "The name does not exist in the WINS database." 
    4006 {Replication with a nonconfigured partner is not allowed.} 
    4100 {The DHCP client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address.} 
    4200 {The GUID passed was not recognized as valid by a WMI data provider.} 
    4201 {The instance name passed was not recognized as valid by a WMI data provider.} 
    4202 {The data item ID passed was not recognized as valid by a WMI data provider.} 
    4203 {The WMI request could not be completed and should be retried.} 
    4204 "The WMI data provider could not be located." 
    4205 {The WMI data provider references an instance set that has not been registered.} 
    4206 {The WMI data block or event notification has already been enabled.} 
    4207 "The WMI data block is no longer available." 
    4208 "The WMI data service is not available." 
    4209 {The WMI data provider failed to carry out the request.} 
    4210 "The WMI MOF information is not valid." 
    4211 "The WMI registration information is not valid." 
    4212 {The WMI data block or event notification has already been disabled.} 
    4213 "The WMI data item or data block is read only." 
    4214 {The WMI data item or data block could not be changed.} 
    4300 {The media identifier does not represent a valid medium.} 
    4301 {The library identifier does not represent a valid library.} 
    4302 {The media pool identifier does not represent a valid media pool.} 
    4303 {The drive and medium are not compatible or exist in different libraries.} 
    4304 {The medium currently exists in an offline library and must be online to perform this operation.} 
    4305 {The operation cannot be performed on an offline library.} 
    4306 "The library, drive, or media pool is empty." 
    4307 {The library, drive, or media pool must be empty to perform this operation.} 
    4308 {No media is currently available in this media pool or library.} 
    4309 {A resource required for this operation is disabled.} 
    4310 {The media identifier does not represent a valid cleaner.} 
    4311 {The drive cannot be cleaned or does not support cleaning.} 
    4312 {The object identifier does not represent a valid object.} 
    4313 "Unable to read from or write to the database." 
    4314 "The database is full." 
    4315 {The medium is not compatible with the device or media pool.} 
    4316 {The resource required for this operation does not exist.} 
    4317 "The operation identifier is not valid." 
    4318 "The media is not mounted or ready for use." 
    4319 "The device is not ready for use." 
    4320 {The operator or administrator has refused the request.} 
    4321 {The drive identifier does not represent a valid drive.} 
    4322 "Library is full. No slot is available for use." 
    4323 "The transport cannot access the medium." 
    4324 "Unable to load the medium into the drive." 
    4325 "Unable to retrieve status about the drive." 
    4326 "Unable to retrieve status about the slot." 
    4327 "Unable to retrieve status about the transport." 
    4328 {Cannot use the transport because it is already in use.} 
    4329 "Unable to open or close the inject/eject port." 
    4330 {Unable to eject the media because it is in a drive.} 
    4331 "A cleaner slot is already reserved." 
    4332 "A cleaner slot is not reserved." 
    4333 {The cleaner cartridge has performed the maximum number of drive cleanings.} 
    4334 "Unexpected on-medium identifier." 
    4335 {The last remaining item in this group or resource cannot be deleted.} 
    4336 {The message provided exceeds the maximum size allowed for this parameter.} 
    4337 "The volume contains system or paging files." 
    4338 {The media type cannot be removed from this library since at least one drive in the library reports it can support this media type.} 
    4339 {This offline media cannot be mounted on this system since no enabled drives are present which can be used.} 
    4340 {A cleaner cartridge is present in the tape library.} 
    4350 {The remote storage service was not able to recall the file.} 
    4351 {The remote storage service is not operational at this time.} 
    4352 {The remote storage service encountered a media error.} 
    4390 "The file or directory is not a reparse point." 
    4391 {The reparse point attribute cannot be set because it conflicts with an existing attribute.} 
    4392 {The data present in the reparse point buffer is invalid.} 
    4393 {The tag present in the reparse point buffer is invalid.} 
    4394 {There is a mismatch between the tag specified in the request and the tag present in the reparse point.} 
    4500 {Single Instance Storage is not available on this volume.} 
    5001 {The cluster resource cannot be moved to another group because other resources are dependent on it.} 
    5002 "The cluster resource dependency cannot be found." 
    5003 {The cluster resource cannot be made dependent on the specified resource because it is already dependent.} 
    5004 "The cluster resource is not online." 
    5005 {A cluster node is not available for this operation.} 
    5006 "The cluster resource is not available." 
    5007 "The cluster resource could not be found." 
    5008 "The cluster is being shut down." 
    5009 {A cluster node cannot be evicted from the cluster unless the node is down.} 
    5010 "The object already exists." 
    5011 "The object is already in the list." 
    5012 {The cluster group is not available for any new requests.} 
    5013 "The cluster group could not be found." 
    5014 {The operation could not be completed because the cluster group is not online.} 
    5015 "The cluster node is not the owner of the resource." 
    5016 "The cluster node is not the owner of the group." 
    5017 {The cluster resource could not be created in the specified resource monitor.} 
    5018 {The cluster resource could not be brought online by the resource monitor.} 
    5019 {The operation could not be completed because the cluster resource is online.} 
    5020 {The cluster resource could not be deleted or brought offline because it is the quorum resource.} 
    5021 {The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource.} 
    5022 "The cluster software is shutting down." 
    5023 {The group or resource is not in the correct state to perform the requested operation.} 
    5024 {The properties were stored but not all changes will take effect until the next time the resource is brought online.} 
    5025 {The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class.} 
    5026 {The cluster resource could not be deleted since it is a core resource.} 
    5027 "The quorum resource failed to come online." 
    5028 {The quorum log could not be created or mounted successfully.} 
    5029 "The cluster log is corrupt." 
    5030 {The record could not be written to the cluster log since it exceeds the maximum size.} 
    5031 "The cluster log exceeds its maximum size." 
    5032 "No checkpoint record was found in the cluster log." 
    5033 {The minimum required disk space needed for logging is not available.} 
    5034 {The cluster node failed to take control of the quorum resource because the resource is owned by another active node.} 
    5035 {A cluster network is not available for this operation.} 
    5036 {A cluster node is not available for this operation.} 
    5037 {All cluster nodes must be running to perform this operation.} 
    5038 "A cluster resource failed." 
    5039 "The cluster node is not valid." 
    5040 "The cluster node already exists." 
    5041 "A node is in the process of joining the cluster." 
    5042 "The cluster node was not found." 
    5043 "The cluster local node information was not found." 
    5044 "The cluster network already exists." 
    5045 "The cluster network was not found." 
    5046 "The cluster network interface already exists." 
    5047 "The cluster network interface was not found." 
    5048 "The cluster request is not valid for this object." 
    5049 "The cluster network provider is not valid." 
    5050 "The cluster node is down." 
    5051 "The cluster node is not reachable." 
    5052 "The cluster node is not a member of the cluster." 
    5053 "A cluster join operation is not in progress." 
    5054 "The cluster network is not valid." 
    5056 "The cluster node is up." 
    5057 "The cluster IP address is already in use." 
    5058 "The cluster node is not paused." 
    5059 "No cluster security context is available." 
    5060 {The cluster network is not configured for internal cluster communication.} 
    5061 "The cluster node is already up." 
    5062 "The cluster node is already down." 
    5063 "The cluster network is already online." 
    5064 "The cluster network is already offline." 
    5065 {The cluster node is already a member of the cluster.} 
    5066 {The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes. The internal communication capability cannot be removed from the network.} 
    5067 {One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network.} 
    5068 {This operation cannot be performed on the cluster resource as it the quorum resource. You may not bring the quorum resource offline or modify its possible owners list.} 
    5069 {The cluster quorum resource is not allowed to have any dependencies.} 
    5070 "The cluster node is paused." 
    5071 {The cluster resource cannot be brought online. The owner node cannot run this resource.} 
    5072 {The cluster node is not ready to perform the requested operation.} 
    5073 "The cluster node is shutting down." 
    5074 "The cluster join operation was aborted." 
    5075 {The cluster join operation failed due to incompatible software versions between the joining node and its sponsor.} 
    5076 {This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor.} 
    5077 {The system configuration changed during the cluster join or form operation. The join or form operation was aborted.} 
    5078 "The specified resource type was not found." 
    5079 {The specified node does not support a resource of this type. This may be due to version inconsistencies or due to the absence of the resource DLL on this node.} 
    5080 {The specified resource name is supported by this resource DLL. This may be due to a bad (or changed) name supplied to the resource DLL.} 
    5081 {No authentication package could be registered with the RPC server.} 
    5082 {You cannot bring the group online because the owner of the group is not in the preferred list for the group. To change the owner node for the group, move the group.} 
    5083 {The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This may happen during a join operation if the cluster database was changing during the join.} 
    5084 {The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This may happen if the resource is in a pending state.} 
    5085 {A non locker code got a request to reserve the lock for making global updates.} 
    5086 {The quorum disk could not be located by the cluster service.} 
    5087 {The backup up cluster database is possibly corrupt.} 
    5088 "A DFS root already exists in this cluster node." 
    5089 {An attempt to modify a resource property failed because it conflicts with another existing property.} 
    5890 {An operation was attempted that is incompatible with the current membership state of the node.} 
    5891 {The quorum resource does not contain the quorum log.} 
    5892 {The membership engine requested shutdown of the cluster service on this node.} 
    5893 {The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node.} 
    5894 {A matching network for the specified IP address could not be found. Please also specify a subnet mask and a cluster network.} 
    5895 {The actual data type of the property did not match the expected data type of the property.} 
    5896 {The cluster node was evicted from the cluster successfully, but the node was not cleaned up. Extended status information explaining why the node was not cleaned up is available.} 
    5897 {Two or more parameter values specified for a resource's properties are in conflict.} 
    5898 {This computer cannot be made a member of a cluster.} 
    5899 {This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed.} 
    5900 {A cluster cannot be created with the specified cluster name because that cluster name is already in use. Specify a different name for the cluster.} 
    5901 {The cluster configuration action has already been committed.} 
    5902 {The cluster configuration action could not be rolled back.} 
    5903 {The drive letter assigned to a system disk on one node conflicted with the driver letter assigned to a disk on another node.} 
    5904 {One or more nodes in the cluster are running a version of Windows that does not support this operation.} 
    5905 {The name of the corresponding computer account doesn't match the Network Name for this resource.} 
    6000 "The specified file could not be encrypted." 
    6001 "The specified file could not be decrypted." 
    6002 {The specified file is encrypted and the user does not have the ability to decrypt it.} 
    6003 {There is no valid encryption recovery policy configured for this system.} 
    6004 {The required encryption driver is not loaded for this system.} 
    6005 {The file was encrypted with a different encryption driver than is currently loaded.} 
    6006 "There are no EFS keys defined for the user." 
    6007 "The specified file is not encrypted." 
    6008 {The specified file is not in the defined EFS export format.} 
    6009 "The specified file is read only." 
    6010 "The directory has been disabled for encryption." 
    6011 {The server is not trusted for remote encryption operation.} 
    6012 {Recovery policy configured for this system contains invalid recovery certificate.} 
    6013 {The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file.} 
    6014 {The disk partition does not support file encryption.} 
    6015 "This machine is disabled for file encryption." 
    6016 {A newer system is required to decrypt this encrypted file.} 
    6118 {The list of servers for this workgroup is not currently available.} 
    6200 {The Task Scheduler service must be configured to run in the System account to function properly. Individual tasks may be configured to run in other accounts.} 
    7001 "The specified session name is invalid." 
    7002 "The specified protocol driver is invalid." 
    7003 {The specified protocol driver was not found in the system path.} 
    7004 {The specified terminal connection driver was not found in the system path.} 
    7005 {A registry key for event logging could not be created for this session.} 
    7006 {A service with the same name already exists on the system.} 
    7007 "A close operation is pending on the session." 
    7008 "There are no free output buffers available." 
    7009 "The MODEM.INF file was not found." 
    7010 "The modem name was not found in MODEM.INF." 
    7011 {The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem.} 
    7012 {The modem did not respond to the command sent to it. Verify that the modem is properly cabled and powered on.} 
    7013 {Carrier detect has failed or carrier has been dropped due to disconnect.} 
    7014 {Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional.} 
    7015 "Busy signal detected at remote site on callback." 
    7016 "Voice detected at remote site on callback." 
    7017 "Transport driver error" 
    7022 "The specified session cannot be found." 
    7023 "The specified session name is already in use." 
    7024 {The requested operation cannot be completed because the terminal connection is currently busy processing a connect, disconnect, reset, or delete operation.} 
    7025 {An attempt has been made to connect to a session whose video mode is not supported by the current client.} 
    7035 {The application attempted to enable DOS graphics mode. DOS graphics mode is not supported.} 
    7037 {Your interactive logon privilege has been disabled. Please contact your administrator.} 
    7038 {The requested operation can be performed only on the system console. This is most often the result of a driver or system DLL requiring direct console access.} 
    7040 {The client failed to respond to the server connect message.} 
    7041 {Disconnecting the console session is not supported.} 
    7042 {Reconnecting a disconnected session to the console is not supported.} 
    7044 {The request to control another session remotely was denied.} 
    7045 "The requested session access is denied." 
    7049 {The specified terminal connection driver is invalid.} 
    7050 {The requested session cannot be controlled remotely. This may be because the session is disconnected or does not currently have a user logged on.} 
    7051 {The requested session is not configured to allow remote control.} 
    7052 {Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number is currently being used by another user. Please call your system administrator to obtain a unique license number.} 
    7053 {Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number has not been entered for this copy of the Terminal Server client. Please contact your system administrator.} 
    7054 {The system has reached its licensed logon limit. Please try again later.} 
    7055 {The client you are using is not licensed to use this system. Your logon request is denied.} 
    7056 {The system license has expired. Your logon request is denied.} 
    7057 {Remote control could not be terminated because the specified session is not currently being remotely controlled.} 
    7058 {The remote control of the console was terminated because the display mode was changed. Changing the display mode in a remote control session is not supported.} 
    7059 {Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared.} 
    8001 {The file replication service API was called incorrectly.} 
    8002 "The file replication service cannot be started." 
    8003 "The file replication service cannot be stopped." 
    8004 {The file replication service API terminated the request. The event log may have more information.} 
    8005 {The file replication service terminated the request. The event log may have more information.} 
    8006 {The file replication service cannot be contacted. The event log may have more information.} 
    8007 {The file replication service cannot satisfy the request because the user has insufficient privileges. The event log may have more information.} 
    8008 {The file replication service cannot satisfy the request because authenticated RPC is not available. The event log may have more information.} 
    8009 {The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller. The event log may have more information.} 
    8010 {The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller. The event log may have more information.} 
    8011 {The file replication service cannot communicate with the file replication service on the domain controller. The event log may have more information.} 
    8012 {The file replication service on the domain controller cannot communicate with the file replication service on this computer. The event log may have more information.} 
    8013 {The file replication service cannot populate the system volume because of an internal error. The event log may have more information.} 
    8014 {The file replication service cannot populate the system volume because of an internal timeout. The event log may have more information.} 
    8015 {The file replication service cannot process the request. The system volume is busy with a previous request.} 
    8016 {The file replication service cannot stop replicating the system volume because of an internal error. The event log may have more information.} 
    8017 {The file replication service detected an invalid parameter.} 
    8200 {An error occurred while installing the directory service. For more information, see the event log.} 
    8201 {The directory service evaluated group memberships locally.} 
    8202 {The specified directory service attribute or value does not exist.} 
    8203 {The attribute syntax specified to the directory service is invalid.} 
    8204 {The attribute type specified to the directory service is not defined.} 
    8205 {The specified directory service attribute or value already exists.} 
    8206 "The directory service is busy." 
    8207 "The directory service is unavailable." 
    8208 {The directory service was unable to allocate a relative identifier.} 
    8209 {The directory service has exhausted the pool of relative identifiers.} 
    8210 {The requested operation could not be performed because the directory service is not the master for that type of operation.} 
    8211 {The directory service was unable to initialize the subsystem that allocates relative identifiers.} 
    8212 {The requested operation did not satisfy one or more constraints associated with the class of the object.} 
    8213 {The directory service can perform the requested operation only on a leaf object.} 
    8214 {The directory service cannot perform the requested operation on the RDN attribute of an object.} 
    8215 {The directory service detected an attempt to modify the object class of an object.} 
    8216 {The requested cross-domain move operation could not be performed.} 
    8217 "Unable to contact the global catalog server." 
    8218 {The policy object is shared and can only be modified at the root.} 
    8219 "The policy object does not exist." 
    8220 {The requested policy information is only in the directory service.} 
    8221 "A domain controller promotion is currently active." 
    8222 {A domain controller promotion is not currently active} 
    8224 "An operations error occurred." 
    8225 "A protocol error occurred." 
    8226 "The time limit for this request was exceeded." 
    8227 "The size limit for this request was exceeded." 
    8228 {The administrative limit for this request was exceeded.} 
    8229 "The compare response was false." 
    8230 "The compare response was true." 
    8231 {The requested authentication method is not supported by the server.} 
    8232 {A more secure authentication method is required for this server.} 
    8233 "Inappropriate authentication." 
    8234 "The authentication mechanism is unknown." 
    8235 "A referral was returned from the server." 
    8236 {The server does not support the requested critical extension.} 
    8237 "This request requires a secure connection." 
    8238 "Inappropriate matching." 
    8239 "A constraint violation occurred." 
    8240 "There is no such object on the server." 
    8241 "There is an alias problem." 
    8242 "An invalid dn syntax has been specified." 
    8243 "The object is a leaf object." 
    8244 "There is an alias dereferencing problem." 
    8245 "The server is unwilling to process the request." 
    8246 "A loop has been detected." 
    8247 "There is a naming violation." 
    8248 "The result set is too large." 
    8249 "The operation affects multiple DSAs" 
    8250 "The server is not operational." 
    8251 "A local error has occurred." 
    8252 "An encoding error has occurred." 
    8253 "A decoding error has occurred." 
    8254 "The search filter cannot be recognized." 
    8255 "One or more parameters are illegal." 
    8256 "The specified method is not supported." 
    8257 "No results were returned." 
    8258 {The specified control is not supported by the server.} 
    8259 "A referral loop was detected by the client." 
    8260 "The preset referral limit was exceeded." 
    8261 "The search requires a SORT control." 
    8262 {The search results exceed the offset range specified.} 
    8301 {The root object must be the head of a naming context. The root object cannot have an instantiated parent.} 
    8302 {The add replica operation cannot be performed. The naming context must be writeable in order to create the replica.} 
    8303 {A reference to an attribute that is not defined in the schema occurred.} 
    8304 "The maximum size of an object has been exceeded." 
    8305 {An attempt was made to add an object to the directory with a name that is already in use.} 
    8306 {An attempt was made to add an object of a class that does not have an RDN defined in the schema.} 
    8307 {An attempt was made to add an object using an RDN that is not the RDN defined in the schema.} 
    8308 {None of the requested attributes were found on the objects.} 
    8309 "The user buffer is too small." 
    8310 {The attribute specified in the operation is not present on the object.} 
    8311 {Illegal modify operation. Some aspect of the modification is not permitted.} 
    8312 "The specified object is too large." 
    8313 "The specified instance type is not valid." 
    8314 "The operation must be performed at a master DSA." 
    8315 "The object class attribute must be specified." 
    8316 "A required attribute is missing." 
    8317 {An attempt was made to modify an object to include an attribute that is not legal for its class} 
    8318 {The specified attribute is already present on the object.} 
    8320 {The specified attribute is not present, or has no values.} 
    8321 {Multiple values were specified for an attribute that can have only one value.} 
    8322 {A value for the attribute was not in the acceptable range of values.} 
    8323 "The specified value already exists." 
    8324 {The attribute cannot be removed because it is not present on the object.} 
    8325 {The attribute value cannot be removed because it is not present on the object.} 
    8326 "The specified root object cannot be a subref." 
    8327 "Chaining is not permitted." 
    8328 "Chained evaluation is not permitted." 
    8329 {The operation could not be performed because the object's parent is either uninstantiated or deleted.} 
    8330 {Having a parent that is an alias is not permitted. Aliases are leaf objects.} 
    8331 {The object and parent must be of the same type, either both masters or both replicas.} 
    8332 {The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object.} 
    8333 "Directory object not found." 
    8334 "The aliased object is missing." 
    8335 "The object name has bad syntax." 
    8336 {It is not permitted for an alias to refer to another alias.} 
    8337 "The alias cannot be dereferenced." 
    8338 "The operation is out of scope." 
    8339 {The operation cannot continue because the object is in the process of being removed.} 
    8340 "The DSA object cannot be deleted." 
    8341 "A directory service error has occurred." 
    8342 {The operation can only be performed on an internal master DSA object.} 
    8343 "The object must be of class DSA." 
    8344 {Insufficient access rights to perform the operation.} 
    8345 {The object cannot be added because the parent is not on the list of possible superiors.} 
    8346 {Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager (SAM).} 
    8347 "The name has too many parts." 
    8348 "The name is too long." 
    8349 "The name value is too long." 
    8350 {The directory service encountered an error parsing a name.} 
    8351 {The directory service cannot get the attribute type for a name.} 
    8352 {The name does not identify an object; the name identifies a phantom.} 
    8353 "The security descriptor is too short." 
    8354 "The security descriptor is invalid." 
    8355 "Failed to create name for deleted object." 
    8356 "The parent of a new subref must exist." 
    8357 "The object must be a naming context." 
    8358 {It is not permitted to add an attribute which is owned by the system.} 
    8359 {The class of the object must be structural; you cannot instantiate an abstract class.} 
    8360 "The schema object could not be found." 
    8361 {A local object with this GUID (dead or alive) already exists.} 
    8362 "The operation cannot be performed on a back link." 
    8363 {The cross reference for the specified naming context could not be found.} 
    8364 {The operation could not be performed because the directory service is shutting down.} 
    8365 "The directory service request is invalid." 
    8366 "The role owner attribute could not be read." 
    8367 {The requested FSMO operation failed. The current FSMO holder could not be reached.} 
    8368 {Modification of a DN across a naming context is not permitted.} 
    8369 {The attribute cannot be modified because it is owned by the system.} 
    8370 "Only the replicator can perform this function." 
    8371 "The specified class is not defined." 
    8372 "The specified class is not a subclass." 
    8373 "The name reference is invalid." 
    8374 "A cross reference already exists." 
    8375 {It is not permitted to delete a master cross reference.} 
    8376 {Subtree notifications are only supported on NC heads.} 
    8377 "Notification filter is too complex." 
    8378 "Schema update failed: duplicate RDN." 
    8379 "Schema update failed: duplicate OID" 
    8380 "Schema update failed: duplicate MAPI identifier." 
    8381 "Schema update failed: duplicate schema-id GUID." 
    8382 "Schema update failed: duplicate LDAP display name." 
    8383 {Schema update failed: range-lower less than range upper} 
    8384 "Schema update failed: syntax mismatch" 
    8385 {Schema deletion failed: attribute is used in must-contain} 
    8386 {Schema deletion failed: attribute is used in may-contain} 
    8387 {Schema update failed: attribute in may-contain does not exist} 
    8388 {Schema update failed: attribute in must-contain does not exist} 
    8389 {Schema update failed: class in aux-class list does not exist or is not an auxiliary class} 
    8390 {Schema update failed: class in poss-superiors does not exist} 
    8391 {Schema update failed: class in subclassof list does not exist or does not satisfy hierarchy rules} 
    8392 "Schema update failed: Rdn-Att-Id has wrong syntax" 
    8393 {Schema deletion failed: class is used as auxiliary class} 
    8394 "Schema deletion failed: class is used as sub class" 
    8395 {Schema deletion failed: class is used as poss superior} 
    8396 {Schema update failed in recalculating validation cache.} 
    8397 "The tree deletion is not finished." 
    8398 {The requested delete operation could not be performed.} 
    8399 {Cannot read the governs class identifier for the schema record.} 
    8400 "The attribute schema has bad syntax." 
    8401 "The attribute could not be cached." 
    8402 "The class could not be cached." 
    8403 "The attribute could not be removed from the cache." 
    8404 "The class could not be removed from the cache." 
    8405 {The distinguished name attribute could not be read.} 
    8406 {No superior reference has been configured for the directory service. The directory service is therefore unable to issue referrals to objects outside this forest.} 
    8407 {The instance type attribute could not be retrieved.} 
    8408 "An internal error has occurred." 
    8409 "A database error has occurred." 
    8410 "The attribute GOVERNSID is missing." 
    8411 "An expected attribute is missing." 
    8412 {The specified naming context is missing a cross reference.} 
    8413 "A security checking error has occurred." 
    8414 "The schema is not loaded." 
    8415 {Schema allocation failed. Please check if the machine is running low on memory.} 
    8416 {Failed to obtain the required syntax for the attribute schema.} 
    8417 {The global catalog verification failed. The global catalog is not available or does not support the operation. Some part of the directory is currently not available.} 
    8418 {The replication operation failed because of a schema mismatch between the servers involved.} 
    8419 "The DSA object could not be found." 
    8420 "The naming context could not be found." 
    8421 {The naming context could not be found in the cache.} 
    8422 "The child object could not be retrieved." 
    8423 {The modification was not permitted for security reasons.} 
    8424 "The operation cannot replace the hidden record." 
    8425 "The hierarchy file is invalid." 
    8426 "The attempt to build the hierarchy table failed." 
    8427 {The directory configuration parameter is missing from the registry.} 
    8428 {The attempt to count the address book indices failed.} 
    8429 "The allocation of the hierarchy table failed." 
    8430 {The directory service encountered an internal failure.} 
    8431 {The directory service encountered an unknown failure.} 
    8432 "A root object requires a class of 'top'." 
    8433 {This directory server is shutting down, and cannot take ownership of new floating single-master operation roles.} 
    8434 {The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles.} 
    8435 {The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers.} 
    8436 "The replication operation failed." 
    8437 {An invalid parameter was specified for this replication operation.} 
    8438 {The directory service is too busy to complete the replication operation at this time.} 
    8439 {The distinguished name specified for this replication operation is invalid.} 
    8440 {The naming context specified for this replication operation is invalid.} 
    8441 {The distinguished name specified for this replication operation already exists.} 
    8442 {The replication system encountered an internal error.} 
    8443 {The replication operation encountered a database inconsistency.} 
    8444 {The server specified for this replication operation could not be contacted.} 
    8445 {The replication operation encountered an object with an invalid instance type.} 
    8446 {The replication operation failed to allocate memory.} 
    8447 {The replication operation encountered an error with the mail system.} 
    8448 {The replication reference information for the target server already exists.} 
    8449 {The replication reference information for the target server does not exist.} 
    8450 {The naming context cannot be removed because it is replicated to another server.} 
    8451 {The replication operation encountered a database error.} 
    8452 {The naming context is in the process of being removed or is not replicated from the specified server.} 
    8453 "Replication access was denied." 
    8454 {The requested operation is not supported by this version of the directory service.} 
    8455 {The replication remote procedure call was cancelled.} 
    8456 {The source server is currently rejecting replication requests.} 
    8457 {The destination server is currently rejecting replication requests.} 
    8458 {The replication operation failed due to a collision of object names.} 
    8459 "The replication source has been reinstalled." 
    8460 {The replication operation failed because a required parent object is missing.} 
    8461 "The replication operation was preempted." 
    8462 {The replication synchronization attempt was abandoned because of a lack of updates.} 
    8463 {The replication operation was terminated because the system is shutting down.} 
    8464 {The replication synchronization attempt failed as the destination partial attribute set is not a subset of source partial attribute set.} 
    8465 {The replication synchronization attempt failed because a master replica attempted to sync from a partial replica.} 
    8466 {The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation.} 
    8467 {The version of the Active Directory schema of the source forest is not compatible with the version of Active Directory on this computer.} 
    8468 {Schema update failed: An attribute with the same link identifier already exists.} 
    8469 "Name translation: Generic processing error." 
    8470 {Name translation: Could not find the name or insufficient right to see name.} 
    8471 {Name translation: Input name mapped to more than one output name.} 
    8472 {Name translation: Input name found, but not the associated output format.} 
    8473 {Name translation: Unable to resolve completely, only the domain was found.} 
    8474 {Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire.} 
    8475 {Modification of a constructed attribute is not allowed.} 
    8476 {The OM-Object-Class specified is incorrect for an attribute with the specified syntax.} 
    8477 {The replication request has been posted; waiting for reply.} 
    8478 {The requested operation requires a directory service, and none was available.} 
    8479 {The LDAP display name of the class or attribute contains non-ASCII characters.} 
    8480 {The requested search operation is only supported for base searches.} 
    8481 {The search failed to retrieve attributes from the database.} 
    8482 {The schema update operation tried to add a backward link attribute that has no corresponding forward link.} 
    8483 {Source and destination of a cross domain move do not agree on the object's epoch number. Either source or destination does not have the latest version of the object.} 
    8484 {Source and destination of a cross domain move do not agree on the object's current name. Either source or destination does not have the latest version of the object.} 
    8485 {Source and destination of a cross domain move operation are identical. Caller should use local move operation instead of cross domain move operation.} 
    8486 {Source and destination for a cross domain move are not in agreement on the naming contexts in the forest. Either source or destination does not have the latest version of the Partitions container.} 
    8487 {Destination of a cross domain move is not authoritative for the destination naming context.} 
    8488 {Source and destination of a cross domain move do not agree on the identity of the source object. Either source or destination does not have the latest version of the source object.} 
    8489 {Object being moved across domains is already known to be deleted by the destination server. The source server does not have the latest version of the source object.} 
    8490 {Another operation which requires exclusive access to the PDC PSMO is already in progress.} 
    8491 {A cross domain move operation failed such that the two versions of the moved object exist - one each in the source and destination domains. The destination object needs to be removed to restore the system to a consistent state.} 
    8492 {This object may not be moved across domain boundaries either because cross domain moves for this class are disallowed, or the object has some special characteristics, e.g.: trust account or restricted RID, which prevent its move.} 
    8493 {Can't move objects with memberships across domain boundaries as once moved, this would violate the membership conditions of the account group. Remove the object from any account group memberships and retry.} 
    8494 {A naming context head must be the immediate child of another naming context head, not of an interior node.} 
    8495 {The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context. Please ensure that the domain naming master role is held by a server that is configured as a global catalog server, and that the server is up to date with its replication partners. (Applies only to Windows 2000 Domain Naming masters)} 
    8496 "Destination domain must be in native mode." 
    8497 {The operation cannot be performed because the server does not have an infrastructure container in the domain of interest.} 
    8498 {Cross-domain move of non-empty account groups is not allowed.} 
    8499 {Cross-domain move of non-empty resource groups is not allowed.} 
    8500 {The search flags for the attribute are invalid. The ANR bit is valid only on attributes of Unicode or Teletex strings.} 
    8501 {Tree deletions starting at an object which has an NC head as a descendant are not allowed.} 
    8502 {The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use.} 
    8503 {The directory service failed to identify the list of objects to delete while attempting a tree deletion.} 
    8504 {Security Accounts Manager initialization failed because of the following error} 
    8505 {Only an administrator can modify the membership list of an administrative group.} 
    8506 {Cannot change the primary group ID of a domain controller account.} 
    8507 "An attempt is made to modify the base schema." 
    8508 {Adding a new mandatory attribute to an existing class, deleting a mandatory attribute from an existing class, or adding an optional attribute to the special class Top that is not a backlink attribute (directly or through inheritance, for example, by adding or deleting an auxiliary class) is not allowed.} 
    8509 {Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner.} 
    8510 {An object of this class cannot be created under the schema container. You can only create attribute-schema and class-schema objects under the schema container.} 
    8511 {The replica/child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it.} 
    8512 {The replica/child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the system32 directory.} 
    8513 "The specified group type is invalid." 
    8514 {Cannot nest global groups in a mixed domain if the group is security-enabled.} 
    8515 {Cannot nest local groups in a mixed domain if the group is security-enabled.} 
    8516 {A global group cannot have a local group as a member.} 
    8517 {A global group cannot have a universal group as a member.} 
    8518 {A universal group cannot have a local group as a member.} 
    8519 "A global group cannot have a cross-domain member." 
    8520 {A local group cannot have another cross-domain local group as a member.} 
    8521 {A group with primary members cannot change to a security-disabled group.} 
    8522 {The schema cache load failed to convert the string default SD on a class-schema object.} 
    8523 {Only DSAs configured to be Global Catalog servers should be allowed to hold the Domain Naming Master FSMO role. (Applies only to Windows 2000 servers)} 
    8524 {The DSA operation is unable to proceed because of a DNS lookup failure.} 
    8525 {While processing a change to the DNS Host Name for an object, the Service Principal Name values could not be kept in sync.} 
    8526 {The Security Descriptor attribute could not be read.} 
    8527 {The object requested was not found, but an object with that key was found.} 
    8528 {The syntax of the linked attributed being added is incorrect. Forward links can only have syntax 2.5.5.1, 2.5.5.7, and 2.5.5.14, and backlinks can only have syntax 2.5.5.1.} 
    8529 {Security Account Manager needs to get the boot password.} 
    8530 {Security Account Manager needs to get the boot key from floppy disk.} 
    8531 "Directory Service cannot start." 
    8532 "Directory Services could not start." 
    8533 {The connection between client and server requires packet privacy or better.} 
    8534 {The source domain may not be in the same forest as destination.} 
    8535 "The destination domain must be in the forest." 
    8536 {The operation requires that destination domain auditing be enabled.} 
    8537 {The operation couldn't locate a DC for the source domain.} 
    8538 "The source object must be a group or user." 
    8539 {The source object's SID already exists in destination forest.} 
    8540 {The source and destination object must be of the same type.} 
    8541 {Security Accounts Manager initialization failed because of the following error:} 
    8542 {Schema information could not be included in the replication request.} 
    8543 {The replication operation could not be completed due to a schema incompatibility.} 
    8544 {The replication operation could not be completed due to a previous schema incompatibility.} 
    8545 {The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation.} 
    8546 {The requested domain could not be deleted because there exist domain controllers that still host this domain.} 
    8547 {The requested operation can be performed only on a global catalog server.} 
    8548 {A local group can only be a member of other local groups in the same domain.} 
    8549 {Foreign security principals cannot be members of universal groups.} 
    8550 {The attribute is not allowed to be replicated to the GC because of security reasons.} 
    8551 {The checkpoint with the PDC could not be taken because there are too many modifications being processed currently.} 
    8552 {The operation requires that source domain auditing be enabled.} 
    8553 {Security principal objects can only be created inside domain naming contexts.} 
    8554 {A Service Principal Name (SPN) could not be constructed because the provided hostname is not in the necessary format.} 
    8555 {A Filter was passed that uses constructed attributes.} 
    8556 {The unicodePwd attribute value must be enclosed in double quotes.} 
    8557 {Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased.} 
    8558 {For security reasons, the operation must be run on the destination DC.} 
    8559 {For security reasons, the source DC must be NT4SP4 or greater.} 
    8560 {Critical Directory Service System objects cannot be deleted during tree delete operations. The tree delete may have been partially performed.} 
    8561 {Directory Services could not start because of the following error:} 
    8562 {Security Accounts Manager initialization failed because of the following error:} 
    8563 {The version of the operating system installed is incompatible with the current forest functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this forest.} 
    8564 {The version of the operating system installed is incompatible with the current domain functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this domain.} 
    8565 {This version of the operating system installed on this server no longer supports the current forest functional level. You must raise the forest functional level before this server can become a domain controller in this forest.} 
    8566 {This version of the operating system installed on this server no longer supports the current domain functional level. You must raise the domain functional level before this server can become a domain controller in this domain.} 
    8567 {The version of the operating system installed on this server is incompatible with the functional level of the domain or forest.} 
    8568 {The functional level of the domain (or forest) cannot be raised to the requested value, because there exist one or more domain controllers in the domain (or forest) that are at a lower incompatible functional level.} 
    8569 {The forest functional level cannot be raised to the requested level since one or more domains are still in mixed domain mode. All domains in the forest must be in native mode before you can raise the forest functional level.} 
    8570 "The sort order requested is not supported." 
    8571 {The requested name already exists as a unique identifier.} 
    8572 {The machine account was created pre-NT4. The account needs to be recreated.} 
    8573 "The database is out of version store." 
    8574 {Unable to continue operation because multiple conflicting controls were used.} 
    8575 {Unable to find a valid security descriptor reference domain for this partition.} 
    8576 {Schema update failed: The link identifier is reserved.} 
    8577 {Schema update failed: There are no link identifiers available.} 
    8578 {An account group cannot have a universal group as a member.} 
    8579 {Rename or move operations on naming context heads or read-only objects are not allowed.} 
    8580 {Move operations on objects in the schema naming context are not allowed.} 
    8581 {A system flag has been set on the object and does not allow the object to be moved or renamed.} 
    8582 {This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers.} 
    8583 {Unable to resolve completely, a referral to another forest is generated.} 
    8584 {The requested action is not supported on standard server.} 
    8585 {Could not access a partition of the Active Directory located on a remote server. Make sure at least one server is running for the partition in question.} 
    8586 {The directory cannot validate the proposed naming context (or partition) name because it does not hold a replica nor can it contact a replica of the naming context above the proposed naming context. Please ensure that the parent naming context is properly registered in DNS, and at least one replica of this naming context is reachable by the Domain Naming master.} 
    8587 "The thread limit for this request was exceeded." 
    8588 {The Global catalog server is not in the closet site.} 
    8589 {The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute.} 
    8590 {The Directory Service failed to enter single user mode.} 
    8591 {The Directory Service cannot parse the script because of a syntax error.} 
    8592 {The Directory Service cannot process the script because of an error.} 
    8593 {The directory service cannot perform the requested operation because the servers involved are of different replication epochs (which is usually related to a domain rename that is in progress).} 
    8594 {The directory service binding must be renegotiated due to a change in the server extensions information.} 
    8595 "Operation not allowed on a disabled cross ref." 
    8596 {Schema update failed: No values for msDS-IntId are available.} 
    8597 {Schema update failed: Duplicate msDS-INtId. Retry the operation.} 
    8598 {Schema deletion failed: attribute is used in rDNAttID.} 
    8599 {The directory service failed to authorize the request.} 
    8600 {The Directory Service cannot process the script because it is invalid.} 
    8601 {The remote create cross reference operation failed on the Domain Naming Master FSMO. The operation's error is in the extended data.} 
    8602 {A cross reference is in use locally with the same name.} 
    8603 {The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the server's domain has been deleted from the forest.} 
    8604 "Writeable NCs prevent this DC from demoting." 
    8605 {The requested object has a non-unique identifier and cannot be retrieved.} 
    8606 {Insufficient attributes were given to create an object. This object may not exist because it may have been deleted and already garbage collected.} 
    8607 {The group cannot be converted due to attribute restrictions on the requested group type.} 
    8608 {Cross-domain move of non-empty basic application groups is not allowed.} 
    8609 {Cross-domain move on non-empty query based application groups is not allowed.} 
    8610 {The role owner could not be verified because replication of its partition has not occurred recently.} 
    8611 {The target container for a redirection of a well-known object container cannot already be a special container.} 
    8612 {The Directory Service cannot perform the requested operation because a domain rename operation is in progress.} 
    8613 {The Active Directory detected an Active Directory child partition below the requested new partition name. The Active Directory's partition hierarchy must be created in a top-down method.} 
    9001 "DNS server unable to interpret format." 
    9002 "DNS server failure." 
    9003 "DNS name does not exist." 
    9004 "DNS request not supported by name server." 
    9005 "DNS operation refused." 
    9006 "DNS name that ought not exist, does exist." 
    9007 "DNS RR set that ought not exist, does exist." 
    9008 "DNS RR set that ought to exist, does not exist." 
    9009 "DNS server not authoritative for zone." 
    9010 "DNS name in update or prereq is not in zone." 
    9016 "DNS signature failed to verify." 
    9017 "DNS bad key." 
    9018 "DNS signature validity expired." 
    9501 "No records found for given DNS query." 
    9502 "Bad DNS packet." 
    9503 "No DNS packet." 
    9504 "DNS error, check rcode." 
    9505 "Unsecured DNS packet." 
    9551 "Invalid DNS type." 
    9552 "Invalid IP address." 
    9553 "Invalid property." 
    9554 "Try DNS operation again later." 
    9555 "Record for given name and type is not unique." 
    9556 "DNS name does not comply with RFC specifications." 
    9557 "DNS name is a fully-qualified DNS name." 
    9558 "DNS name is dotted (multi-label)." 
    9559 "DNS name is a single-part name." 
    9560 "DSN name contains an invalid character." 
    9561 "DNS name is entirely numeric." 
    9562 {The operation requested is not permitted on a DNS root server.} 
    9563 {The record could not be created because this part of the DNS namespace has been delegated to another server.} 
    9564 "The DNS server could not find a set of root hints." 
    9565 {The DNS server found root hints but they were not consistent across all adapters.} 
    9601 "DNS zone does not exist." 
    9602 "DNS zone information not available." 
    9603 "Invalid operation for DNS zone." 
    9604 "Invalid DNS zone configuration." 
    9605 "DNS zone has no start of authority (SOA) record." 
    9606 "DNS zone has no name server (NS) record." 
    9607 "DNS zone is locked." 
    9608 "DNS zone creation failed." 
    9609 "DNS zone already exists." 
    9610 "DNS automatic zone already exists." 
    9611 "Invalid DNS zone type." 
    9612 "Secondary DNS zone requires master IP address." 
    9613 "DNS zone not secondary." 
    9614 "Need secondary IP address." 
    9615 "WINS initialization failed." 
    9616 "Need WINS servers." 
    9617 "NBTSTAT initialization call failed." 
    9618 "Invalid delete of start of authority (SOA)" 
    9619 {A conditional forwarding zone already exists for that name.} 
    9620 {This zone must be configured with one or more master DNS server IP addresses.} 
    9621 {The operation cannot be performed because this zone is shutdown.} 
    9651 "Primary DNS zone requires datafile." 
    9652 "Invalid datafile name for DNS zone." 
    9653 "Failed to open datafile for DNS zone." 
    9654 "Failed to write datafile for DNS zone." 
    9655 "Failure while reading datafile for DNS zone." 
    9701 "DNS record does not exist." 
    9702 "DNS record format error." 
    9703 "Node creation failure in DNS." 
    9704 "Unknown DNS record type." 
    9705 "DNS record timed out." 
    9706 "Name not in DNS zone." 
    9707 "CNAME loop detected." 
    9708 "Node is a CNAME DNS record." 
    9709 "A CNAME record already exists for given name." 
    9710 "Record only at DNS zone root." 
    9711 "DNS record already exists." 
    9712 "Secondary DNS zone data error." 
    9713 "Could not create DNS cache data." 
    9714 "DNS name does not exist." 
    9715 "Could not create pointer (PTR) record." 
    9716 "DNS domain was undeleted." 
    9717 "The directory service is unavailable." 
    9718 "DNS zone already exists in the directory service." 
    9719 {DNS server not creating or reading the boot file for the directory service integrated DNS zone.} 
    9751 "DNS AXFR (zone transfer) complete." 
    9752 "DNS zone transfer failed." 
    9753 "Added local WINS server." 
    9801 {Secure update call needs to continue update request.} 
    9851 "TCP/IP network protocol not installed." 
    9852 "No DNS servers configured for local system." 
    9901 "The specified directory partition does not exist." 
    9902 "The specified directory partition already exists." 
    9903 {The DNS server is not enlisted in the specified directory partition.} 
    9904 {The DNS server is already enlisted in the specified directory partition.} 
    9905 {The directory partition is not available at this time. Please wait a few minutes and try again.} 
    10004 {A blocking operation was interrupted by a call to WSACancelBlockingCall.} 
    10009 "The file handle supplied is not valid." 
    10013 {An attempt was made to access a socket in a way forbidden by its access permissions.} 
    10014 {The system detected an invalid pointer address in attempting to use a pointer argument in a call.} 
    10022 "An invalid argument was supplied." 
    10024 "Too many open sockets." 
    10035 {A non-blocking socket operation could not be completed immediately.} 
    10036 "A blocking operation is currently executing." 
    10037 {An operation was attempted on a non-blocking socket that already had an operation in progress.} 
    10038 {An operation was attempted on something that is not a socket.} 
    10039 {A required address was omitted from an operation on a socket.} 
    10040 {A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself.} 
    10041 {A protocol was specified in the socket function call that does not support the semantics of the socket type requested.} 
    10042 {An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call.} 
    10043 {The requested protocol has not been configured into the system, or no implementation for it exists.} 
    10044 {The support for the specified socket type does not exist in this address family.} 
    10045 {The attempted operation is not supported for the type of object referenced.} 
    10046 {The protocol family has not been configured into the system or no implementation for it exists.} 
    10047 {An address incompatible with the requested protocol was used.} 
    10048 {Only one usage of each socket address (protocol/network address/port) is normally permitted.} 
    10049 "The requested address is not valid in its context." 
    10050 "A socket operation encountered a dead network." 
    10051 {A socket operation was attempted to an unreachable network.} 
    10052 {The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress.} 
    10053 {An established connection was aborted by the software in your host machine.} 
    10054 {An existing connection was forcibly closed by the remote host.} 
    10055 {An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.} 
    10056 {A connect request was made on an already connected socket.} 
    10057 {A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied.} 
    10058 {A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call.} 
    10059 "Too many references to some kernel object." 
    10060 {A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.} 
    10061 {No connection could be made because the target machine actively refused it.} 
    10062 "Cannot translate name." 
    10063 "Name component or name was too long." 
    10064 {A socket operation failed because the destination host was down.} 
    10065 {A socket operation was attempted to an unreachable host.} 
    10066 "Cannot remove a directory that is not empty." 
    10067 {A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously.} 
    10068 "Ran out of quota." 
    10069 "Ran out of disk quota." 
    10070 "File handle reference is no longer available." 
    10071 "Item is not available locally." 
    10091 {WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable.} 
    10092 {The Windows Sockets version requested is not supported.} 
    10093 {Either the application has not called WSAStartup, or WSAStartup failed.} 
    10101 {Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence.} 
    10102 {No more results can be returned by WSALookupServiceNext.} 
    10103 {A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.} 
    10104 "The procedure call table is invalid." 
    10105 "The requested service provider is invalid." 
    10106 {The requested service provider could not be loaded or initialized.} 
    10107 "A system call that should never fail has failed." 
    10108 {No such service is known. The service cannot be found in the specified name space.} 
    10109 "The specified class was not found." 
    10110 {No more results can be returned by WSALookupServiceNext.} 
    10111 {A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.} 
    10112 {A database query failed because it was actively refused.} 
    11001 "No such host is known." 
    11002 {This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server.} 
    11003 {A non-recoverable error occurred during a database lookup.} 
    11004 {The requested name is valid, but no data of the requested type was found.} 
    11005 "At least one reserve has arrived." 
    11006 "At least one path has arrived." 
    11007 "There are no senders." 
    11008 "There are no receivers." 
    11009 "Reserve has been confirmed." 
    11010 "Error due to lack of resources." 
    11011 {Rejected for administrative reasons - bad credentials.} 
    11012 "Unknown or conflicting style." 
    11013 {Problem with some part of the filterspec or providerspecific buffer in general.} 
    11014 "Problem with some part of the flowspec." 
    11015 "General QOS error." 
    11016 {An invalid or unrecognized service type was found in the flowspec.} 
    11017 {An invalid or inconsistent flowspec was found in the QOS structure.} 
    11018 "Invalid QOS provider-specific buffer." 
    11019 "An invalid QOS filter style was used." 
    11020 "An invalid QOS filter type was used." 
    11021 {An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR.} 
    11022 {An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer.} 
    11023 {An incorrect number of flow descriptors was specified in the QOS structure.} 
    11024 {An unrecognized object was found in the QOS provider-specific buffer.} 
    11025 {An invalid policy object was found in the QOS provider-specific buffer.} 
    11026 {An invalid QOS flow descriptor was found in the flow descriptor list.} 
    11027 {An invalid or inconsistent flowspec was found in the QOS provider-specific buffer.} 
    11028 {An invalid FILTERSPEC was found in the QOS provider-specific buffer.} 
    11029 {An invalid shape discard mode object was found in the QOS provider-specific buffer.} 
    11030 {An invalid shaping rate object was found in the QOS provider-specific buffer.} 
    11031 {A reserved policy element was found in the QOS provider-specific buffer.} 
    13000 "The specified quick mode policy already exists." 
    13001 "The specified quick mode policy was not found." 
    13002 "The specified quick mode policy is being used." 
    13003 "The specified main mode policy already exists." 
    13004 "The specified main mode policy was not found." 
    13005 "The specified main mode policy is being used." 
    13006 "The specified main mode filter already exists." 
    13007 "The specified main mode filter was not found." 
    13008 {The specified transport mode filter already exists.} 
    13009 {The specified transport mode filter does not exist.} 
    13010 {The specified main mode authentication list exists.} 
    13011 {The specified main mode authentication list was not found.} 
    13012 "The specified quick mode policy is being used." 
    13013 "The specified main mode policy was not found." 
    13014 "The specified quick mode policy was not found." 
    13015 {The manifest file contains one or more syntax errors.} 
    13016 {The application attempted to activate a disabled activation context.} 
    13017 {The requested lookup key was not found in any active activation context.} 
    13018 "The Main Mode filter is pending deletion." 
    13019 "The transport filter is pending deletion." 
    13020 "The tunnel filter is pending deletion." 
    13021 "The Main Mode policy is pending deletion." 
    13022 {The Main Mode authentication bundle is pending deletion.} 
    13023 "The Quick Mode policy is pending deletion." 
    13024 {The Main Mode policy was successfully added, but some of the requested offers are not supported.} 
    13025 {The Quick Mode policy was successfully added, but some of the requested offers are not supported.} 
    13801 "IKE authentication credentials are unacceptable." 
    13802 "IKE security attributes are unacceptable." 
    13803 "IKE Negotiation in progress." 
    13804 "General processing error." 
    13805 "Negotiation timed out." 
    13806 "IKE failed to find valid machine certificate." 
    13807 {IKE SA deleted by peer before establishment completed.} 
    13808 "IKE SA deleted before establishment completed." 
    13809 "Negotiation request sat in Queue too long." 
    13810 "Negotiation request sat in Queue too long." 
    13811 "Negotiation request sat in Queue too long." 
    13812 "Negotiation request sat in Queue too long." 
    13813 "No response from peer." 
    13814 "Negotiation took too long." 
    13815 "Negotiation took too long." 
    13816 "Unknown error occurred." 
    13817 "Certificate Revocation Check failed." 
    13818 "Invalid certificate key usage." 
    13819 "Invalid certificate type." 
    13820 {No private key associated with machine certificate.} 
    13822 "Failure in Diffie-Helman computation." 
    13824 "Invalid header." 
    13825 "No policy configured." 
    13826 "Failed to verify signature." 
    13827 "Failed to authenticate using Kerberos." 
    13828 "Peer's certificate did not have a public key." 
    13829 "Error processing error payload." 
    13830 "Error processing SA payload." 
    13831 "Error processing Proposal payload." 
    13832 "Error processing Transform payload." 
    13833 "Error processing KE payload." 
    13834 "Error processing ID payload." 
    13835 "Error processing Cert payload." 
    13836 "Error processing Certificate Request payload." 
    13837 "Error processing Hash payload." 
    13838 "Error processing Signature payload." 
    13839 "Error processing Nonce payload." 
    13840 "Error processing Notify payload." 
    13841 "Error processing Delete Payload." 
    13842 "Error processing VendorId payload." 
    13843 "Invalid payload received." 
    13844 "Soft SA loaded." 
    13845 "Soft SA torn down." 
    13846 "Invalid cookie received.." 
    13847 "Peer failed to send valid machine certificate." 
    13848 {Certification Revocation check of peer's certificate failed.} 
    13849 "New policy invalidated SAs formed with old policy." 
    13850 "There is no available Main Mode IKE policy." 
    13851 "Failed to enabled TCB privilege." 
    13852 "Failed to load SECURITY.DLL." 
    13853 {Failed to obtain security function table dispatch address from SSPI.} 
    13854 {Failed to query Kerberos package to obtain max token size.} 
    13855 {Failed to obtain Kerberos server credentials for ISAKMP/ERROR_IPSEC_IKE service. Kerberos authentication will not function. The most likely reason for this is lack of domain membership. This is normal if your computer is a member of a workgroup.} 
    13856 {Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes).} 
    13857 {Failed to obtain new SPI for the inbound SA from Ipsec driver. The most common cause for this is that the driver does not have the correct filter. Check your policy to verify the filters.} 
    13858 "Given filter is invalid." 
    13859 "Memory allocation failed." 
    13860 {Failed to add Security Association to IPSec Driver. The most common cause for this is if the IKE negotiation took too long to complete. If the problem persists, reduce the load on the faulting machine.} 
    13861 "Invalid policy." 
    13862 "Invalid DOI." 
    13863 "Invalid situation." 
    13864 "Diffie-Hellman failure." 
    13865 "Invalid Diffie-Hellman group." 
    13866 "Error encrypting payload." 
    13867 "Error decrypting payload." 
    13868 "Policy match error." 
    13869 "Unsupported ID." 
    13870 "Hash verification failed." 
    13871 "Invalid hash algorithm." 
    13872 "Invalid hash size." 
    13873 "Invalid encryption algorithm." 
    13874 "Invalid authentication algorithm." 
    13875 "Invalid certificate signature." 
    13876 "Load failed." 
    13877 "Deleted via RPC call." 
    13878 {Temporary state created to perform reinit. This is not a real failure.} 
    13879 {The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value. Please fix the policy on the peer machine.} 
    13881 {Key length in certificate is too small for configured security requirements.} 
    13882 "Max number of established MM SAs to peer exceeded." 
    13883 "IKE received a policy that disables negotiation." 
    13884 "ERROR_IPSEC_IKE_NEG_STATUS_END" 
    14000 {The requested section was not present in the activation context.} 
    14001 {This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem.} 
    14002 "The application binding data format is invalid." 
    14003 {The referenced assembly is not installed on your system.} 
    14004 {The manifest file does not begin with the required tag and format information.} 
    14005 {The manifest file contains one or more syntax errors.} 
    14006 {The application attempted to activate a disabled activation context.} 
    14007 {The requested lookup key was not found in any active activation context.} 
    14008 {A component version required by the application conflicts with another component version already active.} 
    14009 {The type requested activation context section does not match the query API used.} 
    14010 {Lack of system resources has required isolated activation to be disabled for the current thread of execution.} 
    14011 {An attempt to set the process default activation context failed because the process default activation context was already set.} 
    14012 {The encoding group identifier specified is not recognized.} 
    14013 "The encoding requested is not recognized." 
    14014 {The manifest contains a reference to an invalid URI.} 
    14015 {The application manifest contains a reference to a dependent assembly which is not installed.} 
    14016 {The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed.} 
    14017 {The manifest contains an attribute for the assembly identity which is not valid.} 
    14018 {The manifest is missing the required default namespace specification on the assembly element.} 
    14019 {The manifest has a default namespace specified on the assembly element but its value is not "urn:schemas-microsoft-com:asm.v1".} 
    14020 {The private manifest probe has crossed the reparse-point-associated path.} 
    14021 {Two or more components referenced directly or indirectly by the application manifest have files by the same name.} 
    14022 {Two or more components referenced directly or indirectly by the application manifest have window classes with the same name.} 
    14023 {Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs.} 
    14024 {Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs.} 
    14025 {Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs.} 
    14026 {Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs.} 
    14027 {Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted.} 
    14028 {A component's file does not match the verification information present in the component manifest.} 
    14029 {The policy manifest contains one or more syntax errors.} 
    14030 {Manifest Parse Error : A string literal was expected, but no opening quote character was found.} 
    14031 {Manifest Parse Error : Incorrect syntax was used in a comment.} 
    14032 {Manifest Parse Error : A name was started with an invalid character.} 
    14033 {Manifest Parse Error : A name contained an invalid character.} 
    14034 {Manifest Parse Error : A string literal contained an invalid character.} 
    14035 {Manifest Parse Error : Invalid syntax for an XML declaration.} 
    14036 {Manifest Parse Error : An invalid character was found in text content.} 
    14037 {Manifest Parse Error : Required white space was missing.} 
    14038 {Manifest Parse Error : The character '>' was expected.} 
    14039 {Manifest Parse Error : A semi colon character was expected.} 
    14040 "Manifest Parse Error : Unbalanced parentheses." 
    14041 "Manifest Parse Error : Internal error." 
    14042 {Manifest Parse Error : White space is not allowed at this location.} 
    14043 {Manifest Parse Error : End of file reached in invalid state for current encoding.} 
    14044 "Manifest Parse Error : Missing parenthesis." 
    14045 {Manifest Parse Error : A single or double closing quote character (\' or \") is missing.} 
    14046 {Manifest Parse Error : Multiple colons are not allowed in a name.} 
    14047 {Manifest Parse Error : Invalid character for decimal digit.} 
    14048 {Manifest Parse Error : Invalid character for hexadecimal digit.} 
    14049 {Manifest Parse Error : Invalid Unicode character value for this platform.} 
    14050 {Manifest Parse Error : Expecting white space or '?'.} 
    14051 {Manifest Parse Error : End tag was not expected at this location.} 
    14052 {Manifest Parse Error : The following tags were not closed: %1.} 
    14053 "Manifest Parse Error : Duplicate attribute." 
    14054 {Manifest Parse Error : Only one top level element is allowed in an XML document.} 
    14055 {Manifest Parse Error : Invalid at the top level of the document.} 
    14056 "Manifest Parse Error : Invalid XML declaration." 
    14057 {Manifest Parse Error : XML document must have a top level element.} 
    14058 "Manifest Parse Error : Unexpected end of file." 
    14059 {Manifest Parse Error : Parameter entities cannot be used inside markup declarations in an internal subset.} 
    14060 "Manifest Parse Error : Element was not closed." 
    14061 {Manifest Parse Error : End element was missing the character '>'.} 
    14062 {Manifest Parse Error : A string literal was not closed.} 
    14063 "Manifest Parse Error : A comment was not closed." 
    14064 {Manifest Parse Error : A declaration was not closed.} 
    14065 {Manifest Parse Error : A CDATA section was not closed.} 
    14066 {Manifest Parse Error : The namespace prefix is not allowed to start with the reserved string "xml".} 
    14067 {Manifest Parse Error : System does not support the specified encoding.} 
    14068 {Manifest Parse Error : Switch from current encoding to specified encoding not supported.} 
    14069 {Manifest Parse Error : The name 'xml' is reserved and must be lower case.} 
    14070 {Manifest Parse Error : The standalone attribute must have the value 'yes' or 'no'.} 
    14071 {Manifest Parse Error : The standalone attribute cannot be used in external entities.} 
    14072 "Manifest Parse Error : Invalid version number." 
    14073 {Manifest Parse Error : Missing equals sign between attribute and attribute value.} 
    14074 {Assembly Protection Error: Unable to recover the specified assembly.} 
    14075 {Assembly Protection Error: The public key for an assembly was too short to be allowed.} 
    14076 {Assembly Protection Error: The catalog for an assembly is not valid, or does not match the assembly's manifest.} 
    14077 {An HRESULT could not be translated to a corresponding Win32 error code.} 
    14078 {Assembly Protection Error: The catalog for an assembly is missing.} 
    14079 {The supplied assembly identity is missing one or more attributes which must be present in this context.} 
    14080 {The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names.}
]