-
Notifications
You must be signed in to change notification settings - Fork 45
/
win32_error_codes_v22.0.txt
5408 lines (5408 loc) · 281 KB
/
win32_error_codes_v22.0.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0x00000000
ERROR_SUCCESS The operation completed successfully.
0x00000000
NERR_Success The operation completed successfully.
0x00000001
ERROR_INVALID_FUNCTION Incorrect function.
0x00000002
ERROR_FILE_NOT_FOUND The system cannot find the file specified.
0x00000003
ERROR_PATH_NOT_FOUND The system cannot find the path specified.
0x00000004
ERROR_TOO_MANY_OPEN_FILES The system cannot open the file.
0x00000005
ERROR_ACCESS_DENIED Access is denied.
0x00000006
ERROR_INVALID_HANDLE The handle is invalid.
0x00000007
ERROR_ARENA_TRASHED The storage control blocks were destroyed.
0x00000008
ERROR_NOT_ENOUGH_MEMORY Not enough storage is available to process this command.
0x00000009
ERROR_INVALID_BLOCK The storage control block address is invalid.
0x0000000A
ERROR_BAD_ENVIRONMENT The environment is incorrect.
0x0000000B
ERROR_BAD_FORMAT An attempt was made to load a program with an incorrect format.
0x0000000C
ERROR_INVALID_ACCESS The access code is invalid.
0x0000000D
ERROR_INVALID_DATA The data is invalid.
0x0000000E
ERROR_OUTOFMEMORY Not enough storage is available to complete this operation.
0x0000000F
ERROR_INVALID_DRIVE The system cannot find the drive specified.
0x00000010
ERROR_CURRENT_DIRECTORY The directory cannot be removed.
0x00000011
ERROR_NOT_SAME_DEVICE The system cannot move the file to a different disk drive.
0x00000012
ERROR_NO_MORE_FILES There are no more files.
0x00000013
ERROR_WRITE_PROTECT The media is write-protected.
0x00000014
ERROR_BAD_UNIT The system cannot find the device specified.
0x00000015
ERROR_NOT_READY The device is not ready.
0x00000016
ERROR_BAD_COMMAND The device does not recognize the command.
0x00000017
ERROR_CRC Data error (cyclic redundancy check).
0x00000018
ERROR_BAD_LENGTH The program issued a command but the command length is incorrect.
0x00000019
ERROR_SEEK The drive cannot locate a specific area or track on the disk.
0x0000001A
ERROR_NOT_DOS_DISK The specified disk cannot be accessed.
0x0000001B
ERROR_SECTOR_NOT_FOUND The drive cannot find the sector requested.
0x0000001C
ERROR_OUT_OF_PAPER The printer is out of paper.
0x0000001D
ERROR_WRITE_FAULT The system cannot write to the specified device.
0x0000001E
ERROR_READ_FAULT The system cannot read from the specified device.
0x0000001F
ERROR_GEN_FAILURE A device attached to the system is not functioning.
0x00000020
ERROR_SHARING_VIOLATION The process cannot access the file because it is being used by another process.
0x00000021
ERROR_LOCK_VIOLATION The process cannot access the file because another process has locked a portion of the file.
0x00000022
ERROR_WRONG_DISK The wrong disk is in the drive. Insert %2 (Volume Serial Number: %3) into drive %1.
0x00000024
ERROR_SHARING_BUFFER_EXCEEDED Too many files opened for sharing.
0x00000026
ERROR_HANDLE_EOF Reached the end of the file.
0x00000027
ERROR_HANDLE_DISK_FULL The disk is full.
0x00000032
ERROR_NOT_SUPPORTED The request is not supported.
0x00000033
ERROR_REM_NOT_LIST Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator.
0x00000034
ERROR_DUP_NAME You were not connected because a duplicate name exists on the network. Go to System in Control Panel to change the computer name, and then try again.
0x00000035
ERROR_BAD_NETPATH The network path was not found.
0x00000036
ERROR_NETWORK_BUSY The network is busy.
0x00000037
ERROR_DEV_NOT_EXIST The specified network resource or device is no longer available.
0x00000038
ERROR_TOO_MANY_CMDS The network BIOS command limit has been reached.
0x00000039
ERROR_ADAP_HDW_ERR A network adapter hardware error occurred.
0x0000003A
ERROR_BAD_NET_RESP The specified server cannot perform the requested operation.
0x0000003B
ERROR_UNEXP_NET_ERR An unexpected network error occurred.
0x0000003C
ERROR_BAD_REM_ADAP The remote adapter is not compatible.
0x0000003D
ERROR_PRINTQ_FULL The print queue is full.
0x0000003E
ERROR_NO_SPOOL_SPACE Space to store the file waiting to be printed is not available on the server.
0x0000003F
ERROR_PRINT_CANCELLED Your file waiting to be printed was deleted.
0x00000040
ERROR_NETNAME_DELETED The specified network name is no longer available.
0x00000041
ERROR_NETWORK_ACCESS_DENIED Network access is denied.
0x00000042
ERROR_BAD_DEV_TYPE The network resource type is not correct.
0x00000043
ERROR_BAD_NET_NAME The network name cannot be found.
0x00000044
ERROR_TOO_MANY_NAMES The name limit for the local computer network adapter card was exceeded.
0x00000045
ERROR_TOO_MANY_SESS The network BIOS session limit was exceeded.
0x00000046
ERROR_SHARING_PAUSED The remote server has been paused or is in the process of being started.
0x00000047
ERROR_REQ_NOT_ACCEP No more connections can be made to this remote computer at this time because the computer has accepted the maximum number of connections.
0x00000048
ERROR_REDIR_PAUSED The specified printer or disk device has been paused.
0x00000050
ERROR_FILE_EXISTS The file exists.
0x00000052
ERROR_CANNOT_MAKE The directory or file cannot be created.
0x00000053
ERROR_FAIL_I24 Fail on INT 24.
0x00000054
ERROR_OUT_OF_STRUCTURES Storage to process this request is not available.
0x00000055
ERROR_ALREADY_ASSIGNED The local device name is already in use.
0x00000056
ERROR_INVALID_PASSWORD The specified network password is not correct.
0x00000057
ERROR_INVALID_PARAMETER The parameter is incorrect.
0x00000058
ERROR_NET_WRITE_FAULT A write fault occurred on the network.
0x00000059
ERROR_NO_PROC_SLOTS The system cannot start another process at this time.
0x00000064
ERROR_TOO_MANY_SEMAPHORES Cannot create another system semaphore.
0x00000065
ERROR_EXCL_SEM_ALREADY_OWNED The exclusive semaphore is owned by another process.
0x00000066
ERROR_SEM_IS_SET The semaphore is set and cannot be closed.
0x00000067
ERROR_TOO_MANY_SEM_REQUESTS The semaphore cannot be set again.
0x00000068
ERROR_INVALID_AT_INTERRUPT_TIME Cannot request exclusive semaphores at interrupt time.
0x00000069
ERROR_SEM_OWNER_DIED The previous ownership of this semaphore has ended.
0x0000006A
ERROR_SEM_USER_LIMIT Insert the disk for drive %1.
0x0000006B
ERROR_DISK_CHANGE The program stopped because an alternate disk was not inserted.
0x0000006C
ERROR_DRIVE_LOCKED The disk is in use or locked by another process.
0x0000006D
ERROR_BROKEN_PIPE The pipe has been ended.
0x0000006E
ERROR_OPEN_FAILED The system cannot open the device or file specified.
0x0000006F
ERROR_BUFFER_OVERFLOW The file name is too long.
0x00000070
ERROR_DISK_FULL There is not enough space on the disk.
0x00000071
ERROR_NO_MORE_SEARCH_HANDLES No more internal file identifiers are available.
0x00000072
ERROR_INVALID_TARGET_HANDLE The target internal file identifier is incorrect.
0x00000075
ERROR_INVALID_CATEGORY The Input Output Control (IOCTL) call made by the application program is not correct.
0x00000076
ERROR_INVALID_VERIFY_SWITCH The verify-on-write switch parameter value is not correct.
0x00000077
ERROR_BAD_DRIVER_LEVEL The system does not support the command requested.
0x00000078
ERROR_CALL_NOT_IMPLEMENTED This function is not supported on this system.
0x00000079
ERROR_SEM_TIMEOUT The semaphore time-out period has expired.
0x0000007A
ERROR_INSUFFICIENT_BUFFER The data area passed to a system call is too small.
0x0000007B
ERROR_INVALID_NAME The file name, directory name, or volume label syntax is incorrect.
0x0000007C
ERROR_INVALID_LEVEL The system call level is not correct.
0x0000007D
ERROR_NO_VOLUME_LABEL The disk has no volume label.
0x0000007E
ERROR_MOD_NOT_FOUND The specified module could not be found.
0x0000007F
ERROR_PROC_NOT_FOUND The specified procedure could not be found.
0x00000080
ERROR_WAIT_NO_CHILDREN There are no child processes to wait for.
0x00000081
ERROR_CHILD_NOT_COMPLETE The %1 application cannot be run in Win32 mode.
0x00000082
ERROR_DIRECT_ACCESS_HANDLE Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.
0x00000083
ERROR_NEGATIVE_SEEK An attempt was made to move the file pointer before the beginning of the file.
0x00000084
ERROR_SEEK_ON_DEVICE The file pointer cannot be set on the specified device or file.
0x00000085
ERROR_IS_JOIN_TARGET A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.
0x00000086
ERROR_IS_JOINED An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.
0x00000087
ERROR_IS_SUBSTED An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.
0x00000088
ERROR_NOT_JOINED The system tried to delete the JOIN of a drive that is not joined.
0x00000089
ERROR_NOT_SUBSTED The system tried to delete the substitution of a drive that is not substituted.
0x0000008A
ERROR_JOIN_TO_JOIN The system tried to join a drive to a directory on a joined drive.
0x0000008B
ERROR_SUBST_TO_SUBST The system tried to substitute a drive to a directory on a substituted drive.
0x0000008C
ERROR_JOIN_TO_SUBST The system tried to join a drive to a directory on a substituted drive.
0x0000008D
ERROR_SUBST_TO_JOIN The system tried to SUBST a drive to a directory on a joined drive.
0x0000008E
ERROR_BUSY_DRIVE The system cannot perform a JOIN or SUBST at this time.
0x0000008F
ERROR_SAME_DRIVE The system cannot join or substitute a drive to or for a directory on the same drive.
0x00000090
ERROR_DIR_NOT_ROOT The directory is not a subdirectory of the root directory.
0x00000091
ERROR_DIR_NOT_EMPTY The directory is not empty.
0x00000092
ERROR_IS_SUBST_PATH The path specified is being used in a substitute.
0x00000093
ERROR_IS_JOIN_PATH Not enough resources are available to process this command.
0x00000094
ERROR_PATH_BUSY The path specified cannot be used at this time.
0x00000095
ERROR_IS_SUBST_TARGET An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.
0x00000096
ERROR_SYSTEM_TRACE System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.
0x00000097
ERROR_INVALID_EVENT_COUNT The number of specified semaphore events for DosMuxSemWait is not correct.
0x00000098
ERROR_TOO_MANY_MUXWAITERS DosMuxSemWait did not execute; too many semaphores are already set.
0x00000099
ERROR_INVALID_LIST_FORMAT The DosMuxSemWait list is not correct.
0x0000009A
ERROR_LABEL_TOO_LONG The volume label you entered exceeds the label character limit of the destination file system.
0x0000009B
ERROR_TOO_MANY_TCBS Cannot create another thread.
0x0000009C
ERROR_SIGNAL_REFUSED The recipient process has refused the signal.
0x0000009D
ERROR_DISCARDED The segment is already discarded and cannot be locked.
0x0000009E
ERROR_NOT_LOCKED The segment is already unlocked.
0x0000009F
ERROR_BAD_THREADID_ADDR The address for the thread ID is not correct.
0x000000A0
ERROR_BAD_ARGUMENTS One or more arguments are not correct.
0x000000A1
ERROR_BAD_PATHNAME The specified path is invalid.
0x000000A2
ERROR_SIGNAL_PENDING A signal is already pending.
0x000000A4
ERROR_MAX_THRDS_REACHED No more threads can be created in the system.
0x000000A7
ERROR_LOCK_FAILED Unable to lock a region of a file.
0x000000AA
ERROR_BUSY The requested resource is in use.
0x000000AD
ERROR_CANCEL_VIOLATION A lock request was not outstanding for the supplied cancel region.
0x000000AE
ERROR_ATOMIC_LOCKS_NOT_SUPPORTED The file system does not support atomic changes to the lock type.
0x000000B4
ERROR_INVALID_SEGMENT_NUMBER The system detected a segment number that was not correct.
0x000000B6
ERROR_INVALID_ORDINAL The operating system cannot run %1.
0x000000B7
ERROR_ALREADY_EXISTS Cannot create a file when that file already exists.
0x000000BA
ERROR_INVALID_FLAG_NUMBER The flag passed is not correct.
0x000000BB
ERROR_SEM_NOT_FOUND The specified system semaphore name was not found.
0x000000BC
ERROR_INVALID_STARTING_CODESEG The operating system cannot run %1.
0x000000BD
ERROR_INVALID_STACKSEG The operating system cannot run %1.
0x000000BE
ERROR_INVALID_MODULETYPE The operating system cannot run %1.
0x000000BF
ERROR_INVALID_EXE_SIGNATURE Cannot run %1 in Win32 mode.
0x000000C0
ERROR_EXE_MARKED_INVALID The operating system cannot run %1.
0x000000C1
ERROR_BAD_EXE_FORMAT %1 is not a valid Win32 application.
0x000000C2
ERROR_ITERATED_DATA_EXCEEDS_64k The operating system cannot run %1.
0x000000C3
ERROR_INVALID_MINALLOCSIZE The operating system cannot run %1.
0x000000C4
ERROR_DYNLINK_FROM_INVALID_RING The operating system cannot run this application program.
0x000000C5
ERROR_IOPL_NOT_ENABLED The operating system is not presently configured to run this application.
0x000000C6
ERROR_INVALID_SEGDPL The operating system cannot run %1.
0x000000C7
ERROR_AUTODATASEG_EXCEEDS_64k The operating system cannot run this application program.
0x000000C8
ERROR_RING2SEG_MUST_BE_MOVABLE The code segment cannot be greater than or equal to 64 KB.
0x000000C9
ERROR_RELOC_CHAIN_XEEDS_SEGLIM The operating system cannot run %1.
0x000000CA
ERROR_INFLOOP_IN_RELOC_CHAIN The operating system cannot run %1.
0x000000CB
ERROR_ENVVAR_NOT_FOUND The system could not find the environment option that was entered.
0x000000CD
ERROR_NO_SIGNAL_SENT No process in the command subtree has a signal handler.
0x000000CE
ERROR_FILENAME_EXCED_RANGE The file name or extension is too long.
0x000000CF
ERROR_RING2_STACK_IN_USE The ring 2 stack is in use.
0x000000D0
ERROR_META_EXPANSION_TOO_LONG The asterisk (*) or question mark (?) global file name characters are entered incorrectly, or too many global file name characters are specified.
0x000000D1
ERROR_INVALID_SIGNAL_NUMBER The signal being posted is not correct.
0x000000D2
ERROR_THREAD_1_INACTIVE The signal handler cannot be set.
0x000000D4
ERROR_LOCKED The segment is locked and cannot be reallocated.
0x000000D6
ERROR_TOO_MANY_MODULES Too many dynamic-link modules are attached to this program or dynamic-link module.
0x000000D7
ERROR_NESTING_NOT_ALLOWED Cannot nest calls to LoadModule.
0x000000D8
ERROR_EXE_MACHINE_TYPE_MISMATCH This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information to see whether you need an x86 (32-bit) or x64 (64-bit) version of the program, and then contact the software publisher.
0x000000D9
ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY The image file %1 is signed, unable to modify.
0x000000DA
ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY The image file %1 is strong signed, unable to modify.
0x000000DC
ERROR_FILE_CHECKED_OUT This file is checked out or locked for editing by another user.
0x000000DD
ERROR_CHECKOUT_REQUIRED The file must be checked out before saving changes.
0x000000DE
ERROR_BAD_FILE_TYPE The file type being saved or retrieved has been blocked.
0x000000DF
ERROR_FILE_TOO_LARGE The file size exceeds the limit allowed and cannot be saved.
0x000000E0
ERROR_FORMS_AUTH_REQUIRED Access denied. Before opening files in this location, you must first browse to the website and select the option to sign in automatically.
0x000000E1
ERROR_VIRUS_INFECTED Operation did not complete successfully because the file contains a virus.
0x000000E2
ERROR_VIRUS_DELETED This file contains a virus and cannot be opened. Due to the nature of this virus, the file has been removed from this location.
0x000000E5
ERROR_PIPE_LOCAL The pipe is local.
0x000000E6
ERROR_BAD_PIPE The pipe state is invalid.
0x000000E7
ERROR_PIPE_BUSY All pipe instances are busy.
0x000000E8
ERROR_NO_DATA The pipe is being closed.
0x000000E9
ERROR_PIPE_NOT_CONNECTED No process is on the other end of the pipe.
0x000000EA
ERROR_MORE_DATA More data is available.
0x000000F0
ERROR_VC_DISCONNECTED The session was canceled.
0x000000FE
ERROR_INVALID_EA_NAME The specified extended attribute name was invalid.
0x000000FF
ERROR_EA_LIST_INCONSISTENT The extended attributes are inconsistent.
0x00000102
WAIT_TIMEOUT The wait operation timed out.
0x00000103
ERROR_NO_MORE_ITEMS No more data is available.
0x0000010A
ERROR_CANNOT_COPY The copy functions cannot be used.
0x0000010B
ERROR_DIRECTORY The directory name is invalid.
0x00000113
ERROR_EAS_DIDNT_FIT The extended attributes did not fit in the buffer.
0x00000114
ERROR_EA_FILE_CORRUPT The extended attribute file on the mounted file system is corrupt.
0x00000115
ERROR_EA_TABLE_FULL The extended attribute table file is full.
0x00000116
ERROR_INVALID_EA_HANDLE The specified extended attribute handle is invalid.
0x0000011A
ERROR_EAS_NOT_SUPPORTED The mounted file system does not support extended attributes.
0x00000120
ERROR_NOT_OWNER Attempt to release mutex not owned by caller.
0x0000012A
ERROR_TOO_MANY_POSTS Too many posts were made to a semaphore.
0x0000012B
ERROR_PARTIAL_COPY Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
0x0000012C
ERROR_OPLOCK_NOT_GRANTED The oplock request is denied.
0x0000012D
ERROR_INVALID_OPLOCK_PROTOCOL An invalid oplock acknowledgment was received by the system.
0x0000012E
ERROR_DISK_TOO_FRAGMENTED The volume is too fragmented to complete this operation.
0x0000012F
ERROR_DELETE_PENDING The file cannot be opened because it is in the process of being deleted.
0x0000013D
ERROR_MR_MID_NOT_FOUND The system cannot find message text for message number 0x%1 in the message file for %2.
0x0000013E
ERROR_SCOPE_NOT_FOUND The scope specified was not found.
0x0000015E
ERROR_FAIL_NOACTION_REBOOT No action was taken because a system reboot is required.
0x0000015F
ERROR_FAIL_SHUTDOWN The shutdown operation failed.
0x00000160
ERROR_FAIL_RESTART The restart operation failed.
0x00000161
ERROR_MAX_SESSIONS_REACHED The maximum number of sessions has been reached.
0x00000190
ERROR_THREAD_MODE_ALREADY_BACKGROUND The thread is already in background processing mode.
0x00000191
ERROR_THREAD_MODE_NOT_BACKGROUND The thread is not in background processing mode.
0x00000192
ERROR_PROCESS_MODE_ALREADY_BACKGROUND The process is already in background processing mode.
0x00000193
ERROR_PROCESS_MODE_NOT_BACKGROUND The process is not in background processing mode.
0x000001E7
ERROR_INVALID_ADDRESS Attempt to access invalid address.
0x000001F4
ERROR_USER_PROFILE_LOAD User profile cannot be loaded.
0x00000216
ERROR_ARITHMETIC_OVERFLOW Arithmetic result exceeded 32 bits.
0x00000217
ERROR_PIPE_CONNECTED There is a process on the other end of the pipe.
0x00000218
ERROR_PIPE_LISTENING Waiting for a process to open the other end of the pipe.
0x00000219
ERROR_VERIFIER_STOP Application verifier has found an error in the current process.
0x0000021A
ERROR_ABIOS_ERROR An error occurred in the ABIOS subsystem.
0x0000021B
ERROR_WX86_WARNING A warning occurred in the WX86 subsystem.
0x0000021C
ERROR_WX86_ERROR An error occurred in the WX86 subsystem.
0x0000021D
ERROR_TIMER_NOT_CANCELED An attempt was made to cancel or set a timer that has an associated asynchronous procedure call (APC) and the subject thread is not the thread that originally set the timer with an associated APC routine.
0x0000021E
ERROR_UNWIND Unwind exception code.
0x0000021F
ERROR_BAD_STACK An invalid or unaligned stack was encountered during an unwind operation.
0x00000220
ERROR_INVALID_UNWIND_TARGET An invalid unwind target was encountered during an unwind operation.
0x00000221
ERROR_INVALID_PORT_ATTRIBUTES Invalid object attributes specified to NtCreatePort or invalid port attributes specified to NtConnectPort.
0x00000222
ERROR_PORT_MESSAGE_TOO_LONG Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.
0x00000223
ERROR_INVALID_QUOTA_LOWER An attempt was made to lower a quota limit below the current usage.
0x00000224
ERROR_DEVICE_ALREADY_ATTACHED An attempt was made to attach to a device that was already attached to another device.
0x00000225
ERROR_INSTRUCTION_MISALIGNMENT An attempt was made to execute an instruction at an unaligned address, and the host system does not support unaligned instruction references.
0x00000226
ERROR_PROFILING_NOT_STARTED Profiling not started.
0x00000227
ERROR_PROFILING_NOT_STOPPED Profiling not stopped.
0x00000228
ERROR_COULD_NOT_INTERPRET The passed ACL did not contain the minimum required information.
0x00000229
ERROR_PROFILING_AT_LIMIT The number of active profiling objects is at the maximum and no more can be started.
0x0000022A
ERROR_CANT_WAIT Used to indicate that an operation cannot continue without blocking for I/O.
0x0000022B
ERROR_CANT_TERMINATE_SELF Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.
0x0000022C
ERROR_UNEXPECTED_MM_CREATE_ERR If an MM error is returned that is not defined in the standard FsRtl filter, it is converted to one of the following errors that is guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception.
0x0000022D
ERROR_UNEXPECTED_MM_MAP_ERROR If an MM error is returned that is not defined in the standard FsRtl filter, it is converted to one of the following errors that is guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception.
0x0000022E
ERROR_UNEXPECTED_MM_EXTEND_ERR If an MM error is returned that is not defined in the standard FsRtl filter, it is converted to one of the following errors that is guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception.
0x0000022F
ERROR_BAD_FUNCTION_TABLE A malformed function table was encountered during an unwind operation.
0x00000230
ERROR_NO_GUID_TRANSLATION Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. This causes the protection attempt to fail, which might cause a file creation attempt to fail.
0x00000231
ERROR_INVALID_LDT_SIZE Indicates that an attempt was made to grow a local domain table (LDT) by setting its size, or that the size was not an even number of selectors.
0x00000233
ERROR_INVALID_LDT_OFFSET Indicates that the starting value for the LDT information was not an integral multiple of the selector size.
0x00000234
ERROR_INVALID_LDT_DESCRIPTOR Indicates that the user supplied an invalid descriptor when trying to set up LDT descriptors.
0x00000235
ERROR_TOO_MANY_THREADS Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token can be performed only when a process has zero or one threads.
0x00000236
ERROR_THREAD_NOT_IN_PROCESS An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified.
0x00000237
ERROR_PAGEFILE_QUOTA_EXCEEDED Page file quota was exceeded.
0x00000238
ERROR_LOGON_SERVER_CONFLICT The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.
0x00000239
ERROR_SYNCHRONIZATION_REQUIRED On applicable Windows Server releases, the Security Accounts Manager (SAM) database is significantly out of synchronization with the copy on the domain controller. A complete synchronization is required.
0x0000023A
ERROR_NET_OPEN_FAILED The NtCreateFile API failed. This error should never be returned to an application, it is a place holder for the Windows LAN Manager Redirector to use in its internal error mapping routines.
0x0000023B
ERROR_IO_PRIVILEGE_FAILED {Privilege Failed} The I/O permissions for the process could not be changed.
0x0000023C
ERROR_CONTROL_C_EXIT {Application Exit by CTRL+C} The application terminated as a result of a CTRL+C.
0x0000023D
ERROR_MISSING_SYSTEMFILE {Missing System File} The required system file %hs is bad or missing.
0x0000023E
ERROR_UNHANDLED_EXCEPTION {Application Error} The exception %s (0x%08lx) occurred in the application at location 0x%08lx.
0x0000023F
ERROR_APP_INIT_FAILURE {Application Error} The application failed to initialize properly (0x%lx). Click OK to terminate the application.
0x00000240
ERROR_PAGEFILE_CREATE_FAILED {Unable to Create Paging File} The creation of the paging file %hs failed (%lx). The requested size was %ld.
0x00000241
ERROR_INVALID_IMAGE_HASH The hash for the image cannot be found in the system catalogs. The image is likely corrupt or the victim of tampering.
0x00000242
ERROR_NO_PAGEFILE {No Paging File Specified} No paging file was specified in the system configuration.
0x00000243
ERROR_ILLEGAL_FLOAT_CONTEXT {EXCEPTION} A real-mode application issued a floating-point instruction, and floating-point hardware is not present.
0x00000244
ERROR_NO_EVENT_PAIR An event pair synchronization operation was performed using the thread-specific client/server event pair object, but no event pair object was associated with the thread.
0x00000245
ERROR_DOMAIN_CTRLR_CONFIG_ERROR A domain server has an incorrect configuration.
0x00000246
ERROR_ILLEGAL_CHARACTER An illegal character was encountered. For a multibyte character set, this includes a lead byte without a succeeding trail byte. For the Unicode character set, this includes the characters 0xFFFF and 0xFFFE.
0x00000247
ERROR_UNDEFINED_CHARACTER The Unicode character is not defined in the Unicode character set installed on the system.
0x00000248
ERROR_FLOPPY_VOLUME The paging file cannot be created on a floppy disk.
0x00000249
ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT The system bios failed to connect a system interrupt to the device or bus for which the device is connected.
0x0000024A
ERROR_BACKUP_CONTROLLER This operation is only allowed for the primary domain controller (PDC) of the domain.
0x0000024B
ERROR_MUTANT_LIMIT_EXCEEDED An attempt was made to acquire a mutant such that its maximum count would have been exceeded.
0x0000024C
ERROR_FS_DRIVER_REQUIRED A volume has been accessed for which a file system driver is required that has not yet been loaded.
0x0000024D
ERROR_CANNOT_LOAD_REGISTRY_FILE {Registry File Failure} The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable.
0x0000024E
ERROR_DEBUG_ATTACH_FAILED {Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request. Choosing OK will terminate the process, and choosing Cancel will ignore the error.
0x0000024F
ERROR_SYSTEM_PROCESS_TERMINATED {Fatal System Error} The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). The system has been shut down.
0x00000250
ERROR_DATA_NOT_ACCEPTED {Data Not Accepted} The transport driver interface (TDI) client could not handle the data received during an indication.
0x00000251
ERROR_VDM_HARD_ERROR The NT Virtual DOS Machine (NTVDM) encountered a hard error.
0x00000252
ERROR_DRIVER_CANCEL_TIMEOUT {Cancel Timeout} The driver %hs failed to complete a canceled I/O request in the allotted time.
0x00000253
ERROR_REPLY_MESSAGE_MISMATCH {Reply Message Mismatch} An attempt was made to reply to a local procedure call (LPC) message, but the thread specified by the client ID in the message was not waiting on that message.
0x00000254
ERROR_LOST_WRITEBEHIND_DATA {Delayed Write Failed} Windows was unable to save all the data for the file %hs. The data has been lost. This error might be caused by a failure of your computer hardware or network connection. Try to save this file elsewhere.
0x00000255
ERROR_CLIENT_SERVER_PARAMETERS_INVALID The parameters passed to the server in the client/server shared memory window were invalid. Too much data might have been put in the shared memory window.
0x00000256
ERROR_NOT_TINY_STREAM The stream is not a tiny stream.
0x00000257
ERROR_STACK_OVERFLOW_READ The request must be handled by the stack overflow code.
0x00000258
ERROR_CONVERT_TO_LARGE Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing onode is moved or the extent stream is converted to a large stream.
0x00000259
ERROR_FOUND_OUT_OF_SCOPE The attempt to find the object found an object matching by ID on the volume but it is out of the scope of the handle used for the operation.
0x0000025A
ERROR_ALLOCATE_BUCKET The bucket array must be grown. Retry transaction after doing so.
0x0000025B
ERROR_MARSHALL_OVERFLOW The user/kernel marshaling buffer has overflowed.
0x0000025C
ERROR_INVALID_VARIANT The supplied variant structure contains invalid data.
0x0000025D
ERROR_BAD_COMPRESSION_BUFFER The specified buffer contains ill-formed data.
0x0000025E
ERROR_AUDIT_FAILED {Audit Failed} An attempt to generate a security audit failed.
0x0000025F
ERROR_TIMER_RESOLUTION_NOT_SET The timer resolution was not previously set by the current process.
0x00000260
ERROR_INSUFFICIENT_LOGON_INFO There is insufficient account information to log you on.
0x00000261
ERROR_BAD_DLL_ENTRYPOINT {Invalid DLL Entrypoint} The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entry point should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO can cause the application to operate incorrectly.
0x00000262
ERROR_BAD_SERVICE_ENTRYPOINT {Invalid Service Callback Entrypoint} The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entry point should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process might operate incorrectly.
0x00000263
ERROR_IP_ADDRESS_CONFLICT1 There is an IP address conflict with another system on the network.
0x00000264
ERROR_IP_ADDRESS_CONFLICT2 There is an IP address conflict with another system on the network.
0x00000265
ERROR_REGISTRY_QUOTA_LIMIT {Low On Registry Space} The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored.
0x00000266
ERROR_NO_CALLBACK_ACTIVE A callback return system service cannot be executed when no callback is active.
0x00000267
ERROR_PWD_TOO_SHORT The password provided is too short to meet the policy of your user account. Choose a longer password.
0x00000268
ERROR_PWD_TOO_RECENT The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar, but potentially discovered, password. If you feel your password has been compromised, contact your administrator immediately to have a new one assigned.
0x00000269
ERROR_PWD_HISTORY_CONFLICT You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Select a password that you have not previously used.
0x0000026A
ERROR_UNSUPPORTED_COMPRESSION The specified compression format is unsupported.
0x0000026B
ERROR_INVALID_HW_PROFILE The specified hardware profile configuration is invalid.
0x0000026C
ERROR_INVALID_PLUGPLAY_DEVICE_PATH The specified Plug and Play registry device path is invalid.
0x0000026D
ERROR_QUOTA_LIST_INCONSISTENT The specified quota list is internally inconsistent with its descriptor.
0x0000026E
ERROR_EVALUATION_EXPIRATION {Windows Evaluation Notification} The evaluation period for this installation of Windows has expired. This system will shut down in 1 hour. To restore access to this installation of Windows, upgrade this installation using a licensed distribution of this product.
0x0000026F
ERROR_ILLEGAL_DLL_RELOCATION {Illegal System DLL Relocation} The system DLL %hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL %hs occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL.
0x00000270
ERROR_DLL_INIT_FAILED_LOGOFF {DLL Initialization Failed} The application failed to initialize because the window station is shutting down.
0x00000271
ERROR_VALIDATE_CONTINUE The validation process needs to continue on to the next step.
0x00000272
ERROR_NO_MORE_MATCHES There are no more matches for the current index enumeration.
0x00000273
ERROR_RANGE_LIST_CONFLICT The range could not be added to the range list because of a conflict.
0x00000274
ERROR_SERVER_SID_MISMATCH The server process is running under a SID different than that required by the client.
0x00000275
ERROR_CANT_ENABLE_DENY_ONLY A group marked use for deny only cannot be enabled.
0x00000276
ERROR_FLOAT_MULTIPLE_FAULTS {EXCEPTION} Multiple floating point faults.
0x00000277
ERROR_FLOAT_MULTIPLE_TRAPS {EXCEPTION} Multiple floating point traps.
0x00000278
ERROR_NOINTERFACE The requested interface is not supported.
0x00000279
ERROR_DRIVER_FAILED_SLEEP {System Standby Failed} The driver %hs does not support standby mode. Updating this driver might allow the system to go to standby mode.
0x0000027A
ERROR_CORRUPT_SYSTEM_FILE The system file %1 has become corrupt and has been replaced.
0x0000027B
ERROR_COMMITMENT_MINIMUM {Virtual Memory Minimum Too Low} Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process, memory requests for some applications might be denied. For more information, see Help.
0x0000027C
ERROR_PNP_RESTART_ENUMERATION A device was removed so enumeration must be restarted.
0x0000027D
ERROR_SYSTEM_IMAGE_BAD_SIGNATURE {Fatal System Error} The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down.
0x0000027E
ERROR_PNP_REBOOT_REQUIRED Device will not start without a reboot.
0x0000027F
ERROR_INSUFFICIENT_POWER There is not enough power to complete the requested operation.
0x00000281
ERROR_SYSTEM_SHUTDOWN The system is in the process of shutting down.
0x00000282
ERROR_PORT_NOT_SET An attempt to remove a process DebugPort was made, but a port was not already associated with the process.
0x00000283
ERROR_DS_VERSION_CHECK_FAILURE This version of Windows is not compatible with the behavior version of directory forest, domain, or domain controller.
0x00000284
ERROR_RANGE_NOT_FOUND The specified range could not be found in the range list.
0x00000286
ERROR_NOT_SAFE_MODE_DRIVER The driver was not loaded because the system is booting into safe mode.
0x00000287
ERROR_FAILED_DRIVER_ENTRY The driver was not loaded because it failed its initialization call.
0x00000288
ERROR_DEVICE_ENUMERATION_ERROR The device encountered an error while applying power or reading the device configuration. This might be caused by a failure of your hardware or by a poor connection.
0x00000289
ERROR_MOUNT_POINT_NOT_RESOLVED The create operation failed because the name contained at least one mount point that resolves to a volume to which the specified device object is not attached.
0x0000028A
ERROR_INVALID_DEVICE_OBJECT_PARAMETER The device object parameter is either not a valid device object or is not attached to the volume specified by the file name.
0x0000028B
ERROR_MCA_OCCURED A machine check error has occurred. Check the system event log for additional information.
0x0000028C
ERROR_DRIVER_DATABASE_ERROR There was an error [%2] processing the driver database.
0x0000028D
ERROR_SYSTEM_HIVE_TOO_LARGE The system hive size has exceeded its limit.
0x0000028E
ERROR_DRIVER_FAILED_PRIOR_UNLOAD The driver could not be loaded because a previous version of the driver is still in memory.
0x0000028F
ERROR_VOLSNAP_PREPARE_HIBERNATE {Volume Shadow Copy Service} Wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.
0x00000290
ERROR_HIBERNATION_FAILURE The system has failed to hibernate (the error code is %hs). Hibernation will be disabled until the system is restarted.
0x00000299
ERROR_FILE_SYSTEM_LIMITATION The requested operation could not be completed due to a file system limitation.
0x0000029C
ERROR_ASSERTION_FAILURE An assertion failure has occurred.
0x0000029D
ERROR_ACPI_ERROR An error occurred in the Advanced Configuration and Power Interface (ACPI) subsystem.
0x0000029E
ERROR_WOW_ASSERTION WOW assertion error.
0x0000029F
ERROR_PNP_BAD_MPS_TABLE A device is missing in the system BIOS MultiProcessor Specification (MPS) table. This device will not be used. Contact your system vendor for system BIOS update.
0x000002A0
ERROR_PNP_TRANSLATION_FAILED A translator failed to translate resources.
0x000002A1
ERROR_PNP_IRQ_TRANSLATION_FAILED An interrupt request (IRQ) translator failed to translate resources.
0x000002A2
ERROR_PNP_INVALID_ID Driver %2 returned invalid ID for a child device (%3).
0x000002A3
ERROR_WAKE_SYSTEM_DEBUGGER {Kernel Debugger Awakened} the system debugger was awakened by an interrupt.
0x000002A4
ERROR_HANDLES_CLOSED {Handles Closed} Handles to objects have been automatically closed because of the requested operation.
0x000002A5
ERROR_EXTRANEOUS_INFORMATION {Too Much Information} The specified ACL contained more information than was expected.
0x000002A6
ERROR_RXACT_COMMIT_NECESSARY This warning level status indicates that the transaction state already exists for the registry subtree, but that a transaction commit was previously aborted. The commit has NOT been completed, but it has not been rolled back either (so it can still be committed if desired).
0x000002A7
ERROR_MEDIA_CHECK {Media Changed} The media might have changed.
0x000002A8
ERROR_GUID_SUBSTITUTION_MADE {GUID Substitution} During the translation of a GUID to a Windows SID, no administratively defined GUID prefix was found. A substitute prefix was used, which will not compromise system security. However, this might provide more restrictive access than intended.
0x000002A9
ERROR_STOPPED_ON_SYMLINK The create operation stopped after reaching a symbolic link.
0x000002AA
ERROR_LONGJUMP A long jump has been executed.
0x000002AB
ERROR_PLUGPLAY_QUERY_VETOED The Plug and Play query operation was not successful.
0x000002AC
ERROR_UNWIND_CONSOLIDATE A frame consolidation has been executed.
0x000002AD
ERROR_REGISTRY_HIVE_RECOVERED {Registry Hive Recovered} Registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost.
0x000002AE
ERROR_DLL_MIGHT_BE_INSECURE The application is attempting to run executable code from the module %hs. This might be insecure. An alternative, %hs, is available. Should the application use the secure module %hs?
0x000002AF
ERROR_DLL_MIGHT_BE_INCOMPATIBLE The application is loading executable code from the module %hs. This is secure, but might be incompatible with previous releases of the operating system. An alternative, %hs, is available. Should the application use the secure module %hs?
0x000002B0
ERROR_DBG_EXCEPTION_NOT_HANDLED Debugger did not handle the exception.
0x000002B1
ERROR_DBG_REPLY_LATER Debugger will reply later.
0x000002B2
ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE Debugger cannot provide handle.
0x000002B3
ERROR_DBG_TERMINATE_THREAD Debugger terminated thread.
0x000002B4
ERROR_DBG_TERMINATE_PROCESS Debugger terminated process.
0x000002B5
ERROR_DBG_CONTROL_C Debugger got control C.
0x000002B6
ERROR_DBG_PRINTEXCEPTION_C Debugger printed exception on control C.
0x000002B7
ERROR_DBG_RIPEXCEPTION Debugger received Routing Information Protocol (RIP) exception.
0x000002B8
ERROR_DBG_CONTROL_BREAK Debugger received control break.
0x000002B9
ERROR_DBG_COMMAND_EXCEPTION Debugger command communication exception.
0x000002BA
ERROR_OBJECT_NAME_EXISTS {Object Exists} An attempt was made to create an object and the object name already existed.
0x000002BB
ERROR_THREAD_WAS_SUSPENDED {Thread Suspended} A thread termination occurred while the thread was suspended. The thread was resumed and termination proceeded.
0x000002BC
ERROR_IMAGE_NOT_AT_BASE {Image Relocated} An image file could not be mapped at the address specified in the image file. Local fixes must be performed on this image.
0x000002BD
ERROR_RXACT_STATE_CREATED This informational level status indicates that a specified registry subtree transaction state did not yet exist and had to be created.
0x000002BE
ERROR_SEGMENT_NOTIFICATION {Segment Load} A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. An exception is raised so a debugger can load, unload, or track symbols and breakpoints within these 16-bit segments.
0x000002BF
ERROR_BAD_CURRENT_DIRECTORY {Invalid Current Directory} The process cannot switch to the startup current directory %hs. Select OK to set current directory to %hs, or select CANCEL to exit.
0x000002C0
ERROR_FT_READ_RECOVERY_FROM_BACKUP {Redundant Read} To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but it was unable to reassign the failing area of the device.
0x000002C1
ERROR_FT_WRITE_RECOVERY {Redundant Write} To satisfy a write request, the Windows NT fault-tolerant file system successfully wrote a redundant copy of the information. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but it was not able to reassign the failing area of the device.
0x000002C2
ERROR_IMAGE_MACHINE_TYPE_MISMATCH {Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load.
0x000002C3
ERROR_RECEIVE_PARTIAL {Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later.
0x000002C4
ERROR_RECEIVE_EXPEDITED {Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system.
0x000002C5
ERROR_RECEIVE_PARTIAL_EXPEDITED {Partial Expedited Data Received} The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later.
0x000002C6
ERROR_EVENT_DONE {TDI Event Done} The TDI indication has completed successfully.
0x000002C7
ERROR_EVENT_PENDING {TDI Event Pending} The TDI indication has entered the pending state.
0x000002C8
ERROR_CHECKING_FILE_SYSTEM Checking file system on %wZ.
0x000002C9
ERROR_FATAL_APP_EXIT {Fatal Application Exit} %hs.
0x000002CA
ERROR_PREDEFINED_HANDLE The specified registry key is referenced by a predefined handle.
0x000002CB
ERROR_WAS_UNLOCKED {Page Unlocked} The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process.
0x000002CD
ERROR_WAS_LOCKED {Page Locked} One of the pages to lock was already locked.
0x000002CF
ERROR_ALREADY_WIN32 The value already corresponds with a Win 32 error code.
0x000002D0
ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE {Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine.
0x000002D1
ERROR_NO_YIELD_PERFORMED A yield execution was performed and no thread was available to run.
0x000002D2
ERROR_TIMER_RESUME_IGNORED The resume flag to a timer API was ignored.
0x000002D3
ERROR_ARBITRATION_UNHANDLED The arbiter has deferred arbitration of these resources to its parent.
0x000002D4
ERROR_CARDBUS_NOT_SUPPORTED The inserted CardBus device cannot be started because of a configuration error on %hs"."
0x000002D5
ERROR_MP_PROCESSOR_MISMATCH The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. If problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported.
0x000002D6
ERROR_HIBERNATED The system was put into hibernation.
0x000002D7
ERROR_RESUME_HIBERNATION The system was resumed from hibernation.
0x000002D8
ERROR_FIRMWARE_UPDATED Windows has detected that the system firmware (BIOS) was updated (previous firmware date = %2, current firmware date %3).
0x000002D9
ERROR_DRIVERS_LEAKING_LOCKED_PAGES A device driver is leaking locked I/O pages, causing system degradation. The system has automatically enabled a tracking code to try and catch the culprit.
0x000002DA
ERROR_WAKE_SYSTEM The system has awoken.
0x000002DF
ERROR_ABANDONED_WAIT_0 The call failed because the handle associated with it was closed.
0x000002E4
ERROR_ELEVATION_REQUIRED The requested operation requires elevation.
0x000002E5
ERROR_REPARSE A reparse should be performed by the object manager because the name of the file resulted in a symbolic link.
0x000002E6
ERROR_OPLOCK_BREAK_IN_PROGRESS An open/create operation completed while an oplock break is underway.
0x000002E7
ERROR_VOLUME_MOUNTED A new volume has been mounted by a file system.
0x000002E8
ERROR_RXACT_COMMITTED This success level status indicates that the transaction state already exists for the registry subtree, but that a transaction commit was previously aborted. The commit has now been completed.
0x000002E9
ERROR_NOTIFY_CLEANUP This indicates that a notify change request has been completed due to closing the handle which made the notify change request.
0x000002EA
ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED {Connect Failure on Primary Transport} An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed. The computer was able to connect on a secondary transport.
0x000002EB
ERROR_PAGE_FAULT_TRANSITION Page fault was a transition fault.
0x000002EC
ERROR_PAGE_FAULT_DEMAND_ZERO Page fault was a demand zero fault.
0x000002ED
ERROR_PAGE_FAULT_COPY_ON_WRITE Page fault was a demand zero fault.
0x000002EE
ERROR_PAGE_FAULT_GUARD_PAGE Page fault was a demand zero fault.
0x000002EF
ERROR_PAGE_FAULT_PAGING_FILE Page fault was satisfied by reading from a secondary storage device.
0x000002F0
ERROR_CACHE_PAGE_LOCKED Cached page was locked during operation.
0x000002F1
ERROR_CRASH_DUMP Crash dump exists in paging file.
0x000002F2
ERROR_BUFFER_ALL_ZEROS Specified buffer contains all zeros.
0x000002F3
ERROR_REPARSE_OBJECT A reparse should be performed by the object manager because the name of the file resulted in a symbolic link.
0x000002F4
ERROR_RESOURCE_REQUIREMENTS_CHANGED The device has succeeded a query-stop and its resource requirements have changed.
0x000002F5
ERROR_TRANSLATION_COMPLETE The translator has translated these resources into the global space and no further translations should be performed.
0x000002F6
ERROR_NOTHING_TO_TERMINATE A process being terminated has no threads to terminate.
0x000002F7
ERROR_PROCESS_NOT_IN_JOB The specified process is not part of a job.
0x000002F8
ERROR_PROCESS_IN_JOB The specified process is part of a job.
0x000002F9
ERROR_VOLSNAP_HIBERNATE_READY {Volume Shadow Copy Service} The system is now ready for hibernation.
0x000002FA
ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY A file system or file system filter driver has successfully completed an FsFilter operation.
0x000002FB
ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED The specified interrupt vector was already connected.
0x000002FC
ERROR_INTERRUPT_STILL_CONNECTED The specified interrupt vector is still connected.
0x000002FD
ERROR_WAIT_FOR_OPLOCK An operation is blocked waiting for an oplock.
0x000002FE
ERROR_DBG_EXCEPTION_HANDLED Debugger handled exception.
0x000002FF
ERROR_DBG_CONTINUE Debugger continued.
0x00000300
ERROR_CALLBACK_POP_STACK An exception occurred in a user mode callback and the kernel callback frame should be removed.
0x00000301
ERROR_COMPRESSION_DISABLED Compression is disabled for this volume.
0x00000302
ERROR_CANTFETCHBACKWARDS The data provider cannot fetch backward through a result set.
0x00000303
ERROR_CANTSCROLLBACKWARDS The data provider cannot scroll backward through a result set.
0x00000304
ERROR_ROWSNOTRELEASED The data provider requires that previously fetched data is released before asking for more data.
0x00000305
ERROR_BAD_ACCESSOR_FLAGS The data provider was not able to interpret the flags set for a column binding in an accessor.
0x00000306
ERROR_ERRORS_ENCOUNTERED One or more errors occurred while processing the request.
0x00000307
ERROR_NOT_CAPABLE The implementation is not capable of performing the request.
0x00000308
ERROR_REQUEST_OUT_OF_SEQUENCE The client of a component requested an operation that is not valid given the state of the component instance.
0x00000309
ERROR_VERSION_PARSE_ERROR A version number could not be parsed.
0x0000030A
ERROR_BADSTARTPOSITION The iterator's start position is invalid.
0x0000030B
ERROR_MEMORY_HARDWARE The hardware has reported an uncorrectable memory error.
0x0000030C
ERROR_DISK_REPAIR_DISABLED The attempted operation required self-healing to be enabled.
0x0000030D
ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE The Desktop heap encountered an error while allocating session memory. There is more information in the system event log.
0x0000030E
ERROR_SYSTEM_POWERSTATE_TRANSITION The system power state is transitioning from %2 to %3.
0x0000030F
ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION The system power state is transitioning from %2 to %3 but could enter %4.
0x00000310
ERROR_MCA_EXCEPTION A thread is getting dispatched with MCA EXCEPTION because of MCA.
0x00000311
ERROR_ACCESS_AUDIT_BY_POLICY Access to %1 is monitored by policy rule %2.
0x00000312
ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY Access to %1 has been restricted by your administrator by policy rule %2.
0x00000313
ERROR_ABANDON_HIBERFILE A valid hibernation file has been invalidated and should be abandoned.
0x00000314
ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error can be caused by network connectivity issues. Try to save this file elsewhere.
0x00000315
ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error was returned by the server on which the file exists. Try to save this file elsewhere.
0x00000316
ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error can be caused if the device has been removed or the media is write-protected.
0x000003E2
ERROR_EA_ACCESS_DENIED Access to the extended attribute was denied.
0x000003E3
ERROR_OPERATION_ABORTED The I/O operation has been aborted because of either a thread exit or an application request.
0x000003E4
ERROR_IO_INCOMPLETE Overlapped I/O event is not in a signaled state.
0x000003E5
ERROR_IO_PENDING Overlapped I/O operation is in progress.
0x000003E6
ERROR_NOACCESS Invalid access to memory location.
0x000003E7
ERROR_SWAPERROR Error performing in-page operation.
0x000003E9
ERROR_STACK_OVERFLOW Recursion too deep; the stack overflowed.
0x000003EA
ERROR_INVALID_MESSAGE The window cannot act on the sent message.
0x000003EB
ERROR_CAN_NOT_COMPLETE Cannot complete this function.
0x000003EC
ERROR_INVALID_FLAGS Invalid flags.
0x000003ED
ERROR_UNRECOGNIZED_VOLUME The volume does not contain a recognized file system. Be sure that all required file system drivers are loaded and that the volume is not corrupted.
0x000003EE
ERROR_FILE_INVALID The volume for a file has been externally altered so that the opened file is no longer valid.
0x000003EF
ERROR_FULLSCREEN_MODE The requested operation cannot be performed in full-screen mode.
0x000003F0
ERROR_NO_TOKEN An attempt was made to reference a token that does not exist.
0x000003F1
ERROR_BADDB The configuration registry database is corrupt.
0x000003F2
ERROR_BADKEY The configuration registry key is invalid.
0x000003F3
ERROR_CANTOPEN The configuration registry key could not be opened.
0x000003F4
ERROR_CANTREAD The configuration registry key could not be read.
0x000003F5
ERROR_CANTWRITE The configuration registry key could not be written.
0x000003F6
ERROR_REGISTRY_RECOVERED One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.
0x000003F7
ERROR_REGISTRY_CORRUPT The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted.
0x000003F8
ERROR_REGISTRY_IO_FAILED An I/O operation initiated by the registry failed and cannot be recovered. The registry could not read in, write out, or flush one of the files that contain the system's image of the registry.
0x000003F9
ERROR_NOT_REGISTRY_FILE The system attempted to load or restore a file into the registry, but the specified file is not in a registry file format.
0x000003FA
ERROR_KEY_DELETED Illegal operation attempted on a registry key that has been marked for deletion.
0x000003FB
ERROR_NO_LOG_SPACE System could not allocate the required space in a registry log.
0x000003FC
ERROR_KEY_HAS_CHILDREN Cannot create a symbolic link in a registry key that already has subkeys or values.
0x000003FD
ERROR_CHILD_MUST_BE_VOLATILE Cannot create a stable subkey under a volatile parent key.
0x000003FE
ERROR_NOTIFY_ENUM_DIR A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes.
0x0000041B
ERROR_DEPENDENT_SERVICES_RUNNING A stop control has been sent to a service that other running services are dependent on.
0x0000041C
ERROR_INVALID_SERVICE_CONTROL The requested control is not valid for this service.
0x0000041D
ERROR_SERVICE_REQUEST_TIMEOUT The service did not respond to the start or control request in a timely fashion.
0x0000041E
ERROR_SERVICE_NO_THREAD A thread could not be created for the service.
0x0000041F
ERROR_SERVICE_DATABASE_LOCKED The service database is locked.
0x00000420
ERROR_SERVICE_ALREADY_RUNNING An instance of the service is already running.
0x00000421
ERROR_INVALID_SERVICE_ACCOUNT The account name is invalid or does not exist, or the password is invalid for the account name specified.
0x00000422
ERROR_SERVICE_DISABLED The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.
0x00000423
ERROR_CIRCULAR_DEPENDENCY Circular service dependency was specified.
0x00000424
ERROR_SERVICE_DOES_NOT_EXIST The specified service does not exist as an installed service.
0x00000425
ERROR_SERVICE_CANNOT_ACCEPT_CTRL The service cannot accept control messages at this time.
0x00000426
ERROR_SERVICE_NOT_ACTIVE The service has not been started.
0x00000427
ERROR_FAILED_SERVICE_CONTROLLER_CONNECT The service process could not connect to the service controller.
0x00000428
ERROR_EXCEPTION_IN_SERVICE An exception occurred in the service when handling the control request.
0x00000429
ERROR_DATABASE_DOES_NOT_EXIST The database specified does not exist.
0x0000042A
ERROR_SERVICE_SPECIFIC_ERROR The service has returned a service-specific error code.
0x0000042B
ERROR_PROCESS_ABORTED The process terminated unexpectedly.
0x0000042C
ERROR_SERVICE_DEPENDENCY_FAIL The dependency service or group failed to start.
0x0000042D
ERROR_SERVICE_LOGON_FAILED The service did not start due to a logon failure.
0x0000042E
ERROR_SERVICE_START_HANG After starting, the service stopped responding in a start-pending state.
0x0000042F
ERROR_INVALID_SERVICE_LOCK The specified service database lock is invalid.
0x00000430
ERROR_SERVICE_MARKED_FOR_DELETE The specified service has been marked for deletion.
0x00000431
ERROR_SERVICE_EXISTS The specified service already exists.
0x00000432
ERROR_ALREADY_RUNNING_LKG The system is currently running with the last-known-good configuration.