1 #Region "Microsoft.VisualBasic::1acb37b0ccf6029eea8367429307c3cc, Microsoft.VisualBasic.Core\ApplicationServices\Tools\Win32\GetLastErrorAPI.vb"
2
3     ' Author:
4     
5     '       asuka (amethyst.asuka@gcmodeller.org)
6     '       xie (genetics@smrucc.org)
7     '       xieguigang (xie.guigang@live.com)
8     
9     ' Copyright (c) 2018 GPL3 Licensed
10     
11     
12     ' GNU GENERAL PUBLIC LICENSE (GPL3)
13     
14     
15     ' This program is free software: you can redistribute it and/or modify
16     ' it under the terms of the GNU General Public License as published by
17     ' the Free Software Foundation, either version 3 of the License, or
18     ' (at your option) any later version.
19     
20     ' This program is distributed in the hope that it will be useful,
21     ' but WITHOUT ANY WARRANTY; without even the implied warranty of
22     ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23     ' GNU General Public License for more details.
24     
25     ' You should have received a copy of the GNU General Public License
26     ' along with this program. If not, see <http://www.gnu.org/licenses/>.
27
28
29
30     ' /********************************************************************************/
31
32     ' Summaries:
33
34     '     Module GetLastErrorAPI
35     
36     '         FunctionGetLastErrorCode
37     '         Enum ErrorCodes
38     
39     
40     
41     
42     '  
43     
44     
45     
46     
47     ' /********************************************************************************/
48
49 #End Region
50
51 Namespace Win32
52
53     ''' <summary>
54     ''' Wrapper for the returns value of api <see cref="GetLastError"/>
55     ''' </summary>
56     ''' <remarks>
57     ''' <see cref="ErrorCodes"/> reference msdn:
58     ''' 
59     ''' + https://support.microsoft.com/en-us/kb/155011
60     ''' + https://support.microsoft.com/EN-US/kb/155012
61     ''' </remarks>
62     Public Module GetLastErrorAPI
63
64         ''' <summary>
65         ''' 针对之前调用的api函数,用这个函数取得扩展错误信息(在vb里使用:在vb中,用Err对象的``GetLastError``
66         ''' 属性获取``GetLastError``的值。这样做是必要的,因为在api调用返回以及vb调用继续执行期间,
67         ''' vb有时会重设``GetLastError``的值)
68         ''' 
69         ''' ``GetLastError``返回的值通过在api函数中调用``SetLastError``或``SetLastErrorEx``设置。函数
70         ''' 并无必要设置上一次错误信息,所以即使一次``GetLastError``调用返回的是零值,也不能
71         ''' 担保函数已成功执行。只有在函数调用返回一个错误结果时,这个函数指出的错误结果
72         ''' 才是有效的。通常,只有在函数返回一个错误结果,而且已知函数会设置``GetLastError``
73         ''' 变量的前提下,才应访问``GetLastError``;这时能保证获得有效的结果。``SetLastError``函
74         ''' 数主要在对api函数进行模拟的dll函数中使用。
75         ''' </summary>
76         ''' <returns></returns>
77         ''' <remarks>
78         ''' ``GetLastError``返回的值通过在api函数中调用``SetLastError``或``SetLastErrorEx``设置。函数并无必要设置上一次错误信息,
79         ''' 所以即使一次``GetLastError``调用返回的是零值,也不能担保函数已成功执行。只有在函数调用返回一个错误结果时,
80         ''' 这个函数指出的错误结果才是有效的。通常,只有在函数返回一个错误结果,而且已知函数会设置``GetLastError``变量的前提下,
81         ''' 才应访问``GetLastError``;这时能保证获得有效的结果。``SetLastError``函数主要在对api函数进行模拟的dll函数中使用,
82         ''' 所以对vb应用程序来说是没有意义的
83         ''' </remarks>
84         Public Declare Function GetLastError Lib "kernel32" Alias "GetLastError" () As Integer
85
86         ''' <summary>
87         ''' Retrieves the calling thread's last-error code value. The last-error code is maintained on a per-thread basis. 
88         ''' Multiple threads do not overwrite each other's last-error code.
89         ''' </summary>
90         ''' <returns>
91         ''' The return value is the calling thread's last-error code.
92         ''' 
93         ''' The Return Value section of the documentation for each function that sets the last-error code notes the conditions 
94         ''' under which the function sets the last-error code. Most functions that set the thread's last-error code set it 
95         ''' when they fail. However, some functions also set the last-error code when they succeed. If the function is not 
96         ''' documented to set the last-error code, the value returned by this function is simply the most recent last-error 
97         ''' code to have been set; some functions set the last-error code to 0 on success and others do not.
98         ''' </returns>
99         ''' <remarks>
100         ''' Functions executed by the calling thread set this value by calling the SetLastError function. You should call the 
101         ''' GetLastError function immediately when a function's return value indicates that such a call will return useful data. 
102         ''' That is because some functions call SetLastError with a zero when they succeed, wiping out the error code set by 
103         ''' the most recently failed function.
104         ''' To obtain an error string for system error codes, use the FormatMessage function. For a complete list of error codes 
105         ''' provided by the operating system, see System Error Codes.
106         ''' The error codes returned by a function are Not part of the Windows API specification And can vary by operating system 
107         ''' Or device driver. For this reason, we cannot provide the complete list of error codes that can be returned by each 
108         ''' function. There are also many functions whose documentation does Not include even a partial list of error codes that 
109         ''' can be returned.
110         ''' Error codes are 32-bit values (bit 31 Is the most significant bit). Bit 29 Is reserved For application-defined Error 
111         ''' codes; no system Error code has this bit SetIf you are defining an Error code For your application, Set this bit 
112         ''' To one. That indicates that the Error code has been defined by an application, And ensures that your Error code does 
113         ''' Not conflict With any Error codes defined by the system.
114         ''' 
115         ''' To convert a system error into an HRESULT value, use the HRESULT_FROM_WIN32 macro.
116         ''' </remarks>
117         Public Function GetLastErrorCode() As ErrorCodes
118             Return CType(GetLastError, ErrorCodes)
119         End Function
120
121         ''' <summary>
122         ''' This article lists the error codes you may encounter in Windows NT. For the remaining error codes, 
123         ''' please see the following article(s) in the Microsoft Knowledge Base:
124         ''' 
125         ''' + [155011](https://support.microsoft.com/en-us/kb/155011) Error Codes in Windows NT Part 1 of 2
126         ''' + [155012](https://support.microsoft.com/EN-US/kb/155012) Error Codes in Windows NT Part 2 of 2
127         ''' (<see cref="GetLastError"/>的返回值的含义)
128         ''' </summary>
129         Public Enum ErrorCodes As Integer
130
131             '''<summary>
132             ''' Compression algorithm not
133             ''' recognized.
134             '''</summary>
135             LZERROR_UNKNOWNALG = -8
136
137             '''<summary>
138             ''' Input parameter out of
139             ''' acceptable range.
140             '''</summary>
141             LZERROR_BADVALUE = -7
142
143             '''<summary>
144             ''' Bad global handle.
145             '''</summary>
146             LZERROR_GLOBLOCK = -6
147
148             '''<summary>
149             ''' Insufficient memory for LZFile
150             ''' structure.
151             '''</summary>
152             LZERROR_GLOBALLOC = -5
153
154             '''<summary>
155             ''' Out of space for output file.
156             '''</summary>
157             LZERROR_WRITE = -4
158
159             '''<summary>
160             ''' Corrupt compressed file
161             ''' format.
162             '''</summary>
163             LZERROR_READ = -3
164
165             '''<summary>
166             ''' Invalid output handle.
167             '''</summary>
168             LZERROR_BADOUTHANDLE = -2
169
170             '''<summary>
171             ''' Invalid input handle.
172             '''</summary>
173             LZERROR_BADINHANDLE = -1
174
175             '''<summary>
176             ''' No error.
177             '''</summary>
178             NO_ERROR = 0L
179
180             '''<summary>
181             ''' The operation was successfully
182             ''' completed.
183             '''</summary>
184             ERROR_SUCCESS = 0L
185
186             '''<summary>
187             ''' The function is incorrect.
188             '''</summary>
189             ERROR_INVALID_FUNCTION = 1L
190
191             '''<summary>
192             ''' The system cannot find the
193             ''' file specified.
194             '''</summary>
195             ERROR_FILE_NOT_FOUND = 2L
196
197             '''<summary>
198             ''' The system cannot find the
199             ''' specified path.
200             '''</summary>
201             ERROR_PATH_NOT_FOUND = 3L
202
203             '''<summary>
204             ''' The system cannot open the
205             ''' file.
206             '''</summary>
207             ERROR_TOO_MANY_OPEN_FILES = 4L
208
209             '''<summary>
210             ''' Access is denied.
211             '''</summary>
212             ERROR_ACCESS_DENIED = 5L
213
214             '''<summary>
215             ''' The internal file identifier
216             ''' is incorrect.
217             '''</summary>
218             ERROR_INVALID_HANDLE = 6L
219
220             '''<summary>
221             ''' The storage control blocks
222             ''' were destroyed.
223             '''</summary>
224             ERROR_ARENA_TRASHED = 7L
225
226             '''<summary>
227             ''' Not enough storage is
228             ''' available to process this
229             ''' command.
230             '''</summary>
231             ERROR_NOT_ENOUGH_MEMORY = 8L
232
233             '''<summary>
234             ''' The storage control block
235             ''' address is invalid.
236             '''</summary>
237             ERROR_INVALID_BLOCK = 9L
238
239             '''<summary>
240             ''' The environment is incorrect.
241             '''</summary>
242             ERROR_BAD_ENVIRONMENT = 10L
243
244             '''<summary>
245             ''' An attempt was made to load a
246             ''' program with an incorrect
247             ''' format.
248             '''</summary>
249             ERROR_BAD_FORMAT = 11L
250
251             '''<summary>
252             ''' The access code is invalid.
253             '''</summary>
254             ERROR_INVALID_ACCESS = 12L
255
256             '''<summary>
257             ''' The data is invalid.
258             '''</summary>
259             ERROR_INVALID_DATA = 13L
260
261             '''<summary>
262             ''' Not enough storage is
263             ''' available to complete this
264             ''' operation.
265             '''</summary>
266             ERROR_OUTOFMEMORY = 14L
267
268             '''<summary>
269             ''' The system cannot find the
270             ''' specified drive.
271             '''</summary>
272             ERROR_INVALID_DRIVE = 15L
273
274             '''<summary>
275             ''' The directory cannot be
276             ''' removed.
277             '''</summary>
278             ERROR_CURRENT_DIRECTORY = 16L
279
280             '''<summary>
281             ''' The system cannot move the
282             ''' file to a different disk
283             ''' drive.
284             '''</summary>
285             ERROR_NOT_SAME_DEVICE = 17L
286
287             '''<summary>
288             ''' There are no more files.
289             '''</summary>
290             ERROR_NO_MORE_FILES = 18L
291
292             '''<summary>
293             ''' The media is write protected.
294             '''</summary>
295             ERROR_WRITE_PROTECT = 19L
296
297             '''<summary>
298             ''' The system cannot find the
299             ''' specified device.
300             '''</summary>
301             ERROR_BAD_UNIT = 20L
302
303             '''<summary>
304             ''' The drive is not ready.
305             '''</summary>
306             ERROR_NOT_READY = 21L
307
308             '''<summary>
309             ''' The device does not recognize
310             ''' the command.
311             '''</summary>
312             ERROR_BAD_COMMAND = 22L
313
314             '''<summary>
315             ''' Data error (cyclic redundancy
316             ''' check).
317             '''</summary>
318             ERROR_CRC = 23L
319
320             '''<summary>
321             ''' The program issued a command
322             ''' but the command length is
323             ''' incorrect.
324             '''</summary>
325             ERROR_BAD_LENGTH = 24L
326
327             '''<summary>
328             ''' The drive cannot locate a
329             ''' specific area or track on the
330             ''' disk.
331             '''</summary>
332             ERROR_SEEK = 25L
333
334             '''<summary>
335             ''' The specified disk cannot be
336             ''' accessed.
337             '''</summary>
338             ERROR_NOT_DOS_DISK = 26L
339
340             '''<summary>
341             ''' The drive cannot find the
342             ''' requested sector.
343             '''</summary>
344             ERROR_SECTOR_NOT_FOUND = 27L
345
346             '''<summary>
347             ''' The printer is out of paper.
348             '''</summary>
349             ERROR_OUT_OF_PAPER = 28L
350
351             '''<summary>
352             ''' The system cannot write to the
353             ''' specified device.
354             '''</summary>
355             ERROR_WRITE_FAULT = 29L
356
357             '''<summary>
358             ''' The system cannot read from
359             ''' the specified device.
360             '''</summary>
361             ERROR_READ_FAULT = 30L
362
363             '''<summary>
364             ''' A device attached to the
365             ''' system is not functioning.
366             '''</summary>
367             ERROR_GEN_FAILURE = 31L
368
369             '''<summary>
370             ''' The process cannot access the
371             ''' file because it is being used
372             ''' by another process.
373             '''</summary>
374             ERROR_SHARING_VIOLATION = 32L
375
376             '''<summary>
377             ''' The process cannot access the
378             ''' file because another process
379             ''' has locked a portion of the
380             ''' file.
381             '''</summary>
382             ERROR_LOCK_VIOLATION = 33L
383
384             '''<summary>
385             ''' The wrong disk is in the
386             ''' drive. Insert %2 (Volume
387             ''' Serial Number: %3) into drive
388             ''' %1.
389             '''</summary>
390             ERROR_WRONG_DISK = 34L
391
392             '''<summary>
393             ''' Too many files opened for
394             ''' sharing.
395             '''</summary>
396             ERROR_SHARING_BUFFER_EXCEEDED = 36L
397
398             '''<summary>
399             ''' Reached End Of File.
400             '''</summary>
401             ERROR_HANDLE_EOF = 38L
402
403             '''<summary>
404             ''' The disk is full.
405             '''</summary>
406             ERROR_HANDLE_DISK_FULL = 39L
407
408             '''<summary>
409             ''' The network request is not
410             ''' supported.
411             '''</summary>
412             ERROR_NOT_SUPPORTED = 50L
413
414             '''<summary>
415             ''' The remote computer is not
416             ''' available.
417             '''</summary>
418             ERROR_REM_NOT_LIST = 51L
419
420             '''<summary>
421             ''' A duplicate name exists on the
422             ''' network.
423             ''' 
424             '''</summary>
425             ERROR_DUP_NAME = 52L
426
427             '''<summary>
428             ''' The network path was not
429             ''' found.
430             '''</summary>
431             ERROR_BAD_NETPATH = 53L
432
433             '''<summary>
434             ''' The network is busy.
435             '''</summary>
436             ERROR_NETWORK_BUSY = 54L
437
438             '''<summary>
439             ''' The specified network resource
440             ''' is no longer available.
441             '''</summary>
442             ERROR_DEV_NOT_EXIST = 55L
443
444             '''<summary>
445             ''' The network BIOS command limit
446             ''' has been reached.
447             '''</summary>
448             ERROR_TOO_MANY_CMDS = 56L
449
450             '''<summary>
451             ''' A network adapter hardware
452             ''' error occurred.
453             '''</summary>
454             ERROR_ADAP_HDW_ERR = 57L
455
456             '''<summary>
457             ''' The specified server cannot
458             ''' perform the requested
459             ''' operation.
460             '''</summary>
461             ERROR_BAD_NET_RESP = 58L
462
463             '''<summary>
464             ''' An unexpected network error
465             ''' occurred.
466             '''</summary>
467             ERROR_UNEXP_NET_ERR = 59L
468
469             '''<summary>
470             ''' The remote adapter is not
471             ''' compatible.
472             '''</summary>
473             ERROR_BAD_REM_ADAP = 60L
474
475             '''<summary>
476             ''' The printer queue is full.
477             '''</summary>
478             ERROR_PRINTQ_FULL = 61L
479
480             '''<summary>
481             ''' Space to store the file
482             ''' waiting to be printed is not
483             ''' available on the server.
484             '''</summary>
485             ERROR_NO_SPOOL_SPACE = 62L
486
487             '''<summary>
488             ''' File waiting to be printed was
489             ''' deleted.
490             '''</summary>
491             ERROR_PRINT_CANCELLED = 63L
492
493             '''<summary>
494             ''' The specified network name is
495             ''' no longer available.
496             '''</summary>
497             ERROR_NETNAME_DELETED = 64L
498
499             '''<summary>
500             ''' Network access is denied.
501             '''</summary>
502             ERROR_NETWORK_ACCESS_DENIED = 65L
503
504             '''<summary>
505             ''' The network resource type is
506             ''' incorrect.
507             '''</summary>
508             ERROR_BAD_DEV_TYPE = 66L
509
510             '''<summary>
511             ''' The network name cannot be
512             ''' found.
513             '''</summary>
514             ERROR_BAD_NET_NAME = 67L
515
516             '''<summary>
517             ''' The name limit for the local
518             ''' computer network adapter card
519             ''' exceeded.
520             '''</summary>
521             ERROR_TOO_MANY_NAMES = 68L
522
523             '''<summary>
524             ''' The network BIOS session limit
525             ''' exceeded.
526             '''</summary>
527             ERROR_TOO_MANY_SESS = 69L
528
529             '''<summary>
530             ''' The remote server is paused or
531             ''' is in the process of being
532             ''' started.
533             '''</summary>
534             ERROR_SHARING_PAUSED = 70L
535
536             '''<summary>
537             ''' The network request was not
538             ''' accepted.
539             '''</summary>
540             ERROR_REQ_NOT_ACCEP = 71L
541
542             '''<summary>
543             ''' The specified printer or disk
544             ''' device has been paused.
545             '''</summary>
546             ERROR_REDIR_PAUSED = 72L
547
548             '''<summary>
549             ''' The file exists.
550             '''</summary>
551             ERROR_FILE_EXISTS = 80L
552
553             '''<summary>
554             ''' The directory or file cannot
555             ''' be created.
556             '''</summary>
557             ERROR_CANNOT_MAKE = 82L
558
559             '''<summary>
560             ''' Fail on INT 24.
561             '''</summary>
562             ERROR_FAIL_I24 = 83L
563
564             '''<summary>
565             ''' Storage to process this
566             ''' request is not available.
567             '''</summary>
568             ERROR_OUT_OF_STRUCTURES = 84L
569
570             '''<summary>
571             ''' The local device name is
572             ''' already in use.
573             '''</summary>
574             ERROR_ALREADY_ASSIGNED = 85L
575
576             '''<summary>
577             ''' The specified network password
578             ''' is incorrect.
579             '''</summary>
580             ERROR_INVALID_PASSWORD = 86L
581
582             '''<summary>
583             ''' The parameter is incorrect.
584             '''</summary>
585             ERROR_INVALID_PARAMETER = 87L
586
587             '''<summary>
588             ''' A write fault occurred on the
589             ''' network.
590             '''</summary>
591             ERROR_NET_WRITE_FAULT = 88L
592
593             '''<summary>
594             ''' The system cannot start
595             ''' another process at this time.
596             '''</summary>
597             ERROR_NO_PROC_SLOTS = 89L
598
599             '''<summary>
600             ''' Cannot create another system
601             ''' semaphore.
602             '''</summary>
603             ERROR_TOO_MANY_SEMAPHORES = 100L
604
605             '''<summary>
606             ''' The exclusive semaphore is
607             ''' owned by another process.
608             '''</summary>
609             ERROR_EXCL_SEM_ALREADY_OWNED = 101L
610
611             '''<summary>
612             ''' The semaphore is set and
613             ''' cannot be closed.
614             '''</summary>
615             ERROR_SEM_IS_SET = 102L
616
617             '''<summary>
618             ''' The semaphore cannot be set
619             ''' again.
620             '''</summary>
621             ERROR_TOO_MANY_SEM_REQUESTS = 103L
622
623             '''<summary>
624             ''' Cannot request exclusive
625             ''' semaphores at interrupt time.
626             '''</summary>
627             ERROR_INVALID_AT_INTERRUPT_TIME = 104L
628
629             '''<summary>
630             ''' The previous ownership of this
631             ''' semaphore has ended.
632             '''</summary>
633             ERROR_SEM_OWNER_DIED = 105L
634
635             '''<summary>
636             ''' Insert the disk for drive 1.
637             '''</summary>
638             ERROR_SEM_USER_LIMIT = 106L
639
640             '''<summary>
641             ''' Program stopped because
642             ''' alternate disk was not
643             ''' inserted.
644             '''</summary>
645             ERROR_DISK_CHANGE = 107L
646
647             '''<summary>
648             ''' The disk is in use or locked
649             ''' by another process.
650             '''</summary>
651             ERROR_DRIVE_LOCKED = 108L
652
653             '''<summary>
654             ''' The pipe was ended.
655             '''</summary>
656             ERROR_BROKEN_PIPE = 109L
657
658             '''<summary>
659             ''' The system cannot open the
660             ''' specified device or file.
661             '''</summary>
662             ERROR_OPEN_FAILED = 110L
663
664             '''<summary>
665             ''' The file name is too long.
666             '''</summary>
667             ERROR_BUFFER_OVERFLOW = 111L
668
669             '''<summary>
670             ''' There is not enough space on
671             ''' the disk.
672             '''</summary>
673             ERROR_DISK_FULL = 112L
674
675             '''<summary>
676             ''' No more internal file
677             ''' identifiers available.
678             '''</summary>
679             ERROR_NO_MORE_SEARCH_HANDLES = 113L
680
681             '''<summary>
682             ''' The target internal file
683             ''' identifier is incorrect.
684             '''</summary>
685             ERROR_INVALID_TARGET_HANDLE = 114L
686
687             '''<summary>
688             ''' The IOCTL call made by the
689             ''' application program is
690             ''' incorrect.
691             '''</summary>
692             ERROR_INVALID_CATEGORY = 117L
693
694             '''<summary>
695             ''' The verify-on-write switch
696             ''' parameter value is incorrect.
697             '''</summary>
698             ERROR_INVALID_VERIFY_SWITCH = 118L
699
700             '''<summary>
701             ''' The system does not support
702             ''' the requested command.
703             '''</summary>
704             ERROR_BAD_DRIVER_LEVEL = 119L
705
706             '''<summary>
707             ''' The Application Program
708             ''' Interface (API) entered will
709             ''' only work in Windows/NT mode.
710             '''</summary>
711             ERROR_CALL_NOT_IMPLEMENTED = 120L
712
713             '''<summary>
714             ''' The semaphore timeout period
715             ''' has expired.
716             '''</summary>
717             ERROR_SEM_TIMEOUT = 121L
718
719             '''<summary>
720             ''' The data area passed to a
721             ''' system call is too small.
722             '''</summary>
723             ERROR_INSUFFICIENT_BUFFER = 122L
724
725             '''<summary>
726             ''' The file name, directory name,
727             ''' or volume label is
728             ''' syntactically incorrect.
729             '''</summary>
730             ERROR_INVALID_NAME = 123L
731
732             '''<summary>
733             ''' The system call level is
734             ''' incorrect.
735             '''</summary>
736             ERROR_INVALID_LEVEL = 124L
737
738             '''<summary>
739             ''' The disk has no volume label.
740             '''</summary>
741             ERROR_NO_VOLUME_LABEL = 125L
742
743             '''<summary>
744             ''' The specified module cannot be
745             ''' found.
746             '''</summary>
747             ERROR_MOD_NOT_FOUND = 126L
748
749             '''<summary>
750             ''' The specified procedure could
751             ''' not be found.
752             '''</summary>
753             ERROR_PROC_NOT_FOUND = 127L
754
755             '''<summary>
756             ''' There are no child processes
757             ''' to wait for.
758             '''</summary>
759             ERROR_WAIT_NO_CHILDREN = 128L
760
761             '''<summary>
762             ''' The %1 application cannot be
763             ''' run in Windows mode.
764             '''</summary>
765             ERROR_CHILD_NOT_COMPLETE = 129L
766
767             '''<summary>
768             ''' Attempt to use a file handle
769             ''' to an open disk partition for
770             ''' an operation other than raw
771             ''' disk I/O.
772             '''</summary>
773             ERROR_DIRECT_ACCESS_HANDLE = 130L
774
775             '''<summary>
776             ''' An attempt was made to move
777             ''' the file pointer before the
778             ''' beginning of the file.
779             '''</summary>
780             ERROR_NEGATIVE_SEEK = 131L
781
782             '''<summary>
783             ''' The file pointer cannot be set
784             ''' on the specified device or
785             ''' file.
786             '''</summary>
787             ERROR_SEEK_ON_DEVICE = 132L
788
789             '''<summary>
790             ''' A JOIN or SUBST command cannot
791             ''' be used for a drive that
792             ''' contains previously joined
793             ''' drives.
794             '''</summary>
795             ERROR_IS_JOIN_TARGET = 133L
796
797             '''<summary>
798             ''' An attempt was made to use a
799             ''' JOIN or SUBST command on a
800             ''' drive that is already joined.
801             '''</summary>
802             ERROR_IS_JOINED = 134L
803
804             '''<summary>
805             ''' An attempt was made to use a
806             ''' JOIN or SUBST command on a
807             ''' drive already substituted.
808             '''</summary>
809             ERROR_IS_SUBSTED = 135L
810
811             '''<summary>
812             ''' The system attempted to delete
813             ''' the JOIN of a drive not
814             ''' previously joined.
815             '''</summary>
816             ERROR_NOT_JOINED = 136L
817
818             '''<summary>
819             ''' The system attempted to delete
820             ''' the substitution of a drive
821             ''' not previously substituted.
822             '''</summary>
823             ERROR_NOT_SUBSTED = 137L
824
825             '''<summary>
826             ''' The system tried to join a
827             ''' drive to a directory on a
828             ''' joined drive.
829             '''</summary>
830             ERROR_JOIN_TO_JOIN = 138L
831
832             '''<summary>
833             ''' The system attempted to
834             ''' substitute a drive to a
835             ''' directory on a substituted
836             ''' drive.
837             '''</summary>
838             ERROR_SUBST_TO_SUBST = 139L
839
840             '''<summary>
841             ''' The system tried to join a
842             ''' drive to a directory on a
843             ''' substituted drive.
844             '''</summary>
845             ERROR_JOIN_TO_SUBST = 140L
846
847             '''<summary>
848             ''' The system attempted to SUBST
849             ''' a drive to a directory on a
850             ''' joined drive.
851             '''</summary>
852             ERROR_SUBST_TO_JOIN = 141L
853
854             '''<summary>
855             ''' The system cannot perform a
856             ''' JOIN or SUBST at this time.
857             '''</summary>
858             ERROR_BUSY_DRIVE = 142L
859
860             '''<summary>
861             ''' The system cannot join or
862             ''' substitute a drive to or for a
863             ''' directory on the same drive.
864             '''</summary>
865             ERROR_SAME_DRIVE = 143L
866
867             '''<summary>
868             ''' The directory is not a
869             ''' subdirectory of the root
870             ''' directory.
871             '''</summary>
872             ERROR_DIR_NOT_ROOT = 144L
873
874             '''<summary>
875             ''' The directory is not empty.
876             '''</summary>
877             ERROR_DIR_NOT_EMPTY = 145L
878
879             '''<summary>
880             ''' The path specified is being
881             ''' used in a substitute.
882             '''</summary>
883             ERROR_IS_SUBST_PATH = 146L
884
885             '''<summary>
886             ''' Not enough resources are
887             ''' available to process this
888             ''' command.
889             '''</summary>
890             ERROR_IS_JOIN_PATH = 147L
891
892             '''<summary>
893             ''' The specified path cannot be
894             ''' used at this time.
895             '''</summary>
896             ERROR_PATH_BUSY = 148L
897
898             '''<summary>
899             ''' An attempt was made to join or
900             ''' substitute a drive for which a
901             ''' directory on the drive is the
902             ''' target of a previous
903             ''' substitute.
904             '''</summary>
905             ERROR_IS_SUBST_TARGET = 149L
906
907             '''<summary>
908             ''' System trace information not
909             ''' specified in your CONFIG.SYS
910             ''' file, or tracing is not
911             ''' allowed.
912             '''</summary>
913             ERROR_SYSTEM_TRACE = 150L
914
915             '''<summary>
916             ''' The number of specified
917             ''' semaphore events is incorrect.
918             '''</summary>
919             ERROR_INVALID_EVENT_COUNT = 151L
920
921             '''<summary>
922             ''' Too many semaphores are
923             ''' already set.
924             '''</summary>
925             ERROR_TOO_MANY_MUXWAITERS = 152L
926
927             '''<summary>
928             ''' The list is not correct.
929             '''</summary>
930             ERROR_INVALID_LIST_FORMAT = 153L
931
932             '''<summary>
933             ''' The volume label entered
934             ''' exceeds the 11 character
935             ''' limit. The first 11 characters
936             ''' were written to disk. Any
937             ''' characters that exceeded the
938             ''' 11 character limit were
939             ''' automatically deleted.
940             '''</summary>
941             ERROR_LABEL_TOO_LONG = 154L
942
943             '''<summary>
944             ''' Cannot create another thread.
945             '''</summary>
946             ERROR_TOO_MANY_TCBS = 155L
947
948             '''<summary>
949             ''' The recipient process has
950             ''' refused the signal.
951             '''</summary>
952             ERROR_SIGNAL_REFUSED = 156L
953
954             '''<summary>
955             ''' The segment is already
956             ''' discarded and cannot be
957             ''' locked.
958             '''</summary>
959             ERROR_DISCARDED = 157L
960
961             '''<summary>
962             ''' The segment is already
963             ''' unlocked.
964             '''</summary>
965             ERROR_NOT_LOCKED = 158L
966
967             '''<summary>
968             ''' The address for the thread ID
969             ''' is incorrect.
970             '''</summary>
971             ERROR_BAD_THREADID_ADDR = 159L
972
973             '''<summary>
974             ''' The argument string passed to
975             ''' DosExecPgm is incorrect.
976             '''</summary>
977             ERROR_BAD_ARGUMENTS = 160L
978
979             '''<summary>
980             ''' The specified path name is
981             ''' invalid.
982             '''</summary>
983             ERROR_BAD_PATHNAME = 161L
984
985             '''<summary>
986             ''' A signal is already pending.
987             '''</summary>
988             ERROR_SIGNAL_PENDING = 162L
989
990             '''<summary>
991             ''' No more threads can be created
992             ''' in the system.
993             '''</summary>
994             ERROR_MAX_THRDS_REACHED = 164L
995
996             '''<summary>
997             ''' Attempt to lock a region of a
998             ''' file failed.
999             '''</summary>
1000             ERROR_LOCK_FAILED = 167L
1001
1002             '''<summary>
1003             ''' The requested resource is in
1004             ''' use.
1005             '''</summary>
1006             ERROR_BUSY = 170L
1007
1008             '''<summary>
1009             ''' A lock request was not
1010             ''' outstanding for the supplied
1011             ''' cancel region.
1012             '''</summary>
1013             ERROR_CANCEL_VIOLATION = 173L
1014
1015             '''<summary>
1016             ''' The file system does not
1017             ''' support atomic changing of the
1018             ''' lock type.
1019             '''</summary>
1020             ERROR_ATOMIC_LOCKS_NOT_SUPPORTED = 174L
1021
1022             '''<summary>
1023             ''' The system detected a segment
1024             ''' number that is incorrect.
1025             '''</summary>
1026             ERROR_INVALID_SEGMENT_NUMBER = 180L
1027
1028             '''<summary>
1029             ''' The operating system cannot
1030             ''' run %1.
1031             '''</summary>
1032             ERROR_INVALID_ORDINAL = 182L
1033
1034             '''<summary>
1035             ''' Attempt to create file that
1036             ''' already exists.
1037             '''</summary>
1038             ERROR_ALREADY_EXISTS = 183L
1039
1040             '''<summary>
1041             ''' The flag passed is incorrect.
1042             '''</summary>
1043             ERROR_INVALID_FLAG_NUMBER = 186L
1044
1045             '''<summary>
1046             ''' The specified system semaphore
1047             ''' name was not found.
1048             '''</summary>
1049             ERROR_SEM_NOT_FOUND = 187L
1050
1051             '''<summary>
1052             ''' The operating system cannot
1053             ''' run %1.
1054             '''</summary>
1055             ERROR_INVALID_STARTING_CODESEG = 188L
1056
1057             '''<summary>
1058             ''' The operating system cannot
1059             ''' run %1.
1060             '''</summary>
1061             ERROR_INVALID_STACKSEG = 189L
1062
1063             '''<summary>
1064             ''' The operating system cannot
1065             ''' run %1.
1066             '''</summary>
1067             ERROR_INVALID_MODULETYPE = 190L
1068
1069             '''<summary>
1070             ''' %1 cannot be run in Windows/NT
1071             ''' mode.
1072             '''</summary>
1073             ERROR_INVALID_EXE_SIGNATURE = 191L
1074
1075             '''<summary>
1076             ''' The operating system cannot
1077             ''' run %1.
1078             '''</summary>
1079             ERROR_EXE_MARKED_INVALID = 192L
1080
1081             '''<summary>
1082             ''' %1 is not a valid Windows-
1083             ''' based application.
1084             '''</summary>
1085             ERROR_BAD_EXE_FORMAT = 193L
1086
1087             '''<summary>
1088             ''' The operating system cannot
1089             ''' run %1.
1090             '''</summary>
1091             ERROR_ITERATED_DATA_EXCEEDS_64k = 194L
1092
1093             '''<summary>
1094             ''' The operating system cannot
1095             ''' run %1.
1096             '''</summary>
1097             ERROR_INVALID_MINALLOCSIZE = 195L
1098
1099             '''<summary>
1100             ''' The operating system cannot
1101             ''' run this application program.
1102             '''</summary>
1103             ERROR_DYNLINK_FROM_INVALID_RING = 196L
1104
1105             '''<summary>
1106             ''' The operating system is not
1107             ''' presently configured to run
1108             ''' this application.
1109             '''</summary>
1110             ERROR_IOPL_NOT_ENABLED = 197L
1111
1112             '''<summary>
1113             ''' The operating system cannot
1114             ''' run %1.
1115             '''</summary>
1116             ERROR_INVALID_SEGDPL = 198L
1117
1118             '''<summary>
1119             ''' The operating system cannot
1120             ''' run this application program.
1121             '''</summary>
1122             ERROR_AUTODATASEG_EXCEEDS_64k = 199L
1123
1124             '''<summary>
1125             ''' The code segment cannot be
1126             ''' greater than or equal to 64KB.
1127             '''</summary>
1128             ERROR_RING2SEG_MUST_BE_MOVABLE = 200L
1129
1130             '''<summary>
1131             ''' The operating system cannot
1132             ''' run %1.
1133             '''</summary>
1134             ERROR_RELOC_CHAIN_XEEDS_SEGLIM = 201L
1135
1136             '''<summary>
1137             ''' The operating system cannot
1138             ''' run %1.
1139             '''</summary>
1140             ERROR_INFLOOP_IN_RELOC_CHAIN = 202L
1141
1142             '''<summary>
1143             ''' The system could not find the
1144             ''' environment option entered.
1145             '''</summary>
1146             ERROR_ENVVAR_NOT_FOUND = 203L
1147
1148             '''<summary>
1149             ''' No process in the command
1150             ''' subtree has a signal handler.
1151             '''</summary>
1152             ERROR_NO_SIGNAL_SENT = 205L
1153
1154             '''<summary>
1155             ''' The file name or extension is
1156             ''' too long.
1157             '''</summary>
1158             ERROR_FILENAME_EXCED_RANGE = 206L
1159
1160             '''<summary>
1161             ''' The ring 2 stack is in use.
1162             '''</summary>
1163             ERROR_RING2_STACK_IN_USE = 207L
1164
1165             '''<summary>
1166             ''' The global filename characters
1167             ''' * or ? are entered
1168             ''' incorrectly, or too many
1169             ''' global filename characters are
1170             ''' specified.
1171             '''</summary>
1172             ERROR_META_EXPANSION_TOO_LONG = 208L
1173
1174             '''<summary>
1175             ''' The signal being posted is
1176             ''' incorrect.
1177             '''</summary>
1178             ERROR_INVALID_SIGNAL_NUMBER = 209L
1179
1180             '''<summary>
1181             ''' The signal handler cannot be
1182             ''' set.
1183             '''</summary>
1184             ERROR_THREAD_1_INACTIVE = 210L
1185
1186             '''<summary>
1187             ''' The segment is locked and
1188             ''' cannot be reallocated.
1189             '''</summary>
1190             ERROR_LOCKED = 212L
1191
1192             '''<summary>
1193             ''' Too many dynamic link modules
1194             ''' are attached to this program
1195             ''' or dynamic link module.
1196             '''</summary>
1197             ERROR_TOO_MANY_MODULES = 214L
1198
1199             '''<summary>
1200             ''' Can't nest calls to
1201             ''' LoadModule.
1202             '''</summary>
1203             ERROR_NESTING_NOT_ALLOWED = 215L
1204
1205             '''<summary>
1206             ''' The pipe state is invalid.
1207             '''</summary>
1208             ERROR_BAD_PIPE = 230L
1209
1210             '''<summary>
1211             ''' All pipe instances busy.
1212             '''</summary>
1213             ERROR_PIPE_BUSY = 231L
1214
1215             '''<summary>
1216             ''' Pipe close in progress.
1217             '''</summary>
1218             ERROR_NO_DATA = 232L
1219
1220             '''<summary>
1221             ''' No process on other end of
1222             ''' pipe.
1223             '''</summary>
1224             ERROR_PIPE_NOT_CONNECTED = 233L
1225
1226             '''<summary>
1227             ''' More data is available.
1228             '''</summary>
1229             ERROR_MORE_DATA = 234L
1230
1231             '''<summary>
1232             ''' The session was canceled.
1233             '''</summary>
1234             ERROR_VC_DISCONNECTED = 240L
1235
1236             '''<summary>
1237             ''' The specified EA name is
1238             ''' invalid.
1239             '''</summary>
1240             ERROR_INVALID_EA_NAME = 254L
1241
1242             '''<summary>
1243             ''' The EAs are inconsistent.
1244             '''</summary>
1245             ERROR_EA_LIST_INCONSISTENT = 255L
1246
1247             '''<summary>
1248             ''' No more data is available.
1249             '''</summary>
1250             ERROR_NO_MORE_ITEMS = 259L
1251
1252             '''<summary>
1253             ''' The Copy API cannot be used.
1254             '''</summary>
1255             ERROR_CANNOT_COPY = 266L
1256
1257             '''<summary>
1258             ''' The directory name is invalid.
1259             '''</summary>
1260             ERROR_DIRECTORY = 267L
1261
1262             '''<summary>
1263             ''' The EAs did not fit in the
1264             ''' buffer.
1265             '''</summary>
1266             ERROR_EAS_DIDNT_FIT = 275L
1267
1268             '''<summary>
1269             ''' The EA file on the mounted
1270             ''' file system is damaged.
1271             '''</summary>
1272             ERROR_EA_FILE_CORRUPT = 276L
1273
1274             '''<summary>
1275             ''' The EA table in the EA file on
1276             ''' the mounted file system is
1277             ''' full.
1278             '''</summary>
1279             ERROR_EA_TABLE_FULL = 277L
1280
1281             '''<summary>
1282             ''' The specified EA handle is
1283             ''' invalid.
1284             '''</summary>
1285             ERROR_INVALID_EA_HANDLE = 278L
1286
1287             '''<summary>
1288             ''' The mounted file system does
1289             ''' not support extended
1290             ''' attributes.
1291             '''</summary>
1292             ERROR_EAS_NOT_SUPPORTED = 282L
1293
1294             '''<summary>
1295             ''' Attempt to release mutex not
1296             ''' owned by caller.
1297             '''</summary>
1298             ERROR_NOT_OWNER = 288L
1299
1300             '''<summary>
1301             ''' Too many posts made to a
1302             ''' semaphore.
1303             '''</summary>
1304             ERROR_TOO_MANY_POSTS = 298L
1305
1306             '''<summary>
1307             ''' Only part of a
1308             ''' Read/WriteProcessMemory
1309             ''' request was completed.
1310             '''</summary>
1311             ERROR_PARTIAL_COPY = 299L
1312
1313             '''<summary>
1314             ''' The system cannot find message
1315             ''' for message number 0x%1 in
1316             ''' message file for %2.
1317             '''</summary>
1318             ERROR_MR_MID_NOT_FOUND = 317L
1319
1320             '''<summary>
1321             ''' Attempt to access invalid
1322             ''' address.
1323             '''</summary>
1324             ERROR_INVALID_ADDRESS = 487L
1325
1326             '''<summary>
1327             ''' Arithmetic result exceeded 32-
1328             ''' bits.
1329             '''</summary>
1330             ERROR_ARITHMETIC_OVERFLOW = 534L
1331
1332             '''<summary>
1333             ''' There is a process on other
1334             ''' end of the pipe.
1335             '''</summary>
1336             ERROR_PIPE_CONNECTED = 535L
1337
1338             '''<summary>
1339             ''' Waiting for a process to open
1340             ''' the other end of the pipe.
1341             '''</summary>
1342             ERROR_PIPE_LISTENING = 536L
1343
1344             '''<summary>
1345             ''' Access to the EA is denied.
1346             '''</summary>
1347             ERROR_EA_ACCESS_DENIED = 994L
1348
1349             '''<summary>
1350             ''' The I/O operation was aborted
1351             ''' due to either thread exit or
1352             ''' application request.
1353             '''</summary>
1354             ERROR_OPERATION_ABORTED = 995L
1355
1356             '''<summary>
1357             ''' Overlapped IO event not in
1358             ''' signaled state.
1359             '''</summary>
1360             ERROR_IO_INCOMPLETE = 996L
1361
1362             '''<summary>
1363             ''' Overlapped IO operation in
1364             ''' progress.
1365             '''</summary>
1366             ERROR_IO_PENDING = 997L
1367
1368             '''<summary>
1369             ''' Invalid access to memory
1370             ''' location.
1371             '''</summary>
1372             ERROR_NOACCESS = 998L
1373
1374             '''<summary>
1375             ''' Error accessing paging file.
1376             '''</summary>
1377             ERROR_SWAPERROR = 999L
1378
1379             '''<summary>
1380             ''' Recursion too deep, stack
1381             ''' overflowed.
1382             '''</summary>
1383             ERROR_STACK_OVERFLOW = 1001L
1384
1385             '''<summary>
1386             ''' Window can't handle sent
1387             ''' message.
1388             '''</summary>
1389             ERROR_INVALID_MESSAGE = 1002L
1390
1391             '''<summary>
1392             ''' Cannot complete function for
1393             ''' some reason.
1394             '''</summary>
1395             ERROR_CAN_NOT_COMPLETE = 1003L
1396
1397             '''<summary>
1398             ''' The flags are invalid.
1399             '''</summary>
1400             ERROR_INVALID_FLAGS = 1004L
1401
1402             '''<summary>
1403             ''' The volume does not contain a
1404             ''' recognized file system. Make
1405             ''' sure that all required file
1406             ''' system drivers are loaded and
1407             ''' the volume is not damaged.
1408             '''</summary>
1409             ERROR_UNRECOGNIZED_VOLUME = 1005L
1410
1411             '''<summary>
1412             ''' The volume for a file was
1413             ''' externally altered and the
1414             ''' opened file is no longer
1415             ''' valid.
1416             '''</summary>
1417             ERROR_FILE_INVALID = 1006L
1418
1419             '''<summary>
1420             ''' The requested operation cannot
1421             ''' be performed in full-screen
1422             ''' mode.
1423             '''</summary>
1424             ERROR_FULLSCREEN_MODE = 1007L
1425
1426             '''<summary>
1427             ''' An attempt was made to
1428             ''' reference a token that does
1429             ''' not exist.
1430             '''</summary>
1431             ERROR_NO_TOKEN = 1008L
1432
1433             '''<summary>
1434             ''' The configuration registry
1435             ''' database is damaged.
1436             '''</summary>
1437             ERROR_BADDB = 1009L
1438
1439             '''<summary>
1440             ''' The configuration registry key
1441             ''' is invalid.
1442             '''</summary>
1443             ERROR_BADKEY = 1010L
1444
1445             '''<summary>
1446             ''' The configuration registry key
1447             ''' cannot be opened.
1448             '''</summary>
1449             ERROR_CANTOPEN = 1011L
1450
1451             '''<summary>
1452             ''' The configuration registry key
1453             ''' cannot be read.
1454             '''</summary>
1455             ERROR_CANTREAD = 1012L
1456
1457             '''<summary>
1458             ''' The configuration registry key
1459             ''' cannot be written.
1460             '''</summary>
1461             ERROR_CANTWRITE = 1013L
1462
1463             '''<summary>
1464             ''' One of the files containing
1465             ''' the system's registry data had
1466             ''' to be recovered by use of a
1467             ''' log or alternate copy. The
1468             ''' recovery succeeded.
1469             '''</summary>
1470             ERROR_REGISTRY_RECOVERED = 1014L
1471
1472             '''<summary>
1473             ''' The registry is damaged. The
1474             ''' structure of one of the files
1475             ''' that contains registry data is
1476             ''' damaged, or the system's in
1477             ''' memory image of the file is
1478             ''' damaged, or the file could not
1479             ''' be recovered because its
1480             ''' alternate copy or log was
1481             ''' absent or damaged.
1482             '''</summary>
1483             ERROR_REGISTRY_CORRUPT = 1015L
1484
1485             '''<summary>
1486             ''' The registry initiated an I/O
1487             ''' operation that had an
1488             ''' unrecoverable failure. The
1489             ''' registry could not read in, or
1490             ''' write out, or flush, one of
1491             ''' the files that contain the
1492             ''' system's image of the
1493             ''' registry.
1494             '''</summary>
1495             ERROR_REGISTRY_IO_FAILED = 1016L
1496
1497             '''<summary>
1498             ''' The system attempted to load
1499             ''' or restore a file into the
1500             ''' registry, and the specified
1501             ''' file is not in the format of a
1502             ''' registry file.
1503             '''</summary>
1504             ERROR_NOT_REGISTRY_FILE = 1017L
1505
1506             '''<summary>
1507             ''' Illegal operation attempted on
1508             ''' a registry key that has been
1509             ''' marked for deletion.
1510             '''</summary>
1511             ERROR_KEY_DELETED = 1018L
1512
1513             '''<summary>
1514             ''' System could not allocate
1515             ''' required space in a registry
1516             ''' log.
1517             '''</summary>
1518             ERROR_NO_LOG_SPACE = 1019L
1519
1520             '''<summary>
1521             ''' An attempt was made to create
1522             ''' a symbolic link in a registry
1523             ''' key that already has subkeys
1524             ''' or values.
1525             '''</summary>
1526             ERROR_KEY_HAS_CHILDREN = 1020L
1527
1528             '''<summary>
1529             ''' An attempt was made to create
1530             ''' a stable subkey under a
1531             ''' volatile parent key.
1532             '''</summary>
1533             ERROR_CHILD_MUST_BE_VOLATILE = 1021L
1534
1535             '''<summary>
1536             ''' This indicates that a notify
1537             ''' change request is being
1538             ''' completed and the information
1539             ''' is not being returned in the
1540             ''' caller's buffer. The caller
1541             ''' now needs to enumerate the
1542             ''' files to find the changes.
1543             '''</summary>
1544             ERROR_NOTIFY_ENUM_DIR = 1022L
1545
1546             '''<summary>
1547             ''' A stop control has been sent
1548             ''' to a service which other
1549             ''' running services are dependent
1550             ''' on.
1551             '''</summary>
1552             ERROR_DEPENDENT_SERVICES_RUNNING = 1051L
1553
1554             '''<summary>
1555             ''' The requested control is not
1556             ''' valid for this service.
1557             '''</summary>
1558             ERROR_INVALID_SERVICE_CONTROL = 1052L
1559
1560             '''<summary>
1561             ''' The service did not respond to
1562             ''' the start or control request
1563             ''' in a timely fashion.
1564             '''</summary>
1565             ERROR_SERVICE_REQUEST_TIMEOUT = 1053L
1566
1567             '''<summary>
1568             ''' A thread could not be created
1569             ''' for the service.
1570             '''</summary>
1571             ERROR_SERVICE_NO_THREAD = 1054L
1572
1573             '''<summary>
1574             ''' The service database is
1575             ''' locked.
1576             '''</summary>
1577             ERROR_SERVICE_DATABASE_LOCKED = 1055L
1578
1579             '''<summary>
1580             ''' An instance of the service is
1581             ''' already running.
1582             '''</summary>
1583             ERROR_SERVICE_ALREADY_RUNNING = 1056L
1584
1585             '''<summary>
1586             ''' The account name is invalid or
1587             ''' does not exist.
1588             '''</summary>
1589             ERROR_INVALID_SERVICE_ACCOUNT = 1057L
1590
1591             '''<summary>
1592             ''' The specified service is
1593             ''' disabled and cannot be
1594             ''' started.
1595             '''</summary>
1596             ERROR_SERVICE_DISABLED = 1058L
1597
1598             '''<summary>
1599             ''' Circular service dependency
1600             ''' was specified.
1601             '''</summary>
1602             ERROR_CIRCULAR_DEPENDENCY = 1059L
1603
1604             '''<summary>
1605             ''' The specified service does not
1606             ''' exist as an installed service.
1607             '''</summary>
1608             ERROR_SERVICE_DOES_NOT_EXIST = 1060L
1609
1610             '''<summary>
1611             ''' The service cannot accept
1612             ''' control messages at this time.
1613             '''</summary>
1614             ERROR_SERVICE_CANNOT_ACCEPT_CTRL = 1061L
1615
1616             '''<summary>
1617             ''' The service has not been
1618             ''' started.
1619             '''</summary>
1620             ERROR_SERVICE_NOT_ACTIVE = 1062L
1621
1622             '''<summary>
1623             ''' The service process could
1624             ''' not connect to the service
1625             ''' controller.
1626             '''</summary>
1627             ERROR_FAILED_SERVICE_CONTROLLER_CONNECT = 1063L
1628
1629             '''<summary>
1630             ''' An exception occurred in the
1631             ''' service when handling the
1632             ''' control request.
1633             '''</summary>
1634             ERROR_EXCEPTION_IN_SERVICE = 1064L
1635
1636             '''<summary>
1637             ''' The database specified does
1638             ''' not exist.
1639             '''</summary>
1640             ERROR_DATABASE_DOES_NOT_EXIST = 1065L
1641
1642             '''<summary>
1643             ''' The service has returned a
1644             ''' service-specific error code.
1645             '''</summary>
1646             ERROR_SERVICE_SPECIFIC_ERROR = 1066L
1647
1648             '''<summary>
1649             ''' The process terminated
1650             ''' unexpectedly.
1651             '''</summary>
1652             ERROR_PROCESS_ABORTED = 1067L
1653
1654             '''<summary>
1655             ''' The dependency service or
1656             ''' group failed to start.
1657             '''</summary>
1658             ERROR_SERVICE_DEPENDENCY_FAIL = 1068L
1659
1660             '''<summary>
1661             ''' The service did not start due
1662             ''' to a logon failure.
1663             '''</summary>
1664             ERROR_SERVICE_LOGON_FAILED = 1069L
1665
1666             '''<summary>
1667             ''' After starting, the service
1668             ''' hung in a start-pending state.
1669             '''</summary>
1670             ERROR_SERVICE_START_HANG = 1070L
1671
1672             '''<summary>
1673             ''' The specified service database
1674             ''' lock is invalid.
1675             '''</summary>
1676             ERROR_INVALID_SERVICE_LOCK = 1071L
1677
1678             '''<summary>
1679             ''' The specified service has been
1680             ''' marked for deletion.
1681             '''</summary>
1682             ERROR_SERVICE_MARKED_FOR_DELETE = 1072L
1683
1684             '''<summary>
1685             ''' The specified service already
1686             ''' exists.
1687             '''</summary>
1688             ERROR_SERVICE_EXISTS = 1073L
1689
1690             '''<summary>
1691             ''' The system is currently
1692             ''' running with the last-known-
1693             ''' good configuration.
1694             '''</summary>
1695             ERROR_ALREADY_RUNNING_LKG = 1074L
1696
1697             '''<summary>
1698             ''' The dependency service does
1699             ''' not exist or has been marked
1700             ''' for deletion.
1701             '''</summary>
1702             ERROR_SERVICE_DEPENDENCY_DELETED = 1075L
1703
1704             '''<summary>
1705             ''' The current boot has already
1706             ''' been accepted for use as the
1707             ''' last-known-good control set.
1708             '''</summary>
1709             ERROR_BOOT_ALREADY_ACCEPTED = 1076L
1710
1711             '''<summary>
1712             ''' No attempts to start the
1713             ''' service have been made since
1714             ''' the last boot.
1715             '''</summary>
1716             ERROR_SERVICE_NEVER_STARTED = 1077L
1717
1718             '''<summary>
1719             ''' The name is already in use as
1720             ''' either a service name or a
1721             ''' service display name.
1722             '''</summary>
1723             ERROR_DUPLICATE_SERVICE_NAME = 1078L
1724
1725             '''<summary>
1726             ''' The account specified for this
1727             ''' service is different from the
1728             ''' account specified for other
1729             ''' services running in the same
1730             ''' process.
1731             '''</summary>
1732             ERROR_DIFFERENT_SERVICE_ACCOUNT = 1079L
1733
1734             '''<summary>
1735             ''' The physical end of the tape
1736             ''' has been reached.
1737             '''</summary>
1738             ERROR_END_OF_MEDIA = 1100L
1739
1740             '''<summary>
1741             ''' A tape access reached a
1742             ''' filemark.
1743             '''</summary>
1744             ERROR_FILEMARK_DETECTED = 1101L
1745
1746             '''<summary>
1747             ''' The beginning of the tape or
1748             ''' partition was encountered.
1749             '''</summary>
1750             ERROR_BEGINNING_OF_MEDIA = 1102L
1751
1752             '''<summary>
1753             ''' A tape access reached a
1754             ''' setmark.
1755             '''</summary>
1756             ERROR_SETMARK_DETECTED = 1103L
1757
1758             '''<summary>
1759             ''' During a tape access, the end
1760             ''' of the data marker was
1761             ''' reached.
1762             '''</summary>
1763             ERROR_NO_DATA_DETECTED = 1104L
1764
1765             '''<summary>
1766             ''' Tape could not be partitioned.
1767             '''</summary>
1768             ERROR_PARTITION_FAILURE = 1105L
1769
1770             '''<summary>
1771             ''' When accessing a new tape of a
1772             ''' multivolume partition, the
1773             ''' current block size is
1774             ''' incorrect.
1775             '''</summary>
1776             ERROR_INVALID_BLOCK_LENGTH = 1106L
1777
1778             '''<summary>
1779             ''' Tape partition information
1780             ''' could not be found when
1781             ''' loading a tape.
1782             '''</summary>
1783             ERROR_DEVICE_NOT_PARTITIONED = 1107L
1784
1785             '''<summary>
1786             ''' Attempt to lock the eject
1787             ''' media mechanism failed.
1788             '''</summary>
1789             ERROR_UNABLE_TO_LOCK_MEDIA = 1108L
1790
1791             '''<summary>
1792             ''' Unload media failed.
1793             '''</summary>
1794             ERROR_UNABLE_TO_UNLOAD_MEDIA = 1109L
1795
1796             '''<summary>
1797             ''' Media in drive may have
1798             ''' changed.
1799             '''</summary>
1800             ERROR_MEDIA_CHANGED = 1110L
1801
1802             '''<summary>
1803             ''' The I/O bus was reset.
1804             '''</summary>
1805             ERROR_BUS_RESET = 1111L
1806
1807             '''<summary>
1808             ''' Tape query failed because of
1809             ''' no media in drive.
1810             '''</summary>
1811             ERROR_NO_MEDIA_IN_DRIVE = 1112L
1812
1813             '''<summary>
1814             ''' No mapping for the Unicode
1815             ''' character exists in the target
1816             ''' multi-byte code page.
1817             '''</summary>
1818             ERROR_NO_UNICODE_TRANSLATION = 1113L
1819
1820             '''<summary>
1821             ''' A DLL initialization routine
1822             ''' failed.
1823             '''</summary>
1824             ERROR_DLL_INIT_FAILED = 1114L
1825
1826             '''<summary>
1827             ''' A system shutdown is in
1828             ''' progress.
1829             '''</summary>
1830             ERROR_SHUTDOWN_IN_PROGRESS = 1115L
1831
1832             '''<summary>
1833             ''' An attempt to abort the
1834             ''' shutdown of the system failed
1835             ''' because no shutdown was in
1836             ''' progress.
1837             '''</summary>
1838             ERROR_NO_SHUTDOWN_IN_PROGRESS = 1116L
1839
1840             '''<summary>
1841             ''' The request could not be
1842             ''' performed because of an I/O
1843             ''' device error.
1844             '''</summary>
1845             ERROR_IO_DEVICE = 1117L
1846
1847             '''<summary>
1848             ''' No serial device was
1849             ''' successfully initialized. The
1850             ''' serial driver will unload.
1851             '''</summary>
1852             ERROR_SERIAL_NO_DEVICE = 1118L
1853
1854             '''<summary>
1855             ''' Unable to open a device that
1856             ''' was sharing an interrupt
1857             ''' request (IRQ) with other
1858             ''' devices. At least one other
1859             ''' device that uses that IRQ was
1860             ''' already opened.
1861             '''</summary>
1862             ERROR_IRQ_BUSY = 1119L
1863
1864             '''<summary>
1865             ''' A serial I/O operation was
1866             ''' completed by another write to
1867             ''' the serial port. (The
1868             ''' IOCTL_SERIAL_XOFF_COUNTER
1869             ''' reached zero.)
1870             '''</summary>
1871             ERROR_MORE_WRITES = 1120L
1872
1873             '''<summary>
1874             ''' A serial I/O operation
1875             ''' completed because the time-out
1876             ''' period expired. (The
1877             ''' IOCTL_SERIAL_XOFF_COUNTER did
1878             ''' not reach zero.)
1879             '''</summary>
1880             ERROR_COUNTER_TIMEOUT = 1121L
1881
1882             '''<summary>
1883             ''' No ID address mark was found
1884             ''' on the floppy disk.
1885             '''</summary>
1886             ERROR_FLOPPY_ID_MARK_NOT_FOUND = 1122L
1887
1888             '''<summary>
1889             ''' Mismatch between the floppy
1890             ''' disk sector ID field and the
1891             ''' floppy disk controller track
1892             ''' address.
1893             '''</summary>
1894             ERROR_FLOPPY_WRONG_CYLINDER = 1123L
1895
1896             '''<summary>
1897             ''' The floppy disk controller
1898             ''' reported an error that is not
1899             ''' recognized by the floppy disk
1900             ''' driver.
1901             '''</summary>
1902             ERROR_FLOPPY_UNKNOWN_ERROR = 1124L
1903
1904             '''<summary>
1905             ''' The floppy disk controller
1906             ''' returned inconsistent results
1907             ''' in its registers.
1908             '''</summary>
1909             ERROR_FLOPPY_BAD_REGISTERS = 1125L
1910
1911             '''<summary>
1912             ''' While accessing the hard disk,
1913             ''' a recalibrate operation
1914             ''' failed, even after retries.
1915             '''</summary>
1916             ERROR_DISK_RECALIBRATE_FAILED = 1126L
1917
1918             '''<summary>
1919             ''' While accessing the hard disk,
1920             ''' a disk operation failed even
1921             ''' after retries.
1922             '''</summary>
1923             ERROR_DISK_OPERATION_FAILED = 1127L
1924
1925             '''<summary>
1926             ''' While accessing the hard disk,
1927             ''' a disk controller reset was
1928             ''' needed, but even that failed.
1929             '''</summary>
1930             ERROR_DISK_RESET_FAILED = 1128L
1931
1932             '''<summary>
1933             ''' Physical end of tape
1934             ''' encountered.
1935             '''</summary>
1936             ERROR_EOM_OVERFLOW = 1129L
1937
1938             '''<summary>
1939             ''' Not enough server storage is
1940             ''' available to process this
1941             ''' command.
1942             '''</summary>
1943             ERROR_NOT_ENOUGH_SERVER_MEMORY = 1130L
1944
1945             '''<summary>
1946             ''' A potential deadlock condition
1947             ''' has been detected.
1948             '''</summary>
1949             ERROR_POSSIBLE_DEADLOCK = 1131L
1950
1951             '''<summary>
1952             ''' The base address or the file
1953             ''' offset specified does not have
1954             ''' the proper alignment.
1955             '''</summary>
1956             ERROR_MAPPED_ALIGNMENT = 1132L
1957
1958             '''<summary>
1959             ''' An attempt to change the
1960             ''' system power state was vetoed
1961             ''' by another application or
1962             ''' driver.
1963             '''</summary>
1964             ERROR_SET_POWER_STATE_VETOED = 1140L
1965
1966             '''<summary>
1967             ''' The system BIOS failed an
1968             ''' attempt to change the system
1969             ''' power state.
1970             '''</summary>
1971             ERROR_SET_POWER_STATE_FAILED = 1141L
1972
1973             '''<summary>
1974             ''' An attempt was made to create
1975             ''' more links on a file than the
1976             ''' file system supports.
1977             '''</summary>
1978             ERROR_TOO_MANY_LINKS = 1142L
1979
1980             '''<summary>
1981             ''' The specified program requires
1982             ''' a newer version of Windows.
1983             '''</summary>
1984             ERROR_OLD_WIN_VERSION = 1150L
1985
1986             '''<summary>
1987             ''' The specified program is not a
1988             ''' Windows or MS-DOS program.
1989             '''</summary>
1990             ERROR_APP_WRONG_OS = 1151L
1991
1992             '''<summary>
1993             ''' Cannot start more than one
1994             ''' instance of the specified
1995             ''' program.
1996             '''</summary>
1997             ERROR_SINGLE_INSTANCE_APP = 1152L
1998
1999             '''<summary>
2000             ''' The specified program was
2001             ''' written for an older version
2002             ''' of Windows.
2003             '''</summary>
2004             ERROR_RMODE_APP = 1153L
2005
2006             '''<summary>
2007             ''' One of the library files
2008             ''' needed to run this application
2009             ''' is damaged.
2010             '''</summary>
2011             ERROR_INVALID_DLL = 1154L
2012
2013             '''<summary>
2014             ''' No application is associated
2015             ''' with the specified file for
2016             ''' this operation.
2017             '''</summary>
2018             ERROR_NO_ASSOCIATION = 1155L
2019
2020             '''<summary>
2021             ''' An error occurred in sending
2022             ''' the command to the
2023             ''' application.
2024             '''</summary>
2025             ERROR_DDE_FAIL = 1156L
2026
2027             '''<summary>
2028             ''' One of the library files
2029             ''' needed to run this application
2030             ''' cannot be found.
2031             '''</summary>
2032             ERROR_DLL_NOT_FOUND = 1157L
2033
2034             '''<summary>
2035             ''' The specified device name is
2036             ''' invalid.
2037             '''</summary>
2038             ERROR_BAD_DEVICE = 1200L
2039
2040             '''<summary>
2041             ''' The device is not currently
2042             ''' connected but is a remembered
2043             ''' connection.
2044             '''</summary>
2045             ERROR_CONNECTION_UNAVAIL = 1201L
2046
2047             '''<summary>
2048             ''' An attempt was made to
2049             ''' remember a device that was
2050             ''' previously remembered.
2051             '''</summary>
2052             ERROR_DEVICE_ALREADY_REMEMBERED = 1202L
2053
2054             '''<summary>
2055             ''' No network provider accepted
2056             ''' the given network path.
2057             '''</summary>
2058             ERROR_NO_NET_OR_BAD_PATH = 1203L
2059
2060             '''<summary>
2061             ''' The specified network provider
2062             ''' name is invalid.
2063             '''</summary>
2064             ERROR_BAD_PROVIDER = 1204L
2065
2066             '''<summary>
2067             ''' Unable to open the network
2068             ''' connection profile.
2069             '''</summary>
2070             ERROR_CANNOT_OPEN_PROFILE = 1205L
2071
2072             '''<summary>
2073             ''' The network connection profile
2074             ''' is damaged.
2075             '''</summary>
2076             ERROR_BAD_PROFILE = 1206L
2077
2078             '''<summary>
2079             ''' Cannot enumerate a non-
2080             ''' container.
2081             '''</summary>
2082             ERROR_NOT_CONTAINER = 1207L
2083
2084             '''<summary>
2085             ''' An extended error has
2086             ''' occurred.
2087             '''</summary>
2088             ERROR_EXTENDED_ERROR = 1208L
2089
2090             '''<summary>
2091             ''' The format of the specified
2092             ''' group name is invalid.
2093             '''</summary>
2094             ERROR_INVALID_GROUPNAME = 1209L
2095
2096             '''<summary>
2097             ''' The format of the specified
2098             ''' computer name is invalid.
2099             '''</summary>
2100             ERROR_INVALID_COMPUTERNAME = 1210L
2101
2102             '''<summary>
2103             ''' The format of the specified
2104             ''' event name is invalid.
2105             '''</summary>
2106             ERROR_INVALID_EVENTNAME = 1211L
2107
2108             '''<summary>
2109             ''' The format of the specified
2110             ''' domain name is invalid.
2111             '''</summary>
2112             ERROR_INVALID_DOMAINNAME = 1212L
2113
2114             '''<summary>
2115             ''' The format of the specified
2116             ''' service name is invalid.
2117             '''</summary>
2118             ERROR_INVALID_SERVICENAME = 1213L
2119
2120             '''<summary>
2121             ''' The format of the specified
2122             ''' network name is invalid.
2123             '''</summary>
2124             ERROR_INVALID_NETNAME = 1214L
2125
2126             '''<summary>
2127             ''' The format of the specified
2128             ''' share name is invalid.
2129             '''</summary>
2130             ERROR_INVALID_SHARENAME = 1215L
2131
2132             '''<summary>
2133             ''' The format of the specified
2134             ''' password is invalid.
2135             '''</summary>
2136             ERROR_INVALID_PASSWORDNAME = 1216L
2137
2138             '''<summary>
2139             ''' The format of the specified
2140             ''' message name is invalid.
2141             '''</summary>
2142             ERROR_INVALID_MESSAGENAME = 1217L
2143
2144             '''<summary>
2145             ''' The format of the specified
2146             ''' message destination is
2147             ''' invalid.
2148             '''</summary>
2149             ERROR_INVALID_MESSAGEDEST = 1218L
2150
2151             '''<summary>
2152             ''' The credentials supplied
2153             ''' conflict with an existing set
2154             ''' of credentials.
2155             '''</summary>
2156             ERROR_SESSION_CREDENTIAL_CONFLICT = 1219L
2157
2158             '''<summary>
2159             ''' An attempt was made to
2160             ''' establish a session to a LAN
2161             ''' Manager server, but there are
2162             ''' already too many sessions
2163             ''' established to that server.
2164             '''</summary>
2165             ERROR_REMOTE_SESSION_LIMIT_EXCEEDED = 1220L
2166
2167             '''<summary>
2168             ''' The workgroup or domain name
2169             ''' is already in use by another
2170             ''' computer on the network.
2171             '''</summary>
2172             ERROR_DUP_DOMAINNAME = 1221L
2173
2174             '''<summary>
2175             ''' The network is not present or
2176             ''' not started.
2177             '''</summary>
2178             ERROR_NO_NETWORK = 1222L
2179
2180             '''<summary>
2181             ''' The operation was cancelled by
2182             ''' the user.
2183             '''</summary>
2184             ERROR_CANCELLED = 1223L
2185
2186             '''<summary>
2187             ''' The requested operation cannot
2188             ''' be performed on a file with a
2189             ''' user mapped section open.
2190             '''</summary>
2191             ERROR_USER_MAPPED_FILE = 1224L
2192
2193             '''<summary>
2194             ''' The remote system refused the
2195             ''' network connection.
2196             '''</summary>
2197             ERROR_CONNECTION_REFUSED = 1225L
2198
2199             '''<summary>
2200             ''' The network connection was
2201             ''' gracefully closed.
2202             '''</summary>
2203             ERROR_GRACEFUL_DISCONNECT = 1226L
2204
2205             '''<summary>
2206             ''' The network transport endpoint
2207             ''' already has an address
2208             ''' associated with it.
2209             '''</summary>
2210             ERROR_ADDRESS_ALREADY_ASSOCIATED = 1227L
2211
2212             '''<summary>
2213             ''' An address has not yet been
2214             ''' associated with the network
2215             ''' endpoint.
2216             '''</summary>
2217             ERROR_ADDRESS_NOT_ASSOCIATED = 1228L
2218
2219             '''<summary>
2220             ''' An operation was attempted on
2221             ''' a non-existent network
2222             ''' connection.
2223             '''</summary>
2224             ERROR_CONNECTION_INVALID = 1229L
2225
2226             '''<summary>
2227             ''' An invalid operation was
2228             ''' attempted on an active network
2229             ''' connection.
2230             '''</summary>
2231             ERROR_CONNECTION_ACTIVE = 1230L
2232
2233             '''<summary>
2234             ''' The remote network is not
2235             ''' reachable by the transport.
2236             '''</summary>
2237             ERROR_NETWORK_UNREACHABLE = 1231L
2238
2239             '''<summary>
2240             ''' The remote system is not
2241             ''' reachable by the transport.
2242             '''</summary>
2243             ERROR_HOST_UNREACHABLE = 1232L
2244
2245             '''<summary>
2246             ''' The remote system does not
2247             ''' support the transport
2248             ''' protocol.
2249             '''</summary>
2250             ERROR_PROTOCOL_UNREACHABLE = 1233L
2251
2252             '''<summary>
2253             ''' No service is operating at the
2254             ''' destination network endpoint
2255             ''' on the remote system.
2256             '''</summary>
2257             ERROR_PORT_UNREACHABLE = 1234L
2258
2259             '''<summary>
2260             ''' The request was aborted.
2261             '''</summary>
2262             ERROR_REQUEST_ABORTED = 1235L
2263
2264             '''<summary>
2265             ''' The network connection was
2266             ''' aborted by the local system.
2267             '''</summary>
2268             ERROR_CONNECTION_ABORTED = 1236L
2269
2270             '''<summary>
2271             ''' The operation could not be
2272             ''' completed. A retry should be
2273             ''' performed.
2274             '''</summary>
2275             ERROR_RETRY = 1237L
2276
2277             '''<summary>
2278             ''' A connection to the server
2279             ''' could not be made because the
2280             ''' limit on the number of
2281             ''' concurrent connections for
2282             ''' this account has been reached.
2283             '''</summary>
2284             ERROR_CONNECTION_COUNT_LIMIT = 1238L
2285
2286             '''<summary>
2287             ''' Attempting to login during an
2288             ''' unauthorized time of day for
2289             ''' this account.
2290             '''</summary>
2291             ERROR_LOGIN_TIME_RESTRICTION = 1239L
2292
2293             '''<summary>
2294             ''' The account is not authorized
2295             ''' to login from this station.
2296             '''</summary>
2297             ERROR_LOGIN_WKSTA_RESTRICTION = 1240L
2298
2299             '''<summary>
2300             ''' The network address could not
2301             ''' be used for the operation
2302             ''' requested.
2303             '''</summary>
2304             ERROR_INCORRECT_ADDRESS = 1241L
2305
2306             '''<summary>
2307             ''' The service is already
2308             ''' registered.
2309             '''</summary>
2310             ERROR_ALREADY_REGISTERED = 1242L
2311
2312             '''<summary>
2313             ''' The specified service does not
2314             ''' exist.
2315             '''</summary>
2316             ERROR_SERVICE_NOT_FOUND = 1243L
2317
2318             '''<summary>
2319             ''' The operation being requested
2320             ''' was not performed because the
2321             ''' user has not been
2322             ''' authenticated.
2323             '''</summary>
2324             ERROR_NOT_AUTHENTICATED = 1244L
2325
2326             '''<summary>
2327             ''' The operation being requested
2328             ''' was not performed because the
2329             ''' user has not logged on to the
2330             ''' network.
2331             '''</summary>
2332             ERROR_NOT_LOGGED_ON = 1245L
2333
2334             '''<summary>
2335             ''' Return that wants caller to
2336             ''' continue with work in
2337             ''' progress.
2338             '''</summary>
2339             ERROR_CONTINUE = 1246L
2340
2341             '''<summary>
2342             ''' An attempt was made to perform
2343             ''' an initialization operation
2344             ''' when initialization has
2345             ''' already been completed.
2346             '''</summary>
2347             ERROR_ALREADY_INITIALIZED = 1247L
2348
2349             '''<summary>
2350             ''' No more local devices.
2351             '''</summary>
2352             ERROR_NO_MORE_DEVICES = 1248L
2353
2354
2355             '''<summary>
2356             ''' Indicates not all privileges
2357             ''' referenced are assigned to the
2358             ''' caller. This allows, for
2359             ''' example, all privileges to be
2360             ''' disabled without having to
2361             ''' know exactly which privileges
2362             ''' are assigned.
2363             '''</summary>
2364             ERROR_NOT_ALL_ASSIGNED = 1300L
2365
2366             '''<summary>
2367             ''' Some of the information to be
2368             ''' mapped has not been
2369             ''' translated.
2370             '''</summary>
2371             ERROR_SOME_NOT_MAPPED = 1301L
2372
2373             '''<summary>
2374             ''' No system quota limits are
2375             ''' specifically set for this
2376             ''' account.
2377             '''</summary>
2378             ERROR_NO_QUOTAS_FOR_ACCOUNT = 1302L
2379
2380             '''<summary>
2381             ''' A user session key was
2382             ''' requested for a local RPC
2383             ''' connection. The session key
2384             ''' returned is a constant value
2385             ''' and not unique to this
2386             ''' connection.
2387             '''</summary>
2388             ERROR_LOCAL_USER_SESSION_KEY = 1303L
2389
2390             '''<summary>
2391             ''' The Windows NT password is too
2392             ''' complex to be converted to a
2393             ''' Windows-networking password.
2394             ''' The Windows-networking
2395             ''' password returned is a NULL
2396             ''' string.
2397             '''</summary>
2398             ERROR_NULL_LM_PASSWORD = 1304L
2399
2400             '''<summary>
2401             ''' Indicates an encountered or
2402             ''' specified revision number is
2403             ''' not one known by the service.
2404             ''' The service may not be aware
2405             ''' of a more recent revision.
2406             '''</summary>
2407             ERROR_UNKNOWN_REVISION = 1305L
2408
2409             '''<summary>
2410             ''' Indicates two revision levels
2411             ''' are incompatible.
2412             '''</summary>
2413             ERROR_REVISION_MISMATCH = 1306L
2414
2415             '''<summary>
2416             ''' Indicates a particular
2417             ''' Security ID cannot be assigned
2418             ''' as the owner of an object.
2419             '''</summary>
2420             ERROR_INVALID_OWNER = 1307L
2421
2422             '''<summary>
2423             ''' Indicates a particular
2424             ''' Security ID cannot be assigned
2425             ''' as the primary group of an
2426             ''' object.
2427             '''</summary>
2428             ERROR_INVALID_PRIMARY_GROUP = 1308L
2429
2430             '''<summary>
2431             ''' An attempt was made to operate
2432             ''' on an impersonation token by a
2433             ''' thread was not currently
2434             ''' impersonating a client.
2435             '''</summary>
2436             ERROR_NO_IMPERSONATION_TOKEN = 1309L
2437
2438             '''<summary>
2439             ''' A mandatory group cannot be
2440             ''' disabled.
2441             '''</summary>
2442             ERROR_CANT_DISABLE_MANDATORY = 1310L
2443
2444             '''<summary>
2445             ''' There are currently no logon
2446             ''' servers available to service
2447             ''' the logon request.
2448             '''</summary>
2449             ERROR_NO_LOGON_SERVERS = 1311L
2450
2451             '''<summary>
2452             ''' A specified logon session does
2453             ''' not exist. It may already have
2454             ''' been terminated.
2455             '''</summary>
2456             ERROR_NO_SUCH_LOGON_SESSION = 1312L
2457
2458             '''<summary>
2459             ''' A specified privilege does not
2460             ''' exist.
2461             '''</summary>
2462             ERROR_NO_SUCH_PRIVILEGE = 1313L
2463
2464             '''<summary>
2465             ''' A required privilege is not
2466             ''' held by the client.
2467             '''</summary>
2468             ERROR_PRIVILEGE_NOT_HELD = 1314L
2469
2470             '''<summary>
2471             ''' The name provided is not a
2472             ''' properly formed account name.
2473             '''</summary>
2474             ERROR_INVALID_ACCOUNT_NAME = 1315L
2475
2476             '''<summary>
2477             ''' The specified user already
2478             ''' exists.
2479             '''</summary>
2480             ERROR_USER_EXISTS = 1316L
2481
2482             '''<summary>
2483             ''' The specified user does not
2484             ''' exist.
2485             '''</summary>
2486             ERROR_NO_SUCH_USER = 1317L
2487
2488             '''<summary>
2489             ''' The specified group already
2490             ''' exists.
2491             ''' 
2492             '''</summary>
2493             ERROR_GROUP_EXISTS = 1318L
2494
2495             '''<summary>
2496             ''' The specified group does not
2497             ''' exist.
2498             '''</summary>
2499             ERROR_NO_SUCH_GROUP = 1319L
2500
2501             '''<summary>
2502             ''' The specified user account is
2503             ''' already in the specified group
2504             ''' account. Also used to indicate
2505             ''' a group can not be deleted
2506             ''' because it contains a member.
2507             '''</summary>
2508             ERROR_MEMBER_IN_GROUP = 1320L
2509
2510             '''<summary>
2511             ''' The specified user account is
2512             ''' not a member of the specified
2513             ''' group account.
2514             '''</summary>
2515             ERROR_MEMBER_NOT_IN_GROUP = 1321L
2516
2517             '''<summary>
2518             ''' Indicates the requested
2519             ''' operation would disable or
2520             ''' delete the last remaining
2521             ''' administration account. This
2522             ''' is not allowed to prevent
2523             ''' creating a situation where the
2524             ''' system will not be
2525             ''' administrable.
2526             '''</summary>
2527             ERROR_LAST_ADMIN = 1322L
2528
2529             '''<summary>
2530             ''' When trying to update a
2531             ''' password, this return status
2532             ''' indicates the value provided
2533             ''' as the current password is
2534             ''' incorrect.
2535             '''</summary>
2536             ERROR_WRONG_PASSWORD = 1323L
2537
2538             '''<summary>
2539             ''' When trying to update a
2540             ''' password, this return status
2541             ''' indicates the value provided
2542             ''' for the new password contains
2543             ''' values not allowed in
2544             ''' passwords.
2545             '''</summary>
2546             ERROR_ILL_FORMED_PASSWORD = 1324L
2547
2548             '''<summary>
2549             ''' When trying to update a
2550             ''' password, this status
2551             ''' indicates that some password
2552             ''' update rule was violated. For
2553             ''' example, the password may not
2554             ''' meet length criteria.
2555             '''</summary>
2556             ERROR_PASSWORD_RESTRICTION = 1325L
2557
2558             '''<summary>
2559             ''' The attempted logon is
2560             ''' invalid. This is due to either
2561             ''' a bad user name or
2562             ''' authentication information.
2563             '''</summary>
2564             ERROR_LOGON_FAILURE = 1326L
2565
2566             '''<summary>
2567             ''' Indicates a referenced user
2568             ''' name and authentication
2569             ''' information are valid, but
2570             ''' some user account restriction
2571             ''' has prevented successful
2572             ''' authentication (such as time-
2573             ''' of-day restrictions).
2574             '''</summary>
2575             ERROR_ACCOUNT_RESTRICTION = 1327L
2576
2577             '''<summary>
2578             ''' The user account has time
2579             ''' restrictions and cannot be
2580             ''' logged onto at this time.
2581             '''</summary>
2582             ERROR_INVALID_LOGON_HOURS = 1328L
2583
2584             '''<summary>
2585             ''' The user account is restricted
2586             ''' and cannot be used to log on
2587             ''' from the source workstation.
2588             '''</summary>
2589             ERROR_INVALID_WORKSTATION = 1329L
2590
2591             '''<summary>
2592             ''' The user account's password
2593             ''' has expired.
2594             '''</summary>
2595             ERROR_PASSWORD_EXPIRED = 1330L
2596
2597             '''<summary>
2598             ''' The referenced account is
2599             ''' currently disabled and cannot
2600             ''' be logged on to.
2601             '''</summary>
2602             ERROR_ACCOUNT_DISABLED = 1331L
2603
2604             '''<summary>
2605             ''' None of the information to be
2606             ''' mapped has been translated.
2607             '''</summary>
2608             ERROR_NONE_MAPPED = 1332L
2609
2610             '''<summary>
2611             ''' The number of LUID requested
2612             ''' cannot be allocated with a
2613             ''' single allocation.
2614             '''</summary>
2615             ERROR_TOO_MANY_LUIDS_REQUESTED = 1333L
2616
2617             '''<summary>
2618             ''' Indicates there are no more
2619             ''' LUID to allocate.
2620             '''</summary>
2621             ERROR_LUIDS_EXHAUSTED = 1334L
2622
2623             '''<summary>
2624             ''' Indicates the sub-authority
2625             ''' value is invalid for the
2626             ''' particular use.
2627             '''</summary>
2628             ERROR_INVALID_SUB_AUTHORITY = 1335L
2629
2630             '''<summary>
2631             ''' Indicates the ACL structure is
2632             ''' not valid.
2633             '''</summary>
2634             ERROR_INVALID_ACL = 1336L
2635
2636             '''<summary>
2637             ''' Indicates the SID structure is
2638             ''' invalid.
2639             '''</summary>
2640             ERROR_INVALID_SID = 1337L
2641
2642             '''<summary>
2643             ''' Indicates the
2644             ''' SECURITY_DESCRIPTOR structure
2645             ''' is invalid.
2646             '''</summary>
2647             ERROR_INVALID_SECURITY_DESCR = 1338L
2648
2649             '''<summary>
2650             ''' Indicates that an attempt to
2651             ''' build either an inherited ACL
2652             ''' or ACE did not succeed. One of
2653             ''' the more probable causes is
2654             ''' the replacement of a CreatorId
2655             ''' with an SID that didn't fit
2656             ''' into the ACE or ACL.
2657             '''</summary>
2658             ERROR_BAD_INHERITANCE_ACL = 1340L
2659
2660             '''<summary>
2661             ''' The GUID allocation server is
2662             ''' already disabled at the
2663             ''' moment.
2664             '''</summary>
2665             ERROR_SERVER_DISABLED = 1341L
2666
2667             '''<summary>
2668             ''' The GUID allocation server is
2669             ''' already enabled at the moment.
2670             '''</summary>
2671             ERROR_SERVER_NOT_DISABLED = 1342L
2672
2673             '''<summary>
2674             ''' The value provided is an
2675             ''' invalid value for an
2676             ''' identifier authority.
2677             '''</summary>
2678             ERROR_INVALID_ID_AUTHORITY = 1343L
2679
2680             '''<summary>
2681             ''' When a block of memory is
2682             ''' allotted for future updates,
2683             ''' such as the memory allocated
2684             ''' to hold discretionary access
2685             ''' control and primary group
2686             ''' information, successive
2687             ''' updates may exceed the amount
2688             ''' of memory originally allotted.
2689             ''' Since quota may already have
2690             ''' been charged to several
2691             ''' processes that have handles of
2692             ''' the object, it is not
2693             ''' reasonable to alter the size
2694             ''' of the allocated memory.
2695             ''' Instead, a request that
2696             ''' requires more memory than has
2697             ''' been allotted must fail and
2698             ''' the
2699             ''' ERROR_ALLOTTED_SPACE_EXCEEDED
2700             ''' error returned.
2701             '''</summary>
2702             ERROR_ALLOTTED_SPACE_EXCEEDED = 1344L
2703
2704             '''<summary>
2705             ''' The specified attributes are
2706             ''' invalid, or incompatible with
2707             ''' the attributes for the group
2708             ''' as a whole.
2709             '''</summary>
2710             ERROR_INVALID_GROUP_ATTRIBUTES = 1345L
2711
2712             '''<summary>
2713             ''' A specified impersonation
2714             ''' level is invalid. Also used to
2715             ''' indicate a required
2716             ''' impersonation level was not
2717             ''' provided.
2718             '''</summary>
2719             ERROR_BAD_IMPERSONATION_LEVEL = 1346L
2720
2721             '''<summary>
2722             ''' An attempt was made to open an
2723             ''' anonymous level token.
2724             ''' Anonymous tokens cannot be
2725             ''' opened.
2726             '''</summary>
2727             ERROR_CANT_OPEN_ANONYMOUS = 1347L
2728
2729             '''<summary>
2730             ''' The requested validation
2731             ''' information class is invalid.
2732             '''</summary>
2733             ERROR_BAD_VALIDATION_CLASS = 1348L
2734
2735             '''<summary>
2736             ''' The type of token object is
2737             ''' inappropriate for its
2738             ''' attempted use.
2739             '''</summary>
2740             ERROR_BAD_TOKEN_TYPE = 1349L
2741
2742             '''<summary>
2743             ''' Indicates an attempt was made
2744             ''' to operate on the security of
2745             ''' an object that does not have
2746             ''' security associated with it.
2747             '''</summary>
2748             ERROR_NO_SECURITY_ON_OBJECT = 1350L
2749
2750             '''<summary>
2751             ''' Indicates a domain controller
2752             ''' could not be contacted or that
2753             ''' objects within the domain are
2754             ''' protected and necessary
2755             ''' information could not be
2756             ''' retrieved.
2757             '''</summary>
2758             ERROR_CANT_ACCESS_DOMAIN_INFO = 1351L
2759
2760             '''<summary>
2761             ''' Indicates the Sam Server was
2762             ''' in the wrong state to perform
2763             ''' the desired operation.
2764             '''</summary>
2765             ERROR_INVALID_SERVER_STATE = 1352L
2766
2767             '''<summary>
2768             ''' Indicates the domain is in the
2769             ''' wrong state to perform the
2770             ''' desired operation.
2771             '''</summary>
2772             ERROR_INVALID_DOMAIN_STATE = 1353L
2773
2774             '''<summary>
2775             ''' Indicates the requested
2776             ''' operation cannot be completed
2777             ''' with the domain in its present
2778             ''' role.
2779             '''</summary>
2780             ERROR_INVALID_DOMAIN_ROLE = 1354L
2781
2782             '''<summary>
2783             ''' The specified domain does not
2784             ''' exist.
2785             '''</summary>
2786             ERROR_NO_SUCH_DOMAIN = 1355L
2787
2788             '''<summary>
2789             ''' The specified domain already
2790             ''' exists.
2791             '''</summary>
2792             ERROR_DOMAIN_EXISTS = 1356L
2793
2794             '''<summary>
2795             ''' An attempt to exceed the limit
2796             ''' on the number of domains per
2797             ''' server for this release.
2798             '''</summary>
2799             ERROR_DOMAIN_LIMIT_EXCEEDED = 1357L
2800
2801             '''<summary>
2802             ''' This error indicates the
2803             ''' requested operation cannot be
2804             ''' completed due to a
2805             ''' catastrophic media failure or
2806             ''' on-disk data structure
2807             ''' corruption.
2808             '''</summary>
2809             ERROR_INTERNAL_DB_CORRUPTION = 1358L
2810
2811             '''<summary>
2812             ''' This error indicates the SAM
2813             ''' server has encounterred an
2814             ''' internal consistency error in
2815             ''' its database. This
2816             ''' catastrophic failure prevents
2817             ''' further operation of SAM.
2818             '''</summary>
2819             ERROR_INTERNAL_ERROR = 1359L
2820
2821             '''<summary>
2822             ''' Indicates generic access types
2823             ''' were contained in an access
2824             ''' mask that should already be
2825             ''' mapped to non-generic access
2826             ''' types.
2827             '''</summary>
2828             ERROR_GENERIC_NOT_MAPPED = 1360L
2829
2830             '''<summary>
2831             ''' Indicates a security
2832             ''' descriptor is not in the
2833             ''' required format (absolute or
2834             ''' self-relative).
2835             '''</summary>
2836             ERROR_BAD_DESCRIPTOR_FORMAT = 1361L
2837
2838             '''<summary>
2839             ''' The requested action is
2840             ''' restricted for use by logon
2841             ''' processes only. The calling
2842             ''' process has not registered as
2843             ''' a logon process.
2844             '''</summary>
2845             ERROR_NOT_LOGON_PROCESS = 1362L
2846
2847             '''<summary>
2848             ''' An attempt was made to start a
2849             ''' new session manager or LSA
2850             ''' logon session with an ID
2851             ''' already in use.
2852             '''</summary>
2853             ERROR_LOGON_SESSION_EXISTS = 1363L
2854
2855             '''<summary>
2856             ''' A specified authentication
2857             ''' package is unknown.
2858             '''</summary>
2859             ERROR_NO_SUCH_PACKAGE = 1364L
2860
2861             '''<summary>
2862             ''' The logon session is not in a
2863             ''' state consistent with the
2864             ''' requested operation.
2865             '''</summary>
2866             ERROR_BAD_LOGON_SESSION_STATE = 1365L
2867
2868             '''<summary>
2869             ''' The logon session ID is
2870             ''' already in use.
2871             '''</summary>
2872             ERROR_LOGON_SESSION_COLLISION = 1366L
2873
2874             '''<summary>
2875             ''' Indicates an invalid value has
2876             ''' been provided for LogonType
2877             ''' has been requested.
2878             '''</summary>
2879             ERROR_INVALID_LOGON_TYPE = 1367L
2880
2881             '''<summary>
2882             ''' Indicates that an attempt was
2883             ''' made to impersonate via a
2884             ''' named pipe was not yet read
2885             ''' from.
2886             '''</summary>
2887             ERROR_CANNOT_IMPERSONATE = 1368L
2888
2889             '''<summary>
2890             ''' Indicates that the transaction
2891             ''' state of a registry sub-tree
2892             ''' is incompatible with the
2893             ''' requested operation. For
2894             ''' example, a request has been
2895             ''' made to start a new
2896             ''' transaction with one already
2897             ''' in progress, or a request to
2898             ''' apply a transaction when one
2899             ''' is not currently in progress.
2900             ''' This status value is returned
2901             ''' by the runtime library (RTL)
2902             ''' registry transaction package
2903             ''' (RXact).
2904             '''</summary>
2905             ERROR_RXACT_INVALID_STATE = 1369L
2906
2907             '''<summary>
2908             ''' Indicates an error occurred
2909             ''' during a registry transaction
2910             ''' commit. The database has been
2911             ''' left in an unknown state. The
2912             ''' state of the registry
2913             ''' transaction is left as
2914             ''' COMMITTING. This status value
2915             ''' is returned by the runtime
2916             ''' library (RTL) registry
2917             ''' transaction package (RXact).
2918             '''</summary>
2919             ERROR_RXACT_COMMIT_FAILURE = 1370L
2920
2921             '''<summary>
2922             ''' Indicates an operation was
2923             ''' attempted on a built-in
2924             ''' (special) SAM account that is
2925             ''' incompatible with built-in
2926             ''' accounts. For example, built-
2927             ''' in accounts cannot be renamed
2928             ''' or deleted.
2929             '''</summary>
2930             ERROR_SPECIAL_ACCOUNT = 1371L
2931
2932             '''<summary>
2933             ''' The requested operation cannot
2934             ''' be performed on the specified
2935             ''' group because it is a built-in
2936             ''' special group.
2937             '''</summary>
2938             ERROR_SPECIAL_GROUP = 1372L
2939
2940             '''<summary>
2941             ''' The requested operation cannot
2942             ''' be performed on the specified
2943             ''' user because it is a built-in
2944             ''' special user.
2945             '''</summary>
2946             ERROR_SPECIAL_USER = 1373L
2947
2948             '''<summary>
2949             ''' Indicates a member cannot be
2950             ''' removed from a group because
2951             ''' the group is currently the
2952             ''' member's primary group.
2953             '''</summary>
2954             ERROR_MEMBERS_PRIMARY_GROUP = 1374L
2955
2956             '''<summary>
2957             ''' An attempt was made to
2958             ''' establish a token for use as a
2959             ''' primary token but the token is
2960             ''' already in use. A token can
2961             ''' only be the primary token of
2962             ''' one process at a time.
2963             '''</summary>
2964             ERROR_TOKEN_ALREADY_IN_USE = 1375L
2965
2966             '''<summary>
2967             ''' The specified alias does not
2968             ''' exist.
2969             '''</summary>
2970             ERROR_NO_SUCH_ALIAS = 1376L
2971
2972             '''<summary>
2973             ''' The specified account name is
2974             ''' not a member of the alias.
2975             '''</summary>
2976             ERROR_MEMBER_NOT_IN_ALIAS = 1377L
2977
2978             '''<summary>
2979             ''' The specified account name is
2980             ''' not a member of the alias.
2981             '''</summary>
2982             ERROR_MEMBER_IN_ALIAS = 1378L
2983
2984             '''<summary>
2985             ''' The specified alias already
2986             ''' exists.
2987             '''</summary>
2988             ERROR_ALIAS_EXISTS = 1379L
2989
2990             '''<summary>
2991             ''' A requested type of logon,
2992             ''' such as Interactive, Network,
2993             ''' or Service, is not granted by
2994             ''' the target system's local
2995             ''' security policy. The system
2996             ''' administrator can grant the
2997             ''' required form of logon.
2998             '''</summary>
2999             ERROR_LOGON_NOT_GRANTED = 1380L
3000
3001             '''<summary>
3002             ''' The maximum number of secrets
3003             ''' that can be stored in a single
3004             ''' system was exceeded.
3005             '''</summary>
3006             ERROR_TOO_MANY_SECRETS = 1381L
3007
3008             '''<summary>
3009             ''' The length of a secret exceeds
3010             ''' the maximum length allowed.
3011             '''</summary>
3012             ERROR_SECRET_TOO_LONG = 1382L
3013
3014             '''<summary>
3015             ''' The Local Security Authority
3016             ''' (LSA) database contains in
3017             ''' internal inconsistency.
3018             '''</summary>
3019             ERROR_INTERNAL_DB_ERROR = 1383L
3020
3021             '''<summary>
3022             ''' During a logon attempt, the
3023             ''' user's security context
3024             ''' accumulated too many security
3025             ''' IDs. Remove the user from some
3026             ''' groups or aliases to reduce
3027             ''' the number of security ids to
3028             ''' incorporate into the security
3029             ''' context.
3030             '''</summary>
3031             ERROR_TOO_MANY_CONTEXT_IDS = 1384L
3032
3033             '''<summary>
3034             ''' A user has requested a type of
3035             ''' logon, such as interactive or
3036             ''' network, that was not granted.
3037             ''' An administrator has control
3038             ''' over who may logon
3039             ''' interactively and through the
3040             ''' network.
3041             '''</summary>
3042             ERROR_LOGON_TYPE_NOT_GRANTED = 1385L
3043
3044             '''<summary>
3045             ''' An attempt was made to change
3046             ''' a user password in the
3047             ''' security account manager
3048             ''' without providing the
3049             ''' necessary NT cross-encrypted
3050             ''' password.
3051             '''</summary>
3052             ERROR_NT_CROSS_ENCRYPTION_REQUIRED = 1386L
3053
3054             '''<summary>
3055             ''' A new member cannot be added
3056             ''' to an alias because the member
3057             ''' does not exist.
3058             '''</summary>
3059             ERROR_NO_SUCH_MEMBER = 1387L
3060
3061             '''<summary>
3062             ''' A new member could not be
3063             ''' added to an alias because the
3064             ''' member has the wrong account
3065             ''' type.
3066             '''</summary>
3067             ERROR_INVALID_MEMBER = 1388L
3068
3069             '''<summary>
3070             ''' Too many SIDs specified.
3071             '''</summary>
3072             ERROR_TOO_MANY_SIDS = 1389L
3073
3074             '''<summary>
3075             ''' An attempt was made to change
3076             ''' a user password in the
3077             ''' security account manager
3078             ''' without providing the required
3079             ''' LM cross-encrypted password.
3080             '''</summary>
3081             ERROR_LM_CROSS_ENCRYPTION_REQUIRED = 1390L
3082
3083             '''<summary>
3084             ''' Indicates an ACL contains no
3085             ''' inheritable components.
3086             '''</summary>
3087             ERROR_NO_INHERITANCE = 1391L
3088
3089             '''<summary>
3090             ''' The file or directory is
3091             ''' damaged and nonreadable.
3092             '''</summary>
3093             ERROR_FILE_CORRUPT = 1392L
3094
3095             '''<summary>
3096             ''' The disk structure is damaged
3097             ''' and nonreadable.
3098             '''</summary>
3099             ERROR_DISK_CORRUPT = 1393L
3100
3101             '''<summary>
3102             ''' There is no user session key
3103             ''' for the specified logon
3104             ''' session.
3105             '''</summary>
3106             ERROR_NO_USER_SESSION_KEY = 1394L
3107
3108             '''<summary>
3109             ''' The service being accessed is
3110             ''' licensed for a particular
3111             ''' number of connections. No more
3112             ''' connections can be made to the
3113             ''' service at this time because
3114             ''' there are already as many
3115             ''' connections as the service can
3116             ''' accept.
3117             '''</summary>
3118             ERROR_LICENSE_QUOTA_EXCEEDED = 1395L
3119
3120             '''<summary>
3121             ''' The window handle invalid.
3122             '''</summary>
3123             ERROR_INVALID_WINDOW_HANDLE = 1400L
3124
3125             '''<summary>
3126             ''' The menu handle is invalid.
3127             '''</summary>
3128             ERROR_INVALID_MENU_HANDLE = 1401L
3129
3130             '''<summary>
3131             ''' The cursor handle is invalid.
3132             '''</summary>
3133             ERROR_INVALID_CURSOR_HANDLE = 1402L
3134
3135             '''<summary>
3136             ''' Invalid accelerator-table
3137             ''' handle.
3138             '''</summary>
3139             ERROR_INVALID_ACCEL_HANDLE = 1403L
3140
3141             '''<summary>
3142             ''' The hook handle is invalid.
3143             '''</summary>
3144             ERROR_INVALID_HOOK_HANDLE = 1404L
3145
3146             '''<summary>
3147             ''' The DeferWindowPos handle is
3148             ''' invalid.
3149             '''</summary>
3150             ERROR_INVALID_DWP_HANDLE = 1405L
3151
3152             '''<summary>
3153             ''' CreateWindow failed, creating
3154             ''' top-level window with WS_CHILD
3155             ''' style.
3156             '''</summary>
3157             ERROR_TLW_WITH_WSCHILD = 1406L
3158
3159             '''<summary>
3160             ''' Cannot find window class.
3161             '''</summary>
3162             ERROR_CANNOT_FIND_WND_CLASS = 1407L
3163
3164             '''<summary>
3165             ''' Invalid window, belongs to
3166             ''' other thread.
3167             '''</summary>
3168             ERROR_WINDOW_OF_OTHER_THREAD = 1408L
3169
3170             '''<summary>
3171             ''' Hotkey is already registered.
3172             '''</summary>
3173             ERROR_HOTKEY_ALREADY_REGISTERED = 1409L
3174
3175             '''<summary>
3176             ''' Class already exists.
3177             '''</summary>
3178             ERROR_CLASS_ALREADY_EXISTS = 1410L
3179
3180             '''<summary>
3181             ''' Class does not exist.
3182             '''</summary>
3183             ERROR_CLASS_DOES_NOT_EXIST = 1411L
3184
3185             '''<summary>
3186             ''' Class still has open windows.
3187             '''</summary>
3188             ERROR_CLASS_HAS_WINDOWS = 1412L
3189
3190             '''<summary>
3191             ''' The index is invalid.
3192             '''</summary>
3193             ERROR_INVALID_INDEX = 1413L
3194
3195             '''<summary>
3196             ''' The icon handle is invalid.
3197             '''</summary>
3198             ERROR_INVALID_ICON_HANDLE = 1414L
3199
3200             '''<summary>
3201             ''' Using private DIALOG window
3202             ''' words.
3203             '''</summary>
3204             ERROR_PRIVATE_DIALOG_INDEX = 1415L
3205
3206             '''<summary>
3207             ''' List box ID not found.
3208             '''</summary>
3209             ERROR_LISTBOX_ID_NOT_FOUND = 1416L
3210
3211             '''<summary>
3212             ''' No wildcard characters found.
3213             '''</summary>
3214             ERROR_NO_WILDCARD_CHARACTERS = 1417L
3215
3216             '''<summary>
3217             ''' Thread doesn't have clipboard
3218             ''' open.
3219             '''</summary>
3220             ERROR_CLIPBOARD_NOT_OPEN = 1418L
3221
3222             '''<summary>
3223             ''' Hotkey is not registered.
3224             '''</summary>
3225             ERROR_HOTKEY_NOT_REGISTERED = 1419L
3226
3227             '''<summary>
3228             ''' The window is not a valid
3229             ''' dialog window.
3230             '''</summary>
3231             ERROR_WINDOW_NOT_DIALOG = 1420L
3232
3233             '''<summary>
3234             ''' Control ID not found.
3235             '''</summary>
3236             ERROR_CONTROL_ID_NOT_FOUND = 1421L
3237
3238             '''<summary>
3239             ''' Invalid Message, combo box
3240             ''' doesn't have an edit control.
3241             '''</summary>
3242             ERROR_INVALID_COMBOBOX_MESSAGE = 1422L
3243
3244             '''<summary>
3245             ''' The window is not a combo box.
3246             '''</summary>
3247             ERROR_WINDOW_NOT_COMBOBOX = 1423L
3248
3249             '''<summary>
3250             ''' Height must be less than 256.
3251             '''</summary>
3252             ERROR_INVALID_EDIT_HEIGHT = 1424L
3253
3254             '''<summary>
3255             ''' Invalid HDC passed to
3256             ''' ReleaseDC.
3257             '''</summary>
3258             ERROR_DC_NOT_FOUND = 1425L
3259
3260             '''<summary>
3261             ''' The hook filter type is
3262             ''' invalid.
3263             '''</summary>
3264             ERROR_INVALID_HOOK_FILTER = 1426L
3265
3266             '''<summary>
3267             ''' The filter proc is invalid.
3268             '''</summary>
3269             ERROR_INVALID_FILTER_PROC = 1427L
3270
3271             '''<summary>
3272             ''' Cannot set non-local hook
3273             ''' without an module handle.
3274             '''</summary>
3275             ERROR_HOOK_NEEDS_HMOD = 1428L
3276
3277             '''<summary>
3278             ''' This hook can only be set
3279             ''' globally.
3280             '''</summary>
3281             ERROR_GLOBAL_ONLY_HOOK = 1429L
3282
3283             '''<summary>
3284             ''' The journal hook is already
3285             ''' installed.
3286             '''</summary>
3287             ERROR_JOURNAL_HOOK_SET = 1430L
3288
3289             '''<summary>
3290             ''' Hook is not installed.
3291             '''</summary>
3292             ERROR_HOOK_NOT_INSTALLED = 1431L
3293
3294             '''<summary>
3295             ''' The message for single-
3296             ''' selection list box is invalid.
3297             '''</summary>
3298             ERROR_INVALID_LB_MESSAGE = 1432L
3299
3300             '''<summary>
3301             ''' LB_SETCOUNT sent to non-lazy
3302             ''' list box.
3303             '''</summary>
3304             ERROR_SETCOUNT_ON_BAD_LB = 1433L
3305
3306             '''<summary>
3307             ''' This list box doesn't support
3308             ''' tab stops.
3309             '''</summary>
3310             ERROR_LB_WITHOUT_TABSTOPS = 1434L
3311
3312             '''<summary>
3313             ''' Cannot destroy object created
3314             ''' by another thread.
3315             '''</summary>
3316             ERROR_DESTROY_OBJECT_OF_OTHER_THREAD = 1435L
3317
3318             '''<summary>
3319             ''' Child windows can't have
3320             ''' menus.
3321             '''</summary>
3322             ERROR_CHILD_WINDOW_MENU = 1436L
3323
3324             '''<summary>
3325             ''' Window does not have system
3326             ''' menu.
3327             '''</summary>
3328             ERROR_NO_SYSTEM_MENU = 1437L
3329
3330             '''<summary>
3331             ''' The message box style is
3332             ''' invalid.
3333             '''</summary>
3334             ERROR_INVALID_MSGBOX_STYLE = 1438L
3335
3336             '''<summary>
3337             ''' The SPI_* parameter is
3338             ''' invalid.
3339             '''</summary>
3340             ERROR_INVALID_SPI_VALUE = 1439L
3341
3342             '''<summary>
3343             ''' Screen already locked.
3344             '''</summary>
3345             ERROR_SCREEN_ALREADY_LOCKED = 1440L
3346
3347             '''<summary>
3348             ''' All DeferWindowPos HWNDs must
3349             ''' have same parent.
3350             '''</summary>
3351             ERROR_HWNDS_HAVE_DIFFERENT_PARENT = 1441L
3352
3353             '''<summary>
3354             ''' Window is not a child window.
3355             '''</summary>
3356             ERROR_NOT_CHILD_WINDOW = 1442L
3357
3358             '''<summary>
3359             ''' The GW_* command is invalid.
3360             '''</summary>
3361             ERROR_INVALID_GW_COMMAND = 1443L
3362
3363             '''<summary>
3364             ''' The thread ID is invalid.
3365             '''</summary>
3366             ERROR_INVALID_THREAD_ID = 1444L
3367
3368             '''<summary>
3369             ''' DefMDIChildProc called with a
3370             ''' non-MDI child window.
3371             '''</summary>
3372             ERROR_NON_MDICHILD_WINDOW = 1445L
3373
3374             '''<summary>
3375             ''' Pop-up menu already active.
3376             '''</summary>
3377             ERROR_POPUP_ALREADY_ACTIVE = 1446L
3378
3379             '''<summary>
3380             ''' Window does not have scroll
3381             ''' bars.
3382             '''</summary>
3383             ERROR_NO_SCROLLBARS = 1447L
3384
3385             '''<summary>
3386             ''' Scrollbar range greater than
3387             ''' 0x7FFF.
3388             '''</summary>
3389             ERROR_INVALID_SCROLLBAR_RANGE = 1448L
3390
3391             '''<summary>
3392             ''' The ShowWindow command is
3393             ''' invalid.
3394             '''</summary>
3395             ERROR_INVALID_SHOWWIN_COMMAND = 1449L
3396
3397             '''<summary>
3398             ''' Insufficient system resources
3399             ''' exist to complete the
3400             ''' requested service.
3401             '''</summary>
3402             ERROR_NO_SYSTEM_RESOURCES = 1450L
3403
3404             '''<summary>
3405             ''' Insufficient system resources
3406             ''' exist to complete the
3407             ''' requested service.
3408             '''</summary>
3409             ERROR_NONPAGED_SYSTEM_RESOURCES = 1451L
3410
3411             '''<summary>
3412             ''' Insufficient system resources
3413             ''' exist to complete the
3414             ''' requested service.
3415             '''</summary>
3416             ERROR_PAGED_SYSTEM_RESOURCES = 1452L
3417
3418             '''<summary>
3419             ''' Insufficient quota to complete
3420             ''' the requested service.
3421             '''</summary>
3422             ERROR_WORKING_SET_QUOTA = 1453L
3423
3424             '''<summary>
3425             ''' Insufficient quota to complete
3426             ''' the requested service.
3427             '''</summary>
3428             ERROR_PAGEFILE_QUOTA = 1454L
3429
3430             '''<summary>
3431             ''' The paging file is too small
3432             ''' for this operation to
3433             ''' complete.
3434             '''</summary>
3435             ERROR_COMMITMENT_LIMIT = 1455L
3436
3437             '''<summary>
3438             ''' A menu item was not found.
3439             '''</summary>
3440             ERROR_MENU_ITEM_NOT_FOUND = 1456L
3441
3442             '''<summary>
3443             ''' Invalid keyboard layout
3444             ''' handle.
3445             '''</summary>
3446             ERROR_INVALID_KEYBOARD_HANDLE = 1457L
3447
3448             '''<summary>
3449             ''' Hook type not allowed.
3450             '''</summary>
3451             ERROR_HOOK_TYPE_NOT_ALLOWED = 1458L
3452
3453             '''<summary>
3454             ''' One of the Eventlog logfiles
3455             ''' is damaged.
3456             '''</summary>
3457             ERROR_EVENTLOG_FILE_CORRUPT = 1500L
3458
3459             '''<summary>
3460             ''' No event log file could be
3461             ''' opened, so the event logging
3462             ''' service did not start.
3463             '''</summary>
3464             ERROR_EVENTLOG_CANT_START = 1501L
3465
3466             '''<summary>
3467             ''' The event log file is full.
3468             '''</summary>
3469             ERROR_LOG_FILE_FULL = 1502L
3470
3471             '''<summary>
3472             ''' The event log file has changed
3473             ''' between reads.
3474             '''</summary>
3475             ERROR_EVENTLOG_FILE_CHANGED = 1503L
3476
3477             '''<summary>
3478             ''' The string binding is invalid.
3479             '''</summary>
3480             RPC_S_INVALID_STRING_BINDING = 1700L
3481
3482             '''<summary>
3483             ''' The binding handle is the
3484             ''' incorrect type.
3485             '''</summary>
3486             RPC_S_WRONG_KIND_OF_BINDING = 1701L
3487
3488             '''<summary>
3489             ''' The binding handle is invalid.
3490             '''</summary>
3491             RPC_S_INVALID_BINDING = 1702L
3492
3493             '''<summary>
3494             ''' The RPC protocol sequence is
3495             ''' not supported.
3496             '''</summary>
3497             RPC_S_PROTSEQ_NOT_SUPPORTED = 1703L
3498
3499             '''<summary>
3500             ''' The RPC protocol sequence is
3501             ''' invalid.
3502             '''</summary>
3503             RPC_S_INVALID_RPC_PROTSEQ = 1704L
3504
3505             '''<summary>
3506             ''' The string UUID is invalid.
3507             '''</summary>
3508             RPC_S_INVALID_STRING_UUID = 1705L
3509
3510             '''<summary>
3511             ''' The endpoint format is
3512             ''' invalid.
3513             '''</summary>
3514             RPC_S_INVALID_ENDPOINT_FORMAT = 1706L
3515
3516             '''<summary>
3517             ''' The network address is
3518             ''' invalid.
3519             '''</summary>
3520             RPC_S_INVALID_NET_ADDR = 1707L
3521
3522             '''<summary>
3523             ''' No endpoint was found.
3524             '''</summary>
3525             RPC_S_NO_ENDPOINT_FOUND = 1708L
3526
3527             '''<summary>
3528             ''' The timeout value is invalid.
3529             '''</summary>
3530             RPC_S_INVALID_TIMEOUT = 1709L
3531
3532             '''<summary>
3533             ''' The object UUID was not found.
3534             '''</summary>
3535             RPC_S_OBJECT_NOT_FOUND = 1710L
3536
3537             '''<summary>
3538             ''' The object UUID already
3539             ''' registered.
3540             '''</summary>
3541             RPC_S_ALREADY_REGISTERED = 1711L
3542
3543             '''<summary>
3544             ''' The type UUID is already
3545             ''' registered.
3546             '''</summary>
3547             RPC_S_TYPE_ALREADY_REGISTERED = 1712L
3548
3549             '''<summary>
3550             ''' The server is already
3551             ''' listening.
3552             '''</summary>
3553             RPC_S_ALREADY_LISTENING = 1713L
3554
3555             '''<summary>
3556             ''' No protocol sequences were
3557             ''' registered.
3558             '''</summary>
3559             RPC_S_NO_PROTSEQS_REGISTERED = 1714L
3560
3561             '''<summary>
3562             ''' The server is not listening.
3563             '''</summary>
3564             RPC_S_NOT_LISTENING = 1715L
3565
3566             '''<summary>
3567             ''' The manager type is unknown.
3568             '''</summary>
3569             RPC_S_UNKNOWN_MGR_TYPE = 1716L
3570
3571             '''<summary>
3572             ''' The interface is unknown.
3573             '''</summary>
3574             RPC_S_UNKNOWN_IF = 1717L
3575
3576             '''<summary>
3577             ''' There are no bindings.
3578             '''</summary>
3579             RPC_S_NO_BINDINGS = 1718L
3580
3581             '''<summary>
3582             ''' There are no protocol
3583             ''' sequences.
3584             '''</summary>
3585             RPC_S_NO_PROTSEQS = 1719L
3586
3587             '''<summary>
3588             ''' The endpoint cannot be
3589             ''' created.
3590             '''</summary>
3591             RPC_S_CANT_CREATE_ENDPOINT = 1720L
3592
3593             '''<summary>
3594             ''' Not enough resources are
3595             ''' available to complete this
3596             ''' operation.
3597             '''</summary>
3598             RPC_S_OUT_OF_RESOURCES = 1721L
3599
3600             '''<summary>
3601             ''' The server is unavailable.
3602             '''</summary>
3603             RPC_S_SERVER_UNAVAILABLE = 1722L
3604
3605             '''<summary>
3606             ''' The server is too busy to
3607             ''' complete this operation.
3608             '''</summary>
3609             RPC_S_SERVER_TOO_BUSY = 1723L
3610
3611             '''<summary>
3612             ''' The network options are
3613             ''' invalid.
3614             '''</summary>
3615             RPC_S_INVALID_NETWORK_OPTIONS = 1724L
3616
3617             '''<summary>
3618             ''' There is not a remote
3619             ''' procedure call active in this
3620             ''' thread.
3621             '''</summary>
3622             RPC_S_NO_CALL_ACTIVE = 1725L
3623
3624             '''<summary>
3625             ''' The remote procedure call
3626             ''' failed.
3627             '''</summary>
3628             RPC_S_CALL_FAILED = 1726L
3629
3630             '''<summary>
3631             ''' The remote procedure call
3632             ''' failed and did not execute.
3633             '''</summary>
3634             RPC_S_CALL_FAILED_DNE = 1727L
3635
3636             '''<summary>
3637             ''' An RPC protocol error
3638             ''' occurred.
3639             '''</summary>
3640             RPC_S_PROTOCOL_ERROR = 1728L
3641
3642             '''<summary>
3643             ''' The transfer syntax is not
3644             ''' supported by the server.
3645             '''</summary>
3646             RPC_S_UNSUPPORTED_TRANS_SYN = 1730L
3647
3648             '''<summary>
3649             ''' The server has insufficient
3650             ''' memory to complete this
3651             ''' operation.
3652             '''</summary>
3653             RPC_S_SERVER_OUT_OF_MEMORY = 1731L
3654
3655             '''<summary>
3656             ''' The type UUID is not
3657             ''' supported.
3658             '''</summary>
3659             RPC_S_UNSUPPORTED_TYPE = 1732L
3660
3661             '''<summary>
3662             ''' The tag is invalid.
3663             '''</summary>
3664             RPC_S_INVALID_TAG = 1733L
3665
3666             '''<summary>
3667             ''' The array bounds are invalid.
3668             '''</summary>
3669             RPC_S_INVALID_BOUND = 1734L
3670
3671             '''<summary>
3672             ''' The binding does not contain
3673             ''' an entry name.
3674             '''</summary>
3675             RPC_S_NO_ENTRY_NAME = 1735L
3676
3677             '''<summary>
3678             ''' The name syntax is invalid.
3679             '''</summary>
3680             RPC_S_INVALID_NAME_SYNTAX = 1736L
3681
3682             '''<summary>
3683             ''' The name syntax is not
3684             ''' supported.
3685             '''</summary>
3686             RPC_S_UNSUPPORTED_NAME_SYNTAX = 1737L
3687
3688             '''<summary>
3689             ''' No network address is
3690             ''' available to use to construct
3691             ''' a UUID.
3692             '''</summary>
3693             RPC_S_UUID_NO_ADDRESS = 1739L
3694
3695             '''<summary>
3696             ''' The endpoint is a duplicate.
3697             '''</summary>
3698             RPC_S_DUPLICATE_ENDPOINT = 1740L
3699
3700             '''<summary>
3701             ''' The authentication type is
3702             ''' unknown.
3703             '''</summary>
3704             RPC_S_UNKNOWN_AUTHN_TYPE = 1741L
3705
3706             '''<summary>
3707             ''' The maximum number of calls is
3708             ''' too small.
3709             '''</summary>
3710             RPC_S_MAX_CALLS_TOO_SMALL = 1742L
3711
3712             '''<summary>
3713             ''' The string is too long.
3714             '''</summary>
3715             RPC_S_STRING_TOO_LONG = 1743L
3716
3717             '''<summary>
3718             ''' The RPC protocol sequence was
3719             ''' not found.
3720             '''</summary>
3721             RPC_S_PROTSEQ_NOT_FOUND = 1744L
3722
3723             '''<summary>
3724             ''' The procedure number is out of
3725             ''' range.
3726             '''</summary>
3727             RPC_S_PROCNUM_OUT_OF_RANGE = 1745L
3728
3729             '''<summary>
3730             ''' The binding does not contain
3731             ''' any authentication
3732             ''' information.
3733             '''</summary>
3734             RPC_S_BINDING_HAS_NO_AUTH = 1746L
3735
3736             '''<summary>
3737             ''' The authentication service is
3738             ''' unknown.
3739             '''</summary>
3740             RPC_S_UNKNOWN_AUTHN_SERVICE = 1747L
3741
3742             '''<summary>
3743             ''' The authentication level is
3744             ''' unknown.
3745             '''</summary>
3746             RPC_S_UNKNOWN_AUTHN_LEVEL = 1748L
3747
3748             '''<summary>
3749             ''' The security context is
3750             ''' invalid.
3751             '''</summary>
3752             RPC_S_INVALID_AUTH_IDENTITY = 1749L
3753
3754             '''<summary>
3755             ''' The authorization service is
3756             ''' unknown.
3757             '''</summary>
3758             RPC_S_UNKNOWN_AUTHZ_SERVICE = 1750L
3759
3760             '''<summary>
3761             ''' The entry is invalid.
3762             '''</summary>
3763             EPT_S_INVALID_ENTRY = 1751L
3764
3765             '''<summary>
3766             ''' The operation cannot be
3767             ''' performed.
3768             '''</summary>
3769             EPT_S_CANT_PERFORM_OP = 1752L
3770
3771             '''<summary>
3772             ''' There are no more endpoints
3773             ''' available from the endpoint
3774             ''' mapper.
3775             '''</summary>
3776             EPT_S_NOT_REGISTERED = 1753L
3777
3778             '''<summary>
3779             ''' The entry name is incomplete.
3780             '''</summary>
3781             RPC_S_INCOMPLETE_NAME = 1755L
3782
3783             '''<summary>
3784             ''' The version option is invalid.
3785             '''</summary>
3786             RPC_S_INVALID_VERS_OPTION = 1756L
3787
3788             '''<summary>
3789             ''' There are no more members.
3790             '''</summary>
3791             RPC_S_NO_MORE_MEMBERS = 1757L
3792
3793             '''<summary>
3794             ''' There is nothing to unexport.
3795             '''</summary>
3796             RPC_S_NOT_ALL_OBJS_UNEXPORTED = 1758L
3797
3798             '''<summary>
3799             ''' The interface was not found.
3800             '''</summary>
3801             RPC_S_INTERFACE_NOT_FOUND = 1759L
3802
3803             '''<summary>
3804             ''' The entry already exists.
3805             '''</summary>
3806             RPC_S_ENTRY_ALREADY_EXISTS = 1760L
3807
3808             '''<summary>
3809             ''' The entry is not found.
3810             '''</summary>
3811             RPC_S_ENTRY_NOT_FOUND = 1761L
3812
3813             '''<summary>
3814             ''' The name service is
3815             ''' unavailable.
3816             '''</summary>
3817             RPC_S_NAME_SERVICE_UNAVAILABLE = 1762L
3818
3819             '''<summary>
3820             ''' The requested operation is not
3821             ''' supported.
3822             '''</summary>
3823             RPC_S_CANNOT_SUPPORT = 1764L
3824
3825             '''<summary>
3826             ''' No security context is
3827             ''' available to allow
3828             ''' impersonation.
3829             '''</summary>
3830             RPC_S_NO_CONTEXT_AVAILABLE = 1765L
3831
3832             '''<summary>
3833             ''' An internal error occurred in
3834             ''' RPC.
3835             '''</summary>
3836             RPC_S_INTERNAL_ERROR = 1766L
3837
3838             '''<summary>
3839             ''' The server attempted an
3840             ''' integer divide by zero.
3841             '''</summary>
3842             RPC_S_ZERO_DIVIDE = 1767L
3843
3844             '''<summary>
3845             ''' An addressing error occurred
3846             ''' in the server.
3847             '''</summary>
3848             RPC_S_ADDRESS_ERROR = 1768L
3849
3850             '''<summary>
3851             ''' A floating point operation at
3852             ''' the server caused a divide by
3853             ''' zero.
3854             '''</summary>
3855             RPC_S_FP_DIV_ZERO = 1769L
3856
3857             '''<summary>
3858             ''' A floating point underflow
3859             ''' occurred at the server.
3860             '''</summary>
3861             RPC_S_FP_UNDERFLOW = 1770L
3862
3863             '''<summary>
3864             ''' A floating point overflow
3865             ''' occurred at the server.
3866             '''</summary>
3867             RPC_S_FP_OVERFLOW = 1771L
3868
3869             '''<summary>
3870             ''' The list of servers available
3871             ''' for auto_handle binding was
3872             ''' exhausted.
3873             '''</summary>
3874             RPC_X_NO_MORE_ENTRIES = 1772L
3875
3876             '''<summary>
3877             ''' The file designated by
3878             ''' DCERPCCHARTRANS cannot be
3879             ''' opened.
3880             '''</summary>
3881             RPC_X_SS_CHAR_TRANS_OPEN_FAIL = 1773L
3882
3883             '''<summary>
3884             ''' The file containing the
3885             ''' character translation table
3886             ''' has fewer than 512 bytes.
3887             '''</summary>
3888             RPC_X_SS_CHAR_TRANS_SHORT_FILE = 1774L
3889
3890             '''<summary>
3891             ''' A null context handle is
3892             ''' passed as an [in] parameter.
3893             '''</summary>
3894             RPC_X_SS_IN_NULL_CONTEXT = 1775L
3895
3896             '''<summary>
3897             ''' The context handle does not
3898             ''' match any known context
3899             ''' handles.
3900             '''</summary>
3901             RPC_X_SS_CONTEXT_MISMATCH = 1776L
3902
3903             '''<summary>
3904             ''' The context handle changed
3905             ''' during a call.
3906             '''</summary>
3907             RPC_X_SS_CONTEXT_DAMAGED = 1777L
3908
3909             '''<summary>
3910             ''' The binding handles passed to
3911             ''' a remote procedure call do not
3912             ''' match.
3913             '''</summary>
3914             RPC_X_SS_HANDLES_MISMATCH = 1778L
3915
3916             '''<summary>
3917             ''' The stub is unable to get the
3918             ''' call handle.
3919             '''</summary>
3920             RPC_X_SS_CANNOT_GET_CALL_HANDLE = 1779L
3921
3922             '''<summary>
3923             ''' A null reference pointer was
3924             ''' passed to the stub.
3925             '''</summary>
3926             RPC_X_NULL_REF_POINTER = 1780L
3927
3928             '''<summary>
3929             ''' The enumeration value is out
3930             ''' of range.
3931             '''</summary>
3932             RPC_X_ENUM_VALUE_OUT_OF_RANGE = 1781L
3933
3934             '''<summary>
3935             ''' The byte count is too small.
3936             '''</summary>
3937             RPC_X_BYTE_COUNT_TOO_SMALL = 1782L
3938
3939             '''<summary>
3940             ''' The stub received bad data.
3941             '''</summary>
3942             RPC_X_BAD_STUB_DATA = 1783L
3943
3944             '''<summary>
3945             ''' The supplied user buffer is
3946             ''' invalid for the requested
3947             ''' operation.
3948             '''</summary>
3949             ERROR_INVALID_USER_BUFFER = 1784L
3950
3951             '''<summary>
3952             ''' The disk media is not
3953             ''' recognized. It may not be
3954             ''' formatted.
3955             '''</summary>
3956             ERROR_UNRECOGNIZED_MEDIA = 1785L
3957
3958             '''<summary>
3959             ''' The workstation does not have
3960             ''' a trust secret.
3961             '''</summary>
3962             ERROR_NO_TRUST_LSA_SECRET = 1786L
3963
3964             '''<summary>
3965             ''' The domain controller does not
3966             ''' have an account for this
3967             ''' workstation.
3968             '''</summary>
3969             ERROR_NO_TRUST_SAM_ACCOUNT = 1787L
3970
3971             '''<summary>
3972             ''' The trust relationship between
3973             ''' the primary domain and the
3974             ''' trusted domain failed.
3975             '''</summary>
3976             ERROR_TRUSTED_DOMAIN_FAILURE = 1788L
3977
3978             '''<summary>
3979             ''' The trust relationship between
3980             ''' this workstation and the
3981             ''' primary domain failed.
3982             '''</summary>
3983             ERROR_TRUSTED_RELATIONSHIP_FAILURE = 1789L
3984
3985             '''<summary>
3986             ''' The network logon failed.
3987             '''</summary>
3988             ERROR_TRUST_FAILURE = 1790L
3989
3990             '''<summary>
3991             ''' A remote procedure call is
3992             ''' already in progress for this
3993             ''' thread.
3994             '''</summary>
3995             RPC_S_CALL_IN_PROGRESS = 1791L
3996
3997             '''<summary>
3998             ''' An attempt was made to logon,
3999             ''' but the network logon service
4000             ''' was not started.
4001             '''</summary>
4002             ERROR_NETLOGON_NOT_STARTED = 1792L
4003
4004             '''<summary>
4005             ''' The user's account has
4006             ''' expired.
4007             '''</summary>
4008             ERROR_ACCOUNT_EXPIRED = 1793L
4009
4010             '''<summary>
4011             ''' The redirector is in use and
4012             ''' cannot be unloaded.
4013             '''</summary>
4014             ERROR_REDIRECTOR_HAS_OPEN_HANDLES = 1794L
4015
4016             '''<summary>
4017             ''' The specified printer driver
4018             ''' is already installed.
4019             '''</summary>
4020             ERROR_PRINTER_DRIVER_ALREADY_INSTALLED = 1795L
4021
4022             '''<summary>
4023             ''' The specified port is unknown.
4024             '''</summary>
4025             ERROR_UNKNOWN_PORT = 1796L
4026
4027             '''<summary>
4028             ''' The printer driver is unknown.
4029             '''</summary>
4030             ERROR_UNKNOWN_PRINTER_DRIVER = 1797L
4031
4032             '''<summary>
4033             ''' The print processor is
4034             ''' unknown.
4035             '''</summary>
4036             ERROR_UNKNOWN_PRINTPROCESSOR = 1798L
4037
4038             '''<summary>
4039             ''' The specified separator file
4040             ''' is invalid.
4041             '''</summary>
4042             ERROR_INVALID_SEPARATOR_FILE = 1799L
4043
4044             '''<summary>
4045             ''' The specified priority is
4046             ''' invalid.
4047             '''</summary>
4048             ERROR_INVALID_PRIORITY = 1800L
4049
4050             '''<summary>
4051             ''' The printer name is invalid.
4052             '''</summary>
4053             ERROR_INVALID_PRINTER_NAME = 1801L
4054
4055             '''<summary>
4056             ''' The printer already exists.
4057             '''</summary>
4058             ERROR_PRINTER_ALREADY_EXISTS = 1802L
4059
4060             '''<summary>
4061             ''' The printer command is
4062             ''' invalid.
4063             '''</summary>
4064             ERROR_INVALID_PRINTER_COMMAND = 1803L
4065
4066             '''<summary>
4067             ''' The specified datatype is
4068             ''' invalid.
4069             '''</summary>
4070             ERROR_INVALID_DATATYPE = 1804L
4071
4072             '''<summary>
4073             ''' The Environment specified is
4074             ''' invalid.
4075             '''</summary>
4076             ERROR_INVALID_ENVIRONMENT = 1805L
4077
4078             '''<summary>
4079             ''' There are no more bindings.
4080             '''</summary>
4081             RPC_S_NO_MORE_BINDINGS = 1806L
4082
4083             '''<summary>
4084             ''' The account used is an
4085             ''' interdomain trust account. Use
4086             ''' your normal user account or
4087             ''' remote user account to access
4088             ''' this server.
4089             '''</summary>
4090             ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT = 1807L
4091
4092             '''<summary>
4093             ''' The account used is a
4094             ''' workstation trust account. Use
4095             ''' your normal user account or
4096             ''' remote user account to access
4097             ''' this server.
4098             '''</summary>
4099             ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT = 1808L
4100
4101             '''<summary>
4102             ''' The account used is an server
4103             ''' trust account. Use your normal
4104             ''' user account or remote user
4105             ''' account to access this server.
4106             '''</summary>
4107             ERROR_NOLOGON_SERVER_TRUST_ACCOUNT = 1809L
4108
4109             '''<summary>
4110             ''' The name or security ID (SID)
4111             ''' of the domain specified is
4112             ''' inconsistent with the trust
4113             ''' information for that domain.
4114             '''</summary>
4115             ERROR_DOMAIN_TRUST_INCONSISTENT = 1810L
4116
4117             '''<summary>
4118             ''' The server is in use and
4119             ''' cannot be unloaded.
4120             '''</summary>
4121             ERROR_SERVER_HAS_OPEN_HANDLES = 1811L
4122
4123             '''<summary>
4124             ''' The specified image file did
4125             ''' not contain a resource
4126             ''' section.
4127             '''</summary>
4128             ERROR_RESOURCE_DATA_NOT_FOUND = 1812L
4129
4130             '''<summary>
4131             ''' The specified resource type
4132             ''' can not be found in the image
4133             ''' file.
4134             '''</summary>
4135             ERROR_RESOURCE_TYPE_NOT_FOUND = 1813L
4136
4137             '''<summary>
4138             ''' The specified resource name
4139             ''' can not be found in the image
4140             ''' file.
4141             '''</summary>
4142             ERROR_RESOURCE_NAME_NOT_FOUND = 1814L
4143
4144             '''<summary>
4145             ''' The specified resource
4146             ''' language ID cannot be found in
4147             ''' the image file.
4148             '''</summary>
4149             ERROR_RESOURCE_LANG_NOT_FOUND = 1815L
4150
4151             '''<summary>
4152             ''' Not enough quota is available
4153             ''' to process this command.
4154             '''</summary>
4155             ERROR_NOT_ENOUGH_QUOTA = 1816L
4156
4157             '''<summary>
4158             ''' 
4159             '''</summary>
4160             RPC_S_NO_INTERFACES = 1817L
4161
4162             '''<summary>
4163             ''' The server was altered while
4164             ''' processing this call.
4165             '''</summary>
4166             RPC_S_CALL_CANCELLED = 1818L
4167
4168             '''<summary>
4169             ''' The binding handle does not
4170             ''' contain all required
4171             ''' information.
4172             '''</summary>
4173             RPC_S_BINDING_INCOMPLETE = 1819L
4174
4175             '''<summary>
4176             ''' Communications failure.
4177             '''</summary>
4178             RPC_S_COMM_FAILURE = 1820L
4179
4180             '''<summary>
4181             ''' The requested authentication
4182             ''' level is not supported.
4183             '''</summary>
4184             RPC_S_UNSUPPORTED_AUTHN_LEVEL = 1821L
4185
4186             '''<summary>
4187             ''' No principal name registered.
4188             '''</summary>
4189             RPC_S_NO_PRINC_NAME = 1822L
4190
4191             '''<summary>
4192             ''' The error specified is not a
4193             ''' valid Windows RPC error code.
4194             '''</summary>
4195             RPC_S_NOT_RPC_ERROR = 1823L
4196
4197             '''<summary>
4198             ''' A UUID that is valid only on
4199             ''' this computer has been
4200             ''' allocated.
4201             '''</summary>
4202             RPC_S_UUID_LOCAL_ONLY = 1824L
4203
4204             '''<summary>
4205             ''' A security package specific
4206             ''' error occurred.
4207             '''</summary>
4208             RPC_S_SEC_PKG_ERROR = 1825L
4209
4210             '''<summary>
4211             ''' Thread is not cancelled.
4212             '''</summary>
4213             RPC_S_NOT_CANCELLED = 1826L
4214
4215             '''<summary>
4216             ''' Invalid operation on the
4217             ''' encoding/decoding handle.
4218             '''</summary>
4219             RPC_X_INVALID_ES_ACTION = 1827L
4220
4221             '''<summary>
4222             ''' Incompatible version of the
4223             ''' serializing package.
4224             '''</summary>
4225             RPC_X_WRONG_ES_VERSION = 1828L
4226
4227             '''<summary>
4228             ''' Incompatible version of the
4229             ''' RPC stub.
4230             '''</summary>
4231             RPC_X_WRONG_STUB_VERSION = 1829L
4232
4233             '''<summary>
4234             ''' The idl pipe object is invalid
4235             ''' or corrupted.
4236             '''</summary>
4237             RPC_X_INVALID_PIPE_OBJECT = 1830L
4238
4239             '''<summary>
4240             ''' The operation is invalid for a
4241             ''' given idl pipe object.
4242             '''</summary>
4243             RPC_X_INVALID_PIPE_OPERATION = 1831L
4244
4245             '''<summary>
4246             ''' The idl pipe version is not
4247             ''' supported.
4248             '''</summary>
4249             RPC_X_WRONG_PIPE_VERSION = 1832L
4250
4251             '''<summary>
4252             ''' The group member was not
4253             ''' found.
4254             '''</summary>
4255             RPC_S_GROUP_MEMBER_NOT_FOUND = 1898L
4256
4257             '''<summary>
4258             ''' The endpoint mapper database
4259             ''' could not be created.
4260             '''</summary>
4261             EPT_S_CANT_CREATE = 1899L
4262
4263             '''<summary>
4264             ''' The object universal unique
4265             ''' identifier (UUID) is the nil
4266             ''' UUID.
4267             '''</summary>
4268             RPC_S_INVALID_OBJECT = 1900L
4269
4270             '''<summary>
4271             ''' The specified time is invalid.
4272             '''</summary>
4273             ERROR_INVALID_TIME = 1901L
4274
4275             '''<summary>
4276             ''' The specified Form name is
4277             ''' invalid.
4278             '''</summary>
4279             ERROR_INVALID_FORM_NAME = 1902L
4280
4281             '''<summary>
4282             ''' The specified Form size is
4283             ''' invalid.
4284             '''</summary>
4285             ERROR_INVALID_FORM_SIZE = 1903L
4286
4287             '''<summary>
4288             ''' The specified Printer handle
4289             ''' is already being waited on.
4290             '''</summary>
4291             ERROR_ALREADY_WAITING = 1904L
4292
4293             '''<summary>
4294             ''' The specified Printer has been
4295             ''' deleted.
4296             '''</summary>
4297             ERROR_PRINTER_DELETED = 1905L
4298
4299             '''<summary>
4300             ''' The state of the Printer is
4301             ''' invalid.
4302             '''</summary>
4303             ERROR_INVALID_PRINTER_STATE = 1906L
4304
4305             '''<summary>
4306             ''' The user must change his
4307             ''' password before he logs on the
4308             ''' first time.
4309             '''</summary>
4310             ERROR_PASSWORD_MUST_CHANGE = 1907L
4311
4312             '''<summary>
4313             ''' Could not find the domain
4314             ''' controller for this domain.
4315             '''</summary>
4316             ERROR_DOMAIN_CONTROLLER_NOT_FOUND = 1908L
4317
4318             '''<summary>
4319             ''' The referenced account is
4320             ''' currently locked out and may
4321             ''' not be logged on to.
4322             '''</summary>
4323             ERROR_ACCOUNT_LOCKED_OUT = 1909L
4324
4325             '''<summary>
4326             ''' The object exporter specified
4327             ''' was not found.
4328             '''</summary>
4329             OR_INVALID_OXID = 1910L
4330
4331             '''<summary>
4332             ''' The object specified was not
4333             ''' found.
4334             '''</summary>
4335             OR_INVALID_OID = 1911L
4336
4337             '''<summary>
4338             ''' The object resolver set
4339             ''' specified was not found.
4340             '''</summary>
4341             OR_INVALID_SET = 1912L
4342
4343             '''<summary>
4344             ''' Some data remains to be sent
4345             ''' in the request buffer.
4346             '''</summary>
4347             RPC_S_SEND_INCOMPLETE = 1913L
4348
4349             '''<summary>
4350             ''' The pixel format is invalid.
4351             '''</summary>
4352             ERROR_INVALID_PIXEL_FORMAT = 2000L
4353
4354             '''<summary>
4355             ''' The specified driver is
4356             ''' invalid.
4357             '''</summary>
4358             ERROR_BAD_DRIVER = 2001L
4359
4360             '''<summary>
4361             ''' The window style or class
4362             ''' attribute is invalid for this
4363             ''' operation.
4364             '''</summary>
4365             ERROR_INVALID_WINDOW_STYLE = 2002L
4366
4367             '''<summary>
4368             ''' The requested metafile
4369             ''' operation is not supported.
4370             '''</summary>
4371             ERROR_METAFILE_NOT_SUPPORTED = 2003L
4372
4373             '''<summary>
4374             ''' The requested transformation
4375             ''' operation is not supported.
4376             '''</summary>
4377             ERROR_TRANSFORM_NOT_SUPPORTED = 2004L
4378
4379             '''<summary>
4380             ''' The requested clipping
4381             ''' operation is not supported.
4382             '''</summary>
4383             ERROR_CLIPPING_NOT_SUPPORTED = 2005L
4384
4385             '''<summary>
4386             ''' The network is not present or
4387             ''' not started.
4388             '''</summary>
4389             ERROR_NO_NETWORK2 = 2138L
4390
4391             '''<summary>
4392             ''' The specified user name is
4393             ''' invalid.
4394             '''</summary>
4395             ERROR_BAD_USERNAME = 2202L
4396
4397             '''<summary>
4398             ''' This network connection does
4399             ''' not exist.
4400             '''</summary>
4401             ERROR_NOT_CONNECTED = 2250L
4402
4403             '''<summary>
4404             ''' There are open files or
4405             ''' requests pending on this
4406             ''' connection.
4407             '''</summary>
4408             ERROR_OPEN_FILES = 2401L
4409
4410             '''<summary>
4411             ''' Active connections still
4412             ''' exist.
4413             '''</summary>
4414             ERROR_ACTIVE_CONNECTIONS = 2402L
4415
4416             '''<summary>
4417             ''' The device is in use by an
4418             ''' active process and cannot be
4419             ''' disconnected.
4420             '''</summary>
4421             ERROR_DEVICE_IN_USE = 2404L
4422
4423             '''<summary>
4424             ''' The specified print monitor is
4425             ''' unknown.
4426             '''</summary>
4427             ERROR_UNKNOWN_PRINT_MONITOR = 3000L
4428
4429             '''<summary>
4430             ''' The specified printer driver
4431             ''' is currently in use.
4432             '''</summary>
4433             ERROR_PRINTER_DRIVER_IN_USE = 3001L
4434
4435             '''<summary>
4436             ''' The spool file was not found.
4437             '''</summary>
4438             ERROR_SPOOL_FILE_NOT_FOUND = 3002L
4439
4440             '''<summary>
4441             ''' A StartDocPrinter call was not
4442             ''' issued.
4443             '''</summary>
4444             ERROR_SPL_NO_STARTDOC = 3003L
4445
4446             '''<summary>
4447             ''' An AddJob call was not issued.
4448             '''</summary>
4449             ERROR_SPL_NO_ADDJOB = 3004L
4450
4451             '''<summary>
4452             ''' The specified print
4453             ''' processor has already been
4454             ''' installed.
4455             '''</summary>
4456             ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED = 3005L
4457
4458             '''<summary>
4459             ''' The specified print monitor
4460             ''' has already been installed.
4461             '''</summary>
4462             ERROR_PRINT_MONITOR_ALREADY_INSTALLED = 3006L
4463
4464             '''<summary>
4465             ''' The specified print monitor
4466             ''' does not have the required
4467             ''' functions.
4468             '''</summary>
4469             ERROR_INVALID_PRINT_MONITOR = 3007L
4470
4471             '''<summary>
4472             ''' The specified print monitor is
4473             ''' currently in use.
4474             '''</summary>
4475             ERROR_PRINT_MONITOR_IN_USE = 3008L
4476
4477             '''<summary>
4478             ''' The requested operation is not
4479             ''' allowed when there are jobs
4480             ''' queued to the printer.
4481             '''</summary>
4482             ERROR_PRINTER_HAS_JOBS_QUEUED = 3009L
4483
4484             '''<summary>
4485             ''' The requested operation is
4486             ''' successful. Changes will not
4487             ''' be effective until the system
4488             ''' is rebooted.
4489             '''</summary>
4490             ERROR_SUCCESS_REBOOT_REQUIRED = 3010L
4491
4492             '''<summary>
4493             ''' The requested operation is
4494             ''' successful. Changes will not
4495             ''' be effective until the service
4496             ''' is restarted.
4497             '''</summary>
4498             ERROR_SUCCESS_RESTART_REQUIRED = 3011L
4499
4500             '''<summary>
4501             ''' WINS encountered an error
4502             ''' while processing the command.
4503             '''</summary>
4504             ERROR_WINS_INTERNAL = 4000L
4505
4506             '''<summary>
4507             ''' The local WINS can not be
4508             ''' deleted.
4509             '''</summary>
4510             ERROR_CAN_NOT_DEL_LOCAL_WINS = 4001L
4511
4512             '''<summary>
4513             ''' The importation from the file
4514             ''' failed.
4515             '''</summary>
4516             ERROR_STATIC_INIT = 4002L
4517
4518             '''<summary>
4519             ''' The backup failed. Was a full
4520             ''' backup done before?
4521             '''</summary>
4522             ERROR_INC_BACKUP = 4003L
4523
4524             '''<summary>
4525             ''' The backup failed. Check the
4526             ''' directory that you are backing
4527             ''' the database to.
4528             '''</summary>
4529             ERROR_FULL_BACKUP = 4004L
4530
4531             '''<summary>
4532             ''' The name does not exist in the
4533             ''' WINS database.
4534             '''</summary>
4535             ERROR_REC_NON_EXISTENT = 4005L
4536
4537             '''<summary>
4538             ''' Replication with a non-
4539             ''' configured partner is not
4540             ''' allowed.
4541             '''</summary>
4542             ERROR_RPL_NOT_ALLOWED = 4006L
4543
4544             '''<summary>
4545             ''' The list of servers for this
4546             ''' workgroup is not currently
4547             ''' available.
4548             '''</summary>
4549             ERROR_NO_BROWSER_SERVERS_FOUND = 6118L
4550         End Enum
4551
4552         '(1)-功能错误。
4553         '(2)- 系统找不到指定的文件。
4554         '(3)-系统找不到指定的路径。
4555         '(4)-系统无法打开文件。
4556         '(5)-拒绝访问。
4557         '(6)-句柄无 效。
4558         '(7)-存储控制块被损坏。
4559         '(8)-存储空间不足,无法处理此命令。
4560         '(9)-存储控制块地址无效。
4561         '(10)-环境错 误。
4562         '(11)-试图加载格式错误的程序。
4563         '(12)-访问码无效。
4564         '(13)-数据无效。
4565         '(14)-存储器不足,无法完成此 操作。
4566         '(15)-系统找不到指定的驱动器。
4567         '(16)-无法删除目录。
4568         '(17)-系统无法将文件移到不同的驱动器。
4569         '(18)- 没有更多文件。
4570         '(19)-介质受写入保护。
4571         '(20)-系统找不到指定的设备。
4572         '(21)-设备未就绪。
4573         '(22)-设备不识 别此命令。
4574         '(23)-数据错误 (循环冗余检查)。
4575         '(24)-程序发出命令,但命令长度不正确。
4576         '(25)-驱动器无法找出磁盘上 特定区域或磁道的位置。
4577         '(26)-无法访问指定的磁盘或软盘。
4578         '(27)-驱动器找不到请求的扇区。
4579         '(28)-打印机缺纸。
4580         '(29)- 系统无法写入指定的设备。
4581         '(30)-系统无法从指定的设备上读取。
4582         '(31)-连到系统上的设备没有发挥作用。
4583         '(32)-进程无法 访问文件,因为另一个程序正在使用此文件。
4584         '(33)-进程无法访问文件,因为另一个程序已锁定文件的一部分。
4585         '(36)-用来共享的打开文 件过多。
4586         '(38)-到达文件结尾。
4587         '(39)-磁盘已满。
4588         '(50)-不支持网络请求。
4589         '(51)-远程计算机不可用 。
4590         '(52)- 在网络上已有重复的名称。
4591         '(53)-找不到网络路径。
4592         '(54)-网络忙。
4593         '(55)-指定的网络资源或设备不再可用。
4594         '(56)- 已到达网络 BIOS 命令限制。
4595         '(57)-网络适配器硬件出错。
4596         '(58)-指定的服务器无法运行请求的操作。
4597         '(59)-发生意 外的网络错误。
4598         '(60)-远程适配器不兼容。
4599         '(61)-打印机队列已满。
4600         '(62)-无法在服务器上获得用于保存待打印文件的空 间。
4601         '(63)-删除等候打印的文件。
4602         '(64)-指定的网络名不再可用。
4603         '(65)-拒绝网络访问。
4604         '(66)-网络资源类型 错误。
4605         '(67)-找不到网络名。
4606         '(68)-超过本地计算机网卡的名称限制。
4607         '(69)-超出网络 BIOS 会话限制。
4608         '(70)- 远程服务器已暂停,或正在启动过程中。
4609         '(71)-当前已无法再同此远程计算机连接,因为已达到计算机的连接数目极限。
4610         '(72)-已暂停指 定的打印机或磁盘设备。
4611         '(80)-文件存在。
4612         '(82)-无法创建目录或文件。
4613         '(83)-INT 24 失败。
4614         '(84)- 无法取得处理此请求的存储空间。
4615         '(85)-本地设备名已在使用中。
4616         '(86)-指定的网络密码错误。
4617         '(87)-参数错误。
4618         '(88)- 网络上发生写入错误。
4619         '(89)-系统无法在此时启动另一个进程。
4620         '(100)-无法创建另一个系统信号灯。
4621         '(101)-另一个进程 拥有独占的信号灯。
4622         '(102)-已设置信号灯且无法关闭。
4623         '(103)-无法再设置信号灯。
4624         '(104)-无法在中断时请求独占的信 号灯。
4625         '(105)-此信号灯的前一个所有权已结束。
4626         '(107)-程序停止,因为替代的软盘未插入。
4627         '(108)-磁盘在使用中,或 被另一个进程锁定。
4628         '(109)-管道已结束。
4629         '(110)-系统无法打开指定的设备或文件。
4630         '(111)-文件名太长。
4631         '(112)- 磁盘空间不足。
4632         '(113)-无法再获得内部文件的标识。
4633         '(114)-目标内部文件的标识不正确。 (117)-应用程序制作的 IOCTL 调用错误。
4634         '(118)-验证写入的切换参数值错误。
4635         '(119)-系统不支持请求的命令。
4636         '(120)-此功能只被此系 统支持。
4637         '(121)-信号灯超时时间已到。
4638         '(122)-传递到系统调用的数据区太小。
4639         '(123)-文件名、目录名或卷标语法不正 确。
4640         '(124)-系统调用级别错误。
4641         '(125)-磁盘没有卷标。
4642         '(126)-找不到指定的模块。
4643         '(127)-找不到指定 的程序。
4644         '(128)-没有等候的子进程。
4645         '(130)-试图使用操作(而非原始磁盘 I/O)的已打开磁盘分区的文件句柄。
4646         '(131)- 试图移动文件指针到文件开头之前。
4647         '(132)-无法在指定的设备或文件上设置文件指针。
4648         '(133)-包含先前加入驱动器的驱动器无法使用 JOIN 或 SUBST 命令。
4649         '(134)-试图在已被合并的驱动器上使用 JOIN 或 SUBST 命令。
4650         '(135)-试图在已 被合并的驱动器上使用 JOIN 或 SUBST 命令。
4651         '(136)-系统试图解除未合并驱动器的 JOIN。
4652         '(137)-系统试图解除 未替代驱动器的 SUBST。
4653         '(138)-系统试图将驱动器合并到合并驱动器上的目录。
4654         '(139)-系统试图将驱动器替代为替代驱动器上 的目录。
4655         '(140)-系统试图将驱动器合并到替代驱动器上的目录。
4656         '(141)-系统试图替代驱动器为合并驱动器上的目录。
4657         '(142)- 系统无法在此时运行 JOIN 或 SUBST。
4658         '(143)-系统无法将驱动器合并到或替代为相同驱动器上的目录。
4659         '(144)-目录并非 根目录下的子目录。
4660         '(145)-目录非空。
4661         '(146)-指定的路径已在替代中使用。
4662         '(147)-资源不足,无法处理此命令。
4663         '(148)- 指定的路径无法在此时使用。
4664         '(149)-企图将驱动器合并或替代为驱动器上目录是上一个替代的目标的驱动器。
4665         '(150)-系统跟踪信息未 在 CONFIG.SYS 文件中指定,或不允许跟踪。
4666         '(151)-为 DosMuxSemWait 指定的信号灯事件个数错误。
4667         '(152)-DosMuxSemWait 不可运行。已设置过多的信号灯。
4668         '(153)-DosMuxSemWait 清单错误。
4669         '(154)-输入的卷标超过目标文件系统的长度限 制
4670         '(155)-无法创建另一个线程。
4671         '(156)-接收进程已拒绝此信号。
4672         '(157)-段已被放弃且无法锁定。
4673         '(158)- 段已解除锁定。
4674         '(159)-线程标识的地址错误。
4675         '(160)-传递到 DosExecPgm 的参数字符串错误。
4676         '(161)-指 定的路径无效。
4677         '(162)-信号已暂停。
4678         '(164)-无法在系统中创建更多的线程。
4679         '(167)-无法锁定文件区域。
4680         '(170)- 请求的资源在使用中。
4681         '(173)-对于提供取消区域进行锁定的请求不明显。
4682         '(174)-文件系统不支持锁定类型的最小单元更改。
4683         '(180)- 系统检测出错误的段号。
4684         '(183)-当文件已存在时,无法创建该文件。
4685         '(186)-传递的标志错误。
4686         '(187)-找不到指定的系 统信号灯名称。
4687         '(196)-操作系统无法运行此应用程序。
4688         '(197)-操作系统当前的配置不能运行此应用程序。
4689         '(199)-操作 系统无法运行此应用程序。
4690         '(200)-代码段不可大于或等于 64K。
4691         '(203)-操作系统找不到已输入的环境选项。
4692         '(205)- 命令子树中的进程没有信号处理程序。
4693         '(206)-文件名或扩展名太长。
4694         '(207)-第 2 环堆栈已被占用。
4695         '(208)-没有正 确输入文件名通配符 * 或 ?,或指定过多的文件名通配符。
4696         '(209)-正在发送的信号错误。(210)-无法设置信号处理程序。
4697         '(212)- 段已锁定且无法重新分配。
4698         '(214)-连到该程序或动态链接模块的动态链接模块太多。
4699         '(215)-无法嵌套调用 LoadModule。
4700         '(230)- 管道状态无效。
4701         '(231)-所有的管道实例都在使用中。
4702         '(232)-管道正在关闭中。
4703         '(233)-管道的另一端上无任何进程。
4704         '(234)- 更多数据可用。
4705         '(240)-取消会话。
4706         '(254)-指定的扩展属性名无效。
4707         '(255)-扩展属性不一致。
4708         '(258)-等 待的操作过时。
4709         '(259)-没有可用的数据了。
4710         '(266)-无法使用复制功能。
4711         '(267)-目录名无效。
4712         '(275)-扩 展属性在缓冲区中不适用。
4713         '(276)-装在文件系统上的扩展属性文件已损坏。
4714         '(277)-扩展属性表格文件已满。
4715         '(278)-指 定的扩展属性句柄无效。
4716         '(282)-装入的文件系统不支持扩展属性。
4717         '(288)-企图释放并非呼叫方所拥有的多用户终端运行程序。
4718         '(298)- 发向信号灯的请求过多。
4719         '(299)-仅完成部分的 ReadProcessMemoty 或 WriteProcessMemory 请求。
4720         '(300)- 操作锁定请求被拒绝。
4721         '(301)-系统接收了一个无效的操作锁定确认。
4722         '(487)-试图访问无效的地址。
4723         '(534)-算术结果超 过 32 位。
4724         '(535)-管道的另一端有一进程。
4725         '(536)-等候打开管道另一端的进程。
4726         '(994)-拒绝访问扩展属性。
4727         '(995)- 由于线程退出或应用程序请求,已放弃 I/O 操作。
4728         '(996)-重叠 I/O 事件不在信号状态中。
4729         '(997)-重叠 I/O 操作在进行中。
4730         '(998)-内存分配访问无效。
4731         '(999)-错误运行页内操作。
4732         '(1001)-递归太深;栈溢出。
4733         '(1002)- 窗口无法在已发送的消息上操作。
4734         '(1003)-无法完成此功能。
4735         '(1004)-无效标志。
4736         '(1005)-此卷不包含可识别的文件 系统。请确定所有请求的文件系统驱动程序已加载,且此卷未损坏。
4737         '(1006)-文件所在的卷已被外部改变,因此打开的文件不再有效。
4738         '(1007)- 无法在全屏幕模式下运行请求的操作。
4739         '(1008)-试图引用不存在的令牌。
4740         '(1009)-配置注册表数据库损坏。
4741         '(1010)- 配置注册表项无效。
4742         '(1011)-无法打开配置注册表项。
4743         '(1012)-无法读取配置注册表项。
4744         '(1013)-无法写入配置注册 表项。
4745         '(1014)-注册表数据库中的某一文件必须使用记录或替代复制来恢复。恢复成功完成。
4746         '(1015)-注册表损坏。包含注册表数据 的某一文件结构损坏,或系统的文件内存映像损坏,或因为替代副本、日志缺少或损坏而无法恢复文件。
4747         '(1016)-由注册表启动的 I/O 操作恢复失败。注册表无法读入、写出或清除任意一个包含注册表系统映像的文件。
4748         '(1017)-系统试图加载或还原文件到注册表,但指定的文件并非 注册表文件格式。
4749         '(1018)-试图在标记为删除的注册表项上运行不合法的操作。
4750         '(1019)-系统无法配置注册表日志中所请求的空间。
4751         '(1020)- 无法在已有子项或值的注册表项中创建符号链接。
4752         '(1021)-无法在易变父项下创建稳定子项。
4753         '(1022)-通知更改请求正在完成中,且 信息并未返回到呼叫方的缓冲区中。当前呼叫方必须枚举文件来查找更改。
4754         '(1051)-已发送停止控制到服务,该服务被其它正在运行的服务所依赖。
4755         '(1052)- 请求的控件对此服务无效
4756         '(1053)-服务并未及时响应启动或控制请求。
4757         '(1054)-无法创建此服务的线程。
4758         '(1055)-锁 定服务数据库。
4759         '(1056)-服务的实例已在运行中。
4760         '(1057)-帐户名无效或不存在,或者密码对于指定的帐户名无效。
4761         '(1058)- 无法启动服务,原因可能是它被禁用或与它相关联的设备没有启动。
4762         '(1059)-指定了循环服务依存。
4763         '(1060)-指定的服务并未以已安 装的服务存在。
4764         '(1061)-服务无法在此时接受控制信息。
4765         '(1062)-服务未启动。
4766         '(1063)-服务进程无法连接到服务控 制器上。
4767         '(1064)-当处理控制请求时,在服务中发生异常。
4768         '(1065)-指定的数据库不存在。
4769         '(1066)-服务已返回特定 的服务错误码。
4770         '(1067)-进程意外终止。
4771         '(1068)-依存服务或组无法启动。
4772         '(1069)-由于登录失败而无法启动服务。
4773         '(1070)- 启动后,服务停留在启动暂停状态。
4774         '(1071)-指定的服务数据库锁定无效。
4775         '(1072)-指定的服务已标记为删除。
4776         '(1073)- 指定的服务已存在。
4777         '(1074)-系统当前以最新的有效配置运行。
4778         '(1075)-依存服务不存在,或已被标记为删除。
4779         '(1076)- 已接受使用当前引导作为最后的有效控制设置。
4780         '(1077)-上次启动之后,仍未尝试引导服务。
4781         '(1078)-名称已用作服务名或服务显示 名。
4782         '(1079)-此服务的帐户不同于运行于同一进程上的其它服务的帐户。
4783         '(1080)-只能为 Win32 服务设置失败操作,不能为驱动程序设置。
4784         '(1081)-这个服务所运行的处理和服务控制管理器相同。所以,如果服务处理程序意外中止的话,服务控 制管理器无法进行任何操作。
4785         '(1082)-这个服务尚未设置恢复程序。
4786         '(1083)-配置成在该可执行程序中运行的这个服务不能执行该服 务。
4787         '(1100)-已达磁带的实际结尾。
4788         '(1101)-磁带访问已达文件标记。
4789         '(1102)-已达磁带或磁盘分区的开头。
4790         '(1103)- 磁带访问已达一组文件的结尾。
4791         '(1104)-磁带上不再有任何数据。
4792         '(1105)-磁带无法分区。
4793         '(1106)-在访问多卷分区 的新磁带时,当前的块大小不正确。
4794         '(1107)-当加载磁带时,找不到分区信息。
4795         '(1108)-无法锁定媒体弹出功能。
4796         '(1109)- 无法卸载介质。
4797         '(1110)-驱动器中的介质可能已更改。
4798         '(1111)-复位 I/O 总线。
4799         '(1112)-驱动器中没有媒体。
4800         '(1113)- 在多字节的目标代码页中,没有此 Unicode 字符可以映射到的字符。
4801         '(1114)-动态链接库 (DLL) 初始化例程失败。
4802         '(1115)- 系统关机正在进行。
4803         '(1116)-因为没有任何进行中的关机过程,所以无法中断系统关机。
4804         '(1117)-因为 I/O 设备错误,所以无法运行此项请求。
4805         '(1118)-没有串行设备被初始化成功。串行驱动程序将卸载。
4806         '(1119)-无法打开正在与其他设备 共享中断请求(IRQ)的设备。至少有一个使用该 IRQ 的其他设备已打开。
4807         '(1120)-序列 I/O 操作已由另一个串行口的写入完成。(IOCTL_SERIAL_XOFF_COUNTER 已达零。)
4808         '(1121)-因为已过超时时间,所以串行 I/O 操作完成。(IOCTL_SERIAL_XOFF_COUNTER 未达零。)
4809         '(1122)-在软盘上找不到 ID 地址标记。
4810         '(1123)- 软盘扇区 ID 字符域与软盘控制器磁道地址不相符。
4811         '(1124)-软盘控制器报告软盘驱动程序不能识别的错误。
4812         '(1125)-软盘控制 器返回与其寄存器中不一致的结果。
4813
4814         '(1126)-当访问硬盘时,重新校准操作失败,重试仍然失败。
4815         '(1127)-当访问硬盘时,磁盘操作失败,重试仍然失败。
4816         '(1128)- 当访问硬盘时,即使失败,仍须复位磁盘控制器。
4817         '(1129)-已达磁带结尾。
4818         '(1130)-服务器存储空间不足,无法处理此命令。
4819         '(1131)- 检测出潜在的死锁状态。
4820         '(1132)-指定的基址或文件偏移量没有适当对齐。
4821         '(1140)-改变系统供电状态的尝试被另一应用程序或驱动 程序否决。
4822         '(1141)-系统 BIOS 改变系统供电状态的尝试失败。
4823         '(1142)-试图在一文件上创建超过系统允许数额的链接。
4824         '(1150)- 指定程序要求更新的 Windows 版本。
4825         '(1151)-指定程序不是 Windows 或 MS-DOS 程序。
4826         '(1152)-只能 启动该指定程序的一个实例。
4827         '(1153)-该指定程序适用于旧的 Windows 版本。
4828         '(1154)-执行该应用程序所需的库文件之一 被损坏。
4829         '(1155)-没有应用程序与此操作的指定文件有关联。
4830         '(1156)-在输送指令到应用程序的过程中出现错误。
4831         '(1157)- 执行该应用程序所需的库文件之一无法找到。
4832         '(1158)-当前程序已使用了 Window 管理器对象的系统允许的所有句柄。
4833         '(1159)- 消息只能与同步操作一起使用。
4834         '(1160)-指出的源元素没有媒体。
4835         '(1161)-指出的目标元素已包含媒体。
4836         '(1162)-指 出的元素不存在。
4837         '(1163)-指出的元素是未显示的存储资源的一部分。
4838         '(1164)-显示设备需要重新初始化,因为硬件有错误。
4839         '(1165)- 设备显示在尝试进一步操作之前需要清除。
4840         '(1166)-设备显示它的门仍是打开状态。
4841         '(1167)-设备没有连接。
4842         '(1168)- 找不到元素。
4843         '(1169)-索引中没有同指定项相匹配的项。
4844         '(1170)-在对象上不存在指定的属性集。
4845         '(1171)-传递到 GetMouseMovePoints 的点不在缓冲区中。
4846         '(1172)-跟踪(工作站)服务没运行。
4847         '(1173)-找不到卷 ID。
4848         '(1175)- 无法删除要被替换的文件。
4849         '(1176)-无法将替换文件移到要被替换的文件。要被替换的文件保持原来的名称。
4850         '(1177)-无法将替换文 件移到要被替换的文件。要被替换的文件已被重新命名为备份名称。
4851         '(1178)-卷更改记录被删除。
4852         '(1179)-卷更改记录服务不处于活 动中。
4853         '(1180)-找到一份文件,但是可能不是正确的文件。
4854         '(1181)-日志项从日志中被删除。
4855         '(1200)-指定的设备名 无效。
4856         '(1201)-设备当前未连接上,但其为一个记录连接。
4857         '(1202)-企图记录先前已被记录的设备。
4858         '(1203)-无任何 网络提供程序接受指定的网络路径。
4859         '(1204)-指定的网络提供程序名称无效。
4860         '(1205)-无法打开网络连接配置文件。
4861         '(1206)- 网络连接配置文件损坏。
4862         '(1207)-无法枚举空载体。
4863         '(1208)-发生扩展错误。
4864         '(1209)-指定的组名格式无效。
4865         '(1210)- 指定的计算机名格式无效。
4866         '(1211)-指定的事件名格式无效。
4867         '(1212)-指定的域名格式无效。
4868         '(1213)-指定的服务名 格式无效。
4869         '(1214)-指定的网络名格式无效。
4870         '(1215)-指定的共享名格式无效。
4871         '(1216)-指定的密码格式无效。
4872         '(1217)- 指定的消息名格式无效。
4873         '(1218)-指定的消息目标格式无效。
4874         '(1219)-提供的凭据与已存在的凭据集冲突。
4875         '(1220)- 企图创建网络服务器的会话,但已对该服务器创建过多的会话。
4876
4877         '(1221)-工作组或域名已由网络上的另一部计算机使用。
4878         '(1222)-网络未连接或启动。
4879         '(1223)-操作已被用户取消。
4880         '(1224)- 请求的操作无法在使用用户映射区域打开的文件上执行。
4881         '(1225)-远程系统拒绝网络连接。
4882         '(1226)-网络连接已被适当地关闭了。
4883         '(1227)- 网络传输终结点已有与其关联的地址。
4884         '(1228)-地址仍未与网络终结点关联。
4885         '(1229)-企图在不存在的网络连接上进行操作。
4886         '(1230)- 企图在使用中的网络连接上进行无效的操作。
4887         '(1231)-不能访问网络位置。有关网络排除故障的信息,请参阅 Windows 帮助。
4888         '(1232)- 不能访问网络位置。有关网络排除故障的信息,请参阅 Windows 帮助。
4889         '(1233)-不能访问网络位置。有关网络排除故障的信息,请参阅 Windows 帮助。
4890         '(1234)-没有任何服务正在远程系统上的目标网络终结点上操作。
4891         '(1235)-请求被终止。
4892         '(1236)- 由本地系统终止网络连接。
4893         '(1237)-操作无法完成。应该重试。
4894         '(1238)-因为已达到此帐户的最大同时连接数限制,所以无法连接服 务器。
4895         '(1239)-试图在这个帐户未被授权的时间内登录。
4896         '(1240)-此帐户并未得到从这个工作站登录的授权。
4897         '(1241)- 请求的操作不能使用这个网络地址。
4898         '(1242)-服务器已经注册。
4899         '(1243)-指定的服务不存在。
4900         '(1244)-因为用户还未 被验证,不能执行所要求的操作。
4901         '(1245)-因为用户还未登录网络,不能执行所要求的操作。指定的服务不存在。
4902         '(1246)-正在继续 工作。
4903         '(1247)-试图进行初始操作,但是初始化已完成。
4904         '(1248)-没有更多的本地设备。
4905         '(1249)-指定的站点不存 在。
4906         '(1250)-具有指定名称的域控制器已经存在。
4907         '(1251)-只有连接到服务器上时,该操作才受支持。
4908         '(1252)-即使 没有改动,组策略框架也应该调用扩展。
4909         '(1253)-指定的用户没有一个有效的配置文件。
4910         '(1254)-Microsoft Small Business Server 不支持此操作。
4911         '(1300)-并非所有被引用的特权都指派给呼叫方。
4912         '(1301)-帐户名和安全标识 间的某些映射未完成。
4913         '(1302)-没有为该帐户特别设置系统配额限制。
4914         '(1303)-没有可用的加密密钥。返回了一个已知加密密钥。
4915         '(1304)- 密码太复杂,无法转换成 LAN Manager 密码。返回的 LAN Manager 密码为空字符串。
4916         '(1305)-修订级别未知。
4917         '(1306)- 表明两个修订级别是不兼容的。
4918         '(1307)-这个安全标识不能指派为此对象的所有者。
4919         '(1308)-这个安全标识不能指派为对象的主要 组。
4920         '(1309)-当前并未模拟客户的线程试图操作模拟令牌。
4921         '(1310)-组可能未被禁用。
4922         '(1311)-当前没有可用的登录 服务器来服务登录请求。
4923         '(1312)-指定的登录会话不存在。可能已被终止。
4924         '(1313)-指定的特权不存在。
4925         '(1314)-客 户没有所需的特权。
4926         '(1315)-提供的名称并非正确的帐户名形式。
4927         '(1316)-指定的用户已存在。
4928         '(1317)-指定的用户 不存在。
4929         '(1318)-指定的组已存在。
4930         '(1319)-指定的组不存在。
4931         '(1320)-指定的用户帐户已是指定组的成员,或是因 为组包含成员所以无法删除指定的组。
4932         '(1321)-指定的用户帐户不是指定组帐户的成员。
4933         '(1322)-无法禁用或删除最后剩余的系统管 理帐户。
4934
4935         '(1323)-无法更新密码。提供作为当前密码的值不正确。
4936         '(1324)-无法更新密码。提供给新密码的值包含密码中不允许的值。
4937         '(1325)- 无法更新密码。为新密码提供的值不符合字符域的长度、复杂性或历史要求。
4938         '(1326)-登录失败: 未知的用户名或错误密码。
4939         '(1327)- 登录失败: 用户帐户限制。
4940         '(1328)-登录失败: 违反帐户登录时间限制。
4941         '(1329)-登录失败: 不允许用户登录到此计算机。
4942         '(1330)- 登录失败: 指定的帐户密码已过期。
4943         '(1331)-登录失败: 禁用当前的帐户。
4944         '(1332)-帐户名与安全标识间无任何映射完成。
4945         '(1333)- 一次请求过多的本地用户标识符(LUIDs)。
4946         '(1334)-无更多可用的本地用户标识符(LUIDs)。
4947         '(1335)-对于该特别用 法,安全 ID 的次级授权部分无效。
4948         '(1336)-访问控制列表(ACL)结构无效。
4949         '(1337)-安全 ID 结构无效。
4950         '(1338)- 安全描述符结构无效。
4951         '(1340)-无法创建固有的访问控制列表(ACL)或访问控制项目(ACE)。
4952         '(1341)-服务器当前已禁用。
4953         '(1342)- 服务器当前已启用。
4954         '(1343)-提供给识别代号颁发机构的值为无效值。
4955         '(1344)-无更多可用的内存以更新安全信息。
4956         '(1345)- 指定属性无效,或与整个群体的属性不兼容。
4957         '(1346)-指定的模拟级别无效, 或所提供的模拟级别无效。
4958         '(1347)-无法打开匿名级 安全令牌。
4959         '(1348)-请求的验证信息类别无效。
4960         '(1349)-令牌的类型对其尝试使用的方法不适当。
4961         '(1350)-无法在与 安全性无关联的对象上运行安全性操作。
4962         '(1351)-未能从域控制器读取配置信息,或者是因为机器不可使用,或者是访问被拒绝。
4963         '(1352)- 安全帐户管理器(SAM)或本地安全颁发机构(LSA)服务器处于运行安全操作的错误状态。
4964         '(1353)-域处于运行安全操作的错误状态。
4965         '(1354)- 此操作只对域的主要域控制器可行。
4966         '(1355)-指定的域不存在,或无法联系。
4967         '(1356)-指定的域已存在。
4968         '(1357)-试 图超出每服务器域个数的限制。
4969         '(1358)-无法完成请求操作,因为磁盘上的严重介质失败或数据结构损坏。
4970         '(1359)-出现了内部错 误。
4971         '(1360)-通用访问类型包含于已映射到非通用类型的访问掩码中。
4972         '(1361)-安全描述符格式不正确 (绝对或自相关的)。
4973         '(1362)- 请求操作只限制在登录进程中使用。调用进程未注册为一个登录进程。
4974         '(1363)-无法使用已在使用中的标识启动新的会话。
4975         '(1364)- 未知的指定验证数据包。
4976         '(1365)-登录会话并非处于与请求操作一致的状态中。
4977         '(1366)-登录会话标识已在使用中。
4978         '(1367)- 登录请求包含无效的登录类型值。
4979         '(1368)-在使用命名管道读取数据之前,无法经由该管道模拟。
4980         '(1369)-注册表子树的事务处理状 态与请求状态不一致。
4981         '(1370)-安全性数据库内部出现损坏。
4982         '(1371)-无法在内置帐户上运行此操作。
4983         '(1372)-无法 在内置特殊组上运行此操作。
4984         '(1373)-无法在内置特殊用户上运行此操作。
4985         '(1374)-无法从组中删除用户,因为当前组为用户的主要 组。
4986         '(1375)-令牌已作为主要令牌使用。
4987         '(1376)-指定的本地组不存在。
4988         '(1377)-指定的帐户名不是本地组的成员。
4989         '(1378)- 指定的帐户名已是本地组的成员。
4990         '(1379)-指定的本地组已存在。
4991
4992         '(1380)-登录失败: 未授予用户在此计算机上的请求登录类型。
4993         '(1381)-已超过在单一系统中可保存机密的最大个数。
4994         '(1382)- 机密的长度超过允许的最大长度。
4995         '(1383)-本地安全颁发机构数据库内部包含不一致性。
4996         '(1384)-在尝试登录的过程中,用户的安全 上下文积累了过多的安全标识。
4997         '(1385)-登录失败: 未授予用户在此计算机上的请求登录类型。
4998         '(1386)-更改用户密码时需要交叉 加密密码。
4999         '(1387)-由于成员不存在,无法将成员添加到本地组中,也无法从本地组将其删除。
5000         '(1388)-无法将新成员加入到本地组 中,因为成员的帐户类型错误。
5001         '(1389)-已指定过多的安全标识。
5002         '(1390)-更改此用户密码时需要交叉加密密码。
5003         '(1391)- 表明 ACL 未包含任何可承继的组件。
5004         '(1392)-文件或目录损坏且无法读取。
5005         '(1393)-磁盘结构损坏且无法读取。
5006         '(1394)- 无任何指定登录会话的用户会话项。
5007         '(1395)-正在访问的服务有连接数目标授权限制。这时候已经无法再连接,原因是已经到达可接受的连接数目上 限。
5008         '(1396)-登录失败: 该目标帐户名称不正确。
5009         '(1397)-相互身份验证失败。该服务器在域控制器的密码过期。
5010         '(1398)- 在客户机和服务器之间有一个时间差。
5011         '(1400)-无效的窗口句柄。
5012         '(1401)-无效的菜单句柄。
5013         '(1402)-无效的光标句 柄。
5014         '(1403)-无效的加速器表句柄。
5015         '(1404)-无效的挂钩句柄。
5016         '(1405)-无效的多重窗口位置结构句柄。
5017         '(1406)- 无法创建最上层子窗口。
5018         '(1407)-找不到窗口类别。
5019         '(1408)-无效窗口;它属于另一线程。
5020         '(1409)-热键已注册。
5021         '(1410)- 类别已存在。
5022         '(1411)-类别不存在。
5023         '(1412)-类别仍有打开的窗口。
5024         '(1413)-无效索引。
5025         '(1414)-无 效的图标句柄。
5026         '(1415)-使用专用 DIALOG 窗口字。
5027         '(1416)-找不到列表框标识。
5028         '(1417)-找不到通配字 符。
5029         '(1418)-线程没有打开的剪贴板。
5030         '(1419)-没有注册热键。
5031         '(1420)-窗口不是合法的对话窗口。
5032         '(1421)- 找不到控件 ID。
5033         '(1422)-因为没有编辑控制,所以组合框的消息无效。
5034         '(1423)-窗口不是组合框。
5035         '(1424)-高度 必须小于 256。
5036         '(1425)-无效的设备上下文(DC)句柄。
5037         '(1426)-无效的挂接程序类型。
5038         '(1427)-无效的挂接 程序。
5039         '(1428)-没有模块句柄无法设置非本机的挂接。
5040         '(1429)-此挂接程序只可整体设置。
5041         '(1430)-Journal Hook 程序已安装。
5042         '(1431)-挂接程序尚未安装。
5043         '(1432)-单一选择列表框的无效消息。
5044         '(1433)-LB_SETCOUNT 发送到非被动的列表框。
5045         '(1434)-此列表框不支持 Tab 键宽度。
5046         '(1435)-无法毁坏由另一个线程创建的对象。
5047         '(1436)- 子窗口没有菜单。
5048         '(1437)-窗口没有系统菜单。
5049         '(1438)-无效的消息对话框样式。
5050         '(1439)-无效的系统范围内的 (SPI_*) 参数。
5051         '(1440)-已锁定屏幕。
5052         '(1441)-多重窗口位置结构中窗口的所有句柄必须具有相同的上层。
5053         '(1442)- 窗口不是子窗口。
5054         '(1443)-无效的 GW_* 命令。
5055         '(1444)-无效的线程标识。
5056         '(1445)-无法处理非多重文档界面 (MDI) 窗口中的消息。
5057         '(1446)-弹出式菜单已经激活。
5058         '(1447)-窗口没有滚动条。
5059         '(1448)-滚动条范围不可 大于 MAXLONG。
5060
5061         '(1449)-无法以指定的方式显示或删除窗口。
5062         '(1450)-系统资源不足,无法完成请求的服务。
5063         '(1451)-系统资源不足, 无法完成请求的服务。
5064         '(1452)-系统资源不足,无法完成请求的服务。
5065         '(1453)-配额不足,无法完成请求的服务。
5066         '(1454)- 配额不足,无法完成请求的服务。
5067         '(1455)-页面文件太小,无法完成操作。
5068         '(1456)-找不到菜单项。
5069         '(1457)-键盘布 局句柄无效。
5070         '(1458)-不允许使用挂钩类型。
5071         '(1459)-该操作需要交互式窗口工作站。
5072         '(1460)-由于超时时间已过, 该操作返回。
5073         '(1461)-无效监视器句柄。
5074         '(1500)-事件日志文件损坏。
5075         '(1501)-无法打开事件日志文件,事件日志服 务没有启动。
5076         '(1502)-事件日志文件已满。
5077         '(1503)-事件日志文件已在读?涓摹?
5078         '(1601)-无法访问 Windows 安装服务。请与技术支持人员联系,确认 Windows 安装服务是否注册正确。
5079         '(1602)-用户取消了安装。
5080         '(1603)- 安装时发生严重错误
5081         '(1604)-安装已挂起,未完成。
5082         '(1605)-这个操作只对当前安装的产品有效。
5083         '(1606)-功能 ID 未注册。
5084         '(1607)-组件 ID 并未注册。
5085         '(1608)-未知属性。
5086         '(1609)-句柄处于不正确的状态。
5087         '(1610)- 这个产品的配置数据已损坏。请与技术支持人员联系。
5088         '(1611)-组件限制语不存在。
5089         '(1612)-这个产品的安装来源无法使用。请验证 来源是否存在,是否可以访问。
5090         '(1613)-Windows 安装服务无法安装这个安装程序包。您必须安装含有 Windows 安装服务新版本的 Windows Service Park。
5091         '(1614)-没有卸载产品。
5092         '(1615)-SQL 查询语法不正确或不被支持。
5093         '(1616)-记录字符域不存在。
5094         '(1617)-设备已被删除.
5095         '(1618)-正在进行另一个安装操 作。请在继续这个安装操作之前完成那个操作。
5096         '(1619)-未能打开这个安装程序包。请验证程序包是否存在,是否可以访问;或者与应用程序供应商 联系,验证这是否是有效的 Windows 安装服务程序包。
5097         '(1620)-未能打开这个安装程序包。请与应用程序供应商联系,验证这是否是有效 的 Windows 安装服务程序包。
5098         '(1621)-启动 Windows 安装服务用户界面时有错误。请与技术支持人员联系。
5099         '(1622)- 打开安装日志文件的错误。请验证指定的日志文件位置是否存在,是否可以写入。
5100         '(1623)-安装程序包的语言不受系统支持。
5101         '(1624)- 应用变换时的错误。请验证指定的变换路径是否有效。
5102         '(1625)-系统策略禁止这个安装。请与系统管理员联系。
5103         '(1626)-无法执行函 数。
5104         '(1627)-执行期间,函数出了问题。
5105         '(1628)-指定了无效的或未知的表格。
5106         '(1629)-提供的数据类型不对。
5107         '(1630)- 这个类型的数据不受支持。
5108         '(1631)-Windows 安装服务未能启动。请与技术支持人员联系。
5109         '(1632)-临时文件夹已满或无法 使用。请验证临时文件夹是否存在,是否可以写入。
5110         '(1633)-这个处理器类型不支持该安装程序包。请与产品供应商联系。
5111         '(1634)- 组件没有在这台计算机上使用。
5112         '(1635)-无法打开修补程序包。请验证修补程序包是否存在,是否可以访问;或者与应用程序供应商联系,验证这是 否是 Windows 安装服务的修补程序包。
5113         '(1636)-无法打开修补程序包。请与应用程序供应商联系,验证这是否是 Windows 安装服务的修补程序包。
5114         '(1637)-Windows 安装服务无法处理这个插入程序包。您必须安装含有 Windows 安装服务新版本的 Windows Service Pack。
5115         '(1638)-已安装这个产品的另一个版本。这个版本的安装无法继续。要配置或删除这个产品的现有版 本,请用“控制面板”上的“添加/删除程序”。
5116         '(1639)-无效的命令行参数。有关详细的命令行帮助,请查阅 Windows 安装服务的 SDK。
5117         '(1640)-在终端服务远程会话期间,只有管理员有添加、删除或配置服务器软件的权限。如果您要在服务器上安装或配置软件,请与网络管 理员联系。
5118         '(1641)-要求的操作已成功结束。要使改动生效,必须重新启动系统。
5119         '(1642)-Windows 安装服务无法安装升级修补程序,因为被升级的程序可能会丢失或是升级修补程序可能更新此程序的一个不同版本。请确认要被升级的程序在您的计算机上且您的升 级修补程序是正确的。
5120         '(1700)-串绑定无效。
5121         '(1701)-绑定句柄类型不正确。
5122         '(1702)-绑定句柄无效。
5123         '(1703)- 不支持 RPC 协议序列。
5124         '(1704)-RPC 协议序列无效。
5125         '(1705)-字符串通用唯一标识 (UUID) 无效。
5126         '(1706)- 终结点格式无效。
5127         '(1707)-网络地址无效。
5128         '(1708)-找不到终结点。
5129         '(1709)-超时值无效。
5130         '(1710)- 找不到对象通用唯一标识(UUID)。
5131         '(1711)-对象通用唯一标识 (UUID)已注册。
5132         '(1712)-类型通用唯一标识 (UUID)已注册。
5133         '(1713)-RPC 服务器已在侦听。
5134         '(1714)-未登记任何协议序列。
5135         '(1715)-RPC 服务器未在侦听。
5136         '(1716)-未知的管理器类型。
5137         '(1717)-未知的界面。
5138         '(1718)-没有任何链接。
5139         '(1719)- 无任何协议顺序。
5140         '(1720)-无法创建终结点。
5141         '(1721)-资源不足,无法完成此操作。
5142         '(1722)-RPC 服务器不可用。
5143         '(1723)-RPC 服务器过忙以致无法完成此操作。
5144         '(1724)-网络选项无效。
5145         '(1725)-在此线程中, 没有使用中的远程过程调用。
5146         '(1726)-远程过程调用失败。
5147         '(1727)-远程过程调用失败且未运行。
5148         '(1728)-远程过程 调用(RPC)协议出错。
5149         '(1730)-RPC 服务器不支持传送语法。
5150         '(1732)-不支持通用唯一标识(UUID)类型。
5151         '(1733)- 标记无效。
5152         '(1734)-数组边界无效。
5153         '(1735)-链接不包含项目名称。
5154         '(1736)-名称语法无效。
5155         '(1737)- 不支持名称语法。
5156         '(1739)-没有可用来创建通用唯一标识 (UUID)的网络地址。
5157         '(1740)-终结点是一份备份。
5158         '(1741)- 未知的验证类型。
5159         '(1742)-调用的最大个数太小。
5160         '(1743)-字符串太长。
5161         '(1744)-找不到 RPC 协议顺序。
5162         '(1745)- 过程号超出范围。
5163         '(1746)-绑定不包含任何验证信息。
5164         '(1747)-未知的验证服务。
5165         '(1748)-未知的验证级别。
5166         '(1749)- 安全上下文无效。
5167         '(1750)-未知的授权服务。
5168         '(1751)-项目无效。
5169         '(1752)-服务器终结点无法运行操作。
5170         '(1753)- 终结点映射表中无更多的可用终结点。
5171         '(1754)-未导出任何界面。
5172         '(1755)-项目名称不完整。
5173         '(1756)-版本选项无 效。
5174         '(1757)-没有其他成员。
5175         '(1758)-没有内容未导出。
5176         '(1759)-接口没有找到。
5177         '(1760)-项目已存 在。
5178         '(1761)-找不到项目。
5179         '(1762)-无可用的名称服务。
5180         '(1763)-网络地址族无效。
5181
5182         '(1764)-不支持请求的操作。
5183         '(1765)-无可用的安全上下文以允许模拟。
5184         '(1766)-远程过程调用(RPC)中发生内部 错误。
5185         '(1767)-RPC 服务器试图以零除整数。
5186         '(1768)-RPC 服务器中发生地址错误。
5187         '(1769)-RPC 服务器上的浮点操作导至以零做除数。
5188         '(1770)-RPC 服务器上发生浮点下溢。
5189         '(1771)-RPC 服务器上发生浮点上溢。
5190         '(1772)- 自动句柄绑定的可用 RPC 服务器列表已用完。
5191         '(1773)-无法打开字符翻译表文件。
5192         '(1774)-包含字符翻译表的文件少于512 字节。
5193         '(1775)-在远程过程调用时,将空的上下文句柄从客户传递到主机。
5194         '(1777)-在远程过程调用时,上下文句柄已更改。
5195         '(1778)- 传递到远程过程调用的绑定句柄不相符。
5196         '(1779)-承接体无法获得远程过程调用句柄。
5197         '(1780)-传递空引用指针到承接体。
5198         '(1781)- 列举值超出范围。
5199         '(1782)-字节计数太小。
5200         '(1783)-承接体接收到坏数据。
5201         '(1784)-提供给请求操作的用户缓冲区无 效。
5202         '(1785)-磁盘媒体无法识别。可能未被格式化。
5203         '(1786)-工作站没有信任机密。
5204         '(1787)-服务器上的安全数据库 没有此工作站信任关系的计算机帐户。
5205         '(1788)-主域和受信域间的信任关系失败。
5206         '(1789)-此工作站和主域间的信任关系失败。
5207         '(1790)- 网络登录失败。
5208         '(1791)-此线程的远程过程调用已在进行中。
5209         '(1792)-试图登录,但是网络登录服务没有启动。
5210         '(1793)- 用户帐户到期。
5211         '(1794)-转发程序已被占用且无法卸载。
5212         '(1795)-指定的打印机驱动程序已安装。
5213         '(1796)-指定的端 口未知。
5214         '(1797)-未知的打印机驱动程序。
5215         '(1798)-未知的打印机处理器。
5216         '(1799)-指定的分隔页文件无效。
5217         '(1800)- 指定的优先级无效。
5218         '(1801)-打印机名无效。
5219         '(1802)-打印机已存在。
5220         '(1803)-打印机命令无效。
5221         '(1804)- 指定的数据类型无效。
5222         '(1805)-指定的环境无效。
5223         '(1806)-没有更多的绑定。
5224         '(1807)-所用帐户为域间信任帐户。请 使用您的全局用户帐户或本地用户帐户来访问这台服务器。
5225         '(1808)-所用帐户是一个计算机帐户。使用您的全局用户帐户或本地用户帐户来访问此服 务器。
5226         '(1809)-已使用的帐户为服务器信任帐户。使用您的全局用户帐户或本地用户帐户来访问此服务器。
5227         '(1810)-指定域的名称或 安全标识(SID)与该域的信任信息不一致。
5228         '(1811)-服务器在使用中且无法卸载。
5229         '(1812)-指定的映像文件不包含资源区域。
5230         '(1813)- 找不到映像文件中指定的资源类型。
5231         '(1814)-找不到映像文件中指定的资源名。
5232         '(1815)-找不到映像文件中指定的资源语言标识。
5233         '(1816)- 配额不足,无法处理此命令。
5234         '(1817)-未登记任何界面。
5235         '(1818)-远程过程调用被取消。
5236         '(1819)-绑定句柄不包含所 有需要的信息。
5237         '(1820)-在远程过程调用过程中通讯失败。
5238         '(1821)-不支持请求的验证级别。
5239         '(1822)-未登记任何主 名称。
5240         '(1823)-指定的错误不是有效的 Windows RPC 错误码。
5241         '(1824)-已配置一个只在这部计算机上有效的 UUID。
5242         '(1825)-发生一个安全包特有的错误。
5243         '(1826)-线程未取消。
5244         '(1827)-无效的编码/解码句柄操作。
5245         '(1828)- 序列化包装的版本不兼容。
5246
5247         '(1829)-RPC 承接体的版本不兼容。
5248         '(1830)-RPC 管道对象无效或已损坏。
5249         '(1831)-试图在 RPC 管道物件上进行无效操作。
5250         '(1832)-不被支持的 RPC 管道版本。
5251         '(1898)-找不到该组成员。
5252         '(1899)-无法创建 终结点映射表数据库项。
5253         '(1900)-对象通用唯一标识 (UUID) 为 nil UUID。
5254         '(1901)-指定的时间无效。
5255         '(1902)- 指定的格式名称无效。
5256         '(1903)-指定的格式大小无效。
5257         '(1904)-指定的打印机句柄正等候在
5258         '(1905)-已删除指定的打 印机。
5259         '(1906)-打印机的状态无效。
5260         '(1907)-在第一次登录之前,必须更改用户密码。
5261         '(1908)-找不到此域的域控制 器。
5262         '(1909)-引用的帐户当前已锁定,且可能无法登录。
5263         '(1910)-没有发现指定的此对象导出者
5264         '(1911)-没有发现指 定的对象。
5265         '(1912)-没有发现指定的对象解析器。
5266         '(1913)-一些待发数据仍停留在请求缓冲区内。
5267         '(1914)-无效的异 步远程过程调用句柄。
5268         '(1915)-这个操作的异步 RPC 调用句柄不正确。
5269         '(1916)-RPC 管道对象已经关闭。
5270         '(1917)- 在 RPC 调用完成之前全部的管道都已处理完成。
5271         '(1918)-没有其他可用的数据来自 RPC 管道。
5272         '(1919)-这个机器没有可 用的站点名。
5273         '(1920)-系统无法访问此文件。
5274         '(1921)-系统无法辨识文件名。
5275         '(1922)-项目不是所要的类型。
5276         '(1923)- 无法将所有对象的 UUID 导出到指定的项。
5277         '(1924)-无法将界面导出到指定的项。
5278         '(1925)-无法添加指定的配置文件项。
5279         '(1926)- 无法添加指定的配置文件元素。
5280         '(1927)-无法删除指定的配置文件元素。
5281         '(1928)-无法添加组元素。
5282         '(1929)-无法删 除组元素。
5283         '(2000)-无效的像素格式。
5284         '(2001)-指定的驱动程序无效。
5285         '(2002)-窗口样式或类别属性对此操作无效。
5286         '(2003)- 不支持请求的图元操作。
5287         '(2004)-不支持请求的变换操作。
5288         '(2005)-不支持请求的剪切操作。
5289         '(2010)-指定的颜色管 理模块无效。
5290         '(2011)-制定的颜色文件配置无效。
5291         '(2012)-找不到指定的标识。
5292         '(2013)-找不到所需的标识。
5293         '(2014)- 指定的标识已经存在。
5294         '(2015)-指定的颜色文件配置与任何设备都不相关。
5295         '(2016)-找不到该指定的颜色文件配置
5296         '(2017)- 指定的颜色空间无效。
5297         '(2018)-图像颜色管理没有启动。
5298         '(2019)-在删除该颜色传输时有一个错误。
5299         '(2020)-该指定 的颜色传输无效。
5300         '(2021)-该指定的变换与位图的颜色空间不匹配。
5301         '(2022)-该指定的命名颜色索引在配置文件中不存在。
5302         '(2102)- 没有安装工作站驱动程序。
5303         '(2103)-无法定位服务器。
5304         '(2104)-发生内部错误,网络无法访问共享内存段。
5305         '(2105)- 网络资源不足。
5306         '(2106)-工作站不支持这项操作。
5307         '(2107)-设备没有连接。
5308         '(2108)-网络连接已成功,但需要提示用 户输入一个不同于原始指定的密码。
5309         '(2114)-没有启动服务器服务。
5310         '(2115)-队列空。
5311         '(2116)-设备或目录不存在。
5312         '(2117)- 无法在重定向的资源上执行这项操作。
5313         '(2118)-名称已经共享。
5314         '(2119)-服务器当前无法提供所需的资源。
5315         '(2121)- 额外要求的项目超过允许的上限。
5316         '(2122)-对等服务只支持两个同时操作的用户 。
5317         '(2123)-API 返回缓冲区太小。
5318
5319         '(2127)-远程 API 错误。
5320         '(2131)-打开或读取配置文件时出错。
5321         '(2136)-发生一般网络错误。
5322         '(2137)- 工作站服务的状态不一致。重新启动工作站服务之前,请先重新启动计算机。
5323         '(2138)-工作站服务没有启动。
5324         '(2139)-所需信息不可 用。
5325         '(2140)-发生 Windows 2000 内部错误。
5326         '(2141)-服务器没有设置事务处理。
5327         '(2142)-远程服务 器不支持请求的 API。
5328         '(2143)-事件名无效。
5329         '(2144)-网络上已经有此计算机名。请更名后重新启动。
5330         '(2146)- 配置信息中找不到指定的组件。
5331         '(2147)-配置信息中找不到指定的参数。
5332         '(2149)-配置文件中有一个命令行太长。
5333         '(2150)- 打印机不存在。
5334         '(2151)-打印作业不存在。
5335         '(2152)-打印机目标找不到。
5336         '(2153)-打印机目标已经存在。
5337         '(2154)- 打印机队列已经存在。
5338         '(2155)-无法添加其它的打印机。
5339         '(2156)-无法添加其它的打印作业。
5340         '(2157)-无法添加其它 的打印机目标。
5341         '(2158)-此打印机目标处于空闲中,不接受控制操作。
5342         '(2159)-此“打印机目标请求”包含无效的控制函数。
5343         '(2160)- 打印处理程序没有响应。
5344         '(2161)-后台处理程序没有运行。
5345         '(2162)-打印目标当前的状况,无法执行这项操作。
5346         '(2163)- 打印机队列当前的状况,无法执行这项操作。
5347         '(2164)-打印作业当前的状况,无法执行这项操作。
5348         '(2165)-无法为后台处理程序分配 内存。
5349         '(2166)-设备驱动程序不存在。
5350         '(2167)-打印处理程序不支持这种数据类型。
5351         '(2168)-没有安装打印处理程 序。
5352         '(2180)-锁定服务数据库。
5353         '(2181)-服务表已满。
5354         '(2182)-请求的服务已经启动。
5355         '(2183)-这项 服务没有响应控制操作。
5356         '(2184)-服务仍未启动。
5357         '(2185)-服务名无效。
5358         '(2186)-服务没有响应控制功能。
5359         '(2187)- 服务控制处于忙碌状态。
5360         '(2188)-配置文件包含无效的服务程序名。
5361         '(2189)-在当前的状况下无法控制服务。
5362         '(2190)- 服务异常终止。
5363         '(2191)-这项服务无法接受请求的 “暂停” 或 “停止” 操作。
5364         '(2192)-服务控制“计划程序”在“计划表” 中找不到服务名。
5365         '(2193)-无法读取服务控制计划程序管道。
5366         '(2194)-无法创建新服务的线程。
5367         '(2200)-此工作站已 经登录到局域网。
5368         '(2201)-工作站没有登录到局域网。
5369         '(2202)-指定的用户名无效。
5370         '(2203)-密码参数无效。
5371         '(2204)- 登录处理器没有添加消息别名。
5372         '(2205)-登录处理器没有添加消息别名。
5373         '(2206)-注销处理器没有删除消息别名。
5374         '(2207)- 注销处理器没有删除消息别名。
5375         '(2209)-暂停网络登录。
5376         '(2210)-中心登录服务器发生冲突。
5377         '(2211)-服务器没有设 置正确的用户路径。
5378         '(2212)-加载或运行登录脚本时出错。
5379         '(2214)-没有指定登录服务器,计算机的登录状态是单机操作。
5380         '(2215)- 登录服务器找不到。
5381         '(2216)-此计算机已经有一个登录域。
5382         '(2217)-登录服务器无法验证登录。
5383         '(2219)-安全数据库 找不到。
5384         '(2220)-组名找不到。
5385         '(2221)-用户名找不到。
5386         '(2222)-资源名找不到。
5387         '(2223)-组已经存 在。
5388         '(2224)-帐户已经存在。
5389         '(2225)-资源使用权限清单已经存在。
5390         '(2226)-此操作只能在该域的主域控制器上执 行。
5391
5392         '(2227)-安全数据库没有启动。
5393         '(2228)-用户帐户数据库中的名称太多。
5394         '(2229)-磁盘 I/O 失败。
5395         '(2230)- 已经超过每个资源 64 个项目的限制。
5396         '(2231)-不得删除带会话的用户。
5397         '(2232)-上层目录找不到。
5398         '(2233)-无 法添加到安全数据库会话高速缓存段。
5399         '(2234)-这项操作不能在此特殊的组上执行。
5400         '(2235)-用户帐户数据库会话高速缓存没有记录 此用户。
5401         '(2236)-用户已经属于此组。
5402         '(2237)-用户不属于此组。
5403         '(2238)-此用户帐户尚未定义。
5404         '(2239)- 此用户帐户已过期。
5405         '(2240)-此用户不得从此工作站登录网络。
5406         '(2241)-这时候不允许用户登录网络。
5407         '(2242)-此用 户的密码已经过期。
5408         '(2243)-此用户的密码无法更改。
5409         '(2244)-现在无法使用此密码。
5410         '(2245)-密码不满足密码策略 的需要。检查最小密码长度、密码复杂性和密码历史的需求。
5411         '(2246)-此用户的密码最近才启用,现在不能更改。
5412         '(2247)-安全数据 库已损坏。
5413         '(2248)-不需要更新此副本复制的网络/本地安全数据库。
5414         '(2249)-此副本复制的数据库已过时;请同步处理其中的数 据。
5415         '(2250)-此网络连接不存在。
5416         '(2251)-此 asg_type 无效。
5417         '(2252)-此设备当前正在共享中。
5418         '(2270)- 计算机名无法作为消息别名添加。网络上可能已经有此名称。
5419         '(2271)-信使服务已经启动。
5420         '(2272)-信使服务启动失败。
5421         '(2273)- 网络上找不到此消息别名。
5422         '(2274)-此消息别名已经转发出去。
5423         '(2275)-已经添加了此消息别名,但是仍被转发。
5424         '(2276)- 此消息别名已在本地存在。
5425         '(2277)-添加的消息别名已经超过数目上限。
5426         '(2278)-无法删除计算机名。
5427         '(2279)-消息 无法转发回到同一个工作站。
5428         '(2280)-域消息处理器出错。
5429         '(2281)-消息已经发送出去,但是收件者已经暂停信使服务。
5430         '(2282)- 消息已经发送出去,但尚未收到。
5431         '(2283)-消息别名当前正在使用中。请稍候片刻再试。
5432         '(2284)-信使服务尚未启动。
5433         '(2285)- 该名称不在本地计算机上。
5434         '(2286)-网络上找不到转发的消息别名。
5435         '(2287)-远程通讯站的消息别名表已经满了。
5436         '(2288)- 此别名的消息当前没有在转发中。
5437         '(2289)-广播的消息被截断。
5438         '(2294)-设备名无效。
5439         '(2295)-写入出错。
5440         '(2297)- 网络上的消息别名重复。
5441         '(2298)-此消息别名会在稍后删除。
5442         '(2299)-没有从所有的网络删除消息别名。
5443         '(2300)-这 项操作无法在使用多种网络的计算机上执行。
5444         '(2310)-此共享的资源不存在。
5445         '(2311)-设备没有共享。
5446         '(2312)-带此 计算机名的会话不存在。
5447         '(2314)-没有用此识别号打开的文件。
5448         '(2315)-执行远程管理命令失败。
5449         '(2316)-打开远程 临时文件失败。
5450         '(2317)-从远程管理命令返回的数据已经被截断成 64K。
5451         '(2318)-此设备无法同时共享为后台处理资源和非后台 处理资源。
5452         '(2319)-服务器清单中的信息可能不正确
5453         '(2320)-计算机在此域未处于活动状态
5454         '(2321)-在删除共享之 前,需要将该共享从分布式文件系统中删除。
5455         '(2331)-无法在此设备执行这项操作
5456         '(2332)-此设备无法共享。
5457         '(2333)- 此设备未打开。
5458         '(2334)-此设备名清单无效。
5459         '(2335)-队列优先级无效。
5460
5461         '(2337)-没有任何共享的通讯设备。
5462         '(2338)-指定的队列不存在。
5463         '(2340)-此设备清单无效。
5464         '(2341)- 请求的设备无效。
5465         '(2342)-后台处理程序正在使用此设备。
5466         '(2343)-此设备已经被当成通讯设备来使用。
5467         '(2351)-此 计算机名无效。
5468         '(2354)-指定的字符串及前缀太长。
5469         '(2356)-此路径组成部分无效。
5470         '(2357)-无法判断输入类型。
5471         '(2362)- 类型缓冲区不够大。
5472         '(2370)-配置文件不得超过 64K。
5473         '(2371)-初始偏移量越界。
5474         '(2372)-系统无法删除当前到 网络资源的连接。
5475         '(2373)-系统无法分析此文件中的命令行。
5476         '(2374)-加载配置文件时出错。\
5477         '(2375)-保存配置文 件时出错,只部份地保存了配置文件。
5478         '(2378)-此日志文件在前后两次读取之间已经发生变化。
5479         '(2380)-资源路径不可以是目录。
5480         '(2381)- 资源路径无效。
5481         '(2382)-目标路径无效。
5482         '(2383)-源路径及目标路径分属不同的服务器。
5483         '(2385)-请求的 Run 服务器现在暂停。
5484         '(2389)-与 Run 服务器通讯时出错。
5485         '(2391)-启动后台处理时出错。
5486         '(2392)-找不到您连接 的共享资源。
5487         '(2400)-LAN 适配器号码无效。
5488         '(2401)-此网络连接有文件打开或请求挂起。
5489         '(2402)-使用中的连 接仍存在。
5490         '(2403)-此共享名或密码无效。
5491         '(2404)-设备正由活动进程使用,无法断开。
5492         '(2405)-此驱动器号已在本 地使用。
5493         '(2430)-指定的客户已经在指定的事件注册。
5494         '(2431)-警报表已满。
5495         '(2432)-发出的警报名称无效或不存 在。
5496         '(2433)-警报接收者无效。
5497         '(2434)-用户的登录时间长短不再合法。所以已经删除用户与该服务器的会话。
5498         '(2440)- 日志文件中没有请求的记录号。
5499         '(2450)-用户帐户数据库没有正确配置。
5500         '(2451)-当 Netlogon 服务正在运行时,不允许执行这项操作。
5501         '(2452)-这项操作无法在最后的管理帐户上执行。
5502         '(2453)-找不到此域的域控制器。
5503         '(2454)- 无法设置此用户的登录信息。
5504         '(2455)-Netlogon 服务尚未启动。
5505         '(2456)-无法添加到用户帐户数据库。
5506         '(2457)- 此服务器的时钟与主域控制器的时钟不一致。
5507         '(2458)-检测到密码不匹配。
5508         '(2460)-服务器识别码没有指定有效的服务器。
5509         '(2461)- 会话标识没有指定有效的会话。
5510         '(2462)-连接识别码没有指定有效的连接。
5511         '(2463)-可用服务器表中无法再加上其它项。
5512         '(2464)- 服务器已经到了支持的会话数目上限。
5513         '(2465)-服务器已经到了支持的连接数目上限。
5514         '(2466)-服务器打开的文件到了上限,无法打 开更多文件。
5515         '(2467)-这台服务器没有登记替换的服务器。
5516         '(2470)-请用低级的 API (远程管理协议)。
5517         '(2480)-UPS 服务无法访问 UPS 驱动程序。
5518         '(2481)-UPS 服务设置错误。
5519         '(2482)-UPS 服务无法访问指定通讯端口 (Comm Port)。
5520         '(2483)-UPS 显示线路中断或电池不足,服务没有启动。
5521         '(2484)-UPS 服务无法执行系统关机的操作。
5522         '(2500)- 下面的程序返回一个 MS-DOS 错误码:
5523         '(2501)-下面的程序需要更多的内存:
5524         '(2502)-下面程序调用了不支持的 MS-DOS 函数:
5525         '(2503)-工作站无法启动。
5526         '(2504)-下面的文件已损坏。
5527         '(2505)-启动块定义文件中没有指定 引导程序。
5528
5529         '(2506)-NetBIOS 返回错误: NCB 及 SMB 数据转储。
5530         '(2507)-磁盘 I/O 错误。
5531         '(2508)-无 法替换映像参数。
5532         '(2509)-跨越磁盘扇区范围的映像参数太多。
5533         '(2510)-不是从用 /S 格式化的 MS-DOS软盘产生的映像。
5534         '(2511)-稍后会从远程重新启动。
5535         '(2512)-无法调用远程启动服务器。
5536         '(2513)-无法 连接到远程启动服务器。
5537         '(2514)-无法打开远程启动服务器上的映像文件。
5538         '(2515)-正在连接到远程启动服务器…
5539         '(2516)- 正在连接到远程启动服务器…
5540         '(2517)-远程启动服务已经停止,请检测错误记录文件,查明出错的原因。
5541         '(2518)-远程启动失败,请 检查错误日志文件,查明出错的原因。
5542         '(2519)-不允许第二个远程启动 (Remoteboot) 资源连接。
5543         '(2550)-浏览服务 设置成 MaintainServerList=No。
5544         '(2610)-因为没有网卡与这项服务一起启动,所以无法启动服务。
5545         '(2611)- 因为注册表中的启动信息不正确,所以无法启动服务。
5546         '(2612)-无法启动服务,原因是它的数据库找不到或损坏。
5547         '(2613)-因为找不 到 RPLFILES 共享的资源,所以无法启动服务。
5548         '(2614)-因为找不到 RPLUSER 组,所以无法启动服务。
5549         '(2615)- 无法枚举服务记录。
5550         '(2616)-工作站记录信息已损坏。
5551         '(2617)-工作站记录找不到。
5552         '(2618)-其它的工作站正在使用 此工作站名。
5553         '(2619)-配置文件记录已损坏。
5554         '(2620)-配置文件记录找不到。
5555         '(2621)-其它的配置文件正在使用此名 称。
5556         '(2622)-有很多工作站正在使用此配置文件。
5557         '(2623)-配置记录已损坏。
5558         '(2624)-配置记录找不到。
5559         '(2625)- 适配器识别记录已损坏。
5560         '(2626)-内部服务出错。
5561         '(2627)-供应商识别记录已损坏。
5562         '(2628)-启动块记录已损坏。
5563         '(2629)- 找不到此工作站的用户帐户记录。
5564         '(2630)-RPLUSER 本地组找不到。
5565         '(2631)-找不到启动块记录。
5566         '(2632)- 所选的配置文件与此工作站不兼容。
5567         '(2633)-其它的工作站正在使用所选的网卡。
5568         '(2634)-有些配置文件正在使用此配置。
5569         '(2635)- 有数个工作站、配置文件或配置正在使用此启动块。
5570         '(2636)-服务无法制作远程启动数据库的备份。
5571         '(2637)-找不到适配器记录。
5572         '(2638)- 找不到供应商记录。
5573         '(2639)-其它供应商记录正在使用此供应商名称。
5574         '(2640)-其它的启动区记录正在使用启动名称或供应商识别记 录。
5575         '(2641)-其它的配置正在使用此配置名称。
5576         '(2660)-由 Dfs 服务所维护的内部数据库已损坏
5577         '(2661)-内部 数据库中的一条记录已 损坏
5578         '(2662)-输入项路径与卷路径不匹配
5579         '(2663)-给定卷名已存在
5580         '(2664)-指定的服务器共 享已在 Dfs 中共享
5581         '(2665)-所显示的服务器共享不支持所显示的 Dfs 卷
5582         '(2666)-此操作在非叶卷上无效。
5583         '(2667)- 此操作在叶卷上无效。
5584         '(2668)-此操作不明确,因为该卷存在多服务器。
5585         '(2669)-无法创建连接点
5586         '(2670)-该服务器 不是 Dfs 可识别的
5587         '(2671)-指定的重命名目标路径无效。
5588         '(2672)-指定 Dfs 卷脱线
5589         '(2673)-指定的服务 器不为此卷服务
5590         '(2674)-检测到 Dfs 名中的环路
5591         '(2675)-在基于服务器的 Dfs 上不支持该操作
5592         '(2676)- 这个卷已经受该指定服务器共享支持
5593
5594         '(2677)-无法删除这个卷的上一个服务器共享支持
5595         '(2678)-Inter-Dfs 卷不支持该操作
5596         '(2679)-Dfs 服务的内部状态已经变得不一致
5597         '(2680)-Dfs 服务已经安装在指定的服务器上
5598         '(2681)-被协调的 Dfs 数据是一样的
5599         '(2682)- 无法删除 Dfs 根目录卷 – 如需要请卸载 Dfs
5600         '(2683)-该共享的子目录或父目录已经存在在一个 Dfs 中
5601         '(2690)-Dfs 内部错误
5602         '(2691)-这台机器已经加入域 。
5603         '(2692)-这个机器目前未加入域。
5604         '(2693)-这台机器是域控制器,而且 无法从域中退出。
5605         '(2694)-目标域控制器不支持在 OU 中创建的机器帐户。
5606         '(2695)-指定的工作组名无效
5607         '(2696)- 指定的计算机名与域控制器上使用的默认语言不兼容。
5608         '(2697)-找不到指定的计算机帐户。
5609         '(2999)-这是 NERR 范围内的最后一个错误。
5610         '(3000)-指定了未知的打?嗍悠鳌?
5611         '(3001)-指定的打印机驱动程序当前正在使用。
5612         '(3002)- 找不到缓冲文件。
5613         '(3003)-未发送 StartDocPrinter 调用。
5614         '(3004)-未发送 AddJob 调用。
5615         '(3005)- 指定的打印处理器已经安装。
5616         '(3006)-指定的打?嗍悠饕丫沧啊?
5617         '(3007)-该指定的打?嗍悠鞑痪弑杆蟮墓δ堋!?
5618         '(3008)- 该指定的打?嗍悠髡谑褂弥小?
5619         '(3009)-当打印机有作业排成队列时此操作请求是不允许的。
5620         '(3010)-请求的操作成功。直到重新 启动系统前更改将不会生效。
5621         '(3011)-请求的操作成功。直到重新启动服务前更改将不会生效。
5622         '(3012)-找不到打印机。
5623         '(3023)- 用户指定的关机命令文件,它的配置有问题。不过 UPS 服务已经启动。
5624         '(3029)-因为用户帐户数据库 (NET.ACC) 找不到或损坏,而且也没有可用的备份数据库,所以不能启动本地安全机制。系统不安全!
5625         '(3037)-@I *登录小时数
5626         '(3039)-已 经超过一个目录中文件的副本复制的限制。
5627         '(3040)-已经超过副本复制的目录树深度限制。
5628         '(3046)-无法登录。用户当前已经登录, 同时参数 TRYUSER设置为 NO。
5629         '(3052)-命令行或配置文件中没有提供必要的参数。
5630         '(3054)-无法满足资源的请求。
5631         '(3055)- 系统配置有问题。
5632         '(3056)-系统出错。
5633         '(3057)-发生内部一致性的错误。
5634         '(3058)-配置文件或命令行的选项不明确。
5635         '(3059)- 配置文件或命令行的参数重复。
5636         '(3060)-服务没有响应控制,DosKillProc 函数已经停止服务。
5637         '(3061)-运行服务程序 时出错。
5638         '(3062)-无法启动次级服务。
5639         '(3064)-文件有问题。
5640         '(3070)-内存
5641         '(3071)-磁盘空间
5642         '(3072)- 线程
5643         '(3073)-过程
5644         '(3074)-安全性失败。
5645         '(3075)-LAN Manager 根目录不正确或找不到。
5646         '(3076)- 未安装网络软件。
5647         '(3077)-服务器未启动。
5648         '(3078)-服务器无法访问用户帐户数据库 (NET.ACC)。
5649         '(3079)-LANMAN 树中安装的文件不兼容。
5650         '(3080)-LANMAN\LOGS 目录无效。
5651         '(3081)-指定的域无法使用。
5652         '(3082)-另 一计算机正将此计算机名当作消息别名使用。
5653         '(3083)-宣布服务器名失败。
5654         '(3084)-用户帐户数据库没有正确配置。
5655         '(3085)- 服务器没有运行用户级安全功能。
5656         '(3087)-工作站设置不正确。
5657         '(3088)-查看您的错误日志文件以了解详细信息。
5658
5659         '(3089)-无法写入此文件。
5660         '(3090)-ADDPAK 文件损坏。请删除 LANMAN\NETPROG\ADDPAK.SER后重新应用所有的 ADDPAK。
5661         '(3091)-因为没有运行 CACHE.EXE,所以无法启动 LM386 服务器。
5662         '(3092)-安全数据库中找不到这台计算机的帐户。
5663         '(3093)-这台计算机 不是 SERVERS 组的成员。
5664         '(3094)-SERVERS 组没有在本地安全数据库中。
5665         '(3095)-此 Windows NT 计算机被设置为某个组的成员,并不是域的成员。此种配置下不需要运行 Netlogon 服务。
5666         '(3096)-找不到此域的 Windows NT 域控制器。
5667         '(3098)-服务无法与主域控制器进行验证。
5668         '(3099)-安全数据库文件创建日期或序号有问题。
5669         '(3100)- 因为网络软件出错,所以无法执行操作。
5670         '(3102)-这项服务无法长期锁定网络控制块 (NCB) 的段。错误码就是相关数据。
5671         '(3103)- 这项服务无法解除网络控制块 (NCB) 段的长期锁定。错误码就是相关数据。
5672         '(3106)-收到意外的网络控制块 (NCB)。NCB 就是相关数据。
5673         '(3107)-网络没有启动。
5674         '(3108)-NETWKSTA.SYS 的 DosDevIoctl 或 DosFsCtl 调用失败。显示的数据为以下格式:DWORD 值代表调用 Ioctl 或 FsCtl 的 CS:IP WORD 错误代码WORD Ioctl 或 FsCtl 号
5675         '(3111)-发生意外的 NetBIOS 错误。错误码就是相关数据。
5676         '(3112)-收到的服务器消 息块 (SMB) 无效。SMB 就是相关数据。
5677         '(3114)-因为缓冲区溢出,所以错误日志文件中部份的项目丢失。
5678         '(3120)-控制 网络缓冲区以外资源用量的初始化参数被设置大小,因此需要的内存太多。
5679         '(3121)-服务器无法增加内存段的大小。
5680         '(3124)-服务器 启动失败。三个 chdev参数必须同时为零或者同时不为零。
5681         '(3129)-服务器无法更新 AT 计划文件。文件损坏。
5682         '(3130)- 服务器调用 NetMakeLMFileName 时出错。错误码就是相关数据。
5683         '(3132)-无法长期锁定服务器缓冲区。请检查交换磁盘的可用 空间,然后重新启动系统以启动服务器。
5684         '(3140)-因为多次连续出现网络控制块 (NCB) 错误,所以停止服务。最后一个坏的 NCB 以原始数据形式出现。
5685         '(3141)-因为消息服务器共享的数据段被锁住,所以消息服务器已经停止运行。
5686         '(3151)-因为 VIO 调用出错,所以无法弹出显示消息。错误码就是相关数据。
5687         '(3152)-收到的服务器消息块 (SMB) 无效。SMB 就是相关数据。
5688         '(3160)- 工作站信息段大于 64K。大小如下(以 DWORD 值的格式):
5689         '(3161)-工作站无法取得计算机的名称号码。
5690         '(3162)-工作 站无法初始化 Async NetBIOS 线程。错误码就是相关数据。
5691         '(3163)-工作站无法打开最前面的共享段。错误码就是相关数据。
5692         '(3164)- 工作站主机表已满。
5693         '(3165)-收到的邮筒服务器消息块 (SMB) 有问题,SMB 就是相关数据。
5694         '(3166)-工作站启动用户帐 户数据库时出错。错误码就是相关数据。
5695         '(3167)-工作站响应 SSI 重新验证请求时出错。函数码及错误码就是相关数据。
5696         '(3174)- 服务器无法读取 AT 计划文件。
5697         '(3175)-服务器发现错误的 AT 计划记录。
5698         '(3176)-服务器找不到 AT 计划文件,所以创建一个计划文件。
5699         '(3185)-因为用户帐户数据库 (NET.ACC) 找不到或损坏,而且也没有可用的备份数据库,所以不能启动本地安全机制。系统不安全!
5700
5701         '(3204)-服务器无法创建线程。CONFIG.SYS 中的 THREADS 参数必须加大。
5702         '(3213)-已经超过一个目录中文件的 副本复制的限制。
5703         '(3214)-已经超过副本复制的目录树深度限制。
5704         '(3215)-邮筒中收到的消息无法识别。
5705         '(3217)-无 法登录。用户当前已经登录,同时参数 TRYUSER设置为 NO。
5706         '(3230)-检测到服务器的电源中断。
5707         '(3231)-UPS 服务已经关掉服务器。
5708         '(3232)-UPS 服务没有完成执行用户指定的关机命令文件。
5709         '(3233)-无法打开 UPS 驱动程序。错误码就是相关数据。
5710         '(3234)-电源已经恢复。
5711         '(3235)-用户指定的关机命令文件有问题。
5712         '(3256)-该项 服务的动态链接库发生无法修复的错误。
5713         '(3257)-系统返回意外的错误码。错误码就是相关数据。
5714         '(3258)-容错错误日志文件 – LANROOT\LOGS\FT.LOG超过 64K。
5715         '(3259)-容错错误日志文件 – LANROOT\LOGS\FT.LOG,在被打开时就已设置更新进度位,这表示上次使用错误日志时,系统死机。
5716         '(3301)-Remote IPC
5717         '(3302)-Remote Admin
5718         '(3303)-Logon server share
5719         '(3304)-网络出错。
5720         '(3400)- 内存不足,无法启动工作站服务。
5721         '(3401)-读取 LAMAN.INI 文件的 NETWORKS 项目出错。
5722         '(3404)-LAMAN.INI 文件中的 NETWORKS 项目太多。
5723         '(3408)-程序无法用在此操作系统。
5724         '(3409)-已经安装转发程序。
5725         '(3411)- 安装 NETWKSTA.SYS 时出错。请按 ENTER 继续。
5726         '(3412)-求解程序链接问题。
5727         '(3419)-您已经打开文件或设 备,强制断开会造成数据丢失。
5728         '(3420)-内部用的默认共享
5729         '(3421)-信使服务
5730         '(3500)-命令成功完成。
5731         '(3501)- 使用的选项无效。
5732         '(3503)-命令包含无效的参数个数。
5733         '(3504)-命令运行完毕,但发生一个或多个错误。
5734         '(3505)-使 用的选项数值不正确。
5735         '(3510)-命令使用了冲突的选项。
5736         '(3512)-软件需要新版的操作系统。
5737         '(3513)-数据多于 Windows 2000 所能够返回的。
5738         '(3515)-此命令只能用在 Windows 2000 域控制器。
5739         '(3516)-这个指令 不能用于一个 Windows 2000 域控制器。
5740         '(3520)-已经启动以下 Windows 2000 服务:
5741         '(3525)-停止 工作站服务也会同时停止服务器服务 。
5742         '(3526)-工作站有打开的文件。
5743         '(3533)-服务正在启动或停止中,请稍候片刻后再试一次。
5744         '(3534)- 服务没有报告任何错误。
5745         '(3535)-正在控制设备时出错。
5746         '(3660)-这些工作站在这台服务器上有会话:
5747         '(3661)-这些 工作站有会话打开了此台服务器上的文件:
5748         '(3666)-消息别名已经转发出去。
5749         '(3670)-您有以下的远程连接:
5750         '(3671)- 继续运行会取消连接。
5751         '(3676)-会记录新的网络连接。
5752         '(3677)-不记录新的网络连接。
5753         '(3678)-保存配置文件时出 错,原先记录的网络连接状态没有更改。
5754         '(3679)-读取配置文件时出错。
5755         '(3682)-没有启动任何网络服务。
5756         '(3683)- 清单是空的。
5757         '(3689)-工作站服务已经在运行中,Windows 2000 会忽略工作站的命令选项。
5758         '(3694)-在打印作业正在 后台处理到队列时,无法删除共享的队列。
5759         '(3710)-打开帮助文件时出错。
5760         '(3711)-帮助文件是空的。
5761         '(3712)-帮助 文件已经损坏。
5762         '(3714)-这是专为那些安装旧版软件的系统提供的操作。
5763         '(3716)-设备类型未知。
5764         '(3717)-日志文件 已经损坏。
5765         '(3718)-程序文件名后必须以 .EXE 结束。
5766         '(3719)-找不到匹配的共享,因此没有删除。
5767         '(3720)- 用户记录中的 “单位/星期” 的值不正确。
5768         '(3725)-删除共享时出错。
5769         '(3726)-用户名无效。
5770         '(3727)-密码无 效。
5771         '(3728)-密码不匹配。
5772         '(3729)-永久连接没有完全还原。
5773         '(3730)-计算机名或域名错误。
5774         '(3732)- 无法设置该资源的默认权限。
5775         '(3734)-没有输入正确的密码。
5776         '(3735)-没有输入正确的名称。
5777         '(3736)-该资源无法共 享。
5778         '(3737)-权限字符串包含无效的权限。
5779         '(3738)-您只能在打印机或通讯设备上执行这项操作。
5780         '(3743)-服务器没 有设置远程管理的功能。
5781         '(3752)-这台服务器上没有用户的会话。
5782         '(3756)-响应无效。
5783         '(3757)-没有提供有效的响 应。
5784         '(3758)-提供的目标清单与打印机队列目标清单不匹配。
5785         '(3761)-指定的时间范围中结束的时间比开始的时间早。
5786         '(3764)- 提供的时间不是整点。
5787         '(3765)-12 与 24 小时格式不能混用。
5788         '(3767)-提供的日期格式无效。
5789         '(3768)-提供 的日期范围无效。
5790         '(3769)-提供的时间范围无效。
5791         '(3770)-NET USER 的参数无效。请检查最短的密码长度和/或提供参数。
5792         '(3771)-ENABLESCRIPT 的值必须是 YES。
5793         '(3773)-提供的 国家(地区)代码无效。
5794         '(3774)-用户已经创建成功,但是无法添加到USERS 本地组中。
5795         '(3775)-提供的用户上下文无效。
5796         '(3777)- 文件发送功能已不再支持。
5797         '(3778)-您可能没有指定 ADMIN$ 及 IPC$ 共享的路径。
5798         '(3784)-只有磁盘共享可以标记 为可以缓存。
5799         '(3802)-此计划日期无效。
5800         '(3803)-LANMAN 根目录无法使用。
5801         '(3804)-SCHED.LOG 文件无法打开。
5802         '(3805)-服务器服务尚未启动。
5803         '(3806)-AT 作业标识不存在。
5804         '(3807)-AT 计划文件已损坏。
5805         '(3808)- 因为 AT 计划文件发生问题,所以无法运行删除操作。
5806         '(3809)-命令行不得超过 259 个字符。
5807         '(3810)-因为磁盘已满,所 以 AT 计划文件无法更新。
5808         '(3812)-AT 计划文件无效。请删除此文件并创建新的文件。
5809         '(3813)-AT 计划文件已经删除。
5810         '(3814)- 此命令的语法是:AT [id] [/DELETE]AT 时间 [/EVERY:日期 | /NEXT:日期] 命令AT 命令会在以后的指定日期及时间,安排程序在服务器上运行。它也会显示安排运行的程序及命令的清单。您可以将日期指定为M、T、W、Th、F、Sa、Su 或 1-31 的格式。您可以将时间指定为HH:MM的二十四小时格式。
5811         '(3815)-AT 命令已经超时。请稍后再试一次。
5812         '(3816)- 用户帐户的密码使用最短期限不得大于密码最长使用期限。
5813         '(3817)-指定的数值与安装下层软件的服务器不兼容。请指定较小的值。
5814         '(3901)-****
5815         '(3902)-**** 意外到达消息的结尾 ****
5816         '(3905)-请按 ESC 退出
5817         '(3906)-…
5818         '(3912)-找不到时间服务器。
5819         '(3915)- 无法判断用户的主目录。
5820         '(3916)-没有指定用户的主目录。
5821         '(3920)-已经没有可用的驱动器号。
5822         '(3936)-这台计算机 目前没有配置成使用一个指定的 SNTP 服务器。
5823         '(3953)-语法错误。
5824         '(3960)-指定的文件号码无效。
5825         '(3961)- 指定的打印作业号码无效。
5826         '(3963)-指定的用户或组帐户找不到。
5827         '(3965)-已添加用户,但 NetWare 的文件和打印服务无法启用。
5828         '(3966)-没有安装 NetWare 的文件和打印服务。
5829         '(3967)-无法为 NetWare 的文件和打印服务设置用户属性。
5830         '(3969)-NetWare 兼容登录
5831         '(4000)-WINS 在处理命令时遇到错误。
5832         '(4001)- 本地的 WINS 不能删除。
5833         '(4002)-文件导入操作失败。
5834         '(4003)-备份操作失败。是否先前已作过完整备份?
5835         '(4004)- 备份操作失败。请检查您备份数据库的目录。
5836         '(4005)-WINS 数据库中没有这个名称。
5837         '(4006)-不允许复制一个尚未配置的伙 伴。
5838         '(4100)-DHCP 客户获得一个在网上已被使用的 IP 地址。 直到 DHCP 客户可以获得新的地址前,本地接口将被禁用。
5839         '(4200)- 无法识别传来的 GUID 是否为有效的 WMI 数据提供程序。
5840         '(4201)-无法识别传来的实例名是否为有效的 WMI 数据提供程序。
5841         '(4202)- 无法识别传来的数据项目标识符是否为有效的 WMI 数据提供程序。
5842         '(4203)-无法完成 WMI 请求,应该重试一次。
5843         '(4204)- 找不到 WMI 数据提供程序。
5844         '(4205)-WMI 数据提供程序引用到一个未注册的实例组。
5845         '(4206)-WMI 数据块或事件通知已启用。
5846         '(4207)-WMI 数据块不再可用。
5847         '(4208)-WMI 数据服务无法使用。
5848         '(4209)-WMI 数据提供程序无法完成要求。
5849         '(4210)-WMI MOF 信息无效。
5850         '(4211)-WMI 注册信息无效。
5851         '(4212)-WMI 数据块或事件通知已禁用。
5852         '(4213)-WMI 数据项目或数据块为只读。
5853         '(4214)-WMI 数据项目或数据块不能更改。
5854         '(4300)- 媒体标识符没有表示一个有效的媒体。
5855         '(4301)-库标识符没有表示一个有效的库。
5856         '(4302)-媒体缓冲池标识符没有表示一个有效的媒 体缓冲池。
5857         '(4303)-驱动器和媒体不兼容或位于不同的库中。
5858         '(4304)-媒体目前在脱机库中,您必须联机才能运行这个操作。
5859         '(4305)- 操作无法在脱机库中运行。
5860         '(4306)-库、驱动器或媒体缓冲池是空的。
5861         '(4307)-库、磁盘或媒体缓冲池必须是空的,才能运行这个操 作。
5862         '(4308)-在这个媒体缓冲池或库中目前没有可用的媒体。
5863         '(4309)-这个操作所需的资源已禁用。
5864         '(4310)-媒体标 识符没有表示一个有效的清洗器。
5865         '(4311)-无法清洗驱动器或不支持清洗。
5866         '(4312)-对象标识符没有表示一个有效的对象。
5867         '(4313)- 无法读取或写入数据库。
5868         '(4314)-数据库已满。
5869         '(4315)-媒体与设备或媒体缓冲池不兼容。
5870         '(4316)-这个操作所需的 资源不存在。
5871         '(4317)-操作标识符不正确。
5872         '(4318)-媒体未被安装,或未就绪。
5873         '(4319)-设备未就绪。
5874         '(4320)- 操作员或系统管理员拒绝了请求。
5875         '(4321)-驱动器标识符不代表一个有效的驱动器。
5876         '(4322)-程序库已满。没有可使用的插槽。
5877         '(4323)- 传输程序不能访问媒体。
5878         '(4324)-无法将媒体加载到驱动器中。
5879         '(4325)-无法检索有关驱动器的状态。
5880         '(4326)-无法 检索有关插槽的状态。
5881         '(4327)-无法检索传输的状态。
5882         '(4328)-因为传输已在使用中,所以无法使用。
5883         '(4329)-无法 打开或关闭弹入/弹出端口。
5884         '(4330)-因为媒体在驱动器中,无法将其弹出。
5885         '(4331)-清洗器插槽已被保留。
5886         '(4332)- 没有保留清洗器插槽。
5887         '(4333)-清洗器墨盒已进行了最大次数的驱动器清洗。
5888         '(4334)-意外媒体标识号。
5889         '(4335)-在 这个组或源中最后剩下的项目不能被删除。
5890         '(4336)-提供的消息超过了这个参数所允许的最大尺寸。
5891         '(4337)-该卷含有系统和页面文 件。
5892         '(4338)-由于库中至少有一个驱动器可以支持该媒体类型,不能从库中删除媒体类型。
5893         '(4339)-由于没有可以使用的已被启动的 驱动器,无法将该脱机媒体装入这个系统。
5894         '(4340)-(Y/N) [Y]
5895         '(4341)-(Y/N) [N]
5896         '(4342)-错误
5897         '(4343)-OK
5898         '(4344)-Y
5899         '(4345)-N
5900         '(4346)- 任何
5901         '(4347)-A
5902         '(4348)-P
5903         '(4349)-(找不到)
5904         '(4350)-远程存储服务无法撤回文件。
5905         '(4351)- 远程存储服务此时不可操作。
5906         '(4352)-远程存储服务遇到一个媒体错误。
5907         '(4354)-请键入密码:
5908         '(4358)-请键入用户 的密码:
5909         '(4359)-请键入共享资源的密码:
5910         '(4360)-请键入您的密码:
5911         '(4361)-请再键入一次密码以便确认:
5912         '(4362)- 请键入用户的旧密码:
5913         '(4363)-请键入用户的新密码:
5914         '(4364)-请键入您的新密码:
5915         '(4365)-请键入复制器服务密 码:
5916         '(4368)-请键入您的用户名:
5917         '(4372)-打印作业详细信息
5918         '(4378)-控制下列正在运行的服务:
5919         '(4379)- 统计数据可用于正在运行的下列服务:
5920         '(4381)-此命令的语法是:
5921         '(4382)-此命令的选项是:
5922         '(4383)-请键入主域控 制器的名称:
5923         '(4385)-Sunday
5924         '(4386)-Monday
5925         '(4387)-Tuesday
5926         '(4388)-Wednesday
5927         '(4389)-Thursday
5928         '(4390)- 此文件或目录不是一个重解析点。
5929         '(4391)-重解析点的属性不能被设置,因为它与已有的属性冲突。
5930         '(4392)-在重解析点缓冲区中的 数据无效。
5931         '(4393)-在重解析点缓冲区中的标签无效。
5932         '(4394)-请求中指定的标签
5933         '(4395)-W
5934         '(4396)-Th
5935         '(4397)-F
5936         '(4398)-S
5937         '(4399)-Sa
5938         '(4401)- 组名
5939         '(4402)-注释
5940         '(4403)-成员
5941         '(4406)-别名
5942         '(4407)-注释
5943         '(4408)-成员
5944         '(4411)- 用户名
5945         '(4412)-全名
5946         '(4413)-注释
5947         '(4414)-用户的注释
5948         '(4415)-参数
5949         '(4416)-国家 (地区)代码
5950         '(4417)-权限等级
5951         '(4418)-操作员权限
5952         '(4419)-帐户启用
5953         '(4420)-帐户到期
5954         '(4421)- 上次设置密码
5955         '(4422)-密码到期
5956         '(4423)-密码可更改
5957         '(4424)-允许的工作站
5958         '(4425)-磁盘空间上限
5959         '(4426)- 无限制
5960         '(4427)-本地组会员
5961         '(4428)-域控制器
5962         '(4429)-登录脚本
5963         '(4430)-上次登录
5964         '(4431)- 全局组成员
5965         '(4432)-可允许的登录小时数
5966         '(4433)-全部
5967         '(4434)-无
5968         '(4436)-主目录
5969         '(4437)- 需要密码
5970         '(4438)-用户可以更改密码
5971         '(4439)-用户配置文件
5972         '(4440)-已锁定
5973         '(4450)-计算机名
5974         '(4451)- 用户名
5975         '(4452)-软件版本
5976         '(4453)-工作站活动在
5977         '(4454)-Windows NT 根目录
5978         '(4455)-工 作站域
5979         '(4456)-登录域
5980         '(4457)-其它域
5981         '(4458)-COM 打开超时 (秒)
5982         '(4459)-COM 发送计数 (字节)
5983         '(4460)-COM 发送超时 (毫秒)
5984         '(4461)-DOS 会话打印超时 (秒)
5985         '(4462)-错误日 志文件大小上限 (K)
5986         '(4463)-高速缓存上限 (K)
5987         '(4464)-网络缓冲区数
5988         '(4465)-字符缓冲区数
5989         '(4466)- 域缓冲区大小
5990         '(4467)-字符缓冲区大小
5991         '(4468)-计算机全名
5992         '(4469)-工作站域 DNS 名称
5993         '(4470)-Windows 2000
5994         '(4481)-服务器名称
5995         '(4482)-服务器注释
5996         '(4483)-发送管理警报到
5997         '(4484)-软件版本
5998         '(4485)- 对等服务器
5999         '(4486)-Windows NT
6000         '(4487)-服务器等级
6001         '(4488)-Windows NT Server
6002         '(4489)- 服务器正运行于
6003         '(4492)-服务器已隐藏
6004         '(4500)-零备份存储在这个卷上不可用。
6005         '(4506)-登录的用户数量上限
6006         '(4507)- 同时可并存的管理员数量上限
6007         '(4508)-资源共享数量上限
6008         '(4509)-资源连接数量上限
6009         '(4510)-服务器打开的文件数量 上限
6010         '(4511)-每个会话打开的文件数量上限
6011         '(4512)-文件锁定数量上限
6012         '(4520)-空闲的会话时间 (分)
6013         '(4526)- 共享等级
6014         '(4527)-用户等级
6015         '(4530)-未限制的服务器
6016         '(4570)-强制用户在时间到期之后多久必须注销?:
6017         '(4571)- 多少次密码不正确后锁住帐户?:
6018         '(4572)-密码最短使用期限 (天):
6019         '(4573)-密码最长使用期限 (天):
6020         '(4574)- 密码长度下限:
6021         '(4575)-保持的密码历史记录长度:
6022         '(4576)-计算机角色:
6023         '(4577)-工作站域的主域控制器:
6024         '(4578)- 锁定阈值:
6025         '(4579)-锁定持续时间(分):
6026         '(4580)-锁定观测窗口(分):
6027         '(4600)-统计开始于
6028         '(4601)- 接受的会话
6029         '(4602)-会话超时
6030         '(4603)-会话出错
6031         '(4604)-发送的 KB
6032         '(4605)-接收的 KB
6033         '(4606)- 平均响应时间 (毫秒)
6034         '(4607)-网络错误
6035         '(4608)-访问的文件
6036         '(4609)-后台处理的打印作业
6037         '(4610)- 系统出错
6038         '(4611)-密码违规
6039         '(4612)-权限违规
6040         '(4613)-访问的通讯设备
6041         '(4614)-会话已启动
6042         '(4615)- 重新连接的会话
6043         '(4616)-会话启动失败
6044         '(4617)-断开的会话
6045         '(4618)-网络 I/O 执行
6046         '(4619)-文 件及管道被访问
6047         '(4620)-时间缓冲区耗尽
6048         '(4621)-大缓冲区
6049         '(4622)-请求缓冲区
6050         '(4626)-已做连接
6051         '(4627)- 连接失败
6052         '(4630)-接收的字节数
6053         '(4631)-接收的服务器消息块 (SMB)
6054         '(4632)-传输的字节数
6055         '(4633)- 传输的服务器消息块 (SMB)
6056         '(4634)-读取操作
6057         '(4635)-写入操作
6058         '(4636)-拒绝原始读取
6059         '(4637)- 拒绝原始写入
6060         '(4638)-网络错误
6061         '(4639)-已做连接
6062         '(4640)-重新连接
6063         '(4641)-服务器断开
6064         '(4642)- 会话已启动
6065         '(4643)-会话挂起
6066         '(4644)-失败的会话
6067         '(4645)-操作失败
6068         '(4646)-使用计数
6069         '(4647)- 使用计数失败
6070         '(4655)-消息名称转发已经取消。
6071         '(4661)-密码已经更改成功。
6072         '(4664)-消息已经发给网络上所有的用 户。
6073         '(4666)-消息已经送到此服务器上的所有用户。
6074         '(4696)-Windows NT Server
6075         '(4697)-Windows NT Workstation
6076         '(4698)-MS-DOS 增强型工作站
6077         '(4700)-服务器名称 注释
6078         '(4701)-资源共 享名 类型 用途 注释
6079         '(4702)-(UNC)
6080         '(4703)-…
6081         '(4704)-Domain
6082         '(4706)-其它可用的 网络:
6083         '(4710)-Disk
6084         '(4711)-Print
6085         '(4712)-Comm
6086         '(4713)-IPC
6087         '(4714)- 状态 本地 远程 网络
6088         '(4715)-OK
6089         '(4716)-休止
6090         '(4717)-已暂停
6091         '(4718)-断开
6092         '(4719)- 错误
6093         '(4720)-正在连接
6094         '(4721)-正在重新连接
6095         '(4722)-状态
6096         '(4723)-本地名称
6097         '(4724)- 远程名称
6098         '(4725)-资源类型
6099         '(4726)-# 打开
6100         '(4727)-# 连接
6101         '(4728)-不可用
6102         '(4730)- 共享名 资源 注释
6103         '(4731)-共享名
6104         '(4732)-资源
6105         '(4733)-后台处理
6106         '(4734)-权限
6107         '(4735)- 最多用户
6108         '(4736)-无限制
6109         '(4737)-用户
6110         '(4740)-识别码 路径 用户名 # 锁定
6111         '(4741)-文件识别 码
6112         '(4742)-锁定
6113         '(4743)-权限
6114         '(4750)-计算机 用户名 客户类型 打开空闲时间
6115         '(4751)-计算机
6116         '(4752)- 会话时间
6117         '(4753)-空闲时间
6118         '(4754)-资源共享名 类型 # 打开
6119         '(4755)-客户类型
6120         '(4756)-来宾登 录
6121         '(4770)-脱机缓存被启用:手动恢复
6122         '(4771)-脱机缓存被启用:自动恢复
6123         '(4772)-脱机缓存被启用:用户之间没有 共享
6124         '(4773)-脱机缓存被停用
6125         '(4774)-自动
6126         '(4775)-手动
6127         '(4800)-名称
6128         '(4801)-转发 到
6129         '(4802)-已经从下列位置转发给您
6130         '(4803)-这台服务器的用户
6131         '(4804)-用户已经按 Ctrl+Break 中断网络发送。
6132         '(4810)-名称 作业编号 大小 状态
6133         '(4811)-作业
6134         '(4812)-打印
6135         '(4813)-名称
6136         '(4814)- 作业 #
6137         '(4815)-大小
6138         '(4816)-状态
6139         '(4817)-分隔文件
6140         '(4818)-注释
6141         '(4819)-优先级
6142         '(4820)- 打印后于
6143         '(4821)-打印直到
6144         '(4822)-打印处理程序
6145         '(4823)-附加信息
6146         '(4824)-参数
6147         '(4825)- 打印设备
6148         '(4826)-打印机活动中
6149         '(4827)-打印机搁置
6150         '(4828)-打印机出错
6151         '(4829)-正在删除打印机
6152         '(4830)- 打印机状态未知
6153         '(4841)-作业 #
6154         '(4842)-正在提交用户
6155         '(4843)-通知
6156         '(4844)-作业数据类型
6157         '(4845)- 作业参数
6158         '(4846)-正在等候
6159         '(4847)-搁置于队列
6160         '(4848)-正在后台处理
6161         '(4849)-已暂停
6162         '(4850)- 脱机
6163         '(4851)-错误
6164         '(4852)-缺纸
6165         '(4853)-需要干预
6166         '(4854)-正在打印
6167         '(4855)-on
6168         '(4862)- 驱动程序
6169         '(4930)-用户名 类型 日期
6170         '(4931)-锁定
6171         '(4932)-服务
6172         '(4933)-服务器
6173         '(4934)- 服务器已启动
6174         '(4935)-服务器已暂停
6175         '(4936)-服务器已继续操作
6176         '(4937)-服务器已停止
6177         '(4938)-会话
6178         '(4939)- 登录来宾
6179         '(4940)-登录用户
6180         '(4941)-登录管理员
6181         '(4942)-正常注销
6182         '(4943)-登录
6183         '(4944)- 注销错误
6184         '(4945)-注销自动断开
6185         '(4946)-注销管理员断开
6186         '(4947)-注销受登录限制
6187         '(4948)-服务
6188         '(4957)- 帐户
6189         '(4964)-已修改帐户系统设置
6190         '(4965)-登录限制
6191         '(4966)-超过限制: 未知
6192         '(4967)-超过限制: 登录时间
6193         '(4968)-超过限制: 帐户过期
6194         '(4969)-超过限制: 工作站识别码无效
6195         '(4970)-超过限制: 帐户停用
6196         '(4971)- 超过限制: 帐户已删除
6197         '(4972)-资源
6198         '(4978)-密码不正确
6199         '(4979)-需要管理员特权
6200         '(4980)-访问
6201         '(4984)- 拒绝访问
6202         '(4985)-未知
6203         '(4986)-其它
6204         '(4987)-持续时间:
6205         '(4988)-持续时间: 无效
6206         '(4989)- 持续时间: 1 秒以下
6207         '(4990)-(无)
6208         '(4994)-访问结束
6209         '(4995)-登录到网络
6210         '(4996)-拒绝登录
6211         '(4997)- 程序 消息 时间
6212         '(4999)-管理员已解除帐户的锁定状态
6213         '(5000)-注销网络
6214         '(5001)-因为其它资源需要它,不能将群 集资源移到另一个组。
6215         '(5002)-找不到此群集资源的依存。
6216         '(5003)-因为已经处于依存状态,此群集资源不能依存于指定的资源。
6217         '(5004)- 此群集资源未联机。
6218         '(5005)-此操作没有可用的群集节点。
6219         '(5006)-没有群集资源。
6220         '(5007)-找不到群集资源。
6221         '(5008)- 正在关闭群集。
6222         '(5009)-因为联机,群集节点无法从群集中脱离。
6223         '(5010)-对象已存在。
6224         '(5011)-此对象已在列表 中。
6225         '(5012)-新请求没有可用的群集组。
6226         '(5013)-找不到群集组。
6227         '(5014)-因为群集组未联机,此操作不能完成。
6228         '(5015)- 群集节点不是此资源的所有者。
6229         '(5016)-群集节点不是此资源的所有者。
6230         '(5017)-群集资源不能在指定的资源监视器中创建。
6231         '(5018)- 群集资源不能通过资源监视器来联机。
6232         '(5019)-因为群集资源联机,此操作不能完成。
6233         '(5020)-由于是仲裁资源,群集资源不能被删 除或脱机。
6234         '(5021)-由于没有能力成为仲裁资源,此群集不能使指定资源成为仲裁资源。
6235         '(5022)-群集软件正关闭。
6236         '(5023)- 组或资源的状态不是执行请求操作的正确状态。
6237         '(5024)-属性已被存储,但在下次资源联机前,不是所有的修改将生效。
6238         '(5025)-由 于不属于共享存储类别,群集不能使指定资源成为仲裁资源。
6239         '(5026)-由于是内核资源,无法删除群集资源。
6240         '(5027)-仲裁资源联机 失败。
6241         '(5028)-无法成功创建或装入仲裁日志。
6242         '(5029)-群集日志损坏。
6243         '(5030)-由于该日志已超出最大限量,无法 将记录写入群集日志。
6244         '(5031)-群集日志已超出最大限量。
6245         '(5032)-群集日志没有发现检查点记录。
6246         '(5033)-不满足 日志所需的最小磁盘空间。
6247         '(5034)-群集节点未能控制仲裁资源,因为它被另一个活动节点拥有。
6248         '(5035)-这个操作的群集网络无 效。
6249         '(5036)-此操作没有可用的群集节点。
6250         '(5037)-所有群集节点都必须运行才能执行这个操作。
6251         '(5038)-群集资源 失败。
6252         '(5039)-该群集节点无效。
6253         '(5040)-该群集节点已经存在。
6254         '(5041)-一个节点正在加入该群集。
6255         '(5042)- 找不到群集节点。
6256         '(5043)-找不到群集本地节点信息。
6257         '(5044)-群集网络已经存在。
6258         '(5045)-找不到群集网络。
6259         '(5046)- 群集网络界面已经存在。
6260         '(5047)-找不到群集网络界面。
6261         '(5048)-群集请求在这个对象中无效。
6262         '(5049)-群集网络提 供程序无效。
6263         '(5050)-群集节点坏了。
6264         '(5051)-无法连接到群集节点。
6265         '(5052)-该群集节点不是群集的一个成员。
6266         '(5053)- 群集加入操作正在进行中。
6267         '(5054)-该群集网络无效。
6268         '(5055)-Mar
6269         '(5056)-该群集节点可以使用。
6270         '(5057)- 该群集 IP 地址已在使用中。
6271         '(5058)-该群集节点没有中止。
6272         '(5059)-没有有效的群集安全上下文。
6273         '(5060)-该 群集网络不是为内部群集通讯配置的。
6274         '(5061)-群集节点已经开始。
6275         '(5062)-群集节点已经坏了。
6276         '(5063)-群集网络 已经联机。
6277         '(5064)-群集网络已经脱机。
6278         '(5065)-群集节点已经是该群集的成员。
6279         '(5066)-该群集网络是唯一个为两 个或更多活动群集节点进行内部群集通讯的配置。不能从网络上删除内部通讯能力。
6280         '(5067)-一个或更多的群集资源依靠网络来向客户提供服务。不 能从网络上删除客户访问能力。
6281         '(5068)-该操作不能在群集资源上作为仲裁资源执行。您不能将仲裁资源脱机或修改它的所有者名单。
6282         '(5069)- 该群集仲裁资源不允许有任何依存关系。
6283         '(5070)-该群集节点暂停。
6284         '(5071)-群集资源不能联机。所有者节点不能在这个资源上运 行。
6285         '(5072)-群集节点没有准备好,不能执行所请求的操作。
6286         '(5073)-群集节点正在关闭。
6287         '(5074)-放弃群集节点加 入操作。
6288         '(5075)-由于加入节点和支持者之间的软件版本不兼容,该群集加入操作失败。
6289         '(5076)-由于该群集已经到达其所能监督的 资源限制,不能创建这个资源。
6290         '(5077)-系统配置在群集加入或形成操作时已更改。放弃加入或形成操作。
6291         '(5078)-找不到指定的资 源种类。
6292         '(5079)-指定的节点不支持这种资源,这也许是由于版本不一致或是由于在这个节点上没有资源 DLL。
6293         '(5080)-该资源 DLL 不支持指定的资源名称。这可能是由于一个提供给源 DLL 名称是错误的(或经过更改的)。
6294         '(5081)-不能在 RPC 服务器上注册任何身份验证包。
6295         '(5082)-由于组的所有者不在组的首选列表中,不能将组联机。要改变组的所有者节点,请移动组。
6296         '(5083)- 群集数据库的系列号已改变,或者与锁定程序节点不相容,因此加入操作没有成功。如果在加入操作期间群集数据库有任何改动,这都可能发生。
6297         '(5084)- 资源在其当前状态下,资源监视器不允许执行失败操作。资源处于挂起状态时,这都可能发生。
6298         '(5085)-非锁定程序代码收到一个为全局更新保留锁 定的请求。
6299         '(5086)-群集服务找不到仲裁磁盘。
6300         '(5087)-已备份的群集数据库可能已损坏。
6301         '(5088)-DFS 根目录已在这个群集节点中。
6302         '(5089)-由于与另一个现有属性冲突,未能修改资源属性。
6303         '(5090)-西班牙
6304         '(5091)-丹 麦
6305         '(5092)-瑞典
6306         '(5093)-挪威
6307         '(5094)-德国
6308         '(5095)-澳大利亚
6309         '(5096)-日本
6310         '(5097)- 韩国
6311         '(5098)-中国
6312         '(5099)-台湾
6313         '(5100)-亚洲
6314         '(5101)-葡萄牙
6315         '(5102)-芬兰
6316         '(5103)- 阿拉伯
6317         '(5104)-希伯莱
6318         '(5153)-UPS 服务即将执行最后的关机操作。
6319         '(5170)-工作站必须用 NET START 才能启动。
6320         '(5175)-远程 IPC
6321         '(5176)-远程管理
6322         '(5177)-默认共享
6323         '(5291)-永不
6324         '(5292)- 永不
6325         '(5293)-永不
6326         '(5295)-NETUS.HLP
6327         '(5296)-NET.HLP
6328         '(5300)-网络控制块 (NCB) 请求运行成功。NCB 是相关数据。
6329         '(5301)-SEND DATAGRAM、SEND BROADCAST、ADAPTER STATUS 或 SESSION STATUS 的网络控制块 (NCB) 缓冲区长度无效。NCB 是相关数据。
6330         '(5302)-网络控制块 (NCB) 指定的数据描述数组无效。NCB 是相关数据。
6331         '(5303)-网络控制块 (NCB) 指定的命令无效。NCB 是相关数据。
6332         '(5304)- 网络控制块 (NCB) 指定的消息交换码无效。NCB 是相关数据。
6333         '(5305)-网络控制块 (NCB) 命令超时。会话可能异常终止。NCB 是相关数据。
6334         '(5306)-接收的网络控制块 (NCB) 消息不完整。NCB 是相关数据。
6335         '(5307)- 网络控制块 (NCB) 指定的缓冲区无效。NCB 是相关数据。
6336         '(5308)-网络控制块 (NCB) 指定的会话号码没有作用。NCB 是相关数据。
6337         '(5309)-网卡没有任何资源可用。网络控制块 (NCB) 请求被拒绝。NCB 是相关数据。
6338         '(5310)-网络控制块 (NCB) 指定的会话已经关闭。NCB 是相关数据。
6339         '(5311)-网络控制块 (NCB) 命令已经取消。NCB 是相关数据。
6340         '(5312)- 网络控制块 (NCB) 指定的消息块不合逻辑。NCB 是相关数据。
6341         '(5313)-该名称已经存在于本地适配器名称表中。网络控制块 (NCB) 请求被拒绝。NCB 是相关数据。
6342         '(5314)-网卡名称表已满。网络控制块 (NCB) 请求被拒绝。NCB 是相关数据。
6343         '(5315)- 网络名称已经有活动的会话,现在取消注册。网络控制块 (NCB) 命令运行完毕。NCB 是相关数据。
6344         '(5316)-先前发出的 Receive Lookahead 命令对此会话仍起作用。网络控制块 (NCB) 命令被拒绝。NCB 是相关数据。
6345         '(5317)-本地会话 表已满。网络控制块 (NCB) 请求被拒绝。NCB 是相关数据。
6346         '(5318)-拒绝打开网络控制块 (NCB) 会话,远程计算机上没有侦听命令在执行。NCB 是相关数据。
6347         '(5319)-网络控制块 (NCB) 指定的名称号码无效。NCB 是相关数据。
6348         '(5320)- 网络控制块 (NCB) 中指定的调用名称找不到,或者没有应答。NCB 是相关数据。
6349         '(5321)-网络控制块 (NCB) 中指定的名称找不到。无法将“*”或00h 填入 NCB 名称。NCB 是相关数据。
6350         '(5322)-网络控制块 (NCB) 中指定的名称正用于远程适配器。NCB 是相关数据。
6351         '(5323)-网络控制块 (NCB) 中指定的名称已经删除。NCB 是相关数据。
6352         '(5324)- 网络控制块 (NCB) 中指定的会话异常终止。NCB 是相关数据。
6353         '(5325)-网络协议在网络上检测两个或数个相同的名称。 网络控制块 (NCB) 是相关数据。
6354         '(5326)-收到意外的协议数据包。远程设备可能不兼容。网络控制块 (NCB) 是相关数据。
6355         '(5333)-NetBIOS 界面正忙。网络控制块 (NCB) 请求被拒绝。NCB 是相关数据。
6356         '(5334)-未完成的网络控制块 (NCB) 命令太多。NCB 请求被拒绝。NCB 是相关数据。
6357         '(5335)-网络控制块 (NCB) 中指定的适配器号无效。NCB 是相关数据。
6358         '(5336)-网 络控制块 (NCB) 命令在取消的同时运行完毕。NCB 是相关数据。
6359         '(5337)-网络控制块 (NCB) 指定的名称已经保留。NCB 是相关数据。
6360         '(5338)-网络控制块 (NCB) 命令无法取消。NCB 是相关数据。
6361         '(5351)-同一个会话有多个网络控制块 (NCB)。NCB 请求被拒绝。NCB 是相关数据。
6362         '(5352)-网卡出错。唯一可能发出的 NetBIOS 命令是 NCB RESET。网络控制块 (NCB) 是相关数据。
6363         '(5354)-超过应用程序数目上限。网络控制区 (NCB) 请求被拒绝,NCB 是相关数据。
6364         '(5356)-请求的资源无法使用。网络控制块 (NCB) 请求被拒绝。NCB 是相关数据。
6365         '(5364)-系统出错。网 络控制块 (NCB) 请求被拒绝。NCB 即为数据。
6366         '(5365)-“ROM 校验和”失败。网络控制块 (NCB) 请求被拒绝。NCB 是相关数据。
6367         '(5366)-RAM 测试失败。网络控制块 (NCB) 请求被拒绝。NCB 是相关数据。
6368         '(5367)-数字式环回失 败。网络控制块 (NCB) 请求被拒绝。NCB 是相关数据。
6369         '(5368)-模拟式环回失败。网络控制块 (NCB) 请求被拒绝。NCB 是相关数据。
6370         '(5369)-界面失败。网络控制块 (NCB) 请求被拒绝。NCB 是相关数据。
6371         '(5370)-收到的网络控制块 (NCB) 返回码无法识别。NCB 是相关数据。
6372         '(5380)-网卡故障。网络控制块 (NCB) 请求被拒绝。NCB 是相关数据。
6373         '(5381)- 网络控制块 (NCB) 命令仍然处于搁置状态。NCB 是相关数据。
6374         '(5509)-Windows 2000 无法按指定的配置启动,将换用先前可工作的配置。
6375         '(5600)-无法共享用户或脚本路径。
6376         '(5601)-计算机的密码在本地安全数据库中 找不到。
6377         '(5602)-访问计算机的本地或网络安全数据库时,发生内部错误。
6378         '(5705)-Netlogon 服务用于记录数据库更改数据的日志高速缓存已损坏。Netlogon 服务正在复位更改日志文件。
6379         '(5728)-无法加载任何传输。
6380         '(5739)- 此域的全局组数目超过可以复制到 LanMan BDC 的限制。请删除部分的全局组或删除域中的 LanManBDC。
6381         '(5742)-服务无法 检索必要的消息,所以无法运行远程启动客户。
6382         '(5743)-服务发生严重的错误,无法从远程启动3Com 3Start 远程启动客户。
6383         '(5744)- 服务发生严重的系统错误,即将关机。
6384         '(5760)-服务在分析 RPL 配置时出错。
6385         '(5761)-服务在创建所有配置的 RPL 配置文件时出错。
6386         '(5762)-服务在访问注册表时出错。
6387         '(5763)-服务在替换可能过期的 RPLDISK.SYS 时出错。
6388         '(5764)- 服务在添加安全帐户或设置文件权限时出错。这些帐户是独立 RPL 工作站的 RPLUSER 本地组以及用户帐户。.
6389         '(5765)-服务无法备 份它的数据库。
6390         '(5766)-服务无法从它的数据库初始化。数据库可能找不到或损坏。服务会试图从备份数据库恢复该数据库。
6391         '(5767)- 服务无法从备份数据库还原它的数据库。服务将不启动。
6392         '(5768)-服务无法从备份数据库还原它的数据库。
6393         '(5769)-服务无法从它还 原的数据库初始化。服务将不启动。
6394         '(5771)-远程启动数据库采用 NT 3.5 / NT 3.51 格式。NT 正在转换其为 NT 4.0 格式。完成转换后,JETCONV 转换器将写出应用事件日志。
6395         '(5773)-该 DC 的 DNS 服务器不支持动态 DNS。将文件 $SystemRootSystem32Config etlogon.dns$中的 DNS 记录添加到伺服那个文件中引用的域的 DNS 服务器。
6396         '(5781)- 由于没有可以使用的 DNS 服务器,一个或更多 DNS 记录的动态注册和注销未成功。
6397         '(6000)-无法加密指定的文件。
6398         '(6001)- 指定的文件无法解密。
6399         '(6002)-指定的文件已加密,而且用户没有能力解密。
6400         '(6003)-这个系统没有有效的加密恢复策略配置。
6401         '(6004)- 所需的加密驱动程序并未加载到系统中。
6402         '(6005)-文件加密所使用的加密驱动程序与目前加载的加密驱动程序不同。
6403         '(6006)-没有为 用户定义的 EFS 关键字。
6404         '(6007)-指定的文件并未加密。
6405         '(6008)-指定的文件不是定义的 EFS 导出格式。
6406         '(6009)- 指定的文件是只读文件。
6407         '(6010)-已为加密而停用目录。
6408         '(6011)-不信任服务器来进行远程加密操作。
6409         '(6118)-此工 作组的服务器列表当前无法使用
6410         '(6200)-要正常运行,任务计划程序服务的配置必须在系统帐户中运行。单独的任务可以被配置成在其他帐户中运 行。
6411         '(7001)-指定的会话名称无效。
6412         '(7002)-指定的协议驱动程序无效。
6413         '(7003)-在系统路径上找不到指定的协议驱 动程序。
6414         '(7004)-在系统路径上找不到指定的终端连接。
6415         '(7005)-不能为这个会话创建一个事件日志的注册键。
6416         '(7006)- 同名的一个服务已经在系统中存在。
6417         '(7007)-在会话上一个关闭操作挂起。
6418         '(7008)-没有可用的输出缓冲器。
6419         '(7009)- 找不到 MODEM.INF 文件。
6420         '(7010)-在 MODEM.INF 中没有找到调制解调器名称。
6421         '(7011)-调制解调器没有接 受发送给它的指令。验证配置的调制解调器与连接的调制解调器是否匹配。
6422         '(7012)-调制解调器没有接受发送给它的指令。验证该调制解调器是否接 线正确并且打开了电源开关。
6423         '(7013)-运载工具检测失败或者由于断开连接,运载工具已被丢弃。
6424         '(7014)-在要求的时间内没有发现 拨号音。 确定电话线连接正确并可使用。
6425         '(7015)-在远程站点回叫时检测到了占线信号。
6426         '(7016)-在回叫时远程站点上检测到了声 音。
6427         '(7017)-传输驱动程序错误
6428         '(7022)-找不到指定的会话。
6429         '(7023)-指定的会话名称已处于使用中。
6430         '(7024)- 由于终端连接目前正在忙于处理一个连接、断开连接、复位或删除操作,无法完成该请求的操作。
6431         '(7025)-试图连接到其视频模式不受当前客户支持 的会话。
6432         '(7035)-应用程序尝试启动 DOS 图形模式。不支持 DOS 图形模式。
6433         '(7037)-您的交互式登录权限已被禁用。请 与您的管理员联系。
6434         '(7038)-该请求的操作只能在系统控制台上执行。这通常是一个驱动程序或系统 DLL 要求直接控制台访问的结果。
6435         '(7040)- 客户未能对服务器连接消息作出响应。
6436         '(7041)-不支持断开控制台会话。
6437         '(7042)-不支持重新将一个断开的会话连接到控制台。
6438         '(7044)- 远程控制另一个会话的请求被拒绝。
6439         '(7045)-拒绝请求的会话访问。
6440         '(7049)-指定的终端连接驱动程序无效。
6441         '(7050)- 不能远程控制该请求的会话。这也许是由于该会话被中断或目前没有一个用户登录。而且,您不能从该系统控制台远程控制一个会话或远程控制系统控制台。并且, 您不能远程控制您自己的当前会话。
6442         '(7051)-该请求的会话没有配置成允许远程控制。
6443         '(7052)-拒绝连接到这个终端服务器。终端服 务器客户许可证目前正在被另一个用户使用。请与系统管理员联系,获取一份新的终端服务器客户,其许可证号码必须是有效的、唯一的。
6444         '(7053)- 拒绝连接到这个终端服务器。还没有为这份终端服务器客户输入您的终端服务器客户许可证号码。请与系统管理员联系,为该终端服务器客户输入一个有效的、唯一 的许可证号码。
6445         '(7054)-系统已达到其授权的登录限制。请以后再试一次。
6446         '(7055)-您正在使用的客户没有使用该系统的授权。您的 登录请求被拒绝。
6447         '(7056)-系统许可证已过期。您的登录请求被拒绝。
6448         '(8001)-文件复制服务 API 被错误调用。
6449         '(8002)- 无法启动文件复制服务。
6450         '(8003)-无法停止文件复制服务。
6451         '(8004)-文件复制服务 API 终止了请求。事件日志可能有详细信息。
6452         '(8005)-该文件复制服务中断了该请求。事件日志可能有详细信息。
6453         '(8006)-无法联系文件 复制服务。事件日志可能有详细信息。
6454         '(8007)-由于该用户没有足够特权,文件复制服务不能满足该请求。事件日志可能有详细信息。
6455         '(8008)- 由于验证的 RPC 无效,文件复制服务不能满足该请求。事件日志可能有详细信息。
6456         '(8009)-由于该用户在域控制器上没有足够特权,文件复制 服务不能满足该请求。事件日志可能有详细信息。
6457         '(8010)-由于在域控制器上的验证的 RPC 无效,文件复制服务不能满足该请求。事件日志可能有详细信息。
6458         '(8011)-该文件复制服务无法与在域控制器上的文件复制服务通讯。事件日志可能 有详细信息。
6459         '(8012)-在域控制器上的文件复制服务无法与这台计算机上的文件复制服务通讯。事件日志可能有详细信息。
6460         '(8013)- 由于内部错误,该文件复制服务不能进入该系统卷中。事件日志可能有详细信息。
6461         '(8014)-由于内部超时,该文件复制服务不能进入该系统卷中。事 件日志可能有详细信息。
6462         '(8015)-该文件复制服务无法处理此请求。该系统卷仍在忙于前一个请求。
6463         '(8016)-由于内部错误,该文件 复制服务无法停止复制该系统卷。事件日志可能有详细信息。
6464         '(8017)-该文件复制服务检测到一个无效参数。
6465         '(8200)-在安装目录服 务时出现一个错误。有关详细信息,请查看事件日志。
6466         '(8201)-目录服务在本地评估组成员身份。
6467         '(8202)-指定的目录服务属性或值 不存在。
6468         '(8203)-指定给目录服务的属性语法无效。
6469         '(8204)-指定给目录服务的属性类型未定义。
6470         '(8205)-指定的目 录服务属性或值已经存在。
6471         '(8206)-目录服务忙。
6472         '(8207)-该目录服务无效。
6473         '(8208)-目录服务无法分配相对标识 号。
6474         '(8209)-目录服务已经用完了相对标识号池。
6475         '(8210)-由于目录服务不是该类操作的主控,未能执行操作。
6476         '(8211)- 目录服务无法初始化分配相对标识号的子系统。
6477         '(8212)-该请求的操作没有满足一个或多个与该对象的类别相关的约束。
6478         '(8213)-目 录服务只可以在一个页状对象上运行要求的操作。
6479         '(8214)-目录服务不能在一个对象的 RDN 属性上执行该请求的操作。
6480         '(8215)- 目录服务检测出修改对象类别的尝试。
6481         '(8216)-不能执行请求的通过域的移动操作。
6482         '(8217)-无法联系全局编录服务器。
6483         '(8218)- 策略对象是共享的并只可在根目录上修改。
6484         '(8219)-策略对象不存在。
6485         '(8220)-请求的策略信息只在目录服务中。
6486         '(8221)- 域控制器升级目前正在使用中。
6487         '(8222)-域控制器升级目前不在使用中
6488         '(8224)-出现一个操作错误。
6489         '(8225)-出现一 个协议错误。
6490         '(8226)-已经超过这个请求的时间限制。
6491         '(8227)-已经超过这个请求的大小限制。
6492         '(8228)-已经超过这 个请求的管理限制。
6493         '(8229)-比较的响应为假。
6494         '(8230)-比较的响应为真。
6495         '(8231)-这个服务器不支持请求的身份验 证方式。
6496         '(8232)-这台服务器需要一个更安全的身份验证方式。
6497         '(8233)-不适当的身份验证。
6498         '(8234)-未知的身份验 证机制。
6499         '(8235)-从服务器返回了一个建议。
6500         '(8236)-该服务器不支持该请求的关键扩展。
6501         '(8237)-这个请求需要一 个安全的连接。
6502         '(8238)-不恰当的匹配。
6503         '(8239)-出现一个约束冲突。
6504         '(8240)-在服务器上没有这样一个对象。
6505         '(8241)- 有一个别名问题。
6506         '(8242)-指定了一个无效的 dn 语法。
6507         '(8243)-该对象为叶对象。
6508         '(8244)-有一个别名废弃问 题。
6509         '(8245)-该服务器不愿意处理该请求。
6510         '(8246)-检查到一个循环。
6511         '(8247)-有一个命名冲突。
6512         '(8248)- 结果设置太大。
6513         '(8249)-该操作会影响到多个 DSA。
6514         '(8250)-该服务器不可操作。
6515         '(8251)-出现一个本地错误。
6516         '(8252)- 出现一个编码错误。
6517         '(8253)-出现一个解码错误。
6518         '(8254)-无法识别寻找筛选器。
6519         '(8255)-一个或多个参数非法。
6520         '(8256)- 不支持指定的方式。
6521         '(8257)-没有返回结果。
6522         '(8258)-该服务器不支持该指定的控制。
6523         '(8259)-客户检测到一个参考 循环。
6524         '(8260)-超过当前的参考限制。
6525         '(8301)-根目录对象必须是一个命名上下文的头。该根目录对象不能有实例父类。
6526         '(8302)- 不能执行添加副本操作。名称上下文必须可写才能创建副本。
6527         '(8303)-出现一个对架构中未定义的一个属性的参考。
6528         '(8304)-超过了 一个对象的最大尺寸。
6529         '(8305)-尝试向目录中添加一个已在使用中的名称的对象。
6530         '(8306)-尝试添加一个对象,该对象属于那类在架 构中没有一个 RDN 定义的类别。
6531         '(8307)-尝试添加一个使用 RDN 的对象,但该 RDN 不是一个在架构中定义的 RDN 。
6532         '(8308)- 在对象中找不到任何请求的属性。
6533         '(8309)-用户缓冲区太小。
6534         '(8310)-在操作中指定的属性不出现在对象上。
6535         '(8311)- 修改操作非法。不允许该修改的某个方面。
6536         '(8312)-指定的对象太大。
6537         '(8313)-指定的实例类别无效。
6538         '(8314)-操作 必须在主控 DSA 执行。
6539         '(8315)-必须指定对象类别属性。
6540         '(8316)-一个所需的属性丢失。
6541         '(8317)-尝试修改一 个对象,将一个对该类别来讲是非法的属性包括进来。
6542         '(8318)-在对象上指定的属性已经存在。
6543         '(8320)-指定的属性不存在或没有 值。
6544         '(8321)-为只有一个值的属性指定了多个值。
6545         '(8322)-属性值不在接受范围内。
6546         '(8323)-指定的值已存在。
6547         '(8324)- 由于不存在于对象上,不能删除该属性。
6548         '(8325)-由于不存在于对象上,不能删除该属性值。
6549         '(8326)-指定的根对象不能是子参考。
6550         '(8327)- 不允许链接。
6551         '(8328)-不允许链接的评估。
6552         '(8329)-由于对象的父类不是未实例化就是被删除了,所以不能执行操作。
6553         '(8330)- 不允许有一个用别名的父类。别名是叶对象。
6554         '(8331)-对象和父类必须是同一种类,不是都是原件就是都是副本。
6555         '(8332)-由于子对 象存在,操作不能执行。这个操作只能在叶对象上执行。
6556         '(8333)-没有找到目录对象。
6557         '(8334)-别名对象丢失。
6558         '(8335)- 对象名语法不对。
6559         '(8336)-不允许一个别名参考另一个别名。
6560         '(8337)-别名不能解除参考。
6561         '(8338)-操作超出范围。
6562         '(8340)- 不能删除 DSA 对象。
6563         '(8341)-出现一个目录服务错误。
6564         '(8342)-操作只能在内部主控 DSA 对象上执行。
6565         '(8343)- 对象必须为 DSA 类别。
6566         '(8344)-访问权不够不能执行该操作。
6567         '(8345)-由于父类不在可能的上级列表上,不能添加该对象。
6568         '(8346)- 由于该属性处于“安全帐户管理器” (SAM),不允许访问该属性。
6569         '(8347)-名称有太多部分。
6570         '(8348)-名称太长。
6571         '(8349)- 名称值太长。
6572         '(8350)-目录服务遇到了一个错误分列名称。
6573         '(8351)-目录服务找不到一个名称的属性种类。
6574         '(8352)- 该名称不能识别一个对象; 该名称识别一个幻象。
6575         '(8353)-安全描述符太短。
6576         '(8354)-安全描述符无效。
6577         '(8355)- 为删除的对象创建名称失败。
6578         '(8356)-一个新子参考的父类必须存在。
6579         '(8357)-该对象必须是一个命名上下文。
6580         '(8358)- 不允许添加一个不属于系统的属性。
6581         '(8359)-对象的类别必须是有结构的; 您不能实例化一个抽象的类别。
6582         '(8360)-找不到架构的 对象。
6583         '(8361)-有这个 GUID (非活动的的或活动的)的本地对象已经存在。
6584         '(8362)-操作不能在一个后部链接上执行。
6585         '(8363)- 找不到指定的命名上下文的互交参考。
6586         '(8364)-由于目录服务关闭,操作不能执行。
6587         '(8365)-目录服务请求无效。
6588         '(8366)- 无法读?巧姓呤粜浴?
6589         '(8367)-请求的 FSMO 操作失败。不能连接当前的 FSMO 盒。
6590         '(8368)-不允许跨过一个命名 上下文修改 DN。
6591         '(8369)-由于属于系统,不能修改该属性。
6592         '(8370)-只有复制器可以执行这个功能。
6593         '(8371)-指 定的类别没有定义。
6594         '(8372)-指定的类别不是一个子类别。
6595         '(8373)-名称参考无效。
6596         '(8374)-交叉参考已经存在。
6597         '(8375)- 不允许删除一个主控交叉参考。
6598         '(8376)-只在 NC 头上支持子目录树通知。
6599         '(8377)-通知筛选器太复杂。
6600         '(8378)- 架构更新失败: 重复的 RDN。
6601         '(8379)-架构更新失败: 重复的 OID。
6602         '(8380)-架构更新失败: 重复的 MAPI 识别符。
6603         '(8381)-架构更新失败: 复制架构 id GUID。
6604         '(8382)-架构更新失败: 重复的 LDAP 显示名称。
6605         '(8383)- 架构更新失败: 范围下部少于范围上部。
6606         '(8384)-架构更新失败: 语法不匹配。
6607         '(8385)-架构更新失败: 属性在必须包含中使用。
6608         '(8386)-架构更新失败: 属性在可能包含中使用。
6609         '(8387)-架构更新失败: 可能包含中的属性不存在。
6610         '(8388)- 架构更新失败:必须包含中的属性不存在。
6611         '(8389)-架构更新失败: 在辅助类别列表中的类别不存在或不是一个辅助类别。
6612         '(8390)- 架构更新失败: poss-superior 中的类别不存在。
6613         '(8391)-架构更新失败: 在 subclassof 列表中的类别不存在或不能满足等级规则。
6614         '(8392)-架构更新失败: Rdn-Att-Id 语法不对。
6615         '(8393)-架构更新失败: 类别作为辅助类别使用。
6616         '(8394)-架构更新失败: 类别作为子类别使用。
6617         '(8395)-架构更新失败: 类别作为 poss superior 使用。
6618         '(8396)-架构更新在重新计算验证缓存时失败。
6619         '(8397)-目录树删除没有完成。要继续删除目录树,必须 再次发出请求。
6620         '(8398)-不能执行请求的删除操作。
6621         '(8399)-不能读?芄辜锹脊芾砝啾鹗侗鸱?
6622         '(8400)-属性架构 语法不对。
6623         '(8401)-不能缓存属性。
6624         '(8402)-不能缓存类别。
6625         '(8403)-不能从缓存删除属性。
6626         '(8404)- 无法从缓存中删除类别。
6627         '(8405)-无法读取特殊名称的属性。
6628         '(8406)-丢失一个所需的子参考。
6629         '(8407)-不能检索范 例种类属性。
6630         '(8408)-出现一个内部错误。
6631         '(8409)-出现一个数据错误。
6632         '(8410)-丢失一个属性 GOVERNSID。
6633         '(8411)-丢失一个所需要的属性。
6634         '(8412)-指定的命名上下文丢失了一个交叉参考。
6635         '(8413)- 出现一个安全检查错误。
6636         '(8414)-没有加载架构。
6637         '(8415)-架构分配失败。请检查机器内存是否不足。
6638         '(8416)-为属 性架构获得所需语法失败。
6639         '(8417)-全局编录验证失败。全局编录无效或不支持操作。目录的某些部分目前无效。
6640         '(8418)-由于有关 服务器之间的架构不匹配,复制操作失败。
6641         '(8419)-找不到 DSA 对象。
6642         '(8420)-找不到命名上下文。
6643         '(8421)- 在缓存中找不到命名上下文。
6644         '(8422)-无法检索子对象。
6645         '(8423)-由于安全原因不允许修改。
6646         '(8424)-操作不能替换 该隐藏的记录。
6647         '(8425)-等级无效。
6648         '(8426)-尝试建立等级表失败。
6649         '(8427)-目录配置参数在注册中丢失。
6650         '(8428)- 尝试计算地址簿索引失败。
6651         '(8429)-等级表的分配失败。
6652         '(8430)-目录服务遇到一个内部失败。
6653         '(8431)-目录服务遇 到一个未知失败。
6654         '(8432)-根对象需要一个 $top$ 类别。
6655         '(8433)-这个目录服务器已关闭,并且不能接受新上浮单一主机操 作角色的所有权。
6656         '(8434)-目录服务没有必需的配置信息,并且不能决定新上浮单一主机操作角色的所有权。
6657         '(8435)-该目录服务无 法将一个或多个上浮单一主机操作角色传送给其它服务器。
6658         '(8436)-复制操作失败。
6659         '(8437)-为这个复制操作指定了一个无效的参 数。
6660         '(8438)-目录服务太忙,现在无法完成这个复制操作。
6661         '(8439)-为这个复制操作指定的单一名称无效。
6662         '(8440)- 为这一个复制操作所指定的命名上下文无效。
6663         '(8441)-为这个复制操作指定的单一名称已经存在。
6664         '(8442)-复制系统遇到一个内部错 误。
6665         '(8443)-复制操作遇到数据库不一致问题。
6666         '(8444)-不能连接到为这个复制操作指定的服务器上。
6667         '(8445)-复制 操作遇到一个有无效范例类型的对象。
6668         '(8446)-复制操作无法分配内存。
6669         '(8447)-复制操作遇到一个邮件系统错误。
6670         '(8448)- 目标服务器的复制参考信息已经存在。
6671         '(8449)-目标服务器的复制参考信息不存在。
6672         '(8450)-由于是由另一台服务器上复制的,因此 不能删除命名上下文。
6673         '(8451)-复制操作遇到一个数据库错误。
6674         '(8452)-命名上下文要被删除或没有从指定的服务器上复制。
6675         '(8453)- 复制访问被拒绝。
6676         '(8454)-这个版本的目录服务不支持请求的操作。
6677         '(8455)-取消复制远程过程呼叫。
6678         '(8456)-源服 务器目前拒绝复制请求。
6679         '(8457)-目标服务器当前拒绝复制请求。
6680         '(8458)-由于对象名称冲突,复制操作失败。
6681         '(8459)- 复制源已被重新安装。
6682         '(8460)-由于一个所需父对象丢失,复制操作失败。
6683         '(8461)-复制操作被抢先。
6684         '(8462)-由于 缺乏更新,放弃复制同步尝试。
6685         '(8463)-由于系统正在关闭,复制操作被中断了。
6686         '(8464)-由于目标部分属性设置不是一个源部分属 性设置的子设置,复制同步尝试失败。
6687         '(8465)-由于主复制尝试从部分复制同步,复制同步尝试失败。
6688         '(8466)-已经与为这个复制操 作的指定的服务器联系,但是该服务器无法与完成这个操作所需的另外一个服务器联系。
6689         '(8467)-在副本安装时,检测到一个使用的源和内部版本之 间的架构不匹配,不能安装该副本。
6690         '(8468)-架构更新失败: 有同一连接标识符的属性已经存在。
6691         '(8469)-名称翻译: 常见处理错误。
6692         '(8470)-名称翻译: 不能找到该名称或权限不够,不能看到名称。
6693         '(8471)-名称翻译: 输入名称映射到多个输出名称。
6694         '(8472)-名称翻译: 找到输出名称,但是找不到相应的输出格式。
6695         '(8473)-名称翻译: 不能完全解析,只找到了域。
6696         '(8474)-名称翻译: 不接到线上,无法在客户机上执行纯粹的语法映射。
6697         '(8475)-不允许一个构造 att 修改。
6698         '(8476)-指定的 OM-Object 类别对指定语法的一个属性是不正确的。
6699         '(8477)-复制请求已暂停; 等待回答。
6700         '(8478)-要求的操作需要一个目录服务,但没有可用的。
6701         '(8479)-类别或属性的 LDAP 显示名称含有非 ASCII 字符。
6702         '(8480)-请求的查找操作只支持基本查找。
6703         '(8481)-查找未能从数据库检索属性。
6704         '(8482)-架构 更新操作试图添加一个反向链接,但该反向链接没有相应的正向链接。
6705         '(8483)-跨域移动的来源和目标在对象日期上不一致。或者是来源,或者是目 标没有对象的最后一个版本。
6706         '(8484)-跨域移动的来源和目标在对象当前的名称上不一致。或者是来源,或者是目标没有对象的最后一个版本。
6707         '(8485)- 域间移动的来源和目标是一样的。调用程序应该使用本地移动操作,而不是域间移动操作。
6708         '(8486)-域间移动的来源和目标与目录林中的命名上下文 不一致。来源或目标没有分区容器的最近版本。
6709         '(8487)-跨域移动的目标不是目标命名上下文的权威。
6710         '(8488)-跨域移动的来源和目 标提供的来源对象的身份不一样。 来源或目标没有来源对象的最近版本。
6711         '(8489)-跨域移动的对象应该已经被目标服务器删除。来源服务器没有来 源对象的最近版本。
6712         '(8490)-要求对 PDC FSMO 的专门访问权的另一个操作正在进行中。
6713         '(8491)-跨域移动没有成功,导 致被移动对象有两个版本 – 一个在来源域,一个在目标域。需要删除目标对象,将系统还原到一致状态。
6714         '(8492)-因为不允许这个类别的跨域移 动,或者对象有一些特点,如: 信任帐户或防止移动的受限制的 RID;所以不能将该对象跨域移动。
6715         '(8493)-一旦移动,不能将带有成员身份 的对象跨域移动,这会侵犯帐户组的成员身份条件。从帐户组成员身份删除对象,再试一次。
6716         '(8494)-命名上下文标题必须是另一个命名上下文标题 的直接子标题,而不是一个内节点的子标题。
6717         '(8495)-因为目录没有提议的命名上下文上面的命名上下文的副本,所以无法验证所提议的命名上下文 的名称。请保证充当域命名主机的服务器已配置成全局编录服务器,并且服务器及其复制伙伴是最新的。
6718         '(8496)-目标域必须在本机模式中。
6719         '(8497)- 因为服务器在指定域中没有基?峁谷萜鳎晕薹ㄖ葱胁僮鳌?
6720         '(8498)-不允许跨域移动帐户组。
6721         '(8499)-不允许跨域移动资源组。
6722         '(8500)- 属性的搜索标志无效。ANR 位只在 Unicode 或 Teletex 字符串的属性上有效。
6723         '(8501)-不允许在将 NC 头作为子体的对象开始删除目录树。
6724         '(8502)-因为目录树在使用中,目录服务未能为删除目录树而将其锁定。
6725         '(8503)-删除目录树 时,目录服务未能识别要删除的对象列表。
6726         '(8505)-只有管理员才能修改管理组的成员列表。
6727         '(8506)-不能改变域控制器帐户的主要 组 ID。
6728         '(8507)-试图修改基?芄埂?
6729         '(8508)-不允许进行下列操作: 为现有类别添加新的强制属性;从现有类别删除强制属性;为没有向回链接属性的特殊类别 “Top” 添加可选属性,向回链接属性指的是直接或通过继承。例如: 添加或删除附属类别。
6730         '(8509)-该域控制器上不允许架构更新。没有设置注册表项, 或者 DC 不是架构 FSMO 角色所有者。
6731         '(8510)-无法在架构容器下创建这个类别的对象。在架构容器下,您只能创建属性架构和类别架构 对象。
6732         '(8511)-副本/子项安装未能获取源 DC 上的架构容器的 objectVersion 属性。架构容器上的属性不存在,或者提供的凭据没有读取属性的权限。
6733         '(8512)-副本/子项安装未能读取 system32 目录中的文件 schema.ini 的 SCHEMA 段中的 objectVersion 属性。
6734         '(8513)-指定的组类型无效。
6735         '(8514)- 如果域是安全启用的,在混合型域中不能嵌套全局组。
6736         '(8515)-如果域是安全启用的,在混合型域中不能嵌套本地组。
6737         '(8516)-全局 组不能将本地组作为成员。
6738         '(8517)-全局组不能将通用组作为成员。
6739         '(8518)-通用组不能将本地组作为成员。
6740         '(8519)- 全局组不能有跨域成员。
6741         '(8520)-本地组不能将另一个跨域本地组作为成员。
6742         '(8521)-包含主要成员的组不能改变为安全停用的组。
6743         '(8522)- 架构缓冲加载未能转换类架构对象上的字符串默认值 SD。
6744         '(8523)-只有配置成全局编录服务器的 DSAs 才能充当域命名主机 FSMO 的角色。
6745         '(8524)-由于 DNS 查找故障,DSA 操作无法进行。
6746         '(8525)-处理一个对象的 DNS 主机名改动时,服务主要名称数值无法保持同步。
6747         '(8526)-未能读取安全描述符属性。
6748         '(8527)-没有找到请求的对象,但找到了具有 那个密钥的对象。
6749         '(8528)-正在添加的链接属性的语法不正确。正向链接只能有语法 2.5.5.1、2.5.5.7 和 2.5.5.14,而反向链接只能有语法 2.5.5.1
6750         '(8529)-安全帐户管理员需要获得启动密码。
6751         '(8530)-安全帐户管理员 需要从软盘获得启动密钥。
6752         '(8531)-目录服务无法启动。
6753         '(8532)-未能启动目录服务。
6754         '(8533)-客户和服务器之间的 连接要求数据包保密性。
6755         '(8534)-来源域跟目标域不在同一个目录林中。
6756         '(8535)-目标域必须在目录林中。
6757         '(8536)- 该操作要求启用目标域审核。
6758         '(8537)-该操作无法为来源域找到 DC。
6759         '(8538)-来源对象必须是一个组或用户。
6760         '(8539)- 来源对象的 SID 已经在目标目录林中。
6761         '(8540)-来源对象和目标对象必须属于同一类型。
6762         '(8542)-在复制请求中不能包括架构 信息。
6763         '(8543)-由于架构不兼容性,无法完成复制操作。
6764         '(8544)-由于前一个架构的不兼容性,无法完成复制操作。
6765         '(8545)- 因为源和目标都没有收到有关最近跨域启动操作的信息,所以无法应用复制更新。
6766         '(8546)-因为还有主控这个域的域控制器,所以无法删除请求的 域。
6767         '(8547)-只能在全局编录服务器上执行请求的操作。
6768         '(8548)-本地组只能是同一个域中其他本地组的成员。
6769         '(8549)- 外部安全主要成员不能是通用组的成员。
6770         '(8550)-出于安全,无法将属性复制到 GC。
6771         '(8551)-由于目前正在处理的修改太多,无 法采取 PDC 的检查点。
6772         '(8552)-操作需要启用那个源域审核。
6773         '(8553)-安全主要对象仅能在域命名环境菜单中创建。
6774         '(8554)- 服务主要名称(SPN) 无法建造,因为提供的主机名格式不适合。
6775         '(8555)-筛选器已传递建造的属性。
6776         '(8556)-unicodePwd 属性值必须括在双引号中。
6777         '(8557)-您的计算机无法加入域。已超出此域上允许创建的计算机帐户的最大值。请同系统管理员联系,复位或增加此 限定值。
6778         '(8558)-由于安全原因,操作必须在目标 DC 上运行。
6779         '(8559)-由于安全原因,源 DC 必须是 Service Pack 4 或更新版本。
6780         '(8560)-在树目录删除的操作中不能删除“关键目录服务系统”对象。数目录删除操作可能只进行了一部分。
6781         '(9001)-DNS 服务器无法解释格式。
6782         '(9002)-DNS 服务器失败。
6783         '(9003)-DNS 名称不存在。
6784         '(9004)-名称服务器不支持 DNS 请求。
6785         '(9005)-拒绝 DNS 操作。
6786         '(9006)-不应该存在的 DNS 名称仍然存在。
6787         '(9007)-不应该 存在的 DNS RR 集仍然存在。
6788         '(9008)-应该存在的 DNS RR 集不存在。
6789         '(9009)-DNS 服务器对区域没有权威。
6790         '(9010)- 在更新或 prereq 中的 DNS 名称不在区域中。
6791         '(9016)-DNS 签名验证失败。
6792         '(9017)-DNS 不正确密钥。
6793         '(9018)-DNS 签名验证过期。
6794         '(9501)-为 DNS 查询找不到记录。
6795         '(9502)-无效 DNS 包。
6796         '(9503)-没有 DNS 包。
6797         '(9504)-DNS 错误,请检查 rcode。
6798         '(9505)-为保险的 DNS 包。
6799         '(9551)-无效的 DNS 种类。
6800         '(9552)-无效的 IP 地址。
6801         '(9553)-无效的属性。
6802         '(9554)-稍后再试一次 DNS 操作。
6803         '(9555)- 给出的记录名称和种类不是单一的。
6804         '(9556)-DNS 名称不符合 RFC 说明。
6805         '(9557)-DNS 名称是一个完全合格的 DNS 名称。
6806         '(9558)-DNS 名称以“.”分隔(多标签)。
6807         '(9559)-DNS 名称是单一部分名称。
6808         '(9560)-DNS 名称含有无效字符。
6809         '(9561)-DNS 名称完全是数字的。
6810         '(9601)-DNS 区域不存在。
6811         '(9602)-DNS 区域信息无效。
6812         '(9603)-DNS 区域无效操作。
6813         '(9604)-无效 DNS 区域配置。
6814         '(9605)-DNS 区域没有颁发机构记录的开始(SOA)。
6815         '(9606)-DNS 区域没有“名称服务器” (NS)的记录。
6816         '(9607)-DNS 区域已锁定。
6817         '(9608)-DNS 区域创建失败。
6818         '(9609)-DNS 区域已经存在。
6819         '(9610)-DNS 自动区域已经存在。
6820         '(9611)-无效的 DNS 区域种类。
6821         '(9612)-次要 DNS 区域需要主 IP 地址。
6822         '(9613)-DNS 区域不是次要的。
6823         '(9614)-需要一个次要 IP 地址
6824         '(9615)-WINS 初始化失败。
6825         '(9616)-需要 WINS 服务器。
6826         '(9617)-NBTSTAT 初始化呼叫失败。
6827         '(9618)-颁发机构起始(SOA)删除无效
6828         '(9651)-主要 DNS 区域需要数据文件。
6829         '(9652)-DNS 区域的无效数据文件名称。
6830         '(9653)-为 DNS 区域打开数据文件失败。
6831         '(9654)- 为 DNS 区域写数据文件失败。
6832         '(9655)-为 DNS 区域读取数据文件时失败。
6833         '(9701)-DNS 记录不存在。
6834         '(9702)-DNS 记录格式错误。
6835         '(9703)-DNS 中节点创建失败。
6836         '(9704)-未知 DNS 记录类型。
6837         '(9705)-DNS 记录超时。
6838         '(9706)-名称不在 DNS 区域。
6839         '(9707)-检测到 CNAME 循环。
6840         '(9708)-节点为一个 CNAME DNS 记录。
6841         '(9709)-指定名称的 CNAME 记录已经存在。
6842         '(9710)-记录不在 DNS 区域根目录。
6843         '(9711)-DNS 记录已经存在。
6844         '(9712)-次要 DNS 区域数据错误。
6845         '(9713)-不能创建 DNS 缓存数据。
6846         '(9714)-DNS 名称不存在。
6847         '(9715)-不能创建指针(PTR)记录。
6848         '(9716)-DNS 域没有被删除。
6849         '(9717)-该目录服务无 效。
6850         '(9718)-DNS 区域已经在目录服务中存在。
6851         '(9719)-DNS 服务器没有为目录服务集合 DNS 区域创建或读取启动文件。
6852         '(9751)-完成 DNS AXFR (区域复制)。
6853         '(9752)-DNS 区域复制失败。
6854         '(9753)- 添加了本地 WINS 服务器。
6855         '(9801)-安全更新呼叫需要继续更新请求。
6856         '(9851)-TCP/IP 没有安装网络协议。
6857         '(9852)- 没有为本地系统配置 DNS 服务器。
6858         '(10004)-一个封锁操作被对 WSACancelBlockingCall 的调用中断。
6859         '(10009)- 提供的文件句柄无效。
6860         '(10013)-以一种访问权限不允许的方式做了一个访问套接字的尝试。
6861         '(10014)-系统检测到在一个调用中尝 试使用指针参数时的无效指针地址。
6862         '(10022)-提供了一个无效的参数。
6863         '(10024)-打开的套接字太多。
6864         '(10035)- 无法立即完成一个非阻挡性套接字操作。
6865         '(10036)-目前正在执行一个阻挡性操作。
6866         '(10037)-在一个非阻挡套接字上尝试了一个已 经在进行的操作。
6867         '(10038)-在一个非套接字上尝试了一个操作。
6868         '(10039)-请求的地址在一个套接字中从操作中忽略。
6869         '(10040)- 一个在数据报套接字上发送的消息大于内部消息缓冲器或其它一些网络限制,或该用户用于接收数据报的缓冲器比数据报小。
6870         '(10041)-在套接字函 数调用中指定的一个协议不支持请求的套接字类别的语法。
6871         '(10042)-在 getsockopt 或 setsockopt 调用中指定的一个未知的、无效的或不受支持的选项或层次。
6872         '(10043)-请求的协议还没有在系统中配置,或者没有它存在的迹象。
6873         '(10044)- 在这个地址家族中不存在对指定的插槽种类的支持。
6874         '(10045)-参考的对象种类不支持尝试的操作。
6875         '(10046)-协议家族尚未配置到 系统中或没有它的存在迹象。
6876         '(10047)-使用了与请求的协议不兼容的地址。
6877         '(10048)-通常每个套接字地址 (协议/网络地址/端口)只允许使用一次。
6878         '(10049)-在其上下文中,该请求的地址无效。
6879         '(10050)-套接字操作遇到了一个已死 的网络。
6880         '(10051)-向一个无法连接的网络尝试了一个套接字操作。
6881         '(10052)-当该操作在进行中,由于保持活动的操作检测到一个 故障,该连接中断。
6882         '(10053)-您的主机中的软件放弃了一个已建立的连接。
6883         '(10054)-远程主机强迫关闭了一个现有的连接。
6884         '(10055)- 由于系统缓冲区空间不足或列队已满,不能执行套接字上的操作。
6885         '(10056)-在一个已经连接的套接字上做了一个连接请求。
6886         '(10057)- 由于套接字没有连接并且 (当使用一个 sendto 调用发送数据报套接字时) 没有提供地址,发送或接收数据的请求没有被接受。
6887         '(10058)- 由于以前的关闭调用,套接字在那个方向已经关闭,发送或接收数据的请求没有被接受。
6888         '(10059)-对某个内核对象的引用过多。
6889         '(10060)- 由于连接方在一段时间后没有正确的答复或连接的主机没有反应,连接尝试失败。
6890         '(10061)-不能做任何连接,因为目标机器积极地拒绝它。
6891         '(10062)- 无法翻译名称。
6892         '(10063)-名称组件或名称太长。
6893         '(10064)-由于目标主机坏了,套接字操作失败。
6894         '(10065)-套接 字操作尝试一个无法连接的主机。
6895         '(10066)-不能删除目录,除非它是空的。
6896         '(10067)-一个 Windows 套接字操作可能在可以同时使用的应用程序数目上有限制。
6897         '(10068)-超过限额。
6898         '(10069)-超过磁盘限额。
6899         '(10070)- 文件句柄引用不再有效。
6900         '(10071)-项目在本地不可用。
6901         '(10091)-因为它使用提供网络服务的系统目前无 效,WSAStartup 目前不能正常工作。
6902         '(10092)-不支持请求的 Windows 套接字版本
6903         '(10093)-应用程序没有 调用 WSAStartup,或者 WSAStartup 失败。
6904         '(10101)-由 WSARecv 或 WSARecvFrom 返回表示远程方面已经开始了关闭步骤。
6905         '(10102)-WSALookupServiceNext 不能返回更多的结果。
6906         '(10103)- 在处理这个调用时,就开始调用 WSALookupServiceEnd。该调用被删除。
6907         '(10104)-过程调用无效。
6908         '(10105)- 请求的服务提供程序无效。
6909         '(10106)-没有加载或初始化请求的服务提供程序。
6910         '(10107)-从来不应失败的系统调用失败了。
6911         '(10108)- 没有已知的此服务。在指定的名称空间中找不这个服务。
6912         '(10109)-找不到指定的类别。
6913         '(10110)-WSALookupServiceNext 不能返回更多的结果。
6914         '(10111)-在处理这个调用时,就开始调用 WSALookupServiceEnd。该调用被删除。
6915         '(10112)- 由于被拒绝,数据查询失败。
6916         '(11001)-不知道这样的主机。
6917         '(11002)-这是在主机名解析时常出现的暂时错误,并且意味着本地服 务器没有从权威服务器上收到响应。
6918         '(11003)-在数据寻找中出现一个不可恢复的错误。
6919         '(11004)-请求的名称有效并且是在数据库 中找到,但是它没有相关的正确的数据。
6920         '(11005)-至少到达了一个保留。
6921         '(11006)-至少到达了一个路径。
6922         '(11007)- 没有发送方。
6923         '(11008)-没有接受方。
6924         '(11009)-保留已经确认。
6925         '(11010)-错误是由于资源不足造成。
6926         '(11011)- 由于管理原因被拒绝 – 无效凭据。
6927         '(11012)-未知或有冲突类型。
6928         '(11013)-某一部分的 filterspec 或 providerspecific 缓冲区有问题。
6929         '(11014)-flowspec 的某部分有问题。
6930         '(11015)-一般性 QOS 错误。
6931         '(11016)-在流程规格中发现一个无效的或不可识别的服务类型。
6932         '(11017)-在 QOS 结构中发现一个无效的或不一致的流程规格。
6933         '(11018)-无效的 QOS 提供程序特定缓冲区。
6934         '(11019)-使用了无效的 QOS 筛选器样式。
6935         '(11020)-使用了无效的 QOS 筛选器类型。
6936         '(11021)-FLOWDESCRIPTOR 中指定的 QOS FILTERSPEC 数量不正确。
6937         '(11022)-在 QOS 提供程序特定缓冲区中指定了一个 ObjectLength 字符域无效的对象。
6938         '(11023)-QOS 结构中指定的流程描述符数量不正确。
6939         '(11024)-在 QOS 提供程序特定缓冲区中发现一个不可识别的对象。
6940         '(11025)-在 QOS 提供程序特定缓冲区中发现一个无效的策略对象。
6941         '(11026)- 在流程描述符列表中发现一个无效的 QOS 流程描述符。
6942         '(11027)-在 QOS 提供程序特定缓冲区中发现一个无效的或不一致的流程规格。
6943         '(11028)- 在 QOS 提供程序特定缓冲区中发现一个无效的 FILTERSPEC。
6944         '(11029)-在 QOS 提供程序特定缓冲区中发现一个无效的波形丢弃模式对象。
6945         '(11030)-在 QOS 提供程序特定缓冲区中发现一个无效的成形速率对象。
6946         '(11031)- 在 QOS 提供程序特定缓冲区中发现一个保留的策略因素
6947
6948     End Module
6949 End Namespace