-
Notifications
You must be signed in to change notification settings - Fork 5
/
get-last-error.cna
2895 lines (2895 loc) · 399 KB
/
get-last-error.cna
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
beacon_command_register(
"get-last-error",
"Resolve GetLastError message numbers to text on CS client side",
"Use: get-last-error error-number" .
"\n\n" .
"Resolve GetLastError message numbers to text on CS client side. Does not execute anything on a beacon."
)
alias get-last-error {
local('%msg');
%msg[0] = %(title =>"ERROR_SUCCESS", msg => "The operation completed successfully.");
%msg[1] = %(title =>"ERROR_INVALID_FUNCTION", msg => "Incorrect function.");
%msg[2] = %(title =>"ERROR_FILE_NOT_FOUND", msg => "The system cannot find the file specified.");
%msg[3] = %(title =>"ERROR_PATH_NOT_FOUND", msg => "The system cannot find the path specified.");
%msg[4] = %(title =>"ERROR_TOO_MANY_OPEN_FILES", msg => "The system cannot open the file.");
%msg[5] = %(title =>"ERROR_ACCESS_DENIED", msg => "Access is denied.");
%msg[6] = %(title =>"ERROR_INVALID_HANDLE", msg => "The handle is invalid.");
%msg[7] = %(title =>"ERROR_ARENA_TRASHED", msg => "The storage control blocks were destroyed.");
%msg[8] = %(title =>"ERROR_NOT_ENOUGH_MEMORY", msg => "Not enough memory resources are available to process this command.");
%msg[9] = %(title =>"ERROR_INVALID_BLOCK", msg => "The storage control block address is invalid.");
%msg[10] = %(title =>"ERROR_BAD_ENVIRONMENT", msg => "The environment is incorrect.");
%msg[11] = %(title =>"ERROR_BAD_FORMAT", msg => "An attempt was made to load a program with an incorrect format.");
%msg[12] = %(title =>"ERROR_INVALID_ACCESS", msg => "The access code is invalid.");
%msg[13] = %(title =>"ERROR_INVALID_DATA", msg => "The data is invalid.");
%msg[14] = %(title =>"ERROR_OUTOFMEMORY", msg => "Not enough storage is available to complete this operation.");
%msg[15] = %(title =>"ERROR_INVALID_DRIVE", msg => "The system cannot find the drive specified.");
%msg[16] = %(title =>"ERROR_CURRENT_DIRECTORY", msg => "The directory cannot be removed.");
%msg[17] = %(title =>"ERROR_NOT_SAME_DEVICE", msg => "The system cannot move the file to a different disk drive.");
%msg[18] = %(title =>"ERROR_NO_MORE_FILES", msg => "There are no more files.");
%msg[19] = %(title =>"ERROR_WRITE_PROTECT", msg => "The media is write protected.");
%msg[20] = %(title =>"ERROR_BAD_UNIT", msg => "The system cannot find the device specified.");
%msg[21] = %(title =>"ERROR_NOT_READY", msg => "The device is not ready.");
%msg[22] = %(title =>"ERROR_BAD_COMMAND", msg => "The device does not recognize the command.");
%msg[23] = %(title =>"ERROR_CRC", msg => "Data error (cyclic redundancy check).");
%msg[24] = %(title =>"ERROR_BAD_LENGTH", msg => "The program issued a command but the command length is incorrect.");
%msg[25] = %(title =>"ERROR_SEEK", msg => "The drive cannot locate a specific area or track on the disk.");
%msg[26] = %(title =>"ERROR_NOT_DOS_DISK", msg => "The specified disk or diskette cannot be accessed.");
%msg[27] = %(title =>"ERROR_SECTOR_NOT_FOUND", msg => "The drive cannot find the sector requested.");
%msg[28] = %(title =>"ERROR_OUT_OF_PAPER", msg => "The printer is out of paper.");
%msg[29] = %(title =>"ERROR_WRITE_FAULT", msg => "The system cannot write to the specified device.");
%msg[30] = %(title =>"ERROR_READ_FAULT", msg => "The system cannot read from the specified device.");
%msg[31] = %(title =>"ERROR_GEN_FAILURE", msg => "A device attached to the system is not functioning.");
%msg[32] = %(title =>"ERROR_SHARING_VIOLATION", msg => "The process cannot access the file because it is being used by another process.");
%msg[33] = %(title =>"ERROR_LOCK_VIOLATION", msg => "The process cannot access the file because another process has locked a portion of the file.");
%msg[34] = %(title =>"ERROR_WRONG_DISK", msg => "The wrong diskette is in the drive. Insert %2 (Volume Serial Number: %3) into drive %1.");
%msg[36] = %(title =>"ERROR_SHARING_BUFFER_EXCEEDED", msg => "Too many files opened for sharing.");
%msg[38] = %(title =>"ERROR_HANDLE_EOF", msg => "Reached the end of the file.");
%msg[39] = %(title =>"ERROR_HANDLE_DISK_FULL", msg => "The disk is full.");
%msg[50] = %(title =>"ERROR_NOT_SUPPORTED", msg => "The request is not supported.");
%msg[51] = %(title =>"ERROR_REM_NOT_LIST", msg => "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.");
%msg[52] = %(title =>"ERROR_DUP_NAME", msg => "You were not connected because a duplicate name exists on the network. If joining a domain, go to System in Control Panel to change the computer name and try again. If joining a workgroup, choose another workgroup name.");
%msg[53] = %(title =>"ERROR_BAD_NETPATH", msg => "The network path was not found.");
%msg[54] = %(title =>"ERROR_NETWORK_BUSY", msg => "The network is busy.");
%msg[55] = %(title =>"ERROR_DEV_NOT_EXIST", msg => "The specified network resource or device is no longer available.");
%msg[56] = %(title =>"ERROR_TOO_MANY_CMDS", msg => "The network BIOS command limit has been reached.");
%msg[57] = %(title =>"ERROR_ADAP_HDW_ERR", msg => "A network adapter hardware error occurred.");
%msg[58] = %(title =>"ERROR_BAD_NET_RESP", msg => "The specified server cannot perform the requested operation.");
%msg[59] = %(title =>"ERROR_UNEXP_NET_ERR", msg => "An unexpected network error occurred.");
%msg[60] = %(title =>"ERROR_BAD_REM_ADAP", msg => "The remote adapter is not compatible.");
%msg[61] = %(title =>"ERROR_PRINTQ_FULL", msg => "The printer queue is full.");
%msg[62] = %(title =>"ERROR_NO_SPOOL_SPACE", msg => "Space to store the file waiting to be printed is not available on the server.");
%msg[63] = %(title =>"ERROR_PRINT_CANCELLED", msg => "Your file waiting to be printed was deleted.");
%msg[64] = %(title =>"ERROR_NETNAME_DELETED", msg => "The specified network name is no longer available.");
%msg[65] = %(title =>"ERROR_NETWORK_ACCESS_DENIED", msg => "Network access is denied.");
%msg[66] = %(title =>"ERROR_BAD_DEV_TYPE", msg => "The network resource type is not correct.");
%msg[67] = %(title =>"ERROR_BAD_NET_NAME", msg => "The network name cannot be found.");
%msg[68] = %(title =>"ERROR_TOO_MANY_NAMES", msg => "The name limit for the local computer network adapter card was exceeded.");
%msg[69] = %(title =>"ERROR_TOO_MANY_SESS", msg => "The network BIOS session limit was exceeded.");
%msg[70] = %(title =>"ERROR_SHARING_PAUSED", msg => "The remote server has been paused or is in the process of being started.");
%msg[71] = %(title =>"ERROR_REQ_NOT_ACCEP", msg => "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.");
%msg[72] = %(title =>"ERROR_REDIR_PAUSED", msg => "The specified printer or disk device has been paused.");
%msg[80] = %(title =>"ERROR_FILE_EXISTS", msg => "The file exists.");
%msg[82] = %(title =>"ERROR_CANNOT_MAKE", msg => "The directory or file cannot be created.");
%msg[83] = %(title =>"ERROR_FAIL_I24", msg => "Fail on INT 24.");
%msg[84] = %(title =>"ERROR_OUT_OF_STRUCTURES", msg => "Storage to process this request is not available.");
%msg[85] = %(title =>"ERROR_ALREADY_ASSIGNED", msg => "The local device name is already in use.");
%msg[86] = %(title =>"ERROR_INVALID_PASSWORD", msg => "The specified network password is not correct.");
%msg[87] = %(title =>"ERROR_INVALID_PARAMETER", msg => "The parameter is incorrect.");
%msg[88] = %(title =>"ERROR_NET_WRITE_FAULT", msg => "A write fault occurred on the network.");
%msg[89] = %(title =>"ERROR_NO_PROC_SLOTS", msg => "The system cannot start another process at this time.");
%msg[100] = %(title =>"ERROR_TOO_MANY_SEMAPHORES", msg => "Cannot create another system semaphore.");
%msg[101] = %(title =>"ERROR_EXCL_SEM_ALREADY_OWNED", msg => "The exclusive semaphore is owned by another process.");
%msg[102] = %(title =>"ERROR_SEM_IS_SET", msg => "The semaphore is set and cannot be closed.");
%msg[103] = %(title =>"ERROR_TOO_MANY_SEM_REQUESTS", msg => "The semaphore cannot be set again.");
%msg[104] = %(title =>"ERROR_INVALID_AT_INTERRUPT_TIME", msg => "Cannot request exclusive semaphores at interrupt time.");
%msg[105] = %(title =>"ERROR_SEM_OWNER_DIED", msg => "The previous ownership of this semaphore has ended.");
%msg[106] = %(title =>"ERROR_SEM_USER_LIMIT", msg => "Insert the diskette for drive %1.");
%msg[107] = %(title =>"ERROR_DISK_CHANGE", msg => "The program stopped because an alternate diskette was not inserted.");
%msg[108] = %(title =>"ERROR_DRIVE_LOCKED", msg => "The disk is in use or locked by another process.");
%msg[109] = %(title =>"ERROR_BROKEN_PIPE", msg => "The pipe has been ended.");
%msg[110] = %(title =>"ERROR_OPEN_FAILED", msg => "The system cannot open the device or file specified.");
%msg[111] = %(title =>"ERROR_BUFFER_OVERFLOW", msg => "The file name is too long.");
%msg[112] = %(title =>"ERROR_DISK_FULL", msg => "There is not enough space on the disk.");
%msg[113] = %(title =>"ERROR_NO_MORE_SEARCH_HANDLES", msg => "No more internal file identifiers available.");
%msg[114] = %(title =>"ERROR_INVALID_TARGET_HANDLE", msg => "The target internal file identifier is incorrect.");
%msg[117] = %(title =>"ERROR_INVALID_CATEGORY", msg => "The IOCTL call made by the application program is not correct.");
%msg[118] = %(title =>"ERROR_INVALID_VERIFY_SWITCH", msg => "The verify-on-write switch parameter value is not correct.");
%msg[119] = %(title =>"ERROR_BAD_DRIVER_LEVEL", msg => "The system does not support the command requested.");
%msg[120] = %(title =>"ERROR_CALL_NOT_IMPLEMENTED", msg => "This function is not supported on this system.");
%msg[121] = %(title =>"ERROR_SEM_TIMEOUT", msg => "The semaphore timeout period has expired.");
%msg[122] = %(title =>"ERROR_INSUFFICIENT_BUFFER", msg => "The data area passed to a system call is too small.");
%msg[123] = %(title =>"ERROR_INVALID_NAME", msg => "The filename, directory name, or volume label syntax is incorrect.");
%msg[124] = %(title =>"ERROR_INVALID_LEVEL", msg => "The system call level is not correct.");
%msg[125] = %(title =>"ERROR_NO_VOLUME_LABEL", msg => "The disk has no volume label.");
%msg[126] = %(title =>"ERROR_MOD_NOT_FOUND", msg => "The specified module could not be found.");
%msg[127] = %(title =>"ERROR_PROC_NOT_FOUND", msg => "The specified procedure could not be found.");
%msg[128] = %(title =>"ERROR_WAIT_NO_CHILDREN", msg => "There are no child processes to wait for.");
%msg[129] = %(title =>"ERROR_CHILD_NOT_COMPLETE", msg => "The %1 application cannot be run in Win32 mode.");
%msg[130] = %(title =>"ERROR_DIRECT_ACCESS_HANDLE", msg => "Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.");
%msg[131] = %(title =>"ERROR_NEGATIVE_SEEK", msg => "An attempt was made to move the file pointer before the beginning of the file.");
%msg[132] = %(title =>"ERROR_SEEK_ON_DEVICE", msg => "The file pointer cannot be set on the specified device or file.");
%msg[133] = %(title =>"ERROR_IS_JOIN_TARGET", msg => "A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.");
%msg[134] = %(title =>"ERROR_IS_JOINED", msg => "An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.");
%msg[135] = %(title =>"ERROR_IS_SUBSTED", msg => "An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.");
%msg[136] = %(title =>"ERROR_NOT_JOINED", msg => "The system tried to delete the JOIN of a drive that is not joined.");
%msg[137] = %(title =>"ERROR_NOT_SUBSTED", msg => "The system tried to delete the substitution of a drive that is not substituted.");
%msg[138] = %(title =>"ERROR_JOIN_TO_JOIN", msg => "The system tried to join a drive to a directory on a joined drive.");
%msg[139] = %(title =>"ERROR_SUBST_TO_SUBST", msg => "The system tried to substitute a drive to a directory on a substituted drive.");
%msg[140] = %(title =>"ERROR_JOIN_TO_SUBST", msg => "The system tried to join a drive to a directory on a substituted drive.");
%msg[141] = %(title =>"ERROR_SUBST_TO_JOIN", msg => "The system tried to SUBST a drive to a directory on a joined drive.");
%msg[142] = %(title =>"ERROR_BUSY_DRIVE", msg => "The system cannot perform a JOIN or SUBST at this time.");
%msg[143] = %(title =>"ERROR_SAME_DRIVE", msg => "The system cannot join or substitute a drive to or for a directory on the same drive.");
%msg[144] = %(title =>"ERROR_DIR_NOT_ROOT", msg => "The directory is not a subdirectory of the root directory.");
%msg[145] = %(title =>"ERROR_DIR_NOT_EMPTY", msg => "The directory is not empty.");
%msg[146] = %(title =>"ERROR_IS_SUBST_PATH", msg => "The path specified is being used in a substitute.");
%msg[147] = %(title =>"ERROR_IS_JOIN_PATH", msg => "Not enough resources are available to process this command.");
%msg[148] = %(title =>"ERROR_PATH_BUSY", msg => "The path specified cannot be used at this time.");
%msg[149] = %(title =>"ERROR_IS_SUBST_TARGET", msg => "An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.");
%msg[150] = %(title =>"ERROR_SYSTEM_TRACE", msg => "System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.");
%msg[151] = %(title =>"ERROR_INVALID_EVENT_COUNT", msg => "The number of specified semaphore events for DosMuxSemWait is not correct.");
%msg[152] = %(title =>"ERROR_TOO_MANY_MUXWAITERS", msg => "DosMuxSemWait did not execute; too many semaphores are already set.");
%msg[153] = %(title =>"ERROR_INVALID_LIST_FORMAT", msg => "The DosMuxSemWait list is not correct.");
%msg[154] = %(title =>"ERROR_LABEL_TOO_LONG", msg => "The volume label you entered exceeds the label character limit of the target file system.");
%msg[155] = %(title =>"ERROR_TOO_MANY_TCBS", msg => "Cannot create another thread.");
%msg[156] = %(title =>"ERROR_SIGNAL_REFUSED", msg => "The recipient process has refused the signal.");
%msg[157] = %(title =>"ERROR_DISCARDED", msg => "The segment is already discarded and cannot be locked.");
%msg[158] = %(title =>"ERROR_NOT_LOCKED", msg => "The segment is already unlocked.");
%msg[159] = %(title =>"ERROR_BAD_THREADID_ADDR", msg => "The address for the thread ID is not correct.");
%msg[160] = %(title =>"ERROR_BAD_ARGUMENTS", msg => "One or more arguments are not correct.");
%msg[161] = %(title =>"ERROR_BAD_PATHNAME", msg => "The specified path is invalid.");
%msg[162] = %(title =>"ERROR_SIGNAL_PENDING", msg => "A signal is already pending.");
%msg[164] = %(title =>"ERROR_MAX_THRDS_REACHED", msg => "No more threads can be created in the system.");
%msg[167] = %(title =>"ERROR_LOCK_FAILED", msg => "Unable to lock a region of a file.");
%msg[170] = %(title =>"ERROR_BUSY", msg => "The requested resource is in use.");
%msg[171] = %(title =>"ERROR_DEVICE_SUPPORT_IN_PROGRESS", msg => "Device's command support detection is in progress.");
%msg[173] = %(title =>"ERROR_CANCEL_VIOLATION", msg => "A lock request was not outstanding for the supplied cancel region.");
%msg[174] = %(title =>"ERROR_ATOMIC_LOCKS_NOT_SUPPORTED", msg => "The file system does not support atomic changes to the lock type.");
%msg[180] = %(title =>"ERROR_INVALID_SEGMENT_NUMBER", msg => "The system detected a segment number that was not correct.");
%msg[182] = %(title =>"ERROR_INVALID_ORDINAL", msg => "The operating system cannot run %1.");
%msg[183] = %(title =>"ERROR_ALREADY_EXISTS", msg => "Cannot create a file when that file already exists.");
%msg[186] = %(title =>"ERROR_INVALID_FLAG_NUMBER", msg => "The flag passed is not correct.");
%msg[187] = %(title =>"ERROR_SEM_NOT_FOUND", msg => "The specified system semaphore name was not found.");
%msg[188] = %(title =>"ERROR_INVALID_STARTING_CODESEG", msg => "The operating system cannot run %1.");
%msg[189] = %(title =>"ERROR_INVALID_STACKSEG", msg => "The operating system cannot run %1.");
%msg[190] = %(title =>"ERROR_INVALID_MODULETYPE", msg => "The operating system cannot run %1.");
%msg[191] = %(title =>"ERROR_INVALID_EXE_SIGNATURE", msg => "Cannot run %1 in Win32 mode.");
%msg[192] = %(title =>"ERROR_EXE_MARKED_INVALID", msg => "The operating system cannot run %1.");
%msg[193] = %(title =>"ERROR_BAD_EXE_FORMAT", msg => "%1 is not a valid Win32 application.");
%msg[194] = %(title =>"ERROR_ITERATED_DATA_EXCEEDS_64k", msg => "The operating system cannot run %1.");
%msg[195] = %(title =>"ERROR_INVALID_MINALLOCSIZE", msg => "The operating system cannot run %1.");
%msg[196] = %(title =>"ERROR_DYNLINK_FROM_INVALID_RING", msg => "The operating system cannot run this application program.");
%msg[197] = %(title =>"ERROR_IOPL_NOT_ENABLED", msg => "The operating system is not presently configured to run this application.");
%msg[198] = %(title =>"ERROR_INVALID_SEGDPL", msg => "The operating system cannot run %1.");
%msg[199] = %(title =>"ERROR_AUTODATASEG_EXCEEDS_64k", msg => "The operating system cannot run this application program.");
%msg[200] = %(title =>"ERROR_RING2SEG_MUST_BE_MOVABLE", msg => "The code segment cannot be greater than or equal to 64K.");
%msg[201] = %(title =>"ERROR_RELOC_CHAIN_XEEDS_SEGLIM", msg => "The operating system cannot run %1.");
%msg[202] = %(title =>"ERROR_INFLOOP_IN_RELOC_CHAIN", msg => "The operating system cannot run %1.");
%msg[203] = %(title =>"ERROR_ENVVAR_NOT_FOUND", msg => "The system could not find the environment option that was entered.");
%msg[205] = %(title =>"ERROR_NO_SIGNAL_SENT", msg => "No process in the command subtree has a signal handler.");
%msg[206] = %(title =>"ERROR_FILENAME_EXCED_RANGE", msg => "The filename or extension is too long.");
%msg[207] = %(title =>"ERROR_RING2_STACK_IN_USE", msg => "The ring 2 stack is in use.");
%msg[208] = %(title =>"ERROR_META_EXPANSION_TOO_LONG", msg => "The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified.");
%msg[209] = %(title =>"ERROR_INVALID_SIGNAL_NUMBER", msg => "The signal being posted is not correct.");
%msg[210] = %(title =>"ERROR_THREAD_1_INACTIVE", msg => "The signal handler cannot be set.");
%msg[212] = %(title =>"ERROR_LOCKED", msg => "The segment is locked and cannot be reallocated.");
%msg[214] = %(title =>"ERROR_TOO_MANY_MODULES", msg => "Too many dynamic-link modules are attached to this program or dynamic-link module.");
%msg[215] = %(title =>"ERROR_NESTING_NOT_ALLOWED", msg => "Cannot nest calls to LoadModule.");
%msg[216] = %(title =>"ERROR_EXE_MACHINE_TYPE_MISMATCH", msg => "This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher.");
%msg[217] = %(title =>"ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY", msg => "The image file %1 is signed, unable to modify.");
%msg[218] = %(title =>"ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY", msg => "The image file %1 is strong signed, unable to modify.");
%msg[220] = %(title =>"ERROR_FILE_CHECKED_OUT", msg => "This file is checked out or locked for editing by another user.");
%msg[221] = %(title =>"ERROR_CHECKOUT_REQUIRED", msg => "The file must be checked out before saving changes.");
%msg[222] = %(title =>"ERROR_BAD_FILE_TYPE", msg => "The file type being saved or retrieved has been blocked.");
%msg[223] = %(title =>"ERROR_FILE_TOO_LARGE", msg => "The file size exceeds the limit allowed and cannot be saved.");
%msg[224] = %(title =>"ERROR_FORMS_AUTH_REQUIRED", msg => "Access Denied. Before opening files in this location, you must first add the web site to your trusted sites list, browse to the web site, and select the option to login automatically.");
%msg[225] = %(title =>"ERROR_VIRUS_INFECTED", msg => "Operation did not complete successfully because the file contains a virus or potentially unwanted software.");
%msg[226] = %(title =>"ERROR_VIRUS_DELETED", msg => "This file contains a virus or potentially unwanted software and cannot be opened. Due to the nature of this virus or potentially unwanted software, the file has been removed from this location.");
%msg[229] = %(title =>"ERROR_PIPE_LOCAL", msg => "The pipe is local.");
%msg[230] = %(title =>"ERROR_BAD_PIPE", msg => "The pipe state is invalid.");
%msg[231] = %(title =>"ERROR_PIPE_BUSY", msg => "All pipe instances are busy.");
%msg[232] = %(title =>"ERROR_NO_DATA", msg => "The pipe is being closed.");
%msg[233] = %(title =>"ERROR_PIPE_NOT_CONNECTED", msg => "No process is on the other end of the pipe.");
%msg[234] = %(title =>"ERROR_MORE_DATA", msg => "More data is available.");
%msg[240] = %(title =>"ERROR_VC_DISCONNECTED", msg => "The session was canceled.");
%msg[254] = %(title =>"ERROR_INVALID_EA_NAME", msg => "The specified extended attribute name was invalid.");
%msg[255] = %(title =>"ERROR_EA_LIST_INCONSISTENT", msg => "The extended attributes are inconsistent.");
%msg[258] = %(title =>"WAIT_TIMEOUT", msg => "The wait operation timed out.");
%msg[259] = %(title =>"ERROR_NO_MORE_ITEMS", msg => "No more data is available.");
%msg[266] = %(title =>"ERROR_CANNOT_COPY", msg => "The copy functions cannot be used.");
%msg[267] = %(title =>"ERROR_DIRECTORY", msg => "The directory name is invalid.");
%msg[275] = %(title =>"ERROR_EAS_DIDNT_FIT", msg => "The extended attributes did not fit in the buffer.");
%msg[276] = %(title =>"ERROR_EA_FILE_CORRUPT", msg => "The extended attribute file on the mounted file system is corrupt.");
%msg[277] = %(title =>"ERROR_EA_TABLE_FULL", msg => "The extended attribute table file is full.");
%msg[278] = %(title =>"ERROR_INVALID_EA_HANDLE", msg => "The specified extended attribute handle is invalid.");
%msg[282] = %(title =>"ERROR_EAS_NOT_SUPPORTED", msg => "The mounted file system does not support extended attributes.");
%msg[288] = %(title =>"ERROR_NOT_OWNER", msg => "Attempt to release mutex not owned by caller.");
%msg[298] = %(title =>"ERROR_TOO_MANY_POSTS", msg => "Too many posts were made to a semaphore.");
%msg[299] = %(title =>"ERROR_PARTIAL_COPY", msg => "Only part of a ReadProcessMemory or WriteProcessMemory request was completed.");
%msg[300] = %(title =>"ERROR_OPLOCK_NOT_GRANTED", msg => "The oplock request is denied.");
%msg[301] = %(title =>"ERROR_INVALID_OPLOCK_PROTOCOL", msg => "An invalid oplock acknowledgment was received by the system.");
%msg[302] = %(title =>"ERROR_DISK_TOO_FRAGMENTED", msg => "The volume is too fragmented to complete this operation.");
%msg[303] = %(title =>"ERROR_DELETE_PENDING", msg => "The file cannot be opened because it is in the process of being deleted.");
%msg[304] = %(title =>"ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING", msg => "Short name settings may not be changed on this volume due to the global registry setting.");
%msg[305] = %(title =>"ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME", msg => "Short names are not enabled on this volume.");
%msg[306] = %(title =>"ERROR_SECURITY_STREAM_IS_INCONSISTENT", msg => "The security stream for the given volume is in an inconsistent state. Please run CHKDSK on the volume.");
%msg[307] = %(title =>"ERROR_INVALID_LOCK_RANGE", msg => "A requested file lock operation cannot be processed due to an invalid byte range.");
%msg[308] = %(title =>"ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT", msg => "The subsystem needed to support the image type is not present.");
%msg[309] = %(title =>"ERROR_NOTIFICATION_GUID_ALREADY_DEFINED", msg => "The specified file already has a notification GUID associated with it.");
%msg[310] = %(title =>"ERROR_INVALID_EXCEPTION_HANDLER", msg => "An invalid exception handler routine has been detected.");
%msg[311] = %(title =>"ERROR_DUPLICATE_PRIVILEGES", msg => "Duplicate privileges were specified for the token.");
%msg[312] = %(title =>"ERROR_NO_RANGES_PROCESSED", msg => "No ranges for the specified operation were able to be processed.");
%msg[313] = %(title =>"ERROR_NOT_ALLOWED_ON_SYSTEM_FILE", msg => "Operation is not allowed on a file system internal file.");
%msg[314] = %(title =>"ERROR_DISK_RESOURCES_EXHAUSTED", msg => "The physical resources of this disk have been exhausted.");
%msg[315] = %(title =>"ERROR_INVALID_TOKEN", msg => "The token representing the data is invalid.");
%msg[316] = %(title =>"ERROR_DEVICE_FEATURE_NOT_SUPPORTED", msg => "The device does not support the command feature.");
%msg[317] = %(title =>"ERROR_MR_MID_NOT_FOUND", msg => "The system cannot find message text for message number 0x%1 in the message file for %2.");
%msg[318] = %(title =>"ERROR_SCOPE_NOT_FOUND", msg => "The scope specified was not found.");
%msg[319] = %(title =>"ERROR_UNDEFINED_SCOPE", msg => "The Central Access Policy specified is not defined on the target machine.");
%msg[320] = %(title =>"ERROR_INVALID_CAP", msg => "The Central Access Policy obtained from Active Directory is invalid.");
%msg[321] = %(title =>"ERROR_DEVICE_UNREACHABLE", msg => "The device is unreachable.");
%msg[322] = %(title =>"ERROR_DEVICE_NO_RESOURCES", msg => "The target device has insufficient resources to complete the operation.");
%msg[323] = %(title =>"ERROR_DATA_CHECKSUM_ERROR", msg => "A data integrity checksum error occurred. Data in the file stream is corrupt.");
%msg[324] = %(title =>"ERROR_INTERMIXED_KERNEL_EA_OPERATION", msg => "An attempt was made to modify both a KERNEL and normal Extended Attribute (EA) in the same operation.");
%msg[326] = %(title =>"ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED", msg => "Device does not support file-level TRIM.");
%msg[327] = %(title =>"ERROR_OFFSET_ALIGNMENT_VIOLATION", msg => "The command specified a data offset that does not align to the device's granularity/alignment.");
%msg[328] = %(title =>"ERROR_INVALID_FIELD_IN_PARAMETER_LIST", msg => "The command specified an invalid field in its parameter list.");
%msg[329] = %(title =>"ERROR_OPERATION_IN_PROGRESS", msg => "An operation is currently in progress with the device.");
%msg[330] = %(title =>"ERROR_BAD_DEVICE_PATH", msg => "An attempt was made to send down the command via an invalid path to the target device.");
%msg[331] = %(title =>"ERROR_TOO_MANY_DESCRIPTORS", msg => "The command specified a number of descriptors that exceeded the maximum supported by the device.");
%msg[332] = %(title =>"ERROR_SCRUB_DATA_DISABLED", msg => "Scrub is disabled on the specified file.");
%msg[333] = %(title =>"ERROR_NOT_REDUNDANT_STORAGE", msg => "The storage device does not provide redundancy.");
%msg[334] = %(title =>"ERROR_RESIDENT_FILE_NOT_SUPPORTED", msg => "An operation is not supported on a resident file.");
%msg[335] = %(title =>"ERROR_COMPRESSED_FILE_NOT_SUPPORTED", msg => "An operation is not supported on a compressed file.");
%msg[336] = %(title =>"ERROR_DIRECTORY_NOT_SUPPORTED", msg => "An operation is not supported on a directory.");
%msg[337] = %(title =>"ERROR_NOT_READ_FROM_COPY", msg => "The specified copy of the requested data could not be read.");
%msg[350] = %(title =>"ERROR_FAIL_NOACTION_REBOOT", msg => "No action was taken as a system reboot is required.");
%msg[351] = %(title =>"ERROR_FAIL_SHUTDOWN", msg => "The shutdown operation failed.");
%msg[352] = %(title =>"ERROR_FAIL_RESTART", msg => "The restart operation failed.");
%msg[353] = %(title =>"ERROR_MAX_SESSIONS_REACHED", msg => "The maximum number of sessions has been reached.");
%msg[400] = %(title =>"ERROR_THREAD_MODE_ALREADY_BACKGROUND", msg => "The thread is already in background processing mode.");
%msg[401] = %(title =>"ERROR_THREAD_MODE_NOT_BACKGROUND", msg => "The thread is not in background processing mode.");
%msg[402] = %(title =>"ERROR_PROCESS_MODE_ALREADY_BACKGROUND", msg => "The process is already in background processing mode.");
%msg[403] = %(title =>"ERROR_PROCESS_MODE_NOT_BACKGROUND", msg => "The process is not in background processing mode.");
%msg[487] = %(title =>"ERROR_INVALID_ADDRESS", msg => "Attempt to access invalid address.");
%msg[1001] = %(title =>"ERROR_STACK_OVERFLOW", msg => "Recursion too deep; the stack overflowed.");
%msg[1002] = %(title =>"ERROR_INVALID_MESSAGE", msg => "The window cannot act on the sent message.");
%msg[1003] = %(title =>"ERROR_CAN_NOT_COMPLETE", msg => "Cannot complete this function.");
%msg[1004] = %(title =>"ERROR_INVALID_FLAGS", msg => "Invalid flags.");
%msg[1005] = %(title =>"ERROR_UNRECOGNIZED_VOLUME", msg => "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.");
%msg[1006] = %(title =>"ERROR_FILE_INVALID", msg => "The volume for a file has been externally altered so that the opened file is no longer valid.");
%msg[1007] = %(title =>"ERROR_FULLSCREEN_MODE", msg => "The requested operation cannot be performed in full-screen mode.");
%msg[1008] = %(title =>"ERROR_NO_TOKEN", msg => "An attempt was made to reference a token that does not exist.");
%msg[1009] = %(title =>"ERROR_BADDB", msg => "The configuration registry database is corrupt.");
%msg[1010] = %(title =>"ERROR_BADKEY", msg => "The configuration registry key is invalid.");
%msg[1011] = %(title =>"ERROR_CANTOPEN", msg => "The configuration registry key could not be opened.");
%msg[1012] = %(title =>"ERROR_CANTREAD", msg => "The configuration registry key could not be read.");
%msg[1013] = %(title =>"ERROR_CANTWRITE", msg => "The configuration registry key could not be written.");
%msg[1014] = %(title =>"ERROR_REGISTRY_RECOVERED", msg => "One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.");
%msg[1015] = %(title =>"ERROR_REGISTRY_CORRUPT", msg => "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.");
%msg[1016] = %(title =>"ERROR_REGISTRY_IO_FAILED", msg => "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.");
%msg[1017] = %(title =>"ERROR_NOT_REGISTRY_FILE", msg => "The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format.");
%msg[1018] = %(title =>"ERROR_KEY_DELETED", msg => "Illegal operation attempted on a registry key that has been marked for deletion.");
%msg[1019] = %(title =>"ERROR_NO_LOG_SPACE", msg => "System could not allocate the required space in a registry log.");
%msg[1020] = %(title =>"ERROR_KEY_HAS_CHILDREN", msg => "Cannot create a symbolic link in a registry key that already has subkeys or values.");
%msg[1021] = %(title =>"ERROR_CHILD_MUST_BE_VOLATILE", msg => "Cannot create a stable subkey under a volatile parent key.");
%msg[1022] = %(title =>"ERROR_NOTIFY_ENUM_DIR", msg => "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.");
%msg[1051] = %(title =>"ERROR_DEPENDENT_SERVICES_RUNNING", msg => "A stop control has been sent to a service that other running services are dependent on.");
%msg[1052] = %(title =>"ERROR_INVALID_SERVICE_CONTROL", msg => "The requested control is not valid for this service.");
%msg[1053] = %(title =>"ERROR_SERVICE_REQUEST_TIMEOUT", msg => "The service did not respond to the start or control request in a timely fashion.");
%msg[1054] = %(title =>"ERROR_SERVICE_NO_THREAD", msg => "A thread could not be created for the service.");
%msg[1055] = %(title =>"ERROR_SERVICE_DATABASE_LOCKED", msg => "The service database is locked.");
%msg[1056] = %(title =>"ERROR_SERVICE_ALREADY_RUNNING", msg => "An instance of the service is already running.");
%msg[1057] = %(title =>"ERROR_INVALID_SERVICE_ACCOUNT", msg => "The account name is invalid or does not exist, or the password is invalid for the account name specified.");
%msg[1058] = %(title =>"ERROR_SERVICE_DISABLED", msg => "The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.");
%msg[1059] = %(title =>"ERROR_CIRCULAR_DEPENDENCY", msg => "Circular service dependency was specified.");
%msg[1060] = %(title =>"ERROR_SERVICE_DOES_NOT_EXIST", msg => "The specified service does not exist as an installed service.");
%msg[1061] = %(title =>"ERROR_SERVICE_CANNOT_ACCEPT_CTRL", msg => "The service cannot accept control messages at this time.");
%msg[1062] = %(title =>"ERROR_SERVICE_NOT_ACTIVE", msg => "The service has not been started.");
%msg[1063] = %(title =>"ERROR_FAILED_SERVICE_CONTROLLER_CONNECT", msg => "The service process could not connect to the service controller.");
%msg[1064] = %(title =>"ERROR_EXCEPTION_IN_SERVICE", msg => "An exception occurred in the service when handling the control request.");
%msg[1065] = %(title =>"ERROR_DATABASE_DOES_NOT_EXIST", msg => "The database specified does not exist.");
%msg[1066] = %(title =>"ERROR_SERVICE_SPECIFIC_ERROR", msg => "The service has returned a service-specific error code.");
%msg[1067] = %(title =>"ERROR_PROCESS_ABORTED", msg => "The process terminated unexpectedly.");
%msg[1068] = %(title =>"ERROR_SERVICE_DEPENDENCY_FAIL", msg => "The dependency service or group failed to start.");
%msg[1069] = %(title =>"ERROR_SERVICE_LOGON_FAILED", msg => "The service did not start due to a logon failure.");
%msg[1070] = %(title =>"ERROR_SERVICE_START_HANG", msg => "After starting, the service hung in a start-pending state.");
%msg[1071] = %(title =>"ERROR_INVALID_SERVICE_LOCK", msg => "The specified service database lock is invalid.");
%msg[1072] = %(title =>"ERROR_SERVICE_MARKED_FOR_DELETE", msg => "The specified service has been marked for deletion.");
%msg[1073] = %(title =>"ERROR_SERVICE_EXISTS", msg => "The specified service already exists.");
%msg[1074] = %(title =>"ERROR_ALREADY_RUNNING_LKG", msg => "The system is currently running with the last-known-good configuration.");
%msg[1075] = %(title =>"ERROR_SERVICE_DEPENDENCY_DELETED", msg => "The dependency service does not exist or has been marked for deletion.");
%msg[1076] = %(title =>"ERROR_BOOT_ALREADY_ACCEPTED", msg => "The current boot has already been accepted for use as the last-known-good control set.");
%msg[1077] = %(title =>"ERROR_SERVICE_NEVER_STARTED", msg => "No attempts to start the service have been made since the last boot.");
%msg[1078] = %(title =>"ERROR_DUPLICATE_SERVICE_NAME", msg => "The name is already in use as either a service name or a service display name.");
%msg[1079] = %(title =>"ERROR_DIFFERENT_SERVICE_ACCOUNT", msg => "The account specified for this service is different from the account specified for other services running in the same process.");
%msg[1080] = %(title =>"ERROR_CANNOT_DETECT_DRIVER_FAILURE", msg => "Failure actions can only be set for Win32 services, not for drivers.");
%msg[1081] = %(title =>"ERROR_CANNOT_DETECT_PROCESS_ABORT", msg => "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.");
%msg[1082] = %(title =>"ERROR_NO_RECOVERY_PROGRAM", msg => "No recovery program has been configured for this service.");
%msg[1083] = %(title =>"ERROR_SERVICE_NOT_IN_EXE", msg => "The executable program that this service is configured to run in does not implement the service.");
%msg[1084] = %(title =>"ERROR_NOT_SAFEBOOT_SERVICE", msg => "This service cannot be started in Safe Mode.");
%msg[1100] = %(title =>"ERROR_END_OF_MEDIA", msg => "The physical end of the tape has been reached.");
%msg[1101] = %(title =>"ERROR_FILEMARK_DETECTED", msg => "A tape access reached a filemark.");
%msg[1102] = %(title =>"ERROR_BEGINNING_OF_MEDIA", msg => "The beginning of the tape or a partition was encountered.");
%msg[1103] = %(title =>"ERROR_SETMARK_DETECTED", msg => "A tape access reached the end of a set of files.");
%msg[1104] = %(title =>"ERROR_NO_DATA_DETECTED", msg => "No more data is on the tape.");
%msg[1105] = %(title =>"ERROR_PARTITION_FAILURE", msg => "Tape could not be partitioned.");
%msg[1106] = %(title =>"ERROR_INVALID_BLOCK_LENGTH", msg => "When accessing a new tape of a multivolume partition, the current block size is incorrect.");
%msg[1107] = %(title =>"ERROR_DEVICE_NOT_PARTITIONED", msg => "Tape partition information could not be found when loading a tape.");
%msg[1108] = %(title =>"ERROR_UNABLE_TO_LOCK_MEDIA", msg => "Unable to lock the media eject mechanism.");
%msg[1109] = %(title =>"ERROR_UNABLE_TO_UNLOAD_MEDIA", msg => "Unable to unload the media.");
%msg[1110] = %(title =>"ERROR_MEDIA_CHANGED", msg => "The media in the drive may have changed.");
%msg[1111] = %(title =>"ERROR_BUS_RESET", msg => "The I/O bus was reset.");
%msg[1112] = %(title =>"ERROR_NO_MEDIA_IN_DRIVE", msg => "No media in drive.");
%msg[1113] = %(title =>"ERROR_NO_UNICODE_TRANSLATION", msg => "No mapping for the Unicode character exists in the target multi-byte code page.");
%msg[1114] = %(title =>"ERROR_DLL_INIT_FAILED", msg => "A dynamic link library (DLL) initialization routine failed.");
%msg[1115] = %(title =>"ERROR_SHUTDOWN_IN_PROGRESS", msg => "A system shutdown is in progress.");
%msg[1116] = %(title =>"ERROR_NO_SHUTDOWN_IN_PROGRESS", msg => "Unable to abort the system shutdown because no shutdown was in progress.");
%msg[1117] = %(title =>"ERROR_IO_DEVICE", msg => "The request could not be performed because of an I/O device error.");
%msg[1118] = %(title =>"ERROR_SERIAL_NO_DEVICE", msg => "No serial device was successfully initialized. The serial driver will unload.");
%msg[1119] = %(title =>"ERROR_IRQ_BUSY", msg => "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.");
%msg[1120] = %(title =>"ERROR_MORE_WRITES", msg => "A serial I/O operation was completed by another write to the serial port. The IOCTL_SERIAL_XOFF_COUNTER reached zero.)");
%msg[1121] = %(title =>"ERROR_COUNTER_TIMEOUT", msg => "A serial I/O operation completed because the timeout period expired. The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)");
%msg[1122] = %(title =>"ERROR_FLOPPY_ID_MARK_NOT_FOUND", msg => "No ID address mark was found on the floppy disk.");
%msg[1123] = %(title =>"ERROR_FLOPPY_WRONG_CYLINDER", msg => "Mismatch between the floppy disk sector ID field and the floppy disk controller track address.");
%msg[1124] = %(title =>"ERROR_FLOPPY_UNKNOWN_ERROR", msg => "The floppy disk controller reported an error that is not recognized by the floppy disk driver.");
%msg[1125] = %(title =>"ERROR_FLOPPY_BAD_REGISTERS", msg => "The floppy disk controller returned inconsistent results in its registers.");
%msg[1126] = %(title =>"ERROR_DISK_RECALIBRATE_FAILED", msg => "While accessing the hard disk, a recalibrate operation failed, even after retries.");
%msg[1127] = %(title =>"ERROR_DISK_OPERATION_FAILED", msg => "While accessing the hard disk, a disk operation failed even after retries.");
%msg[1128] = %(title =>"ERROR_DISK_RESET_FAILED", msg => "While accessing the hard disk, a disk controller reset was needed, but even that failed.");
%msg[1129] = %(title =>"ERROR_EOM_OVERFLOW", msg => "Physical end of tape encountered.");
%msg[1130] = %(title =>"ERROR_NOT_ENOUGH_SERVER_MEMORY", msg => "Not enough server storage is available to process this command.");
%msg[1131] = %(title =>"ERROR_POSSIBLE_DEADLOCK", msg => "A potential deadlock condition has been detected.");
%msg[1132] = %(title =>"ERROR_MAPPED_ALIGNMENT", msg => "The base address or the file offset specified does not have the proper alignment.");
%msg[1140] = %(title =>"ERROR_SET_POWER_STATE_VETOED", msg => "An attempt to change the system power state was vetoed by another application or driver.");
%msg[1141] = %(title =>"ERROR_SET_POWER_STATE_FAILED", msg => "The system BIOS failed an attempt to change the system power state.");
%msg[1142] = %(title =>"ERROR_TOO_MANY_LINKS", msg => "An attempt was made to create more links on a file than the file system supports.");
%msg[1150] = %(title =>"ERROR_OLD_WIN_VERSION", msg => "The specified program requires a newer version of Windows.");
%msg[1151] = %(title =>"ERROR_APP_WRONG_OS", msg => "The specified program is not a Windows or MS-DOS program.");
%msg[1152] = %(title =>"ERROR_SINGLE_INSTANCE_APP", msg => "Cannot start more than one instance of the specified program.");
%msg[1153] = %(title =>"ERROR_RMODE_APP", msg => "The specified program was written for an earlier version of Windows.");
%msg[1154] = %(title =>"ERROR_INVALID_DLL", msg => "One of the library files needed to run this application is damaged.");
%msg[1155] = %(title =>"ERROR_NO_ASSOCIATION", msg => "No application is associated with the specified file for this operation.");
%msg[1156] = %(title =>"ERROR_DDE_FAIL", msg => "An error occurred in sending the command to the application.");
%msg[1157] = %(title =>"ERROR_DLL_NOT_FOUND", msg => "One of the library files needed to run this application cannot be found.");
%msg[1158] = %(title =>"ERROR_NO_MORE_USER_HANDLES", msg => "The current process has used all of its system allowance of handles for Window Manager objects.");
%msg[1159] = %(title =>"ERROR_MESSAGE_SYNC_ONLY", msg => "The message can be used only with synchronous operations.");
%msg[1160] = %(title =>"ERROR_SOURCE_ELEMENT_EMPTY", msg => "The indicated source element has no media.");
%msg[1161] = %(title =>"ERROR_DESTINATION_ELEMENT_FULL", msg => "The indicated destination element already contains media.");
%msg[1162] = %(title =>"ERROR_ILLEGAL_ELEMENT_ADDRESS", msg => "The indicated element does not exist.");
%msg[1163] = %(title =>"ERROR_MAGAZINE_NOT_PRESENT", msg => "The indicated element is part of a magazine that is not present.");
%msg[1164] = %(title =>"ERROR_DEVICE_REINITIALIZATION_NEEDED", msg => "The indicated device requires reinitialization due to hardware errors.");
%msg[1165] = %(title =>"ERROR_DEVICE_REQUIRES_CLEANING", msg => "The device has indicated that cleaning is required before further operations are attempted.");
%msg[1166] = %(title =>"ERROR_DEVICE_DOOR_OPEN", msg => "The device has indicated that its door is open.");
%msg[1167] = %(title =>"ERROR_DEVICE_NOT_CONNECTED", msg => "The device is not connected.");
%msg[1168] = %(title =>"ERROR_NOT_FOUND", msg => "Element not found.");
%msg[1169] = %(title =>"ERROR_NO_MATCH", msg => "There was no match for the specified key in the index.");
%msg[1170] = %(title =>"ERROR_SET_NOT_FOUND", msg => "The property set specified does not exist on the object.");
%msg[1171] = %(title =>"ERROR_POINT_NOT_FOUND", msg => "The point passed to GetMouseMovePoints is not in the buffer.");
%msg[1172] = %(title =>"ERROR_NO_TRACKING_SERVICE", msg => "The tracking (workstation) service is not running.");
%msg[1173] = %(title =>"ERROR_NO_VOLUME_ID", msg => "The Volume ID could not be found.");
%msg[1175] = %(title =>"ERROR_UNABLE_TO_REMOVE_REPLACED", msg => "Unable to remove the file to be replaced.");
%msg[1176] = %(title =>"ERROR_UNABLE_TO_MOVE_REPLACEMENT", msg => "Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name.");
%msg[1177] = %(title =>"ERROR_UNABLE_TO_MOVE_REPLACEMENT_2", msg => "Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name.");
%msg[1178] = %(title =>"ERROR_JOURNAL_DELETE_IN_PROGRESS", msg => "The volume change journal is being deleted.");
%msg[1179] = %(title =>"ERROR_JOURNAL_NOT_ACTIVE", msg => "The volume change journal is not active.");
%msg[1180] = %(title =>"ERROR_POTENTIAL_FILE_FOUND", msg => "A file was found, but it may not be the correct file.");
%msg[1181] = %(title =>"ERROR_JOURNAL_ENTRY_DELETED", msg => "The journal entry has been deleted from the journal.");
%msg[1190] = %(title =>"ERROR_SHUTDOWN_IS_SCHEDULED", msg => "A system shutdown has already been scheduled.");
%msg[1191] = %(title =>"ERROR_SHUTDOWN_USERS_LOGGED_ON", msg => "The system shutdown cannot be initiated because there are other users logged on to the computer.");
%msg[1200] = %(title =>"ERROR_BAD_DEVICE", msg => "The specified device name is invalid.");
%msg[1201] = %(title =>"ERROR_CONNECTION_UNAVAIL", msg => "The device is not currently connected but it is a remembered connection.");
%msg[1202] = %(title =>"ERROR_DEVICE_ALREADY_REMEMBERED", msg => "The local device name has a remembered connection to another network resource.");
%msg[1203] = %(title =>"ERROR_NO_NET_OR_BAD_PATH", msg => "The network path was either typed incorrectly, does not exist, or the network provider is not currently available. Please try retyping the path or contact your network administrator.");
%msg[1204] = %(title =>"ERROR_BAD_PROVIDER", msg => "The specified network provider name is invalid.");
%msg[1205] = %(title =>"ERROR_CANNOT_OPEN_PROFILE", msg => "Unable to open the network connection profile.");
%msg[1206] = %(title =>"ERROR_BAD_PROFILE", msg => "The network connection profile is corrupted.");
%msg[1207] = %(title =>"ERROR_NOT_CONTAINER", msg => "Cannot enumerate a noncontainer.");
%msg[1208] = %(title =>"ERROR_EXTENDED_ERROR", msg => "An extended error has occurred.");
%msg[1209] = %(title =>"ERROR_INVALID_GROUPNAME", msg => "The format of the specified group name is invalid.");
%msg[1210] = %(title =>"ERROR_INVALID_COMPUTERNAME", msg => "The format of the specified computer name is invalid.");
%msg[1211] = %(title =>"ERROR_INVALID_EVENTNAME", msg => "The format of the specified event name is invalid.");
%msg[1212] = %(title =>"ERROR_INVALID_DOMAINNAME", msg => "The format of the specified domain name is invalid.");
%msg[1213] = %(title =>"ERROR_INVALID_SERVICENAME", msg => "The format of the specified service name is invalid.");
%msg[1214] = %(title =>"ERROR_INVALID_NETNAME", msg => "The format of the specified network name is invalid.");
%msg[1215] = %(title =>"ERROR_INVALID_SHARENAME", msg => "The format of the specified share name is invalid.");
%msg[1216] = %(title =>"ERROR_INVALID_PASSWORDNAME", msg => "The format of the specified password is invalid.");
%msg[1217] = %(title =>"ERROR_INVALID_MESSAGENAME", msg => "The format of the specified message name is invalid.");
%msg[1218] = %(title =>"ERROR_INVALID_MESSAGEDEST", msg => "The format of the specified message destination is invalid.");
%msg[1219] = %(title =>"ERROR_SESSION_CREDENTIAL_CONFLICT", msg => "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.");
%msg[1220] = %(title =>"ERROR_REMOTE_SESSION_LIMIT_EXCEEDED", msg => "An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.");
%msg[1221] = %(title =>"ERROR_DUP_DOMAINNAME", msg => "The workgroup or domain name is already in use by another computer on the network.");
%msg[1222] = %(title =>"ERROR_NO_NETWORK", msg => "The network is not present or not started.");
%msg[1223] = %(title =>"ERROR_CANCELLED", msg => "The operation was canceled by the user.");
%msg[1224] = %(title =>"ERROR_USER_MAPPED_FILE", msg => "The requested operation cannot be performed on a file with a user-mapped section open.");
%msg[1225] = %(title =>"ERROR_CONNECTION_REFUSED", msg => "The remote computer refused the network connection.");
%msg[1226] = %(title =>"ERROR_GRACEFUL_DISCONNECT", msg => "The network connection was gracefully closed.");
%msg[1227] = %(title =>"ERROR_ADDRESS_ALREADY_ASSOCIATED", msg => "The network transport endpoint already has an address associated with it.");
%msg[1228] = %(title =>"ERROR_ADDRESS_NOT_ASSOCIATED", msg => "An address has not yet been associated with the network endpoint.");
%msg[1229] = %(title =>"ERROR_CONNECTION_INVALID", msg => "An operation was attempted on a nonexistent network connection.");
%msg[1230] = %(title =>"ERROR_CONNECTION_ACTIVE", msg => "An invalid operation was attempted on an active network connection.");
%msg[1231] = %(title =>"ERROR_NETWORK_UNREACHABLE", msg => "The network location cannot be reached. For information about network troubleshooting, see Windows Help.");
%msg[1232] = %(title =>"ERROR_HOST_UNREACHABLE", msg => "The network location cannot be reached. For information about network troubleshooting, see Windows Help.");
%msg[1233] = %(title =>"ERROR_PROTOCOL_UNREACHABLE", msg => "The network location cannot be reached. For information about network troubleshooting, see Windows Help.");
%msg[1234] = %(title =>"ERROR_PORT_UNREACHABLE", msg => "No service is operating at the destination network endpoint on the remote system.");
%msg[1235] = %(title =>"ERROR_REQUEST_ABORTED", msg => "The request was aborted.");
%msg[1236] = %(title =>"ERROR_CONNECTION_ABORTED", msg => "The network connection was aborted by the local system.");
%msg[1237] = %(title =>"ERROR_RETRY", msg => "The operation could not be completed. A retry should be performed.");
%msg[1238] = %(title =>"ERROR_CONNECTION_COUNT_LIMIT", msg => "A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.");
%msg[1239] = %(title =>"ERROR_LOGIN_TIME_RESTRICTION", msg => "Attempting to log in during an unauthorized time of day for this account.");
%msg[1240] = %(title =>"ERROR_LOGIN_WKSTA_RESTRICTION", msg => "The account is not authorized to log in from this station.");
%msg[1241] = %(title =>"ERROR_INCORRECT_ADDRESS", msg => "The network address could not be used for the operation requested.");
%msg[1242] = %(title =>"ERROR_ALREADY_REGISTERED", msg => "The service is already registered.");
%msg[1243] = %(title =>"ERROR_SERVICE_NOT_FOUND", msg => "The specified service does not exist.");
%msg[1244] = %(title =>"ERROR_NOT_AUTHENTICATED", msg => "The operation being requested was not performed because the user has not been authenticated.");
%msg[1245] = %(title =>"ERROR_NOT_LOGGED_ON", msg => "The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist.");
%msg[1246] = %(title =>"ERROR_CONTINUE", msg => "Continue with work in progress.");
%msg[1247] = %(title =>"ERROR_ALREADY_INITIALIZED", msg => "An attempt was made to perform an initialization operation when initialization has already been completed.");
%msg[1248] = %(title =>"ERROR_NO_MORE_DEVICES", msg => "No more local devices.");
%msg[1249] = %(title =>"ERROR_NO_SUCH_SITE", msg => "The specified site does not exist.");
%msg[1250] = %(title =>"ERROR_DOMAIN_CONTROLLER_EXISTS", msg => "A domain controller with the specified name already exists.");
%msg[1251] = %(title =>"ERROR_ONLY_IF_CONNECTED", msg => "This operation is supported only when you are connected to the server.");
%msg[1252] = %(title =>"ERROR_OVERRIDE_NOCHANGES", msg => "The group policy framework should call the extension even if there are no changes.");
%msg[1253] = %(title =>"ERROR_BAD_USER_PROFILE", msg => "The specified user does not have a valid profile.");
%msg[1254] = %(title =>"ERROR_NOT_SUPPORTED_ON_SBS", msg => "This operation is not supported on a computer running Windows Server 2003 for Small Business Server.");
%msg[1255] = %(title =>"ERROR_SERVER_SHUTDOWN_IN_PROGRESS", msg => "The server machine is shutting down.");
%msg[1256] = %(title =>"ERROR_HOST_DOWN", msg => "The remote system is not available. For information about network troubleshooting, see Windows Help.");
%msg[1257] = %(title =>"ERROR_NON_ACCOUNT_SID", msg => "The security identifier provided is not from an account domain.");
%msg[1258] = %(title =>"ERROR_NON_DOMAIN_SID", msg => "The security identifier provided does not have a domain component.");
%msg[1259] = %(title =>"ERROR_APPHELP_BLOCK", msg => "AppHelp dialog canceled thus preventing the application from starting.");
%msg[1260] = %(title =>"ERROR_ACCESS_DISABLED_BY_POLICY", msg => "This program is blocked by group policy. For more information, contact your system administrator.");
%msg[1261] = %(title =>"ERROR_REG_NAT_CONSUMPTION", msg => "A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific.");
%msg[1262] = %(title =>"ERROR_CSCSHARE_OFFLINE", msg => "The share is currently offline or does not exist.");
%msg[1263] = %(title =>"ERROR_PKINIT_FAILURE", msg => "The Kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. There is more information in the system event log.");
%msg[1264] = %(title =>"ERROR_SMARTCARD_SUBSYSTEM_FAILURE", msg => "The Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem.");
%msg[1265] = %(title =>"ERROR_DOWNGRADE_DETECTED", msg => "The system cannot contact a domain controller to service the authentication request. Please try again later.");
%msg[1271] = %(title =>"ERROR_MACHINE_LOCKED", msg => "The machine is locked and cannot be shut down without the force option.");
%msg[1273] = %(title =>"ERROR_CALLBACK_SUPPLIED_INVALID_DATA", msg => "An application-defined callback gave invalid data when called.");
%msg[1274] = %(title =>"ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED", msg => "The group policy framework should call the extension in the synchronous foreground policy refresh.");
%msg[1275] = %(title =>"ERROR_DRIVER_BLOCKED", msg => "This driver has been blocked from loading.");
%msg[1276] = %(title =>"ERROR_INVALID_IMPORT_OF_NON_DLL", msg => "A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.");
%msg[1277] = %(title =>"ERROR_ACCESS_DISABLED_WEBBLADE", msg => "Windows cannot open this program since it has been disabled.");
%msg[1278] = %(title =>"ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER", msg => "Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.");
%msg[1279] = %(title =>"ERROR_RECOVERY_FAILURE", msg => "A transaction recover failed.");
%msg[1280] = %(title =>"ERROR_ALREADY_FIBER", msg => "The current thread has already been converted to a fiber.");
%msg[1281] = %(title =>"ERROR_ALREADY_THREAD", msg => "The current thread has already been converted from a fiber.");
%msg[1282] = %(title =>"ERROR_STACK_BUFFER_OVERRUN", msg => "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.");
%msg[1283] = %(title =>"ERROR_PARAMETER_QUOTA_EXCEEDED", msg => "Data present in one of the parameters is more than the function can operate on.");
%msg[1284] = %(title =>"ERROR_DEBUGGER_INACTIVE", msg => "An attempt to do an operation on a debug object failed because the object is in the process of being deleted.");
%msg[1285] = %(title =>"ERROR_DELAY_LOAD_FAILED", msg => "An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.");
%msg[1286] = %(title =>"ERROR_VDM_DISALLOWED", msg => "%1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator.");
%msg[1287] = %(title =>"ERROR_UNIDENTIFIED_ERROR", msg => "Insufficient information exists to identify the cause of failure.");
%msg[1288] = %(title =>"ERROR_INVALID_CRUNTIME_PARAMETER", msg => "The parameter passed to a C runtime function is incorrect.");
%msg[1289] = %(title =>"ERROR_BEYOND_VDL", msg => "The operation occurred beyond the valid data length of the file.");
%msg[1290] = %(title =>"ERROR_INCOMPATIBLE_SERVICE_SID_TYPE", msg => "The service start failed since one or more services in the same process have an incompatible service SID type setting. A service with restricted service SID type can only coexist in the same process with other services with a restricted SID type. If the service SID type for this service was just configured, the hosting process must be restarted in order to start this service.On Windows Server 2003 and Windows XP, an unrestricted service cannot coexist in the same process with other services. The service with the unrestricted service SID type must be moved to an owned process in order to start this service.");
%msg[1291] = %(title =>"ERROR_DRIVER_PROCESS_TERMINATED", msg => "The process hosting the driver for this device has been terminated.");
%msg[1292] = %(title =>"ERROR_IMPLEMENTATION_LIMIT", msg => "An operation attempted to exceed an implementation-defined limit.");
%msg[1293] = %(title =>"ERROR_PROCESS_IS_PROTECTED", msg => "Either the target process, or the target thread's containing process, is a protected process.");
%msg[1294] = %(title =>"ERROR_SERVICE_NOTIFY_CLIENT_LAGGING", msg => "The service notification client is lagging too far behind the current state of services in the machine.");
%msg[1295] = %(title =>"ERROR_DISK_QUOTA_EXCEEDED", msg => "The requested file operation failed because the storage quota was exceeded. To free up disk space, move files to a different location or delete unnecessary files. For more information, contact your system administrator.");
%msg[1296] = %(title =>"ERROR_CONTENT_BLOCKED", msg => "The requested file operation failed because the storage policy blocks that type of file. For more information, contact your system administrator.");
%msg[1297] = %(title =>"ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE", msg => "A privilege that the service requires to function properly does not exist in the service account configuration. You may use the Services Microsoft Management Console (MMC) snap-in (services.msc) and the Local Security Settings MMC snap-in (secpol.msc) to view the service configuration and the account configuration.");
%msg[1298] = %(title =>"ERROR_APP_HANG", msg => "A thread involved in this operation appears to be unresponsive.");
%msg[1299] = %(title =>"ERROR_INVALID_LABEL", msg => "Indicates a particular Security ID may not be assigned as the label of an object.");
%msg[13000] = %(title =>"ERROR_IPSEC_QM_POLICY_EXISTS", msg => "The specified quick mode policy already exists.");
%msg[13001] = %(title =>"ERROR_IPSEC_QM_POLICY_NOT_FOUND", msg => "The specified quick mode policy was not found.");
%msg[13002] = %(title =>"ERROR_IPSEC_QM_POLICY_IN_USE", msg => "The specified quick mode policy is being used.");
%msg[13003] = %(title =>"ERROR_IPSEC_MM_POLICY_EXISTS", msg => "The specified main mode policy already exists.");
%msg[13004] = %(title =>"ERROR_IPSEC_MM_POLICY_NOT_FOUND", msg => "The specified main mode policy was not found.");
%msg[13005] = %(title =>"ERROR_IPSEC_MM_POLICY_IN_USE", msg => "The specified main mode policy is being used.");
%msg[13006] = %(title =>"ERROR_IPSEC_MM_FILTER_EXISTS", msg => "The specified main mode filter already exists.");
%msg[13007] = %(title =>"ERROR_IPSEC_MM_FILTER_NOT_FOUND", msg => "The specified main mode filter was not found.");
%msg[13008] = %(title =>"ERROR_IPSEC_TRANSPORT_FILTER_EXISTS", msg => "The specified transport mode filter already exists.");
%msg[13009] = %(title =>"ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND", msg => "The specified transport mode filter does not exist.");
%msg[13010] = %(title =>"ERROR_IPSEC_MM_AUTH_EXISTS", msg => "The specified main mode authentication list exists.");
%msg[13011] = %(title =>"ERROR_IPSEC_MM_AUTH_NOT_FOUND", msg => "The specified main mode authentication list was not found.");
%msg[13012] = %(title =>"ERROR_IPSEC_MM_AUTH_IN_USE", msg => "The specified main mode authentication list is being used.");
%msg[13013] = %(title =>"ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND", msg => "The specified default main mode policy was not found.");
%msg[13014] = %(title =>"ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND", msg => "The specified default main mode authentication list was not found.");
%msg[13015] = %(title =>"ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND", msg => "The specified default quick mode policy was not found.");
%msg[13016] = %(title =>"ERROR_IPSEC_TUNNEL_FILTER_EXISTS", msg => "The specified tunnel mode filter exists.");
%msg[13017] = %(title =>"ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND", msg => "The specified tunnel mode filter was not found.");
%msg[13018] = %(title =>"ERROR_IPSEC_MM_FILTER_PENDING_DELETION", msg => "The Main Mode filter is pending deletion.");
%msg[13019] = %(title =>"ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION", msg => "The transport filter is pending deletion.");
%msg[13020] = %(title =>"ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION", msg => "The tunnel filter is pending deletion.");
%msg[13021] = %(title =>"ERROR_IPSEC_MM_POLICY_PENDING_DELETION", msg => "The Main Mode policy is pending deletion.");
%msg[13022] = %(title =>"ERROR_IPSEC_MM_AUTH_PENDING_DELETION", msg => "The Main Mode authentication bundle is pending deletion.");
%msg[13023] = %(title =>"ERROR_IPSEC_QM_POLICY_PENDING_DELETION", msg => "The Quick Mode policy is pending deletion.");
%msg[13024] = %(title =>"WARNING_IPSEC_MM_POLICY_PRUNED", msg => "The Main Mode policy was successfully added, but some of the requested offers are not supported.");
%msg[13025] = %(title =>"WARNING_IPSEC_QM_POLICY_PRUNED", msg => "The Quick Mode policy was successfully added, but some of the requested offers are not supported.");
%msg[13800] = %(title =>"ERROR_IPSEC_IKE_NEG_STATUS_BEGIN", msg => "ERROR_IPSEC_IKE_NEG_STATUS_BEGIN");
%msg[13801] = %(title =>"ERROR_IPSEC_IKE_AUTH_FAIL", msg => "IKE authentication credentials are unacceptable.");
%msg[13802] = %(title =>"ERROR_IPSEC_IKE_ATTRIB_FAIL", msg => "IKE security attributes are unacceptable.");
%msg[13803] = %(title =>"ERROR_IPSEC_IKE_NEGOTIATION_PENDING", msg => "IKE Negotiation in progress.");
%msg[13804] = %(title =>"ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR", msg => "General processing error.");
%msg[13805] = %(title =>"ERROR_IPSEC_IKE_TIMED_OUT", msg => "Negotiation timed out.");
%msg[13806] = %(title =>"ERROR_IPSEC_IKE_NO_CERT", msg => "IKE failed to find valid machine certificate. Contact your Network Security Administrator about installing a valid certificate in the appropriate Certificate Store.");
%msg[13807] = %(title =>"ERROR_IPSEC_IKE_SA_DELETED", msg => "IKE SA deleted by peer before establishment completed.");
%msg[13808] = %(title =>"ERROR_IPSEC_IKE_SA_REAPED", msg => "IKE SA deleted before establishment completed.");
%msg[13809] = %(title =>"ERROR_IPSEC_IKE_MM_ACQUIRE_DROP", msg => "Negotiation request sat in Queue too long.");
%msg[13810] = %(title =>"ERROR_IPSEC_IKE_QM_ACQUIRE_DROP", msg => "Negotiation request sat in Queue too long.");
%msg[13811] = %(title =>"ERROR_IPSEC_IKE_QUEUE_DROP_MM", msg => "Negotiation request sat in Queue too long.");
%msg[13812] = %(title =>"ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM", msg => "Negotiation request sat in Queue too long.");
%msg[13813] = %(title =>"ERROR_IPSEC_IKE_DROP_NO_RESPONSE", msg => "No response from peer.");
%msg[13814] = %(title =>"ERROR_IPSEC_IKE_MM_DELAY_DROP", msg => "Negotiation took too long.");
%msg[13815] = %(title =>"ERROR_IPSEC_IKE_QM_DELAY_DROP", msg => "Negotiation took too long.");
%msg[13816] = %(title =>"ERROR_IPSEC_IKE_ERROR", msg => "Unknown error occurred.");
%msg[13817] = %(title =>"ERROR_IPSEC_IKE_CRL_FAILED", msg => "Certificate Revocation Check failed.");
%msg[13818] = %(title =>"ERROR_IPSEC_IKE_INVALID_KEY_USAGE", msg => "Invalid certificate key usage.");
%msg[13819] = %(title =>"ERROR_IPSEC_IKE_INVALID_CERT_TYPE", msg => "Invalid certificate type.");
%msg[13820] = %(title =>"ERROR_IPSEC_IKE_NO_PRIVATE_KEY", msg => "IKE negotiation failed because the machine certificate used does not have a private key. IPsec certificates require a private key. Contact your Network Security administrator about replacing with a certificate that has a private key.");
%msg[13821] = %(title =>"ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY", msg => "Simultaneous rekeys were detected.");
%msg[13822] = %(title =>"ERROR_IPSEC_IKE_DH_FAIL", msg => "Failure in Diffie-Hellman computation.");
%msg[13823] = %(title =>"ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED", msg => "Don't know how to process critical payload.");
%msg[13824] = %(title =>"ERROR_IPSEC_IKE_INVALID_HEADER", msg => "Invalid header.");
%msg[13825] = %(title =>"ERROR_IPSEC_IKE_NO_POLICY", msg => "No policy configured.");
%msg[13826] = %(title =>"ERROR_IPSEC_IKE_INVALID_SIGNATURE", msg => "Failed to verify signature.");
%msg[13827] = %(title =>"ERROR_IPSEC_IKE_KERBEROS_ERROR", msg => "Failed to authenticate using Kerberos.");
%msg[13828] = %(title =>"ERROR_IPSEC_IKE_NO_PUBLIC_KEY", msg => "Peer's certificate did not have a public key.");
%msg[13829] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR", msg => "Error processing error payload.");
%msg[13830] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR_SA", msg => "Error processing SA payload.");
%msg[13831] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR_PROP", msg => "Error processing Proposal payload.");
%msg[13832] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR_TRANS", msg => "Error processing Transform payload.");
%msg[13833] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR_KE", msg => "Error processing KE payload.");
%msg[13834] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR_ID", msg => "Error processing ID payload.");
%msg[13835] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR_CERT", msg => "Error processing Cert payload.");
%msg[13836] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ", msg => "Error processing Certificate Request payload.");
%msg[13837] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR_HASH", msg => "Error processing Hash payload.");
%msg[13838] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR_SIG", msg => "Error processing Signature payload.");
%msg[13839] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR_NONCE", msg => "Error processing Nonce payload.");
%msg[13840] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY", msg => "Error processing Notify payload.");
%msg[13841] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR_DELETE", msg => "Error processing Delete Payload.");
%msg[13842] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR", msg => "Error processing VendorId payload.");
%msg[13843] = %(title =>"ERROR_IPSEC_IKE_INVALID_PAYLOAD", msg => "Invalid payload received.");
%msg[13844] = %(title =>"ERROR_IPSEC_IKE_LOAD_SOFT_SA", msg => "Soft SA loaded.");
%msg[13845] = %(title =>"ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN", msg => "Soft SA torn down.");
%msg[13846] = %(title =>"ERROR_IPSEC_IKE_INVALID_COOKIE", msg => "Invalid cookie received.");
%msg[13847] = %(title =>"ERROR_IPSEC_IKE_NO_PEER_CERT", msg => "Peer failed to send valid machine certificate.");
%msg[13848] = %(title =>"ERROR_IPSEC_IKE_PEER_CRL_FAILED", msg => "Certification Revocation check of peer's certificate failed.");
%msg[13849] = %(title =>"ERROR_IPSEC_IKE_POLICY_CHANGE", msg => "New policy invalidated SAs formed with old policy.");
%msg[13850] = %(title =>"ERROR_IPSEC_IKE_NO_MM_POLICY", msg => "There is no available Main Mode IKE policy.");
%msg[13851] = %(title =>"ERROR_IPSEC_IKE_NOTCBPRIV", msg => "Failed to enabled TCB privilege.");
%msg[13852] = %(title =>"ERROR_IPSEC_IKE_SECLOADFAIL", msg => "Failed to load SECURITY.DLL.");
%msg[13853] = %(title =>"ERROR_IPSEC_IKE_FAILSSPINIT", msg => "Failed to obtain security function table dispatch address from SSPI.");
%msg[13854] = %(title =>"ERROR_IPSEC_IKE_FAILQUERYSSP", msg => "Failed to query Kerberos package to obtain max token size.");
%msg[13855] = %(title =>"ERROR_IPSEC_IKE_SRVACQFAIL", msg => "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.");
%msg[13856] = %(title =>"ERROR_IPSEC_IKE_SRVQUERYCRED", msg => "Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service ( ).");
%msg[13857] = %(title =>"ERROR_IPSEC_IKE_GETSPIFAIL", msg => "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.");
%msg[13858] = %(title =>"ERROR_IPSEC_IKE_INVALID_FILTER", msg => "Given filter is invalid.");
%msg[13859] = %(title =>"ERROR_IPSEC_IKE_OUT_OF_MEMORY", msg => "Memory allocation failed.");
%msg[13860] = %(title =>"ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED", msg => "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.");
%msg[13861] = %(title =>"ERROR_IPSEC_IKE_INVALID_POLICY", msg => "Invalid policy.");
%msg[13862] = %(title =>"ERROR_IPSEC_IKE_UNKNOWN_DOI", msg => "Invalid DOI.");
%msg[13863] = %(title =>"ERROR_IPSEC_IKE_INVALID_SITUATION", msg => "Invalid situation.");
%msg[13864] = %(title =>"ERROR_IPSEC_IKE_DH_FAILURE", msg => "Diffie-Hellman failure.");
%msg[13865] = %(title =>"ERROR_IPSEC_IKE_INVALID_GROUP", msg => "Invalid Diffie-Hellman group.");
%msg[13866] = %(title =>"ERROR_IPSEC_IKE_ENCRYPT", msg => "Error encrypting payload.");
%msg[13867] = %(title =>"ERROR_IPSEC_IKE_DECRYPT", msg => "Error decrypting payload.");
%msg[13868] = %(title =>"ERROR_IPSEC_IKE_POLICY_MATCH", msg => "Policy match error.");
%msg[13869] = %(title =>"ERROR_IPSEC_IKE_UNSUPPORTED_ID", msg => "Unsupported ID.");
%msg[13870] = %(title =>"ERROR_IPSEC_IKE_INVALID_HASH", msg => "Hash verification failed.");
%msg[13871] = %(title =>"ERROR_IPSEC_IKE_INVALID_HASH_ALG", msg => "Invalid hash algorithm.");
%msg[13872] = %(title =>"ERROR_IPSEC_IKE_INVALID_HASH_SIZE", msg => "Invalid hash size.");
%msg[13873] = %(title =>"ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG", msg => "Invalid encryption algorithm.");
%msg[13874] = %(title =>"ERROR_IPSEC_IKE_INVALID_AUTH_ALG", msg => "Invalid authentication algorithm.");
%msg[13875] = %(title =>"ERROR_IPSEC_IKE_INVALID_SIG", msg => "Invalid certificate signature.");
%msg[13876] = %(title =>"ERROR_IPSEC_IKE_LOAD_FAILED", msg => "Load failed.");
%msg[13877] = %(title =>"ERROR_IPSEC_IKE_RPC_DELETE", msg => "Deleted via RPC call.");
%msg[13878] = %(title =>"ERROR_IPSEC_IKE_BENIGN_REINIT", msg => "Temporary state created to perform reinitialization. This is not a real failure.");
%msg[13879] = %(title =>"ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY", msg => "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.");
%msg[13880] = %(title =>"ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION", msg => "The recipient cannot handle version of IKE specified in the header.");
%msg[13881] = %(title =>"ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN", msg => "Key length in certificate is too small for configured security requirements.");
%msg[13882] = %(title =>"ERROR_IPSEC_IKE_MM_LIMIT", msg => "Max number of established MM SAs to peer exceeded.");
%msg[13883] = %(title =>"ERROR_IPSEC_IKE_NEGOTIATION_DISABLED", msg => "IKE received a policy that disables negotiation.");
%msg[13884] = %(title =>"ERROR_IPSEC_IKE_QM_LIMIT", msg => "Reached maximum quick mode limit for the main mode. New main mode will be started.");
%msg[13885] = %(title =>"ERROR_IPSEC_IKE_MM_EXPIRED", msg => "Main mode SA lifetime expired or peer sent a main mode delete.");
%msg[13886] = %(title =>"ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID", msg => "Main mode SA assumed to be invalid because peer stopped responding.");
%msg[13887] = %(title =>"ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH", msg => "Certificate doesn't chain to a trusted root in IPsec policy.");
%msg[13888] = %(title =>"ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID", msg => "Received unexpected message ID.");
%msg[13889] = %(title =>"ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD", msg => "Received invalid authentication offers.");
%msg[13890] = %(title =>"ERROR_IPSEC_IKE_DOS_COOKIE_SENT", msg => "Sent DoS cookie notify to initiator.");
%msg[13891] = %(title =>"ERROR_IPSEC_IKE_SHUTTING_DOWN", msg => "IKE service is shutting down.");
%msg[13892] = %(title =>"ERROR_IPSEC_IKE_CGA_AUTH_FAILED", msg => "Could not verify binding between CGA address and certificate.");
%msg[13893] = %(title =>"ERROR_IPSEC_IKE_PROCESS_ERR_NATOA", msg => "Error processing NatOA payload.");
%msg[13894] = %(title =>"ERROR_IPSEC_IKE_INVALID_MM_FOR_QM", msg => "Parameters of the main mode are invalid for this quick mode.");
%msg[13895] = %(title =>"ERROR_IPSEC_IKE_QM_EXPIRED", msg => "Quick mode SA was expired by IPsec driver.");
%msg[13896] = %(title =>"ERROR_IPSEC_IKE_TOO_MANY_FILTERS", msg => "Too many dynamically added IKEEXT filters were detected.");
%msg[13897] = %(title =>"ERROR_IPSEC_IKE_NEG_STATUS_END", msg => "ERROR_IPSEC_IKE_NEG_STATUS_END");
%msg[13898] = %(title =>"ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL", msg => "NAP reauth succeeded and must delete the dummy NAP IKEv2 tunnel.");
%msg[13899] = %(title =>"ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE", msg => "Error in assigning inner IP address to initiator in tunnel mode.");
%msg[13900] = %(title =>"ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING", msg => "Require configuration payload missing.");
%msg[13901] = %(title =>"ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING", msg => "A negotiation running as the security principle who issued the connection is in progress.");
%msg[13902] = %(title =>"ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS", msg => "SA was deleted due to IKEv1/AuthIP co-existence suppress check.");
%msg[13903] = %(title =>"ERROR_IPSEC_IKE_RATELIMIT_DROP", msg => "Incoming SA request was dropped due to peer IP address rate limiting.");
%msg[13904] = %(title =>"ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE", msg => "Peer does not support MOBIKE.");
%msg[13905] = %(title =>"ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE", msg => "SA establishment is not authorized.");
%msg[13906] = %(title =>"ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE", msg => "SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential.");
%msg[13907] = %(title =>"ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY", msg => "SA establishment is not authorized. You may need to enter updated or different credentials such as a smartcard.");
%msg[13908] = %(title =>"ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE", msg => "SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential. This might be related to certificate-to-account mapping failure for the SA.");
%msg[13909] = %(title =>"ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END", msg => "ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END");
%msg[13910] = %(title =>"ERROR_IPSEC_BAD_SPI", msg => "The SPI in the packet does not match a valid IPsec SA.");
%msg[13911] = %(title =>"ERROR_IPSEC_SA_LIFETIME_EXPIRED", msg => "Packet was received on an IPsec SA whose lifetime has expired.");
%msg[13912] = %(title =>"ERROR_IPSEC_WRONG_SA", msg => "Packet was received on an IPsec SA that does not match the packet characteristics.");
%msg[13913] = %(title =>"ERROR_IPSEC_REPLAY_CHECK_FAILED", msg => "Packet sequence number replay check failed.");
%msg[13914] = %(title =>"ERROR_IPSEC_INVALID_PACKET", msg => "IPsec header and/or trailer in the packet is invalid.");
%msg[13915] = %(title =>"ERROR_IPSEC_INTEGRITY_CHECK_FAILED", msg => "IPsec integrity check failed.");
%msg[13916] = %(title =>"ERROR_IPSEC_CLEAR_TEXT_DROP", msg => "IPsec dropped a clear text packet.");
%msg[13917] = %(title =>"ERROR_IPSEC_AUTH_FIREWALL_DROP", msg => "IPsec dropped an incoming ESP packet in authenticated firewall mode. This drop is benign.");
%msg[13918] = %(title =>"ERROR_IPSEC_THROTTLE_DROP", msg => "IPsec dropped a packet due to DoS throttling.");
%msg[13925] = %(title =>"ERROR_IPSEC_DOSP_BLOCK", msg => "IPsec DoS Protection matched an explicit block rule.");
%msg[13926] = %(title =>"ERROR_IPSEC_DOSP_RECEIVED_MULTICAST", msg => "IPsec DoS Protection received an IPsec specific multicast packet which is not allowed.");
%msg[13927] = %(title =>"ERROR_IPSEC_DOSP_INVALID_PACKET", msg => "IPsec DoS Protection received an incorrectly formatted packet.");
%msg[13928] = %(title =>"ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED", msg => "IPsec DoS Protection failed to look up state.");
%msg[13929] = %(title =>"ERROR_IPSEC_DOSP_MAX_ENTRIES", msg => "IPsec DoS Protection failed to create state because the maximum number of entries allowed by policy has been reached.");
%msg[13930] = %(title =>"ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED", msg => "IPsec DoS Protection received an IPsec negotiation packet for a keying module which is not allowed by policy.");
%msg[13931] = %(title =>"ERROR_IPSEC_DOSP_NOT_INSTALLED", msg => "IPsec DoS Protection has not been enabled.");
%msg[13932] = %(title =>"ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES", msg => "IPsec DoS Protection failed to create a per internal IP rate limit queue because the maximum number of queues allowed by policy has been reached.");
%msg[14000] = %(title =>"ERROR_SXS_SECTION_NOT_FOUND", msg => "The requested section was not present in the activation context.");
%msg[14001] = %(title =>"ERROR_SXS_CANT_GEN_ACTCTX", msg => "The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe tool for more detail.");
%msg[14002] = %(title =>"ERROR_SXS_INVALID_ACTCTXDATA_FORMAT", msg => "The application binding data format is invalid.");
%msg[14003] = %(title =>"ERROR_SXS_ASSEMBLY_NOT_FOUND", msg => "The referenced assembly is not installed on your system.");
%msg[14004] = %(title =>"ERROR_SXS_MANIFEST_FORMAT_ERROR", msg => "The manifest file does not begin with the required tag and format information.");
%msg[14005] = %(title =>"ERROR_SXS_MANIFEST_PARSE_ERROR", msg => "The manifest file contains one or more syntax errors.");
%msg[14006] = %(title =>"ERROR_SXS_ACTIVATION_CONTEXT_DISABLED", msg => "The application attempted to activate a disabled activation context.");
%msg[14007] = %(title =>"ERROR_SXS_KEY_NOT_FOUND", msg => "The requested lookup key was not found in any active activation context.");
%msg[14008] = %(title =>"ERROR_SXS_VERSION_CONFLICT", msg => "A component version required by the application conflicts with another component version already active.");
%msg[14009] = %(title =>"ERROR_SXS_WRONG_SECTION_TYPE", msg => "The type requested activation context section does not match the query API used.");
%msg[14010] = %(title =>"ERROR_SXS_THREAD_QUERIES_DISABLED", msg => "Lack of system resources has required isolated activation to be disabled for the current thread of execution.");
%msg[14011] = %(title =>"ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET", msg => "An attempt to set the process default activation context failed because the process default activation context was already set.");
%msg[14012] = %(title =>"ERROR_SXS_UNKNOWN_ENCODING_GROUP", msg => "The encoding group identifier specified is not recognized.");
%msg[14013] = %(title =>"ERROR_SXS_UNKNOWN_ENCODING", msg => "The encoding requested is not recognized.");
%msg[14014] = %(title =>"ERROR_SXS_INVALID_XML_NAMESPACE_URI", msg => "The manifest contains a reference to an invalid URI.");
%msg[14015] = %(title =>"ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED", msg => "The application manifest contains a reference to a dependent assembly which is not installed.");
%msg[14016] = %(title =>"ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED", msg => "The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed.");
%msg[14017] = %(title =>"ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE", msg => "The manifest contains an attribute for the assembly identity which is not valid.");
%msg[14018] = %(title =>"ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE", msg => "The manifest is missing the required default namespace specification on the assembly element.");
%msg[14019] = %(title =>"ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE", msg => "The manifest has a default namespace specified on the assembly element but its value is not "urn:schemas-microsoft-com:asm.v1".");
%msg[14020] = %(title =>"ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT", msg => "The private manifest probed has crossed a path with an unsupported reparse point.");
%msg[14021] = %(title =>"ERROR_SXS_DUPLICATE_DLL_NAME", msg => "Two or more components referenced directly or indirectly by the application manifest have files by the same name.");
%msg[14022] = %(title =>"ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME", msg => "Two or more components referenced directly or indirectly by the application manifest have window classes with the same name.");
%msg[14023] = %(title =>"ERROR_SXS_DUPLICATE_CLSID", msg => "Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs.");
%msg[14024] = %(title =>"ERROR_SXS_DUPLICATE_IID", msg => "Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs.");
%msg[14025] = %(title =>"ERROR_SXS_DUPLICATE_TLBID", msg => "Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs.");
%msg[14026] = %(title =>"ERROR_SXS_DUPLICATE_PROGID", msg => "Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs.");
%msg[14027] = %(title =>"ERROR_SXS_DUPLICATE_ASSEMBLY_NAME", msg => "Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted.");
%msg[14028] = %(title =>"ERROR_SXS_FILE_HASH_MISMATCH", msg => "A component's file does not match the verification information present in the component manifest.");
%msg[14029] = %(title =>"ERROR_SXS_POLICY_PARSE_ERROR", msg => "The policy manifest contains one or more syntax errors.");
%msg[14030] = %(title =>"ERROR_SXS_XML_E_MISSINGQUOTE", msg => "Manifest Parse Error : A string literal was expected, but no opening quote character was found.");
%msg[14031] = %(title =>"ERROR_SXS_XML_E_COMMENTSYNTAX", msg => "Manifest Parse Error : Incorrect syntax was used in a comment.");
%msg[14032] = %(title =>"ERROR_SXS_XML_E_BADSTARTNAMECHAR", msg => "Manifest Parse Error : A name was started with an invalid character.");
%msg[14033] = %(title =>"ERROR_SXS_XML_E_BADNAMECHAR", msg => "Manifest Parse Error : A name contained an invalid character.");
%msg[14034] = %(title =>"ERROR_SXS_XML_E_BADCHARINSTRING", msg => "Manifest Parse Error : A string literal contained an invalid character.");
%msg[14035] = %(title =>"ERROR_SXS_XML_E_XMLDECLSYNTAX", msg => "Manifest Parse Error : Invalid syntax for an xml declaration.");
%msg[14036] = %(title =>"ERROR_SXS_XML_E_BADCHARDATA", msg => "Manifest Parse Error : An Invalid character was found in text content.");
%msg[14037] = %(title =>"ERROR_SXS_XML_E_MISSINGWHITESPACE", msg => "Manifest Parse Error : Required white space was missing.");
%msg[14038] = %(title =>"ERROR_SXS_XML_E_EXPECTINGTAGEND", msg => "Manifest Parse Error : The character '>' was expected.");
%msg[14039] = %(title =>"ERROR_SXS_XML_E_MISSINGSEMICOLON", msg => "Manifest Parse Error : A semi colon character was expected.");
%msg[14040] = %(title =>"ERROR_SXS_XML_E_UNBALANCEDPAREN", msg => "Manifest Parse Error : Unbalanced parentheses.");
%msg[14041] = %(title =>"ERROR_SXS_XML_E_INTERNALERROR", msg => "Manifest Parse Error : Internal error.");
%msg[14042] = %(title =>"ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE", msg => "Manifest Parse Error : Whitespace is not allowed at this location.");
%msg[14043] = %(title =>"ERROR_SXS_XML_E_INCOMPLETE_ENCODING", msg => "Manifest Parse Error : End of file reached in invalid state for current encoding.");
%msg[14044] = %(title =>"ERROR_SXS_XML_E_MISSING_PAREN", msg => "Manifest Parse Error : Missing parenthesis.");
%msg[14045] = %(title =>"ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE", msg => "Manifest Parse Error : A single or double closing quote character (\' or \") is missing.");
%msg[14046] = %(title =>"ERROR_SXS_XML_E_MULTIPLE_COLONS", msg => "Manifest Parse Error : Multiple colons are not allowed in a name.");
%msg[14047] = %(title =>"ERROR_SXS_XML_E_INVALID_DECIMAL", msg => "Manifest Parse Error : Invalid character for decimal digit.");
%msg[14048] = %(title =>"ERROR_SXS_XML_E_INVALID_HEXIDECIMAL", msg => "Manifest Parse Error : Invalid character for hexadecimal digit.");
%msg[14049] = %(title =>"ERROR_SXS_XML_E_INVALID_UNICODE", msg => "Manifest Parse Error : Invalid unicode character value for this platform.");
%msg[14050] = %(title =>"ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK", msg => "Manifest Parse Error : Expecting whitespace or '?'.");
%msg[14051] = %(title =>"ERROR_SXS_XML_E_UNEXPECTEDENDTAG", msg => "Manifest Parse Error : End tag was not expected at this location.");
%msg[14052] = %(title =>"ERROR_SXS_XML_E_UNCLOSEDTAG", msg => "Manifest Parse Error : The following tags were not closed: %1.");
%msg[14053] = %(title =>"ERROR_SXS_XML_E_DUPLICATEATTRIBUTE", msg => "Manifest Parse Error : Duplicate attribute.");
%msg[14054] = %(title =>"ERROR_SXS_XML_E_MULTIPLEROOTS", msg => "Manifest Parse Error : Only one top level element is allowed in an XML document.");
%msg[14055] = %(title =>"ERROR_SXS_XML_E_INVALIDATROOTLEVEL", msg => "Manifest Parse Error : Invalid at the top level of the document.");
%msg[14056] = %(title =>"ERROR_SXS_XML_E_BADXMLDECL", msg => "Manifest Parse Error : Invalid xml declaration.");
%msg[14057] = %(title =>"ERROR_SXS_XML_E_MISSINGROOT", msg => "Manifest Parse Error : XML document must have a top level element.");
%msg[14058] = %(title =>"ERROR_SXS_XML_E_UNEXPECTEDEOF", msg => "Manifest Parse Error : Unexpected end of file.");
%msg[14059] = %(title =>"ERROR_SXS_XML_E_BADPEREFINSUBSET", msg => "Manifest Parse Error : Parameter entities cannot be used inside markup declarations in an internal subset.");
%msg[14060] = %(title =>"ERROR_SXS_XML_E_UNCLOSEDSTARTTAG", msg => "Manifest Parse Error : Element was not closed.");
%msg[14061] = %(title =>"ERROR_SXS_XML_E_UNCLOSEDENDTAG", msg => "Manifest Parse Error : End element was missing the character '>'.");
%msg[14062] = %(title =>"ERROR_SXS_XML_E_UNCLOSEDSTRING", msg => "Manifest Parse Error : A string literal was not closed.");
%msg[14063] = %(title =>"ERROR_SXS_XML_E_UNCLOSEDCOMMENT", msg => "Manifest Parse Error : A comment was not closed.");
%msg[14064] = %(title =>"ERROR_SXS_XML_E_UNCLOSEDDECL", msg => "Manifest Parse Error : A declaration was not closed.");
%msg[14065] = %(title =>"ERROR_SXS_XML_E_UNCLOSEDCDATA", msg => "Manifest Parse Error : A CDATA section was not closed.");
%msg[14066] = %(title =>"ERROR_SXS_XML_E_RESERVEDNAMESPACE", msg => "Manifest Parse Error : The namespace prefix is not allowed to start with the reserved string "xml".");
%msg[14067] = %(title =>"ERROR_SXS_XML_E_INVALIDENCODING", msg => "Manifest Parse Error : System does not support the specified encoding.");
%msg[14068] = %(title =>"ERROR_SXS_XML_E_INVALIDSWITCH", msg => "Manifest Parse Error : Switch from current encoding to specified encoding not supported.");
%msg[14069] = %(title =>"ERROR_SXS_XML_E_BADXMLCASE", msg => "Manifest Parse Error : The name 'xml' is reserved and must be lower case.");
%msg[14070] = %(title =>"ERROR_SXS_XML_E_INVALID_STANDALONE", msg => "Manifest Parse Error : The standalone attribute must have the value 'yes' or 'no'.");
%msg[14071] = %(title =>"ERROR_SXS_XML_E_UNEXPECTED_STANDALONE", msg => "Manifest Parse Error : The standalone attribute cannot be used in external entities.");
%msg[14072] = %(title =>"ERROR_SXS_XML_E_INVALID_VERSION", msg => "Manifest Parse Error : Invalid version number.");
%msg[14073] = %(title =>"ERROR_SXS_XML_E_MISSINGEQUALS", msg => "Manifest Parse Error : Missing equals sign between attribute and attribute value.");
%msg[14074] = %(title =>"ERROR_SXS_PROTECTION_RECOVERY_FAILED", msg => "Assembly Protection Error : Unable to recover the specified assembly.");
%msg[14075] = %(title =>"ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT", msg => "Assembly Protection Error : The public key for an assembly was too short to be allowed.");
%msg[14076] = %(title =>"ERROR_SXS_PROTECTION_CATALOG_NOT_VALID", msg => "Assembly Protection Error : The catalog for an assembly is not valid, or does not match the assembly's manifest.");
%msg[14077] = %(title =>"ERROR_SXS_UNTRANSLATABLE_HRESULT", msg => "An HRESULT could not be translated to a corresponding Win32 error code.");
%msg[14078] = %(title =>"ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING", msg => "Assembly Protection Error : The catalog for an assembly is missing.");
%msg[14079] = %(title =>"ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE", msg => "The supplied assembly identity is missing one or more attributes which must be present in this context.");
%msg[14080] = %(title =>"ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME", msg => "The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names.");
%msg[14081] = %(title =>"ERROR_SXS_ASSEMBLY_MISSING", msg => "The referenced assembly could not be found.");
%msg[14082] = %(title =>"ERROR_SXS_CORRUPT_ACTIVATION_STACK", msg => "The activation context activation stack for the running thread of execution is corrupt.");
%msg[14083] = %(title =>"ERROR_SXS_CORRUPTION", msg => "The application isolation metadata for this process or thread has become corrupt.");
%msg[14084] = %(title =>"ERROR_SXS_EARLY_DEACTIVATION", msg => "The activation context being deactivated is not the most recently activated one.");
%msg[14085] = %(title =>"ERROR_SXS_INVALID_DEACTIVATION", msg => "The activation context being deactivated is not active for the current thread of execution.");
%msg[14086] = %(title =>"ERROR_SXS_MULTIPLE_DEACTIVATION", msg => "The activation context being deactivated has already been deactivated.");
%msg[14087] = %(title =>"ERROR_SXS_PROCESS_TERMINATION_REQUESTED", msg => "A component used by the isolation facility has requested to terminate the process.");
%msg[14088] = %(title =>"ERROR_SXS_RELEASE_ACTIVATION_CONTEXT", msg => "A kernel mode component is releasing a reference on an activation context.");
%msg[14089] = %(title =>"ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY", msg => "The activation context of system default assembly could not be generated.");
%msg[14090] = %(title =>"ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE", msg => "The value of an attribute in an identity is not within the legal range.");
%msg[14091] = %(title =>"ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME", msg => "The name of an attribute in an identity is not within the legal range.");
%msg[14092] = %(title =>"ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE", msg => "An identity contains two definitions for the same attribute.");
%msg[14093] = %(title =>"ERROR_SXS_IDENTITY_PARSE_ERROR", msg => "The identity string is malformed. This may be due to a trailing comma, more than two unnamed attributes, missing attribute name or missing attribute value.");
%msg[14094] = %(title =>"ERROR_MALFORMED_SUBSTITUTION_STRING", msg => "A string containing localized substitutable content was malformed. Either a dollar sign (\$) was followed by something other than a left parenthesis or another dollar sign or an substitution's right parenthesis was not found.");
%msg[14095] = %(title =>"ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN", msg => "The public key token does not correspond to the public key specified.");
%msg[14096] = %(title =>"ERROR_UNMAPPED_SUBSTITUTION_STRING", msg => "A substitution string had no mapping.");
%msg[14097] = %(title =>"ERROR_SXS_ASSEMBLY_NOT_LOCKED", msg => "The component must be locked before making the request.");
%msg[14098] = %(title =>"ERROR_SXS_COMPONENT_STORE_CORRUPT", msg => "The component store has been corrupted.");
%msg[14099] = %(title =>"ERROR_ADVANCED_INSTALLER_FAILED", msg => "An advanced installer failed during setup or servicing.");
%msg[14100] = %(title =>"ERROR_XML_ENCODING_MISMATCH", msg => "The character encoding in the XML declaration did not match the encoding used in the document.");
%msg[14101] = %(title =>"ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT", msg => "The identities of the manifests are identical but their contents are different.");
%msg[14102] = %(title =>"ERROR_SXS_IDENTITIES_DIFFERENT", msg => "The component identities are different.");
%msg[14103] = %(title =>"ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT", msg => "The assembly is not a deployment.");
%msg[14104] = %(title =>"ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY", msg => "The file is not a part of the assembly.");
%msg[14105] = %(title =>"ERROR_SXS_MANIFEST_TOO_BIG", msg => "The size of the manifest exceeds the maximum allowed.");
%msg[14106] = %(title =>"ERROR_SXS_SETTING_NOT_REGISTERED", msg => "The setting is not registered.");
%msg[14107] = %(title =>"ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE", msg => "One or more required members of the transaction are not present.");
%msg[14108] = %(title =>"ERROR_SMI_PRIMITIVE_INSTALLER_FAILED", msg => "The SMI primitive installer failed during setup or servicing.");
%msg[14109] = %(title =>"ERROR_GENERIC_COMMAND_FAILED", msg => "A generic command executable returned a result that indicates failure.");
%msg[14110] = %(title =>"ERROR_SXS_FILE_HASH_MISSING", msg => "A component is missing file verification information in its manifest.");
%msg[15000] = %(title =>"ERROR_EVT_INVALID_CHANNEL_PATH", msg => "The specified channel path is invalid.");
%msg[15001] = %(title =>"ERROR_EVT_INVALID_QUERY", msg => "The specified query is invalid.");
%msg[15002] = %(title =>"ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND", msg => "The publisher metadata cannot be found in the resource.");
%msg[15003] = %(title =>"ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND", msg => "The template for an event definition cannot be found in the resource (error = %1).");
%msg[15004] = %(title =>"ERROR_EVT_INVALID_PUBLISHER_NAME", msg => "The specified publisher name is invalid.");
%msg[15005] = %(title =>"ERROR_EVT_INVALID_EVENT_DATA", msg => "The event data raised by the publisher is not compatible with the event template definition in the publisher's manifest.");
%msg[15007] = %(title =>"ERROR_EVT_CHANNEL_NOT_FOUND", msg => "The specified channel could not be found. Check channel configuration.");
%msg[15008] = %(title =>"ERROR_EVT_MALFORMED_XML_TEXT", msg => "The specified xml text was not well-formed. See Extended Error for more details.");
%msg[15009] = %(title =>"ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL", msg => "The caller is trying to subscribe to a direct channel which is not allowed. The events for a direct channel go directly to a logfile and cannot be subscribed to.");
%msg[15010] = %(title =>"ERROR_EVT_CONFIGURATION_ERROR", msg => "Configuration error.");
%msg[15011] = %(title =>"ERROR_EVT_QUERY_RESULT_STALE", msg => "The query result is stale / invalid. This may be due to the log being cleared or rolling over after the query result was created. Users should handle this code by releasing the query result object and reissuing the query.");
%msg[15012] = %(title =>"ERROR_EVT_QUERY_RESULT_INVALID_POSITION", msg => "Query result is currently at an invalid position.");
%msg[15013] = %(title =>"ERROR_EVT_NON_VALIDATING_MSXML", msg => "Registered MSXML doesn't support validation.");
%msg[15014] = %(title =>"ERROR_EVT_FILTER_ALREADYSCOPED", msg => "An expression can only be followed by a change of scope operation if it itself evaluates to a node set and is not already part of some other change of scope operation.");
%msg[15015] = %(title =>"ERROR_EVT_FILTER_NOTELTSET", msg => "Can't perform a step operation from a term that does not represent an element set.");
%msg[15016] = %(title =>"ERROR_EVT_FILTER_INVARG", msg => "Left hand side arguments to binary operators must be either attributes, nodes or variables and right hand side arguments must be constants.");
%msg[15017] = %(title =>"ERROR_EVT_FILTER_INVTEST", msg => "A step operation must involve either a node test or, in the case of a predicate, an algebraic expression against which to test each node in the node set identified by the preceeding node set can be evaluated.");
%msg[15018] = %(title =>"ERROR_EVT_FILTER_INVTYPE", msg => "This data type is currently unsupported.");
%msg[15019] = %(title =>"ERROR_EVT_FILTER_PARSEERR", msg => "A syntax error occurred at position %1!d!.");
%msg[15020] = %(title =>"ERROR_EVT_FILTER_UNSUPPORTEDOP", msg => "This operator is unsupported by this implementation of the filter.");
%msg[15021] = %(title =>"ERROR_EVT_FILTER_UNEXPECTEDTOKEN", msg => "The token encountered was unexpected.");
%msg[15022] = %(title =>"ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL", msg => "The requested operation cannot be performed over an enabled direct channel. The channel must first be disabled before performing the requested operation.");
%msg[15023] = %(title =>"ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE", msg => "Channel property %1!s! contains invalid value. The value has invalid type, is outside of valid range, can't be updated or is not supported by this type of channel.");
%msg[15024] = %(title =>"ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE", msg => "Publisher property %1!s! contains invalid value. The value has invalid type, is outside of valid range, can't be updated or is not supported by this type of publisher.");
%msg[15025] = %(title =>"ERROR_EVT_CHANNEL_CANNOT_ACTIVATE", msg => "The channel fails to activate.");
%msg[15026] = %(title =>"ERROR_EVT_FILTER_TOO_COMPLEX", msg => "The xpath expression exceeded supported complexity. Please symplify it or split it into two or more simple expressions.");
%msg[15027] = %(title =>"ERROR_EVT_MESSAGE_NOT_FOUND", msg => "the message resource is present but the message is not found in the string/message table.");
%msg[15028] = %(title =>"ERROR_EVT_MESSAGE_ID_NOT_FOUND", msg => "The message id for the desired message could not be found.");
%msg[15029] = %(title =>"ERROR_EVT_UNRESOLVED_VALUE_INSERT", msg => "The substitution string for insert index (%1) could not be found.");
%msg[15030] = %(title =>"ERROR_EVT_UNRESOLVED_PARAMETER_INSERT", msg => "The description string for parameter reference (%1) could not be found.");
%msg[15031] = %(title =>"ERROR_EVT_MAX_INSERTS_REACHED", msg => "The maximum number of replacements has been reached.");
%msg[15032] = %(title =>"ERROR_EVT_EVENT_DEFINITION_NOT_FOUND", msg => "The event definition could not be found for event id (%1).");
%msg[15033] = %(title =>"ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND", msg => "The locale specific resource for the desired message is not present.");
%msg[15034] = %(title =>"ERROR_EVT_VERSION_TOO_OLD", msg => "The resource is too old to be compatible.");
%msg[15035] = %(title =>"ERROR_EVT_VERSION_TOO_NEW", msg => "The resource is too new to be compatible.");
%msg[15036] = %(title =>"ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY", msg => "The channel at index %1!d! of the query can't be opened.");
%msg[15037] = %(title =>"ERROR_EVT_PUBLISHER_DISABLED", msg => "The publisher has been disabled and its resource is not available. This usually occurs when the publisher is in the process of being uninstalled or upgraded.");
%msg[15038] = %(title =>"ERROR_EVT_FILTER_OUT_OF_RANGE", msg => "Attempted to create a numeric type that is outside of its valid range.");
%msg[15080] = %(title =>"ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE", msg => "The subscription fails to activate.");
%msg[15081] = %(title =>"ERROR_EC_LOG_DISABLED", msg => "The log of the subscription is in disabled state, and can not be used to forward events to. The log must first be enabled before the subscription can be activated.");
%msg[15082] = %(title =>"ERROR_EC_CIRCULAR_FORWARDING", msg => "When forwarding events from local machine to itself, the query of the subscription can't contain target log of the subscription.");
%msg[15083] = %(title =>"ERROR_EC_CREDSTORE_FULL", msg => "The credential store that is used to save credentials is full.");
%msg[15084] = %(title =>"ERROR_EC_CRED_NOT_FOUND", msg => "The credential used by this subscription can't be found in credential store.");
%msg[15085] = %(title =>"ERROR_EC_NO_ACTIVE_CHANNEL", msg => "No active channel is found for the query.");
%msg[15100] = %(title =>"ERROR_MUI_FILE_NOT_FOUND", msg => "The resource loader failed to find MUI file.");
%msg[15101] = %(title =>"ERROR_MUI_INVALID_FILE", msg => "The resource loader failed to load MUI file because the file fail to pass validation.");
%msg[15102] = %(title =>"ERROR_MUI_INVALID_RC_CONFIG", msg => "The RC Manifest is corrupted with garbage data or unsupported version or missing required item.");
%msg[15103] = %(title =>"ERROR_MUI_INVALID_LOCALE_NAME", msg => "The RC Manifest has invalid culture name.");
%msg[15104] = %(title =>"ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME", msg => "The RC Manifest has invalid ultimatefallback name.");
%msg[15105] = %(title =>"ERROR_MUI_FILE_NOT_LOADED", msg => "The resource loader cache doesn't have loaded MUI entry.");
%msg[15106] = %(title =>"ERROR_RESOURCE_ENUM_USER_STOP", msg => "User stopped resource enumeration.");
%msg[15107] = %(title =>"ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED", msg => "UI language installation failed.");
%msg[15108] = %(title =>"ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME", msg => "Locale installation failed.");
%msg[15110] = %(title =>"ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE", msg => "A resource does not have default or neutral value.");
%msg[15111] = %(title =>"ERROR_MRM_INVALID_PRICONFIG", msg => "Invalid PRI config file.");
%msg[15112] = %(title =>"ERROR_MRM_INVALID_FILE_TYPE", msg => "Invalid file type.");
%msg[15113] = %(title =>"ERROR_MRM_UNKNOWN_QUALIFIER", msg => "Unknown qualifier.");
%msg[15114] = %(title =>"ERROR_MRM_INVALID_QUALIFIER_VALUE", msg => "Invalid qualifier value.");
%msg[15115] = %(title =>"ERROR_MRM_NO_CANDIDATE", msg => "No Candidate found.");
%msg[15116] = %(title =>"ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE", msg => "The ResourceMap or NamedResource has an item that does not have default or neutral resource..");
%msg[15117] = %(title =>"ERROR_MRM_RESOURCE_TYPE_MISMATCH", msg => "Invalid ResourceCandidate type.");
%msg[15118] = %(title =>"ERROR_MRM_DUPLICATE_MAP_NAME", msg => "Duplicate Resource Map.");
%msg[15119] = %(title =>"ERROR_MRM_DUPLICATE_ENTRY", msg => "Duplicate Entry.");
%msg[15120] = %(title =>"ERROR_MRM_INVALID_RESOURCE_IDENTIFIER", msg => "Invalid Resource Identifier.");
%msg[15121] = %(title =>"ERROR_MRM_FILEPATH_TOO_LONG", msg => "Filepath too long.");
%msg[15122] = %(title =>"ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE", msg => "Unsupported directory type.");
%msg[15126] = %(title =>"ERROR_MRM_INVALID_PRI_FILE", msg => "Invalid PRI File.");
%msg[15127] = %(title =>"ERROR_MRM_NAMED_RESOURCE_NOT_FOUND", msg => "NamedResource Not Found.");
%msg[15135] = %(title =>"ERROR_MRM_MAP_NOT_FOUND", msg => "ResourceMap Not Found.");
%msg[15136] = %(title =>"ERROR_MRM_UNSUPPORTED_PROFILE_TYPE", msg => "Unsupported MRT profile type.");
%msg[15137] = %(title =>"ERROR_MRM_INVALID_QUALIFIER_OPERATOR", msg => "Invalid qualifier operator.");
%msg[15138] = %(title =>"ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE", msg => "Unable to determine qualifier value or qualifier value has not been set.");
%msg[15139] = %(title =>"ERROR_MRM_AUTOMERGE_ENABLED", msg => "Automerge is enabled in the PRI file.");
%msg[15140] = %(title =>"ERROR_MRM_TOO_MANY_RESOURCES", msg => "Too many resources defined for package.");
%msg[15200] = %(title =>"ERROR_MCA_INVALID_CAPABILITIES_STRING", msg => "The monitor returned a DDC/CI capabilities string that did not comply with the ACCESS.bus 3.0, DDC/CI 1.1 or MCCS 2 Revision 1 specification.");
%msg[15201] = %(title =>"ERROR_MCA_INVALID_VCP_VERSION", msg => "The monitor's VCP Version (0xDF) VCP code returned an invalid version value.");
%msg[15202] = %(title =>"ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION", msg => "The monitor does not comply with the MCCS specification it claims to support.");
%msg[15203] = %(title =>"ERROR_MCA_MCCS_VERSION_MISMATCH", msg => "The MCCS version in a monitor's mccs_ver capability does not match the MCCS version the monitor reports when the VCP Version (0xDF) VCP code is used.");
%msg[15204] = %(title =>"ERROR_MCA_UNSUPPORTED_MCCS_VERSION", msg => "The Monitor Configuration API only works with monitors that support the MCCS 1.0 specification, MCCS 2.0 specification or the MCCS 2.0 Revision 1 specification.");
%msg[15205] = %(title =>"ERROR_MCA_INTERNAL_ERROR", msg => "An internal Monitor Configuration API error occurred.");
%msg[15206] = %(title =>"ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED", msg => "The monitor returned an invalid monitor technology type. CRT, Plasma and LCD (TFT) are examples of monitor technology types. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.");
%msg[15207] = %(title =>"ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE", msg => "The caller of specified a color temperature that the current monitor did not support. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.");
%msg[15250] = %(title =>"ERROR_AMBIGUOUS_SYSTEM_DEVICE", msg => "The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria.");
%msg[15299] = %(title =>"ERROR_SYSTEM_DEVICE_NOT_FOUND", msg => "The requested system device cannot be found.");
%msg[15300] = %(title =>"ERROR_HASH_NOT_SUPPORTED", msg => "Hash generation for the specified hash version and hash type is not enabled on the server.");
%msg[15301] = %(title =>"ERROR_HASH_NOT_PRESENT", msg => "The hash requested from the server is not available or no longer valid.");
%msg[15321] = %(title =>"ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED", msg => "The secondary interrupt controller instance that manages the specified interrupt is not registered.");
%msg[15322] = %(title =>"ERROR_GPIO_CLIENT_INFORMATION_INVALID", msg => "The information supplied by the GPIO client driver is invalid.");
%msg[15323] = %(title =>"ERROR_GPIO_VERSION_NOT_SUPPORTED", msg => "The version specified by the GPIO client driver is not supported.");
%msg[15324] = %(title =>"ERROR_GPIO_INVALID_REGISTRATION_PACKET", msg => "The registration packet supplied by the GPIO client driver is not valid.");
%msg[15325] = %(title =>"ERROR_GPIO_OPERATION_DENIED", msg => "The requested operation is not supported for the specified handle.");
%msg[15326] = %(title =>"ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE", msg => "The requested connect mode conflicts with an existing mode on one or more of the specified pins.");
%msg[15327] = %(title =>"ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED", msg => "The interrupt requested to be unmasked is not masked.");
%msg[15400] = %(title =>"ERROR_CANNOT_SWITCH_RUNLEVEL", msg => "The requested run level switch cannot be completed successfully.");
%msg[15401] = %(title =>"ERROR_INVALID_RUNLEVEL_SETTING", msg => "The service has an invalid run level setting. The run level for a service must not be higher than the run level of its dependent services.");
%msg[15402] = %(title =>"ERROR_RUNLEVEL_SWITCH_TIMEOUT", msg => "The requested run level switch cannot be completed successfully since one or more services will not stop or restart within the specified timeout.");
%msg[15403] = %(title =>"ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT", msg => "A run level switch agent did not respond within the specified timeout.");
%msg[15404] = %(title =>"ERROR_RUNLEVEL_SWITCH_IN_PROGRESS", msg => "A run level switch is currently in progress.");
%msg[15405] = %(title =>"ERROR_SERVICES_FAILED_AUTOSTART", msg => "One or more services failed to start during the service startup phase of a run level switch.");
%msg[15501] = %(title =>"ERROR_COM_TASK_STOP_PENDING", msg => "The task stop request cannot be completed immediately since task needs more time to shutdown.");
%msg[15600] = %(title =>"ERROR_INSTALL_OPEN_PACKAGE_FAILED", msg => "Package could not be opened.");
%msg[15601] = %(title =>"ERROR_INSTALL_PACKAGE_NOT_FOUND", msg => "Package was not found.");
%msg[15602] = %(title =>"ERROR_INSTALL_INVALID_PACKAGE", msg => "Package data is invalid.");
%msg[15603] = %(title =>"ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED", msg => "Package failed updates, dependency or conflict validation.");
%msg[15604] = %(title =>"ERROR_INSTALL_OUT_OF_DISK_SPACE", msg => "There is not enough disk space on your computer. Please free up some space and try again.");
%msg[15605] = %(title =>"ERROR_INSTALL_NETWORK_FAILURE", msg => "There was a problem downloading your product.");
%msg[15606] = %(title =>"ERROR_INSTALL_REGISTRATION_FAILURE", msg => "Package could not be registered.");
%msg[15607] = %(title =>"ERROR_INSTALL_DEREGISTRATION_FAILURE", msg => "Package could not be unregistered.");
%msg[15608] = %(title =>"ERROR_INSTALL_CANCEL", msg => "User cancelled the install request.");
%msg[15609] = %(title =>"ERROR_INSTALL_FAILED", msg => "Install failed. Please contact your software vendor.");
%msg[15610] = %(title =>"ERROR_REMOVE_FAILED", msg => "Removal failed. Please contact your software vendor.");
%msg[15611] = %(title =>"ERROR_PACKAGE_ALREADY_EXISTS", msg => "The provided package is already installed, and reinstallation of the package was blocked. Check the AppXDeployment-Server event log for details.");
%msg[15612] = %(title =>"ERROR_NEEDS_REMEDIATION", msg => "The application cannot be started. Try reinstalling the application to fix the problem.");
%msg[15613] = %(title =>"ERROR_INSTALL_PREREQUISITE_FAILED", msg => "A Prerequisite for an install could not be satisfied.");
%msg[15614] = %(title =>"ERROR_PACKAGE_REPOSITORY_CORRUPTED", msg => "The package repository is corrupted.");
%msg[15615] = %(title =>"ERROR_INSTALL_POLICY_FAILURE", msg => "To install this application you need either a Windows developer license or a sideloading-enabled system.");
%msg[15616] = %(title =>"ERROR_PACKAGE_UPDATING", msg => "The application cannot be started because it is currently updating.");
%msg[15617] = %(title =>"ERROR_DEPLOYMENT_BLOCKED_BY_POLICY", msg => "The package deployment operation is blocked by policy. Please contact your system administrator.");
%msg[15618] = %(title =>"ERROR_PACKAGES_IN_USE", msg => "The package could not be installed because resources it modifies are currently in use.");
%msg[15619] = %(title =>"ERROR_RECOVERY_FILE_CORRUPT", msg => "The package could not be recovered because necessary data for recovery have been corrupted.");
%msg[15620] = %(title =>"ERROR_INVALID_STAGED_SIGNATURE", msg => "The signature is invalid. To register in developer mode, AppxSignature.p7x and AppxBlockMap.xml must be valid or should not be present.");
%msg[15621] = %(title =>"ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED", msg => "An error occurred while deleting the package's previously existing application data.");
%msg[15622] = %(title =>"ERROR_INSTALL_PACKAGE_DOWNGRADE", msg => "The package could not be installed because a higher version of this package is already installed.");
%msg[15623] = %(title =>"ERROR_SYSTEM_NEEDS_REMEDIATION", msg => "An error in a system binary was detected. Try refreshing the PC to fix the problem.");
%msg[15624] = %(title =>"ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN", msg => "A corrupted CLR NGEN binary was detected on the system.");
%msg[15625] = %(title =>"ERROR_RESILIENCY_FILE_CORRUPT", msg => "The operation could not be resumed because necessary data for recovery have been corrupted.");
%msg[15626] = %(title =>"ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING", msg => "The package could not be installed because the Windows Firewall service is not running. Enable the Windows Firewall service and try again.");
%msg[15700] = %(title =>"APPMODEL_ERROR_NO_PACKAGE", msg => "The process has no package identity.");
%msg[15701] = %(title =>"APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT", msg => "The package runtime information is corrupted.");
%msg[15702] = %(title =>"APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT", msg => "The package identity is corrupted.");
%msg[15703] = %(title =>"APPMODEL_ERROR_NO_APPLICATION", msg => "The process has no application identity.");
%msg[15800] = %(title =>"ERROR_STATE_LOAD_STORE_FAILED", msg => "Loading the state store failed.");
%msg[15801] = %(title =>"ERROR_STATE_GET_VERSION_FAILED", msg => "Retrieving the state version for the application failed.");
%msg[15802] = %(title =>"ERROR_STATE_SET_VERSION_FAILED", msg => "Setting the state version for the application failed.");
%msg[15803] = %(title =>"ERROR_STATE_STRUCTURED_RESET_FAILED", msg => "Resetting the structured state of the application failed.");
%msg[15804] = %(title =>"ERROR_STATE_OPEN_CONTAINER_FAILED", msg => "State Manager failed to open the container.");
%msg[15805] = %(title =>"ERROR_STATE_CREATE_CONTAINER_FAILED", msg => "State Manager failed to create the container.");
%msg[15806] = %(title =>"ERROR_STATE_DELETE_CONTAINER_FAILED", msg => "State Manager failed to delete the container.");
%msg[15807] = %(title =>"ERROR_STATE_READ_SETTING_FAILED", msg => "State Manager failed to read the setting.");
%msg[15808] = %(title =>"ERROR_STATE_WRITE_SETTING_FAILED", msg => "State Manager failed to write the setting.");
%msg[15809] = %(title =>"ERROR_STATE_DELETE_SETTING_FAILED", msg => "State Manager failed to delete the setting.");
%msg[15810] = %(title =>"ERROR_STATE_QUERY_SETTING_FAILED", msg => "State Manager failed to query the setting.");
%msg[15811] = %(title =>"ERROR_STATE_READ_COMPOSITE_SETTING_FAILED", msg => "State Manager failed to read the composite setting.");
%msg[15812] = %(title =>"ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED", msg => "State Manager failed to write the composite setting.");
%msg[15813] = %(title =>"ERROR_STATE_ENUMERATE_CONTAINER_FAILED", msg => "State Manager failed to enumerate the containers.");
%msg[15814] = %(title =>"ERROR_STATE_ENUMERATE_SETTINGS_FAILED", msg => "State Manager failed to enumerate the settings.");
%msg[15815] = %(title =>"ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED", msg => "The size of the state manager composite setting value has exceeded the limit.");
%msg[15816] = %(title =>"ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED", msg => "The size of the state manager setting value has exceeded the limit.");
%msg[15817] = %(title =>"ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED", msg => "The length of the state manager setting name has exceeded the limit.");
%msg[15818] = %(title =>"ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED", msg => "The length of the state manager container name has exceeded the limit.");
%msg[15841] = %(title =>"ERROR_API_UNAVAILABLE", msg => "This API cannot be used in the context of the caller's application type.");
%msg[1300] = %(title =>"ERROR_NOT_ALL_ASSIGNED", msg => "Not all privileges or groups referenced are assigned to the caller.");
%msg[1301] = %(title =>"ERROR_SOME_NOT_MAPPED", msg => "Some mapping between account names and security IDs was not done.");
%msg[1302] = %(title =>"ERROR_NO_QUOTAS_FOR_ACCOUNT", msg => "No system quota limits are specifically set for this account.");
%msg[1303] = %(title =>"ERROR_LOCAL_USER_SESSION_KEY", msg => "No encryption key is available. A well-known encryption key was returned.");
%msg[1304] = %(title =>"ERROR_NULL_LM_PASSWORD", msg => "The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a string.");
%msg[1305] = %(title =>"ERROR_UNKNOWN_REVISION", msg => "The revision level is unknown.");
%msg[1306] = %(title =>"ERROR_REVISION_MISMATCH", msg => "Indicates two revision levels are incompatible.");
%msg[1307] = %(title =>"ERROR_INVALID_OWNER", msg => "This security ID may not be assigned as the owner of this object.");
%msg[1308] = %(title =>"ERROR_INVALID_PRIMARY_GROUP", msg => "This security ID may not be assigned as the primary group of an object.");
%msg[1309] = %(title =>"ERROR_NO_IMPERSONATION_TOKEN", msg => "An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.");
%msg[1310] = %(title =>"ERROR_CANT_DISABLE_MANDATORY", msg => "The group may not be disabled.");
%msg[1311] = %(title =>"ERROR_NO_LOGON_SERVERS", msg => "There are currently no logon servers available to service the logon request.");
%msg[1312] = %(title =>"ERROR_NO_SUCH_LOGON_SESSION", msg => "A specified logon session does not exist. It may already have been terminated.");
%msg[1313] = %(title =>"ERROR_NO_SUCH_PRIVILEGE", msg => "A specified privilege does not exist.");
%msg[1314] = %(title =>"ERROR_PRIVILEGE_NOT_HELD", msg => "A required privilege is not held by the client.");
%msg[1315] = %(title =>"ERROR_INVALID_ACCOUNT_NAME", msg => "The name provided is not a properly formed account name.");
%msg[1316] = %(title =>"ERROR_USER_EXISTS", msg => "The specified account already exists.");
%msg[1317] = %(title =>"ERROR_NO_SUCH_USER", msg => "The specified account does not exist.");
%msg[1318] = %(title =>"ERROR_GROUP_EXISTS", msg => "The specified group already exists.");
%msg[1319] = %(title =>"ERROR_NO_SUCH_GROUP", msg => "The specified group does not exist.");
%msg[1320] = %(title =>"ERROR_MEMBER_IN_GROUP", msg => "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.");
%msg[1321] = %(title =>"ERROR_MEMBER_NOT_IN_GROUP", msg => "The specified user account is not a member of the specified group account.");
%msg[1322] = %(title =>"ERROR_LAST_ADMIN", msg => "This operation is disallowed as it could result in an administration account being disabled, deleted or unable to log on.");
%msg[1323] = %(title =>"ERROR_WRONG_PASSWORD", msg => "Unable to update the password. The value provided as the current password is incorrect.");
%msg[1324] = %(title =>"ERROR_ILL_FORMED_PASSWORD", msg => "Unable to update the password. The value provided for the new password contains values that are not allowed in passwords.");
%msg[1325] = %(title =>"ERROR_PASSWORD_RESTRICTION", msg => "Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirements of the domain.");
%msg[1326] = %(title =>"ERROR_LOGON_FAILURE", msg => "The user name or password is incorrect.");
%msg[1327] = %(title =>"ERROR_ACCOUNT_RESTRICTION", msg => "Account restrictions are preventing this user from signing in. For example: blank passwords aren't allowed, sign-in times are limited, or a policy restriction has been enforced.");
%msg[1328] = %(title =>"ERROR_INVALID_LOGON_HOURS", msg => "Your account has time restrictions that keep you from signing in right now.");
%msg[1329] = %(title =>"ERROR_INVALID_WORKSTATION", msg => "This user isn't allowed to sign in to this computer.");
%msg[1330] = %(title =>"ERROR_PASSWORD_EXPIRED", msg => "The password for this account has expired.");
%msg[1331] = %(title =>"ERROR_ACCOUNT_DISABLED", msg => "This user can't sign in because this account is currently disabled.");
%msg[1332] = %(title =>"ERROR_NONE_MAPPED", msg => "No mapping between account names and security IDs was done.");
%msg[1333] = %(title =>"ERROR_TOO_MANY_LUIDS_REQUESTED", msg => "Too many local user identifiers (LUIDs) were requested at one time.");
%msg[1334] = %(title =>"ERROR_LUIDS_EXHAUSTED", msg => "No more local user identifiers (LUIDs) are available.");
%msg[1335] = %(title =>"ERROR_INVALID_SUB_AUTHORITY", msg => "The subauthority part of a security ID is invalid for this particular use.");
%msg[1336] = %(title =>"ERROR_INVALID_ACL", msg => "The access control list (ACL) structure is invalid.");
%msg[1337] = %(title =>"ERROR_INVALID_SID", msg => "The security ID structure is invalid.");
%msg[1338] = %(title =>"ERROR_INVALID_SECURITY_DESCR", msg => "The security descriptor structure is invalid.");
%msg[1340] = %(title =>"ERROR_BAD_INHERITANCE_ACL", msg => "The inherited access control list (ACL) or access control entry (ACE) could not be built.");
%msg[1341] = %(title =>"ERROR_SERVER_DISABLED", msg => "The server is currently disabled.");
%msg[1342] = %(title =>"ERROR_SERVER_NOT_DISABLED", msg => "The server is currently enabled.");
%msg[1343] = %(title =>"ERROR_INVALID_ID_AUTHORITY", msg => "The value provided was an invalid value for an identifier authority.");
%msg[1344] = %(title =>"ERROR_ALLOTTED_SPACE_EXCEEDED", msg => "No more memory is available for security information updates.");
%msg[1345] = %(title =>"ERROR_INVALID_GROUP_ATTRIBUTES", msg => "The specified attributes are invalid, or incompatible with the attributes for the group as a whole.");
%msg[1346] = %(title =>"ERROR_BAD_IMPERSONATION_LEVEL", msg => "Either a required impersonation level was not provided, or the provided impersonation level is invalid.");
%msg[1347] = %(title =>"ERROR_CANT_OPEN_ANONYMOUS", msg => "Cannot open an anonymous level security token.");
%msg[1348] = %(title =>"ERROR_BAD_VALIDATION_CLASS", msg => "The validation information class requested was invalid.");
%msg[1349] = %(title =>"ERROR_BAD_TOKEN_TYPE", msg => "The type of the token is inappropriate for its attempted use.");
%msg[1350] = %(title =>"ERROR_NO_SECURITY_ON_OBJECT", msg => "Unable to perform a security operation on an object that has no associated security.");
%msg[1351] = %(title =>"ERROR_CANT_ACCESS_DOMAIN_INFO", msg => "Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.");
%msg[1352] = %(title =>"ERROR_INVALID_SERVER_STATE", msg => "The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation.");
%msg[1353] = %(title =>"ERROR_INVALID_DOMAIN_STATE", msg => "The domain was in the wrong state to perform the security operation.");
%msg[1354] = %(title =>"ERROR_INVALID_DOMAIN_ROLE", msg => "This operation is only allowed for the Primary Domain Controller of the domain.");
%msg[1355] = %(title =>"ERROR_NO_SUCH_DOMAIN", msg => "The specified domain either does not exist or could not be contacted.");
%msg[1356] = %(title =>"ERROR_DOMAIN_EXISTS", msg => "The specified domain already exists.");
%msg[1357] = %(title =>"ERROR_DOMAIN_LIMIT_EXCEEDED", msg => "An attempt was made to exceed the limit on the number of domains per server.");
%msg[1358] = %(title =>"ERROR_INTERNAL_DB_CORRUPTION", msg => "Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.");
%msg[1359] = %(title =>"ERROR_INTERNAL_ERROR", msg => "An internal error occurred.");
%msg[1360] = %(title =>"ERROR_GENERIC_NOT_MAPPED", msg => "Generic access types were contained in an access mask which should already be mapped to nongeneric types.");
%msg[1361] = %(title =>"ERROR_BAD_DESCRIPTOR_FORMAT", msg => "A security descriptor is not in the right format (absolute or self-relative).");
%msg[1362] = %(title =>"ERROR_NOT_LOGON_PROCESS", msg => "The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.");
%msg[1363] = %(title =>"ERROR_LOGON_SESSION_EXISTS", msg => "Cannot start a new logon session with an ID that is already in use.");
%msg[1364] = %(title =>"ERROR_NO_SUCH_PACKAGE", msg => "A specified authentication package is unknown.");
%msg[1365] = %(title =>"ERROR_BAD_LOGON_SESSION_STATE", msg => "The logon session is not in a state that is consistent with the requested operation.");
%msg[1366] = %(title =>"ERROR_LOGON_SESSION_COLLISION", msg => "The logon session ID is already in use.");
%msg[1367] = %(title =>"ERROR_INVALID_LOGON_TYPE", msg => "A logon request contained an invalid logon type value.");
%msg[1368] = %(title =>"ERROR_CANNOT_IMPERSONATE", msg => "Unable to impersonate using a named pipe until data has been read from that pipe.");
%msg[1369] = %(title =>"ERROR_RXACT_INVALID_STATE", msg => "The transaction state of a registry subtree is incompatible with the requested operation.");
%msg[1370] = %(title =>"ERROR_RXACT_COMMIT_FAILURE", msg => "An internal security database corruption has been encountered.");
%msg[1371] = %(title =>"ERROR_SPECIAL_ACCOUNT", msg => "Cannot perform this operation on built-in accounts.");
%msg[1372] = %(title =>"ERROR_SPECIAL_GROUP", msg => "Cannot perform this operation on this built-in special group.");
%msg[1373] = %(title =>"ERROR_SPECIAL_USER", msg => "Cannot perform this operation on this built-in special user.");
%msg[1374] = %(title =>"ERROR_MEMBERS_PRIMARY_GROUP", msg => "The user cannot be removed from a group because the group is currently the user's primary group.");
%msg[1375] = %(title =>"ERROR_TOKEN_ALREADY_IN_USE", msg => "The token is already in use as a primary token.");
%msg[1376] = %(title =>"ERROR_NO_SUCH_ALIAS", msg => "The specified local group does not exist.");
%msg[1377] = %(title =>"ERROR_MEMBER_NOT_IN_ALIAS", msg => "The specified account name is not a member of the group.");
%msg[1378] = %(title =>"ERROR_MEMBER_IN_ALIAS", msg => "The specified account name is already a member of the group.");
%msg[1379] = %(title =>"ERROR_ALIAS_EXISTS", msg => "The specified local group already exists.");
%msg[1380] = %(title =>"ERROR_LOGON_NOT_GRANTED", msg => "Logon failure: the user has not been granted the requested logon type at this computer.");
%msg[1381] = %(title =>"ERROR_TOO_MANY_SECRETS", msg => "The maximum number of secrets that may be stored in a single system has been exceeded.");
%msg[1382] = %(title =>"ERROR_SECRET_TOO_LONG", msg => "The length of a secret exceeds the maximum length allowed.");
%msg[1383] = %(title =>"ERROR_INTERNAL_DB_ERROR", msg => "The local security authority database contains an internal inconsistency.");
%msg[1384] = %(title =>"ERROR_TOO_MANY_CONTEXT_IDS", msg => "During a logon attempt, the user's security context accumulated too many security IDs.");
%msg[1385] = %(title =>"ERROR_LOGON_TYPE_NOT_GRANTED", msg => "Logon failure: the user has not been granted the requested logon type at this computer.");
%msg[1386] = %(title =>"ERROR_NT_CROSS_ENCRYPTION_REQUIRED", msg => "A cross-encrypted password is necessary to change a user password.");
%msg[1387] = %(title =>"ERROR_NO_SUCH_MEMBER", msg => "A member could not be added to or removed from the local group because the member does not exist.");
%msg[1388] = %(title =>"ERROR_INVALID_MEMBER", msg => "A new member could not be added to a local group because the member has the wrong account type.");
%msg[1389] = %(title =>"ERROR_TOO_MANY_SIDS", msg => "Too many security IDs have been specified.");
%msg[1390] = %(title =>"ERROR_LM_CROSS_ENCRYPTION_REQUIRED", msg => "A cross-encrypted password is necessary to change this user password.");
%msg[1391] = %(title =>"ERROR_NO_INHERITANCE", msg => "Indicates an ACL contains no inheritable components.");
%msg[1392] = %(title =>"ERROR_FILE_CORRUPT", msg => "The file or directory is corrupted and unreadable.");
%msg[1393] = %(title =>"ERROR_DISK_CORRUPT", msg => "The disk structure is corrupted and unreadable.");
%msg[1394] = %(title =>"ERROR_NO_USER_SESSION_KEY", msg => "There is no user session key for the specified logon session.");
%msg[1395] = %(title =>"ERROR_LICENSE_QUOTA_EXCEEDED", msg => "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.");
%msg[1396] = %(title =>"ERROR_WRONG_TARGET_NAME", msg => "The target account name is incorrect.");
%msg[1397] = %(title =>"ERROR_MUTUAL_AUTH_FAILED", msg => "Mutual Authentication failed. The server's password is out of date at the domain controller.");
%msg[1398] = %(title =>"ERROR_TIME_SKEW", msg => "There is a time and/or date difference between the client and server.");
%msg[1399] = %(title =>"ERROR_CURRENT_DOMAIN_NOT_ALLOWED", msg => "This operation cannot be performed on the current domain.");
%msg[1400] = %(title =>"ERROR_INVALID_WINDOW_HANDLE", msg => "Invalid window handle.");
%msg[1401] = %(title =>"ERROR_INVALID_MENU_HANDLE", msg => "Invalid menu handle.");
%msg[1402] = %(title =>"ERROR_INVALID_CURSOR_HANDLE", msg => "Invalid cursor handle.");
%msg[1403] = %(title =>"ERROR_INVALID_ACCEL_HANDLE", msg => "Invalid accelerator table handle.");
%msg[1404] = %(title =>"ERROR_INVALID_HOOK_HANDLE", msg => "Invalid hook handle.");
%msg[1405] = %(title =>"ERROR_INVALID_DWP_HANDLE", msg => "Invalid handle to a multiple-window position structure.");
%msg[1406] = %(title =>"ERROR_TLW_WITH_WSCHILD", msg => "Cannot create a top-level child window.");
%msg[1407] = %(title =>"ERROR_CANNOT_FIND_WND_CLASS", msg => "Cannot find window class.");
%msg[1408] = %(title =>"ERROR_WINDOW_OF_OTHER_THREAD", msg => "Invalid window; it belongs to other thread.");
%msg[1409] = %(title =>"ERROR_HOTKEY_ALREADY_REGISTERED", msg => "Hot key is already registered.");
%msg[1410] = %(title =>"ERROR_CLASS_ALREADY_EXISTS", msg => "Class already exists.");
%msg[1411] = %(title =>"ERROR_CLASS_DOES_NOT_EXIST", msg => "Class does not exist.");
%msg[1412] = %(title =>"ERROR_CLASS_HAS_WINDOWS", msg => "Class still has open windows.");
%msg[1413] = %(title =>"ERROR_INVALID_INDEX", msg => "Invalid index.");