1 |
#Region "Microsoft.VisualBasic::1acb37b0ccf6029eea8367429307c3cc, Microsoft.VisualBasic.Core\ApplicationServices\Tools\Win32\GetLastErrorAPI.vb"
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 |
|
26 |
|
27 |
|
28 |
|
29 |
|
30 |
|
31 |
|
32 |
|
33 |
|
34 |
|
35 |
|
36 |
|
37 |
|
38 |
|
39 |
|
40 |
|
41 |
|
42 |
|
43 |
|
44 |
|
45 |
|
46 |
|
47 |
|
48 |
|
49 |
#End Region
|
50 |
|
51 |
Namespace Win32
|
52 |
|
53 |
|
54 |
|
55 |
|
56 |
|
57 |
|
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 |
|
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 |
|
76 |
<returns></returns>
|
77 |
|
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 |
|
87 |
Retrieves the calling thread
|
88 |
Multiple threads do not overwrite each other
|
89 |
|
90 |
<returns>
|
91 |
The return value is the calling thread
|
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
|
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 |
|
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
|
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 Set. If 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 |
|
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 |
|
129 |
Public Enum ErrorCodes As Integer
|
130 |
|
131 |
|
132 |
Compression algorithm not
|
133 |
recognized.
|
134 |
|
135 |
LZERROR_UNKNOWNALG = -8
|
136 |
|
137 |
|
138 |
Input parameter out of
|
139 |
acceptable range.
|
140 |
|
141 |
LZERROR_BADVALUE = -7
|
142 |
|
143 |
|
144 |
Bad global handle.
|
145 |
|
146 |
LZERROR_GLOBLOCK = -6
|
147 |
|
148 |
|
149 |
Insufficient memory for LZFile
|
150 |
structure.
|
151 |
|
152 |
LZERROR_GLOBALLOC = -5
|
153 |
|
154 |
|
155 |
Out of space for output file.
|
156 |
|
157 |
LZERROR_WRITE = -4
|
158 |
|
159 |
|
160 |
Corrupt compressed file
|
161 |
format.
|
162 |
|
163 |
LZERROR_READ = -3
|
164 |
|
165 |
|
166 |
Invalid output handle.
|
167 |
|
168 |
LZERROR_BADOUTHANDLE = -2
|
169 |
|
170 |
|
171 |
Invalid input handle.
|
172 |
|
173 |
LZERROR_BADINHANDLE = -1
|
174 |
|
175 |
|
176 |
No error.
|
177 |
|
178 |
NO_ERROR = 0L
|
179 |
|
180 |
|
181 |
The operation was successfully
|
182 |
completed.
|
183 |
|
184 |
ERROR_SUCCESS = 0L
|
185 |
|
186 |
|
187 |
The function is incorrect.
|
188 |
|
189 |
ERROR_INVALID_FUNCTION = 1L
|
190 |
|
191 |
|
192 |
The system cannot find the
|
193 |
file specified.
|
194 |
|
195 |
ERROR_FILE_NOT_FOUND = 2L
|
196 |
|
197 |
|
198 |
The system cannot find the
|
199 |
specified path.
|
200 |
|
201 |
ERROR_PATH_NOT_FOUND = 3L
|
202 |
|
203 |
|
204 |
The system cannot open the
|
205 |
file.
|
206 |
|
207 |
ERROR_TOO_MANY_OPEN_FILES = 4L
|
208 |
|
209 |
|
210 |
Access is denied.
|
211 |
|
212 |
ERROR_ACCESS_DENIED = 5L
|
213 |
|
214 |
|
215 |
The internal file identifier
|
216 |
is incorrect.
|
217 |
|
218 |
ERROR_INVALID_HANDLE = 6L
|
219 |
|
220 |
|
221 |
The storage control blocks
|
222 |
were destroyed.
|
223 |
|
224 |
ERROR_ARENA_TRASHED = 7L
|
225 |
|
226 |
|
227 |
Not enough storage is
|
228 |
available to process this
|
229 |
command.
|
230 |
|
231 |
ERROR_NOT_ENOUGH_MEMORY = 8L
|
232 |
|
233 |
|
234 |
The storage control block
|
235 |
address is invalid.
|
236 |
|
237 |
ERROR_INVALID_BLOCK = 9L
|
238 |
|
239 |
|
240 |
The environment is incorrect.
|
241 |
|
242 |
ERROR_BAD_ENVIRONMENT = 10L
|
243 |
|
244 |
|
245 |
An attempt was made to load a
|
246 |
program with an incorrect
|
247 |
format.
|
248 |
|
249 |
ERROR_BAD_FORMAT = 11L
|
250 |
|
251 |
|
252 |
The access code is invalid.
|
253 |
|
254 |
ERROR_INVALID_ACCESS = 12L
|
255 |
|
256 |
|
257 |
The data is invalid.
|
258 |
|
259 |
ERROR_INVALID_DATA = 13L
|
260 |
|
261 |
|
262 |
Not enough storage is
|
263 |
available to complete this
|
264 |
operation.
|
265 |
|
266 |
ERROR_OUTOFMEMORY = 14L
|
267 |
|
268 |
|
269 |
The system cannot find the
|
270 |
specified drive.
|
271 |
|
272 |
ERROR_INVALID_DRIVE = 15L
|
273 |
|
274 |
|
275 |
The directory cannot be
|
276 |
removed.
|
277 |
|
278 |
ERROR_CURRENT_DIRECTORY = 16L
|
279 |
|
280 |
|
281 |
The system cannot move the
|
282 |
file to a different disk
|
283 |
drive.
|
284 |
|
285 |
ERROR_NOT_SAME_DEVICE = 17L
|
286 |
|
287 |
|
288 |
There are no more files.
|
289 |
|
290 |
ERROR_NO_MORE_FILES = 18L
|
291 |
|
292 |
|
293 |
The media is write protected.
|
294 |
|
295 |
ERROR_WRITE_PROTECT = 19L
|
296 |
|
297 |
|
298 |
The system cannot find the
|
299 |
specified device.
|
300 |
|
301 |
ERROR_BAD_UNIT = 20L
|
302 |
|
303 |
|
304 |
The drive is not ready.
|
305 |
|
306 |
ERROR_NOT_READY = 21L
|
307 |
|
308 |
|
309 |
The device does not recognize
|
310 |
the command.
|
311 |
|
312 |
ERROR_BAD_COMMAND = 22L
|
313 |
|
314 |
|
315 |
Data error (cyclic redundancy
|
316 |
check).
|
317 |
|
318 |
ERROR_CRC = 23L
|
319 |
|
320 |
|
321 |
The program issued a command
|
322 |
but the command length is
|
323 |
incorrect.
|
324 |
|
325 |
ERROR_BAD_LENGTH = 24L
|
326 |
|
327 |
|
328 |
The drive cannot locate a
|
329 |
specific area or track on the
|
330 |
disk.
|
331 |
|
332 |
ERROR_SEEK = 25L
|
333 |
|
334 |
|
335 |
The specified disk cannot be
|
336 |
accessed.
|
337 |
|
338 |
ERROR_NOT_DOS_DISK = 26L
|
339 |
|
340 |
|
341 |
The drive cannot find the
|
342 |
requested sector.
|
343 |
|
344 |
ERROR_SECTOR_NOT_FOUND = 27L
|
345 |
|
346 |
|
347 |
The printer is out of paper.
|
348 |
|
349 |
ERROR_OUT_OF_PAPER = 28L
|
350 |
|
351 |
|
352 |
The system cannot write to the
|
353 |
specified device.
|
354 |
|
355 |
ERROR_WRITE_FAULT = 29L
|
356 |
|
357 |
|
358 |
The system cannot read from
|
359 |
the specified device.
|
360 |
|
361 |
ERROR_READ_FAULT = 30L
|
362 |
|
363 |
|
364 |
A device attached to the
|
365 |
system is not functioning.
|
366 |
|
367 |
ERROR_GEN_FAILURE = 31L
|
368 |
|
369 |
|
370 |
The process cannot access the
|
371 |
file because it is being used
|
372 |
by another process.
|
373 |
|
374 |
ERROR_SHARING_VIOLATION = 32L
|
375 |
|
376 |
|
377 |
The process cannot access the
|
378 |
file because another process
|
379 |
has locked a portion of the
|
380 |
file.
|
381 |
|
382 |
ERROR_LOCK_VIOLATION = 33L
|
383 |
|
384 |
|
385 |
The wrong disk is in the
|
386 |
drive. Insert %2 (Volume
|
387 |
Serial Number: %3) into drive
|
388 |
%1.
|
389 |
|
390 |
ERROR_WRONG_DISK = 34L
|
391 |
|
392 |
|
393 |
Too many files opened for
|
394 |
sharing.
|
395 |
|
396 |
ERROR_SHARING_BUFFER_EXCEEDED = 36L
|
397 |
|
398 |
|
399 |
Reached End Of File.
|
400 |
|
401 |
ERROR_HANDLE_EOF = 38L
|
402 |
|
403 |
|
404 |
The disk is full.
|
405 |
|
406 |
ERROR_HANDLE_DISK_FULL = 39L
|
407 |
|
408 |
|
409 |
The network request is not
|
410 |
supported.
|
411 |
|
412 |
ERROR_NOT_SUPPORTED = 50L
|
413 |
|
414 |
|
415 |
The remote computer is not
|
416 |
available.
|
417 |
|
418 |
ERROR_REM_NOT_LIST = 51L
|
419 |
|
420 |
|
421 |
A duplicate name exists on the
|
422 |
network.
|
423 |
|
424 |
|
425 |
ERROR_DUP_NAME = 52L
|
426 |
|
427 |
|
428 |
The network path was not
|
429 |
found.
|
430 |
|
431 |
ERROR_BAD_NETPATH = 53L
|
432 |
|
433 |
|
434 |
The network is busy.
|
435 |
|
436 |
ERROR_NETWORK_BUSY = 54L
|
437 |
|
438 |
|
439 |
The specified network resource
|
440 |
is no longer available.
|
441 |
|
442 |
ERROR_DEV_NOT_EXIST = 55L
|
443 |
|
444 |
|
445 |
The network BIOS command limit
|
446 |
has been reached.
|
447 |
|
448 |
ERROR_TOO_MANY_CMDS = 56L
|
449 |
|
450 |
|
451 |
A network adapter hardware
|
452 |
error occurred.
|
453 |
|
454 |
ERROR_ADAP_HDW_ERR = 57L
|
455 |
|
456 |
|
457 |
The specified server cannot
|
458 |
perform the requested
|
459 |
operation.
|
460 |
|
461 |
ERROR_BAD_NET_RESP = 58L
|
462 |
|
463 |
|
464 |
An unexpected network error
|
465 |
occurred.
|
466 |
|
467 |
ERROR_UNEXP_NET_ERR = 59L
|
468 |
|
469 |
|
470 |
The remote adapter is not
|
471 |
compatible.
|
472 |
|
473 |
ERROR_BAD_REM_ADAP = 60L
|
474 |
|
475 |
|
476 |
The printer queue is full.
|
477 |
|
478 |
ERROR_PRINTQ_FULL = 61L
|
479 |
|
480 |
|
481 |
Space to store the file
|
482 |
waiting to be printed is not
|
483 |
available on the server.
|
484 |
|
485 |
ERROR_NO_SPOOL_SPACE = 62L
|
486 |
|
487 |
|
488 |
File waiting to be printed was
|
489 |
deleted.
|
490 |
|
491 |
ERROR_PRINT_CANCELLED = 63L
|
492 |
|
493 |
|
494 |
The specified network name is
|
495 |
no longer available.
|
496 |
|
497 |
ERROR_NETNAME_DELETED = 64L
|
498 |
|
499 |
|
500 |
Network access is denied.
|
501 |
|
502 |
ERROR_NETWORK_ACCESS_DENIED = 65L
|
503 |
|
504 |
|
505 |
The network resource type is
|
506 |
incorrect.
|
507 |
|
508 |
ERROR_BAD_DEV_TYPE = 66L
|
509 |
|
510 |
|
511 |
The network name cannot be
|
512 |
found.
|
513 |
|
514 |
ERROR_BAD_NET_NAME = 67L
|
515 |
|
516 |
|
517 |
The name limit for the local
|
518 |
computer network adapter card
|
519 |
exceeded.
|
520 |
|
521 |
ERROR_TOO_MANY_NAMES = 68L
|
522 |
|
523 |
|
524 |
The network BIOS session limit
|
525 |
exceeded.
|
526 |
|
527 |
ERROR_TOO_MANY_SESS = 69L
|
528 |
|
529 |
|
530 |
The remote server is paused or
|
531 |
is in the process of being
|
532 |
started.
|
533 |
|
534 |
ERROR_SHARING_PAUSED = 70L
|
535 |
|
536 |
|
537 |
The network request was not
|
538 |
accepted.
|
539 |
|
540 |
ERROR_REQ_NOT_ACCEP = 71L
|
541 |
|
542 |
|
543 |
The specified printer or disk
|
544 |
device has been paused.
|
545 |
|
546 |
ERROR_REDIR_PAUSED = 72L
|
547 |
|
548 |
|
549 |
The file exists.
|
550 |
|
551 |
ERROR_FILE_EXISTS = 80L
|
552 |
|
553 |
|
554 |
The directory or file cannot
|
555 |
be created.
|
556 |
|
557 |
ERROR_CANNOT_MAKE = 82L
|
558 |
|
559 |
|
560 |
Fail on INT 24.
|
561 |
|
562 |
ERROR_FAIL_I24 = 83L
|
563 |
|
564 |
|
565 |
Storage to process this
|
566 |
request is not available.
|
567 |
|
568 |
ERROR_OUT_OF_STRUCTURES = 84L
|
569 |
|
570 |
|
571 |
The local device name is
|
572 |
already in use.
|
573 |
|
574 |
ERROR_ALREADY_ASSIGNED = 85L
|
575 |
|
576 |
|
577 |
The specified network password
|
578 |
is incorrect.
|
579 |
|
580 |
ERROR_INVALID_PASSWORD = 86L
|
581 |
|
582 |
|
583 |
The parameter is incorrect.
|
584 |
|
585 |
ERROR_INVALID_PARAMETER = 87L
|
586 |
|
587 |
|
588 |
A write fault occurred on the
|
589 |
network.
|
590 |
|
591 |
ERROR_NET_WRITE_FAULT = 88L
|
592 |
|
593 |
|
594 |
The system cannot start
|
595 |
another process at this time.
|
596 |
|
597 |
ERROR_NO_PROC_SLOTS = 89L
|
598 |
|
599 |
|
600 |
Cannot create another system
|
601 |
semaphore.
|
602 |
|
603 |
ERROR_TOO_MANY_SEMAPHORES = 100L
|
604 |
|
605 |
|
606 |
The exclusive semaphore is
|
607 |
owned by another process.
|
608 |
|
609 |
ERROR_EXCL_SEM_ALREADY_OWNED = 101L
|
610 |
|
611 |
|
612 |
The semaphore is set and
|
613 |
cannot be closed.
|
614 |
|
615 |
ERROR_SEM_IS_SET = 102L
|
616 |
|
617 |
|
618 |
The semaphore cannot be set
|
619 |
again.
|
620 |
|
621 |
ERROR_TOO_MANY_SEM_REQUESTS = 103L
|
622 |
|
623 |
|
624 |
Cannot request exclusive
|
625 |
semaphores at interrupt time.
|
626 |
|
627 |
ERROR_INVALID_AT_INTERRUPT_TIME = 104L
|
628 |
|
629 |
|
630 |
The previous ownership of this
|
631 |
semaphore has ended.
|
632 |
|
633 |
ERROR_SEM_OWNER_DIED = 105L
|
634 |
|
635 |
|
636 |
Insert the disk for drive 1.
|
637 |
|
638 |
ERROR_SEM_USER_LIMIT = 106L
|
639 |
|
640 |
|
641 |
Program stopped because
|
642 |
alternate disk was not
|
643 |
inserted.
|
644 |
|
645 |
ERROR_DISK_CHANGE = 107L
|
646 |
|
647 |
|
648 |
The disk is in use or locked
|
649 |
by another process.
|
650 |
|
651 |
ERROR_DRIVE_LOCKED = 108L
|
652 |
|
653 |
|
654 |
The pipe was ended.
|
655 |
|
656 |
ERROR_BROKEN_PIPE = 109L
|
657 |
|
658 |
|
659 |
The system cannot open the
|
660 |
specified device or file.
|
661 |
|
662 |
ERROR_OPEN_FAILED = 110L
|
663 |
|
664 |
|
665 |
The file name is too long.
|
666 |
|
667 |
ERROR_BUFFER_OVERFLOW = 111L
|
668 |
|
669 |
|
670 |
There is not enough space on
|
671 |
the disk.
|
672 |
|
673 |
ERROR_DISK_FULL = 112L
|
674 |
|
675 |
|
676 |
No more internal file
|
677 |
identifiers available.
|
678 |
|
679 |
ERROR_NO_MORE_SEARCH_HANDLES = 113L
|
680 |
|
681 |
|
682 |
The target internal file
|
683 |
identifier is incorrect.
|
684 |
|
685 |
ERROR_INVALID_TARGET_HANDLE = 114L
|
686 |
|
687 |
|
688 |
The IOCTL call made by the
|
689 |
application program is
|
690 |
incorrect.
|
691 |
|
692 |
ERROR_INVALID_CATEGORY = 117L
|
693 |
|
694 |
|
695 |
The verify-on-write switch
|
696 |
parameter value is incorrect.
|
697 |
|
698 |
ERROR_INVALID_VERIFY_SWITCH = 118L
|
699 |
|
700 |
|
701 |
The system does not support
|
702 |
the requested command.
|
703 |
|
704 |
ERROR_BAD_DRIVER_LEVEL = 119L
|
705 |
|
706 |
|
707 |
The Application Program
|
708 |
Interface (API) entered will
|
709 |
only work in Windows/NT mode.
|
710 |
|
711 |
ERROR_CALL_NOT_IMPLEMENTED = 120L
|
712 |
|
713 |
|
714 |
The semaphore timeout period
|
715 |
has expired.
|
716 |
|
717 |
ERROR_SEM_TIMEOUT = 121L
|
718 |
|
719 |
|
720 |
The data area passed to a
|
721 |
system call is too small.
|
722 |
|
723 |
ERROR_INSUFFICIENT_BUFFER = 122L
|
724 |
|
725 |
|
726 |
The file name, directory name,
|
727 |
or volume label is
|
728 |
syntactically incorrect.
|
729 |
|
730 |
ERROR_INVALID_NAME = 123L
|
731 |
|
732 |
|
733 |
The system call level is
|
734 |
incorrect.
|
735 |
|
736 |
ERROR_INVALID_LEVEL = 124L
|
737 |
|
738 |
|
739 |
The disk has no volume label.
|
740 |
|
741 |
ERROR_NO_VOLUME_LABEL = 125L
|
742 |
|
743 |
|
744 |
The specified module cannot be
|
745 |
found.
|
746 |
|
747 |
ERROR_MOD_NOT_FOUND = 126L
|
748 |
|
749 |
|
750 |
The specified procedure could
|
751 |
not be found.
|
752 |
|
753 |
ERROR_PROC_NOT_FOUND = 127L
|
754 |
|
755 |
|
756 |
There are no child processes
|
757 |
to wait for.
|
758 |
|
759 |
ERROR_WAIT_NO_CHILDREN = 128L
|
760 |
|
761 |
|
762 |
The %1 application cannot be
|
763 |
run in Windows mode.
|
764 |
|
765 |
ERROR_CHILD_NOT_COMPLETE = 129L
|
766 |
|
767 |
|
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 |
|
773 |
ERROR_DIRECT_ACCESS_HANDLE = 130L
|
774 |
|
775 |
|
776 |
An attempt was made to move
|
777 |
the file pointer before the
|
778 |
beginning of the file.
|
779 |
|
780 |
ERROR_NEGATIVE_SEEK = 131L
|
781 |
|
782 |
|
783 |
The file pointer cannot be set
|
784 |
on the specified device or
|
785 |
file.
|
786 |
|
787 |
ERROR_SEEK_ON_DEVICE = 132L
|
788 |
|
789 |
|
790 |
A JOIN or SUBST command cannot
|
791 |
be used for a drive that
|
792 |
contains previously joined
|
793 |
drives.
|
794 |
|
795 |
ERROR_IS_JOIN_TARGET = 133L
|
796 |
|
797 |
|
798 |
An attempt was made to use a
|
799 |
JOIN or SUBST command on a
|
800 |
drive that is already joined.
|
801 |
|
802 |
ERROR_IS_JOINED = 134L
|
803 |
|
804 |
|
805 |
An attempt was made to use a
|
806 |
JOIN or SUBST command on a
|
807 |
drive already substituted.
|
808 |
|
809 |
ERROR_IS_SUBSTED = 135L
|
810 |
|
811 |
|
812 |
The system attempted to delete
|
813 |
the JOIN of a drive not
|
814 |
previously joined.
|
815 |
|
816 |
ERROR_NOT_JOINED = 136L
|
817 |
|
818 |
|
819 |
The system attempted to delete
|
820 |
the substitution of a drive
|
821 |
not previously substituted.
|
822 |
|
823 |
ERROR_NOT_SUBSTED = 137L
|
824 |
|
825 |
|
826 |
The system tried to join a
|
827 |
drive to a directory on a
|
828 |
joined drive.
|
829 |
|
830 |
ERROR_JOIN_TO_JOIN = 138L
|
831 |
|
832 |
|
833 |
The system attempted to
|
834 |
substitute a drive to a
|
835 |
directory on a substituted
|
836 |
drive.
|
837 |
|
838 |
ERROR_SUBST_TO_SUBST = 139L
|
839 |
|
840 |
|
841 |
The system tried to join a
|
842 |
drive to a directory on a
|
843 |
substituted drive.
|
844 |
|
845 |
ERROR_JOIN_TO_SUBST = 140L
|
846 |
|
847 |
|
848 |
The system attempted to SUBST
|
849 |
a drive to a directory on a
|
850 |
joined drive.
|
851 |
|
852 |
ERROR_SUBST_TO_JOIN = 141L
|
853 |
|
854 |
|
855 |
The system cannot perform a
|
856 |
JOIN or SUBST at this time.
|
857 |
|
858 |
ERROR_BUSY_DRIVE = 142L
|
859 |
|
860 |
|
861 |
The system cannot join or
|
862 |
substitute a drive to or for a
|
863 |
directory on the same drive.
|
864 |
|
865 |
ERROR_SAME_DRIVE = 143L
|
866 |
|
867 |
|
868 |
The directory is not a
|
869 |
subdirectory of the root
|
870 |
directory.
|
871 |
|
872 |
ERROR_DIR_NOT_ROOT = 144L
|
873 |
|
874 |
|
875 |
The directory is not empty.
|
876 |
|
877 |
ERROR_DIR_NOT_EMPTY = 145L
|
878 |
|
879 |
|
880 |
The path specified is being
|
881 |
used in a substitute.
|
882 |
|
883 |
ERROR_IS_SUBST_PATH = 146L
|
884 |
|
885 |
|
886 |
Not enough resources are
|
887 |
available to process this
|
888 |
command.
|
889 |
|
890 |
ERROR_IS_JOIN_PATH = 147L
|
891 |
|
892 |
|
893 |
The specified path cannot be
|
894 |
used at this time.
|
895 |
|
896 |
ERROR_PATH_BUSY = 148L
|
897 |
|
898 |
|
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 |
|
905 |
ERROR_IS_SUBST_TARGET = 149L
|
906 |
|
907 |
|
908 |
System trace information not
|
909 |
specified in your CONFIG.SYS
|
910 |
file, or tracing is not
|
911 |
allowed.
|
912 |
|
913 |
ERROR_SYSTEM_TRACE = 150L
|
914 |
|
915 |
|
916 |
The number of specified
|
917 |
semaphore events is incorrect.
|
918 |
|
919 |
ERROR_INVALID_EVENT_COUNT = 151L
|
920 |
|
921 |
|
922 |
Too many semaphores are
|
923 |
already set.
|
924 |
|
925 |
ERROR_TOO_MANY_MUXWAITERS = 152L
|
926 |
|
927 |
|
928 |
The list is not correct.
|
929 |
|
930 |
ERROR_INVALID_LIST_FORMAT = 153L
|
931 |
|
932 |
|
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 |
|
941 |
ERROR_LABEL_TOO_LONG = 154L
|
942 |
|
943 |
|
944 |
Cannot create another thread.
|
945 |
|
946 |
ERROR_TOO_MANY_TCBS = 155L
|
947 |
|
948 |
|
949 |
The recipient process has
|
950 |
refused the signal.
|
951 |
|
952 |
ERROR_SIGNAL_REFUSED = 156L
|
953 |
|
954 |
|
955 |
The segment is already
|
956 |
discarded and cannot be
|
957 |
locked.
|
958 |
|
959 |
ERROR_DISCARDED = 157L
|
960 |
|
961 |
|
962 |
The segment is already
|
963 |
unlocked.
|
964 |
|
965 |
ERROR_NOT_LOCKED = 158L
|
966 |
|
967 |
|
968 |
The address for the thread ID
|
969 |
is incorrect.
|
970 |
|
971 |
ERROR_BAD_THREADID_ADDR = 159L
|
972 |
|
973 |
|
974 |
The argument string passed to
|
975 |
DosExecPgm is incorrect.
|
976 |
|
977 |
ERROR_BAD_ARGUMENTS = 160L
|
978 |
|
979 |
|
980 |
The specified path name is
|
981 |
invalid.
|
982 |
|
983 |
ERROR_BAD_PATHNAME = 161L
|
984 |
|
985 |
|
986 |
A signal is already pending.
|
987 |
|
988 |
ERROR_SIGNAL_PENDING = 162L
|
989 |
|
990 |
|
991 |
No more threads can be created
|
992 |
in the system.
|
993 |
|
994 |
ERROR_MAX_THRDS_REACHED = 164L
|
995 |
|
996 |
|
997 |
Attempt to lock a region of a
|
998 |
file failed.
|
999 |
|
1000 |
ERROR_LOCK_FAILED = 167L
|
1001 |
|
1002 |
|
1003 |
The requested resource is in
|
1004 |
use.
|
1005 |
|
1006 |
ERROR_BUSY = 170L
|
1007 |
|
1008 |
|
1009 |
A lock request was not
|
1010 |
outstanding for the supplied
|
1011 |
cancel region.
|
1012 |
|
1013 |
ERROR_CANCEL_VIOLATION = 173L
|
1014 |
|
1015 |
|
1016 |
The file system does not
|
1017 |
support atomic changing of the
|
1018 |
lock type.
|
1019 |
|
1020 |
ERROR_ATOMIC_LOCKS_NOT_SUPPORTED = 174L
|
1021 |
|
1022 |
|
1023 |
The system detected a segment
|
1024 |
number that is incorrect.
|
1025 |
|
1026 |
ERROR_INVALID_SEGMENT_NUMBER = 180L
|
1027 |
|
1028 |
|
1029 |
The operating system cannot
|
1030 |
run %1.
|
1031 |
|
1032 |
ERROR_INVALID_ORDINAL = 182L
|
1033 |
|
1034 |
|
1035 |
Attempt to create file that
|
1036 |
already exists.
|
1037 |
|
1038 |
ERROR_ALREADY_EXISTS = 183L
|
1039 |
|
1040 |
|
1041 |
The flag passed is incorrect.
|
1042 |
|
1043 |
ERROR_INVALID_FLAG_NUMBER = 186L
|
1044 |
|
1045 |
|
1046 |
The specified system semaphore
|
1047 |
name was not found.
|
1048 |
|
1049 |
ERROR_SEM_NOT_FOUND = 187L
|
1050 |
|
1051 |
|
1052 |
The operating system cannot
|
1053 |
run %1.
|
1054 |
|
1055 |
ERROR_INVALID_STARTING_CODESEG = 188L
|
1056 |
|
1057 |
|
1058 |
The operating system cannot
|
1059 |
run %1.
|
1060 |
|
1061 |
ERROR_INVALID_STACKSEG = 189L
|
1062 |
|
1063 |
|
1064 |
The operating system cannot
|
1065 |
run %1.
|
1066 |
|
1067 |
ERROR_INVALID_MODULETYPE = 190L
|
1068 |
|
1069 |
|
1070 |
%1 cannot be run in Windows/NT
|
1071 |
mode.
|
1072 |
|
1073 |
ERROR_INVALID_EXE_SIGNATURE = 191L
|
1074 |
|
1075 |
|
1076 |
The operating system cannot
|
1077 |
run %1.
|
1078 |
|
1079 |
ERROR_EXE_MARKED_INVALID = 192L
|
1080 |
|
1081 |
|
1082 |
%1 is not a valid Windows-
|
1083 |
based application.
|
1084 |
|
1085 |
ERROR_BAD_EXE_FORMAT = 193L
|
1086 |
|
1087 |
|
1088 |
The operating system cannot
|
1089 |
run %1.
|
1090 |
|
1091 |
ERROR_ITERATED_DATA_EXCEEDS_64k = 194L
|
1092 |
|
1093 |
|
1094 |
The operating system cannot
|
1095 |
run %1.
|
1096 |
|
1097 |
ERROR_INVALID_MINALLOCSIZE = 195L
|
1098 |
|
1099 |
|
1100 |
The operating system cannot
|
1101 |
run this application program.
|
1102 |
|
1103 |
ERROR_DYNLINK_FROM_INVALID_RING = 196L
|
1104 |
|
1105 |
|
1106 |
The operating system is not
|
1107 |
presently configured to run
|
1108 |
this application.
|
1109 |
|
1110 |
ERROR_IOPL_NOT_ENABLED = 197L
|
1111 |
|
1112 |
|
1113 |
The operating system cannot
|
1114 |
run %1.
|
1115 |
|
1116 |
ERROR_INVALID_SEGDPL = 198L
|
1117 |
|
1118 |
|
1119 |
The operating system cannot
|
1120 |
run this application program.
|
1121 |
|
1122 |
ERROR_AUTODATASEG_EXCEEDS_64k = 199L
|
1123 |
|
1124 |
|
1125 |
The code segment cannot be
|
1126 |
greater than or equal to 64KB.
|
1127 |
|
1128 |
ERROR_RING2SEG_MUST_BE_MOVABLE = 200L
|
1129 |
|
1130 |
|
1131 |
The operating system cannot
|
1132 |
run %1.
|
1133 |
|
1134 |
ERROR_RELOC_CHAIN_XEEDS_SEGLIM = 201L
|
1135 |
|
1136 |
|
1137 |
The operating system cannot
|
1138 |
run %1.
|
1139 |
|
1140 |
ERROR_INFLOOP_IN_RELOC_CHAIN = 202L
|
1141 |
|
1142 |
|
1143 |
The system could not find the
|
1144 |
environment option entered.
|
1145 |
|
1146 |
ERROR_ENVVAR_NOT_FOUND = 203L
|
1147 |
|
1148 |
|
1149 |
No process in the command
|
1150 |
subtree has a signal handler.
|
1151 |
|
1152 |
ERROR_NO_SIGNAL_SENT = 205L
|
1153 |
|
1154 |
|
1155 |
The file name or extension is
|
1156 |
too long.
|
1157 |
|
1158 |
ERROR_FILENAME_EXCED_RANGE = 206L
|
1159 |
|
1160 |
|
1161 |
The ring 2 stack is in use.
|
1162 |
|
1163 |
ERROR_RING2_STACK_IN_USE = 207L
|
1164 |
|
1165 |
|
1166 |
The global filename characters
|
1167 |
* or ? are entered
|
1168 |
incorrectly, or too many
|
1169 |
global filename characters are
|
1170 |
specified.
|
1171 |
|
1172 |
ERROR_META_EXPANSION_TOO_LONG = 208L
|
1173 |
|
1174 |
|
1175 |
The signal being posted is
|
1176 |
incorrect.
|
1177 |
|
1178 |
ERROR_INVALID_SIGNAL_NUMBER = 209L
|
1179 |
|
1180 |
|
1181 |
The signal handler cannot be
|
1182 |
set.
|
1183 |
|
1184 |
ERROR_THREAD_1_INACTIVE = 210L
|
1185 |
|
1186 |
|
1187 |
The segment is locked and
|
1188 |
cannot be reallocated.
|
1189 |
|
1190 |
ERROR_LOCKED = 212L
|
1191 |
|
1192 |
|
1193 |
Too many dynamic link modules
|
1194 |
are attached to this program
|
1195 |
or dynamic link module.
|
1196 |
|
1197 |
ERROR_TOO_MANY_MODULES = 214L
|
1198 |
|
1199 |
|
1200 |
Can
|
1201 |
LoadModule.
|
1202 |
|
1203 |
ERROR_NESTING_NOT_ALLOWED = 215L
|
1204 |
|
1205 |
|
1206 |
The pipe state is invalid.
|
1207 |
|
1208 |
ERROR_BAD_PIPE = 230L
|
1209 |
|
1210 |
|
1211 |
All pipe instances busy.
|
1212 |
|
1213 |
ERROR_PIPE_BUSY = 231L
|
1214 |
|
1215 |
|
1216 |
Pipe close in progress.
|
1217 |
|
1218 |
ERROR_NO_DATA = 232L
|
1219 |
|
1220 |
|
1221 |
No process on other end of
|
1222 |
pipe.
|
1223 |
|
1224 |
ERROR_PIPE_NOT_CONNECTED = 233L
|
1225 |
|
1226 |
|
1227 |
More data is available.
|
1228 |
|
1229 |
ERROR_MORE_DATA = 234L
|
1230 |
|
1231 |
|
1232 |
The session was canceled.
|
1233 |
|
1234 |
ERROR_VC_DISCONNECTED = 240L
|
1235 |
|
1236 |
|
1237 |
The specified EA name is
|
1238 |
invalid.
|
1239 |
|
1240 |
ERROR_INVALID_EA_NAME = 254L
|
1241 |
|
1242 |
|
1243 |
The EAs are inconsistent.
|
1244 |
|
1245 |
ERROR_EA_LIST_INCONSISTENT = 255L
|
1246 |
|
1247 |
|
1248 |
No more data is available.
|
1249 |
|
1250 |
ERROR_NO_MORE_ITEMS = 259L
|
1251 |
|
1252 |
|
1253 |
The Copy API cannot be used.
|
1254 |
|
1255 |
ERROR_CANNOT_COPY = 266L
|
1256 |
|
1257 |
|
1258 |
The directory name is invalid.
|
1259 |
|
1260 |
ERROR_DIRECTORY = 267L
|
1261 |
|
1262 |
|
1263 |
The EAs did not fit in the
|
1264 |
buffer.
|
1265 |
|
1266 |
ERROR_EAS_DIDNT_FIT = 275L
|
1267 |
|
1268 |
|
1269 |
The EA file on the mounted
|
1270 |
file system is damaged.
|
1271 |
|
1272 |
ERROR_EA_FILE_CORRUPT = 276L
|
1273 |
|
1274 |
|
1275 |
The EA table in the EA file on
|
1276 |
the mounted file system is
|
1277 |
full.
|
1278 |
|
1279 |
ERROR_EA_TABLE_FULL = 277L
|
1280 |
|
1281 |
|
1282 |
The specified EA handle is
|
1283 |
invalid.
|
1284 |
|
1285 |
ERROR_INVALID_EA_HANDLE = 278L
|
1286 |
|
1287 |
|
1288 |
The mounted file system does
|
1289 |
not support extended
|
1290 |
attributes.
|
1291 |
|
1292 |
ERROR_EAS_NOT_SUPPORTED = 282L
|
1293 |
|
1294 |
|
1295 |
Attempt to release mutex not
|
1296 |
owned by caller.
|
1297 |
|
1298 |
ERROR_NOT_OWNER = 288L
|
1299 |
|
1300 |
|
1301 |
Too many posts made to a
|
1302 |
semaphore.
|
1303 |
|
1304 |
ERROR_TOO_MANY_POSTS = 298L
|
1305 |
|
1306 |
|
1307 |
Only part of a
|
1308 |
Read/WriteProcessMemory
|
1309 |
request was completed.
|
1310 |
|
1311 |
ERROR_PARTIAL_COPY = 299L
|
1312 |
|
1313 |
|
1314 |
The system cannot find message
|
1315 |
for message number 0x%1 in
|
1316 |
message file for %2.
|
1317 |
|
1318 |
ERROR_MR_MID_NOT_FOUND = 317L
|
1319 |
|
1320 |
|
1321 |
Attempt to access invalid
|
1322 |
address.
|
1323 |
|
1324 |
ERROR_INVALID_ADDRESS = 487L
|
1325 |
|
1326 |
|
1327 |
Arithmetic result exceeded 32-
|
1328 |
bits.
|
1329 |
|
1330 |
ERROR_ARITHMETIC_OVERFLOW = 534L
|
1331 |
|
1332 |
|
1333 |
There is a process on other
|
1334 |
end of the pipe.
|
1335 |
|
1336 |
ERROR_PIPE_CONNECTED = 535L
|
1337 |
|
1338 |
|
1339 |
Waiting for a process to open
|
1340 |
the other end of the pipe.
|
1341 |
|
1342 |
ERROR_PIPE_LISTENING = 536L
|
1343 |
|
1344 |
|
1345 |
Access to the EA is denied.
|
1346 |
|
1347 |
ERROR_EA_ACCESS_DENIED = 994L
|
1348 |
|
1349 |
|
1350 |
The I/O operation was aborted
|
1351 |
due to either thread exit or
|
1352 |
application request.
|
1353 |
|
1354 |
ERROR_OPERATION_ABORTED = 995L
|
1355 |
|
1356 |
|
1357 |
Overlapped IO event not in
|
1358 |
signaled state.
|
1359 |
|
1360 |
ERROR_IO_INCOMPLETE = 996L
|
1361 |
|
1362 |
|
1363 |
Overlapped IO operation in
|
1364 |
progress.
|
1365 |
|
1366 |
ERROR_IO_PENDING = 997L
|
1367 |
|
1368 |
|
1369 |
Invalid access to memory
|
1370 |
location.
|
1371 |
|
1372 |
ERROR_NOACCESS = 998L
|
1373 |
|
1374 |
|
1375 |
Error accessing paging file.
|
1376 |
|
1377 |
ERROR_SWAPERROR = 999L
|
1378 |
|
1379 |
|
1380 |
Recursion too deep, stack
|
1381 |
overflowed.
|
1382 |
|
1383 |
ERROR_STACK_OVERFLOW = 1001L
|
1384 |
|
1385 |
|
1386 |
Window can
|
1387 |
message.
|
1388 |
|
1389 |
ERROR_INVALID_MESSAGE = 1002L
|
1390 |
|
1391 |
|
1392 |
Cannot complete function for
|
1393 |
some reason.
|
1394 |
|
1395 |
ERROR_CAN_NOT_COMPLETE = 1003L
|
1396 |
|
1397 |
|
1398 |
The flags are invalid.
|
1399 |
|
1400 |
ERROR_INVALID_FLAGS = 1004L
|
1401 |
|
1402 |
|
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 |
|
1409 |
ERROR_UNRECOGNIZED_VOLUME = 1005L
|
1410 |
|
1411 |
|
1412 |
The volume for a file was
|
1413 |
externally altered and the
|
1414 |
opened file is no longer
|
1415 |
valid.
|
1416 |
|
1417 |
ERROR_FILE_INVALID = 1006L
|
1418 |
|
1419 |
|
1420 |
The requested operation cannot
|
1421 |
be performed in full-screen
|
1422 |
mode.
|
1423 |
|
1424 |
ERROR_FULLSCREEN_MODE = 1007L
|
1425 |
|
1426 |
|
1427 |
An attempt was made to
|
1428 |
reference a token that does
|
1429 |
not exist.
|
1430 |
|
1431 |
ERROR_NO_TOKEN = 1008L
|
1432 |
|
1433 |
|
1434 |
The configuration registry
|
1435 |
database is damaged.
|
1436 |
|
1437 |
ERROR_BADDB = 1009L
|
1438 |
|
1439 |
|
1440 |
The configuration registry key
|
1441 |
is invalid.
|
1442 |
|
1443 |
ERROR_BADKEY = 1010L
|
1444 |
|
1445 |
|
1446 |
The configuration registry key
|
1447 |
cannot be opened.
|
1448 |
|
1449 |
ERROR_CANTOPEN = 1011L
|
1450 |
|
1451 |
|
1452 |
The configuration registry key
|
1453 |
cannot be read.
|
1454 |
|
1455 |
ERROR_CANTREAD = 1012L
|
1456 |
|
1457 |
|
1458 |
The configuration registry key
|
1459 |
cannot be written.
|
1460 |
|
1461 |
ERROR_CANTWRITE = 1013L
|
1462 |
|
1463 |
|
1464 |
One of the files containing
|
1465 |
the system
|
1466 |
to be recovered by use of a
|
1467 |
log or alternate copy. The
|
1468 |
recovery succeeded.
|
1469 |
|
1470 |
ERROR_REGISTRY_RECOVERED = 1014L
|
1471 |
|
1472 |
|
1473 |
The registry is damaged. The
|
1474 |
structure of one of the files
|
1475 |
that contains registry data is
|
1476 |
damaged, or the system
|
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 |
|
1483 |
ERROR_REGISTRY_CORRUPT = 1015L
|
1484 |
|
1485 |
|
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
|
1493 |
registry.
|
1494 |
|
1495 |
ERROR_REGISTRY_IO_FAILED = 1016L
|
1496 |
|
1497 |
|
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 |
|
1504 |
ERROR_NOT_REGISTRY_FILE = 1017L
|
1505 |
|
1506 |
|
1507 |
Illegal operation attempted on
|
1508 |
a registry key that has been
|
1509 |
marked for deletion.
|
1510 |
|
1511 |
ERROR_KEY_DELETED = 1018L
|
1512 |
|
1513 |
|
1514 |
System could not allocate
|
1515 |
required space in a registry
|
1516 |
log.
|
1517 |
|
1518 |
ERROR_NO_LOG_SPACE = 1019L
|
1519 |
|
1520 |
|
1521 |
An attempt was made to create
|
1522 |
a symbolic link in a registry
|
1523 |
key that already has subkeys
|
1524 |
or values.
|
1525 |
|
1526 |
ERROR_KEY_HAS_CHILDREN = 1020L
|
1527 |
|
1528 |
|
1529 |
An attempt was made to create
|
1530 |
a stable subkey under a
|
1531 |
volatile parent key.
|
1532 |
|
1533 |
ERROR_CHILD_MUST_BE_VOLATILE = 1021L
|
1534 |
|
1535 |
|
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
|
1541 |
now needs to enumerate the
|
1542 |
files to find the changes.
|
1543 |
|
1544 |
ERROR_NOTIFY_ENUM_DIR = 1022L
|
1545 |
|
1546 |
|
1547 |
A stop control has been sent
|
1548 |
to a service which other
|
1549 |
running services are dependent
|
1550 |
on.
|
1551 |
|
1552 |
ERROR_DEPENDENT_SERVICES_RUNNING = 1051L
|
1553 |
|
1554 |
|
1555 |
The requested control is not
|
1556 |
valid for this service.
|
1557 |
|
1558 |
ERROR_INVALID_SERVICE_CONTROL = 1052L
|
1559 |
|
1560 |
|
1561 |
The service did not respond to
|
1562 |
the start or control request
|
1563 |
in a timely fashion.
|
1564 |
|
1565 |
ERROR_SERVICE_REQUEST_TIMEOUT = 1053L
|
1566 |
|
1567 |
|
1568 |
A thread could not be created
|
1569 |
for the service.
|
1570 |
|
1571 |
ERROR_SERVICE_NO_THREAD = 1054L
|
1572 |
|
1573 |
|
1574 |
The service database is
|
1575 |
locked.
|
1576 |
|
1577 |
ERROR_SERVICE_DATABASE_LOCKED = 1055L
|
1578 |
|
1579 |
|
1580 |
An instance of the service is
|
1581 |
already running.
|
1582 |
|
1583 |
ERROR_SERVICE_ALREADY_RUNNING = 1056L
|
1584 |
|
1585 |
|
1586 |
The account name is invalid or
|
1587 |
does not exist.
|
1588 |
|
1589 |
ERROR_INVALID_SERVICE_ACCOUNT = 1057L
|
1590 |
|
1591 |
|
1592 |
The specified service is
|
1593 |
disabled and cannot be
|
1594 |
started.
|
1595 |
|
1596 |
ERROR_SERVICE_DISABLED = 1058L
|
1597 |
|
1598 |
|
1599 |
Circular service dependency
|
1600 |
was specified.
|
1601 |
|
1602 |
ERROR_CIRCULAR_DEPENDENCY = 1059L
|
1603 |
|
1604 |
|
1605 |
The specified service does not
|
1606 |
exist as an installed service.
|
1607 |
|
1608 |
ERROR_SERVICE_DOES_NOT_EXIST = 1060L
|
1609 |
|
1610 |
|
1611 |
The service cannot accept
|
1612 |
control messages at this time.
|
1613 |
|
1614 |
ERROR_SERVICE_CANNOT_ACCEPT_CTRL = 1061L
|
1615 |
|
1616 |
|
1617 |
The service has not been
|
1618 |
started.
|
1619 |
|
1620 |
ERROR_SERVICE_NOT_ACTIVE = 1062L
|
1621 |
|
1622 |
|
1623 |
The service process could
|
1624 |
not connect to the service
|
1625 |
controller.
|
1626 |
|
1627 |
ERROR_FAILED_SERVICE_CONTROLLER_CONNECT = 1063L
|
1628 |
|
1629 |
|
1630 |
An exception occurred in the
|
1631 |
service when handling the
|
1632 |
control request.
|
1633 |
|
1634 |
ERROR_EXCEPTION_IN_SERVICE = 1064L
|
1635 |
|
1636 |
|
1637 |
The database specified does
|
1638 |
not exist.
|
1639 |
|
1640 |
ERROR_DATABASE_DOES_NOT_EXIST = 1065L
|
1641 |
|
1642 |
|
1643 |
The service has returned a
|
1644 |
service-specific error code.
|
1645 |
|
1646 |
ERROR_SERVICE_SPECIFIC_ERROR = 1066L
|
1647 |
|
1648 |
|
1649 |
The process terminated
|
1650 |
unexpectedly.
|
1651 |
|
1652 |
ERROR_PROCESS_ABORTED = 1067L
|
1653 |
|
1654 |
|
1655 |
The dependency service or
|
1656 |
group failed to start.
|
1657 |
|
1658 |
ERROR_SERVICE_DEPENDENCY_FAIL = 1068L
|
1659 |
|
1660 |
|
1661 |
The service did not start due
|
1662 |
to a logon failure.
|
1663 |
|
1664 |
ERROR_SERVICE_LOGON_FAILED = 1069L
|
1665 |
|
1666 |
|
1667 |
After starting, the service
|
1668 |
hung in a start-pending state.
|
1669 |
|
1670 |
ERROR_SERVICE_START_HANG = 1070L
|
1671 |
|
1672 |
|
1673 |
The specified service database
|
1674 |
lock is invalid.
|
1675 |
|
1676 |
ERROR_INVALID_SERVICE_LOCK = 1071L
|
1677 |
|
1678 |
|
1679 |
The specified service has been
|
1680 |
marked for deletion.
|
1681 |
|
1682 |
ERROR_SERVICE_MARKED_FOR_DELETE = 1072L
|
1683 |
|
1684 |
|
1685 |
The specified service already
|
1686 |
exists.
|
1687 |
|
1688 |
ERROR_SERVICE_EXISTS = 1073L
|
1689 |
|
1690 |
|
1691 |
The system is currently
|
1692 |
running with the last-known-
|
1693 |
good configuration.
|
1694 |
|
1695 |
ERROR_ALREADY_RUNNING_LKG = 1074L
|
1696 |
|
1697 |
|
1698 |
The dependency service does
|
1699 |
not exist or has been marked
|
1700 |
for deletion.
|
1701 |
|
1702 |
ERROR_SERVICE_DEPENDENCY_DELETED = 1075L
|
1703 |
|
1704 |
|
1705 |
The current boot has already
|
1706 |
been accepted for use as the
|
1707 |
last-known-good control set.
|
1708 |
|
1709 |
ERROR_BOOT_ALREADY_ACCEPTED = 1076L
|
1710 |
|
1711 |
|
1712 |
No attempts to start the
|
1713 |
service have been made since
|
1714 |
the last boot.
|
1715 |
|
1716 |
ERROR_SERVICE_NEVER_STARTED = 1077L
|
1717 |
|
1718 |
|
1719 |
The name is already in use as
|
1720 |
either a service name or a
|
1721 |
service display name.
|
1722 |
|
1723 |
ERROR_DUPLICATE_SERVICE_NAME = 1078L
|
1724 |
|
1725 |
|
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 |
|
1732 |
ERROR_DIFFERENT_SERVICE_ACCOUNT = 1079L
|
1733 |
|
1734 |
|
1735 |
The physical end of the tape
|
1736 |
has been reached.
|
1737 |
|
1738 |
ERROR_END_OF_MEDIA = 1100L
|
1739 |
|
1740 |
|
1741 |
A tape access reached a
|
1742 |
filemark.
|
1743 |
|
1744 |
ERROR_FILEMARK_DETECTED = 1101L
|
1745 |
|
1746 |
|
1747 |
The beginning of the tape or
|
1748 |
partition was encountered.
|
1749 |
|
1750 |
ERROR_BEGINNING_OF_MEDIA = 1102L
|
1751 |
|
1752 |
|
1753 |
A tape access reached a
|
1754 |
setmark.
|
1755 |
|
1756 |
ERROR_SETMARK_DETECTED = 1103L
|
1757 |
|
1758 |
|
1759 |
During a tape access, the end
|
1760 |
of the data marker was
|
1761 |
reached.
|
1762 |
|
1763 |
ERROR_NO_DATA_DETECTED = 1104L
|
1764 |
|
1765 |
|
1766 |
Tape could not be partitioned.
|
1767 |
|
1768 |
ERROR_PARTITION_FAILURE = 1105L
|
1769 |
|
1770 |
|
1771 |
When accessing a new tape of a
|
1772 |
multivolume partition, the
|
1773 |
current block size is
|
1774 |
incorrect.
|
1775 |
|
1776 |
ERROR_INVALID_BLOCK_LENGTH = 1106L
|
1777 |
|
1778 |
|
1779 |
Tape partition information
|
1780 |
could not be found when
|
1781 |
loading a tape.
|
1782 |
|
1783 |
ERROR_DEVICE_NOT_PARTITIONED = 1107L
|
1784 |
|
1785 |
|
1786 |
Attempt to lock the eject
|
1787 |
media mechanism failed.
|
1788 |
|
1789 |
ERROR_UNABLE_TO_LOCK_MEDIA = 1108L
|
1790 |
|
1791 |
|
1792 |
Unload media failed.
|
1793 |
|
1794 |
ERROR_UNABLE_TO_UNLOAD_MEDIA = 1109L
|
1795 |
|
1796 |
|
1797 |
Media in drive may have
|
1798 |
changed.
|
1799 |
|
1800 |
ERROR_MEDIA_CHANGED = 1110L
|
1801 |
|
1802 |
|
1803 |
The I/O bus was reset.
|
1804 |
|
1805 |
ERROR_BUS_RESET = 1111L
|
1806 |
|
1807 |
|
1808 |
Tape query failed because of
|
1809 |
no media in drive.
|
1810 |
|
1811 |
ERROR_NO_MEDIA_IN_DRIVE = 1112L
|
1812 |
|
1813 |
|
1814 |
No mapping for the Unicode
|
1815 |
character exists in the target
|
1816 |
multi-byte code page.
|
1817 |
|
1818 |
ERROR_NO_UNICODE_TRANSLATION = 1113L
|
1819 |
|
1820 |
|
1821 |
A DLL initialization routine
|
1822 |
failed.
|
1823 |
|
1824 |
ERROR_DLL_INIT_FAILED = 1114L
|
1825 |
|
1826 |
|
1827 |
A system shutdown is in
|
1828 |
progress.
|
1829 |
|
1830 |
ERROR_SHUTDOWN_IN_PROGRESS = 1115L
|
1831 |
|
1832 |
|
1833 |
An attempt to abort the
|
1834 |
shutdown of the system failed
|
1835 |
because no shutdown was in
|
1836 |
progress.
|
1837 |
|
1838 |
ERROR_NO_SHUTDOWN_IN_PROGRESS = 1116L
|
1839 |
|
1840 |
|
1841 |
The request could not be
|
1842 |
performed because of an I/O
|
1843 |
device error.
|
1844 |
|
1845 |
ERROR_IO_DEVICE = 1117L
|
1846 |
|
1847 |
|
1848 |
No serial device was
|
1849 |
successfully initialized. The
|
1850 |
serial driver will unload.
|
1851 |
|
1852 |
ERROR_SERIAL_NO_DEVICE = 1118L
|
1853 |
|
1854 |
|
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 |
|
1862 |
ERROR_IRQ_BUSY = 1119L
|
1863 |
|
1864 |
|
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 |
|
1871 |
ERROR_MORE_WRITES = 1120L
|
1872 |
|
1873 |
|
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 |
|
1880 |
ERROR_COUNTER_TIMEOUT = 1121L
|
1881 |
|
1882 |
|
1883 |
No ID address mark was found
|
1884 |
on the floppy disk.
|
1885 |
|
1886 |
ERROR_FLOPPY_ID_MARK_NOT_FOUND = 1122L
|
1887 |
|
1888 |
|
1889 |
Mismatch between the floppy
|
1890 |
disk sector ID field and the
|
1891 |
floppy disk controller track
|
1892 |
address.
|
1893 |
|
1894 |
ERROR_FLOPPY_WRONG_CYLINDER = 1123L
|
1895 |
|
1896 |
|
1897 |
The floppy disk controller
|
1898 |
reported an error that is not
|
1899 |
recognized by the floppy disk
|
1900 |
driver.
|
1901 |
|
1902 |
ERROR_FLOPPY_UNKNOWN_ERROR = 1124L
|
1903 |
|
1904 |
|
1905 |
The floppy disk controller
|
1906 |
returned inconsistent results
|
1907 |
in its registers.
|
1908 |
|
1909 |
ERROR_FLOPPY_BAD_REGISTERS = 1125L
|
1910 |
|
1911 |
|
1912 |
While accessing the hard disk,
|
1913 |
a recalibrate operation
|
1914 |
failed, even after retries.
|
1915 |
|
1916 |
ERROR_DISK_RECALIBRATE_FAILED = 1126L
|
1917 |
|
1918 |
|
1919 |
While accessing the hard disk,
|
1920 |
a disk operation failed even
|
1921 |
after retries.
|
1922 |
|
1923 |
ERROR_DISK_OPERATION_FAILED = 1127L
|
1924 |
|
1925 |
|
1926 |
While accessing the hard disk,
|
1927 |
a disk controller reset was
|
1928 |
needed, but even that failed.
|
1929 |
|
1930 |
ERROR_DISK_RESET_FAILED = 1128L
|
1931 |
|
1932 |
|
1933 |
Physical end of tape
|
1934 |
encountered.
|
1935 |
|
1936 |
ERROR_EOM_OVERFLOW = 1129L
|
1937 |
|
1938 |
|
1939 |
Not enough server storage is
|
1940 |
available to process this
|
1941 |
command.
|
1942 |
|
1943 |
ERROR_NOT_ENOUGH_SERVER_MEMORY = 1130L
|
1944 |
|
1945 |
|
1946 |
A potential deadlock condition
|
1947 |
has been detected.
|
1948 |
|
1949 |
ERROR_POSSIBLE_DEADLOCK = 1131L
|
1950 |
|
1951 |
|
1952 |
The base address or the file
|
1953 |
offset specified does not have
|
1954 |
the proper alignment.
|
1955 |
|
1956 |
ERROR_MAPPED_ALIGNMENT = 1132L
|
1957 |
|
1958 |
|
1959 |
An attempt to change the
|
1960 |
system power state was vetoed
|
1961 |
by another application or
|
1962 |
driver.
|
1963 |
|
1964 |
ERROR_SET_POWER_STATE_VETOED = 1140L
|
1965 |
|
1966 |
|
1967 |
The system BIOS failed an
|
1968 |
attempt to change the system
|
1969 |
power state.
|
1970 |
|
1971 |
ERROR_SET_POWER_STATE_FAILED = 1141L
|
1972 |
|
1973 |
|
1974 |
An attempt was made to create
|
1975 |
more links on a file than the
|
1976 |
file system supports.
|
1977 |
|
1978 |
ERROR_TOO_MANY_LINKS = 1142L
|
1979 |
|
1980 |
|
1981 |
The specified program requires
|
1982 |
a newer version of Windows.
|
1983 |
|
1984 |
ERROR_OLD_WIN_VERSION = 1150L
|
1985 |
|
1986 |
|
1987 |
The specified program is not a
|
1988 |
Windows or MS-DOS program.
|
1989 |
|
1990 |
ERROR_APP_WRONG_OS = 1151L
|
1991 |
|
1992 |
|
1993 |
Cannot start more than one
|
1994 |
instance of the specified
|
1995 |
program.
|
1996 |
|
1997 |
ERROR_SINGLE_INSTANCE_APP = 1152L
|
1998 |
|
1999 |
|
2000 |
The specified program was
|
2001 |
written for an older version
|
2002 |
of Windows.
|
2003 |
|
2004 |
ERROR_RMODE_APP = 1153L
|
2005 |
|
2006 |
|
2007 |
One of the library files
|
2008 |
needed to run this application
|
2009 |
is damaged.
|
2010 |
|
2011 |
ERROR_INVALID_DLL = 1154L
|
2012 |
|
2013 |
|
2014 |
No application is associated
|
2015 |
with the specified file for
|
2016 |
this operation.
|
2017 |
|
2018 |
ERROR_NO_ASSOCIATION = 1155L
|
2019 |
|
2020 |
|
2021 |
An error occurred in sending
|
2022 |
the command to the
|
2023 |
application.
|
2024 |
|
2025 |
ERROR_DDE_FAIL = 1156L
|
2026 |
|
2027 |
|
2028 |
One of the library files
|
2029 |
needed to run this application
|
2030 |
cannot be found.
|
2031 |
|
2032 |
ERROR_DLL_NOT_FOUND = 1157L
|
2033 |
|
2034 |
|
2035 |
The specified device name is
|
2036 |
invalid.
|
2037 |
|
2038 |
ERROR_BAD_DEVICE = 1200L
|
2039 |
|
2040 |
|
2041 |
The device is not currently
|
2042 |
connected but is a remembered
|
2043 |
connection.
|
2044 |
|
2045 |
ERROR_CONNECTION_UNAVAIL = 1201L
|
2046 |
|
2047 |
|
2048 |
An attempt was made to
|
2049 |
remember a device that was
|
2050 |
previously remembered.
|
2051 |
|
2052 |
ERROR_DEVICE_ALREADY_REMEMBERED = 1202L
|
2053 |
|
2054 |
|
2055 |
No network provider accepted
|
2056 |
the given network path.
|
2057 |
|
2058 |
ERROR_NO_NET_OR_BAD_PATH = 1203L
|
2059 |
|
2060 |
|
2061 |
The specified network provider
|
2062 |
name is invalid.
|
2063 |
|
2064 |
ERROR_BAD_PROVIDER = 1204L
|
2065 |
|
2066 |
|
2067 |
Unable to open the network
|
2068 |
connection profile.
|
2069 |
|
2070 |
ERROR_CANNOT_OPEN_PROFILE = 1205L
|
2071 |
|
2072 |
|
2073 |
The network connection profile
|
2074 |
is damaged.
|
2075 |
|
2076 |
ERROR_BAD_PROFILE = 1206L
|
2077 |
|
2078 |
|
2079 |
Cannot enumerate a non-
|
2080 |
container.
|
2081 |
|
2082 |
ERROR_NOT_CONTAINER = 1207L
|
2083 |
|
2084 |
|
2085 |
An extended error has
|
2086 |
occurred.
|
2087 |
|
2088 |
ERROR_EXTENDED_ERROR = 1208L
|
2089 |
|
2090 |
|
2091 |
The format of the specified
|
2092 |
group name is invalid.
|
2093 |
|
2094 |
ERROR_INVALID_GROUPNAME = 1209L
|
2095 |
|
2096 |
|
2097 |
The format of the specified
|
2098 |
computer name is invalid.
|
2099 |
|
2100 |
ERROR_INVALID_COMPUTERNAME = 1210L
|
2101 |
|
2102 |
|
2103 |
The format of the specified
|
2104 |
event name is invalid.
|
2105 |
|
2106 |
ERROR_INVALID_EVENTNAME = 1211L
|
2107 |
|
2108 |
|
2109 |
The format of the specified
|
2110 |
domain name is invalid.
|
2111 |
|
2112 |
ERROR_INVALID_DOMAINNAME = 1212L
|
2113 |
|
2114 |
|
2115 |
The format of the specified
|
2116 |
service name is invalid.
|
2117 |
|
2118 |
ERROR_INVALID_SERVICENAME = 1213L
|
2119 |
|
2120 |
|
2121 |
The format of the specified
|
2122 |
network name is invalid.
|
2123 |
|
2124 |
ERROR_INVALID_NETNAME = 1214L
|
2125 |
|
2126 |
|
2127 |
The format of the specified
|
2128 |
share name is invalid.
|
2129 |
|
2130 |
ERROR_INVALID_SHARENAME = 1215L
|
2131 |
|
2132 |
|
2133 |
The format of the specified
|
2134 |
password is invalid.
|
2135 |
|
2136 |
ERROR_INVALID_PASSWORDNAME = 1216L
|
2137 |
|
2138 |
|
2139 |
The format of the specified
|
2140 |
message name is invalid.
|
2141 |
|
2142 |
ERROR_INVALID_MESSAGENAME = 1217L
|
2143 |
|
2144 |
|
2145 |
The format of the specified
|
2146 |
message destination is
|
2147 |
invalid.
|
2148 |
|
2149 |
ERROR_INVALID_MESSAGEDEST = 1218L
|
2150 |
|
2151 |
|
2152 |
The credentials supplied
|
2153 |
conflict with an existing set
|
2154 |
of credentials.
|
2155 |
|
2156 |
ERROR_SESSION_CREDENTIAL_CONFLICT = 1219L
|
2157 |
|
2158 |
|
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 |
|
2165 |
ERROR_REMOTE_SESSION_LIMIT_EXCEEDED = 1220L
|
2166 |
|
2167 |
|
2168 |
The workgroup or domain name
|
2169 |
is already in use by another
|
2170 |
computer on the network.
|
2171 |
|
2172 |
ERROR_DUP_DOMAINNAME = 1221L
|
2173 |
|
2174 |
|
2175 |
The network is not present or
|
2176 |
not started.
|
2177 |
|
2178 |
ERROR_NO_NETWORK = 1222L
|
2179 |
|
2180 |
|
2181 |
The operation was cancelled by
|
2182 |
the user.
|
2183 |
|
2184 |
ERROR_CANCELLED = 1223L
|
2185 |
|
2186 |
|
2187 |
The requested operation cannot
|
2188 |
be performed on a file with a
|
2189 |
user mapped section open.
|
2190 |
|
2191 |
ERROR_USER_MAPPED_FILE = 1224L
|
2192 |
|
2193 |
|
2194 |
The remote system refused the
|
2195 |
network connection.
|
2196 |
|
2197 |
ERROR_CONNECTION_REFUSED = 1225L
|
2198 |
|
2199 |
|
2200 |
The network connection was
|
2201 |
gracefully closed.
|
2202 |
|
2203 |
ERROR_GRACEFUL_DISCONNECT = 1226L
|
2204 |
|
2205 |
|
2206 |
The network transport endpoint
|
2207 |
already has an address
|
2208 |
associated with it.
|
2209 |
|
2210 |
ERROR_ADDRESS_ALREADY_ASSOCIATED = 1227L
|
2211 |
|
2212 |
|
2213 |
An address has not yet been
|
2214 |
associated with the network
|
2215 |
endpoint.
|
2216 |
|
2217 |
ERROR_ADDRESS_NOT_ASSOCIATED = 1228L
|
2218 |
|
2219 |
|
2220 |
An operation was attempted on
|
2221 |
a non-existent network
|
2222 |
connection.
|
2223 |
|
2224 |
ERROR_CONNECTION_INVALID = 1229L
|
2225 |
|
2226 |
|
2227 |
An invalid operation was
|
2228 |
attempted on an active network
|
2229 |
connection.
|
2230 |
|
2231 |
ERROR_CONNECTION_ACTIVE = 1230L
|
2232 |
|
2233 |
|
2234 |
The remote network is not
|
2235 |
reachable by the transport.
|
2236 |
|
2237 |
ERROR_NETWORK_UNREACHABLE = 1231L
|
2238 |
|
2239 |
|
2240 |
The remote system is not
|
2241 |
reachable by the transport.
|
2242 |
|
2243 |
ERROR_HOST_UNREACHABLE = 1232L
|
2244 |
|
2245 |
|
2246 |
The remote system does not
|
2247 |
support the transport
|
2248 |
protocol.
|
2249 |
|
2250 |
ERROR_PROTOCOL_UNREACHABLE = 1233L
|
2251 |
|
2252 |
|
2253 |
No service is operating at the
|
2254 |
destination network endpoint
|
2255 |
on the remote system.
|
2256 |
|
2257 |
ERROR_PORT_UNREACHABLE = 1234L
|
2258 |
|
2259 |
|
2260 |
The request was aborted.
|
2261 |
|
2262 |
ERROR_REQUEST_ABORTED = 1235L
|
2263 |
|
2264 |
|
2265 |
The network connection was
|
2266 |
aborted by the local system.
|
2267 |
|
2268 |
ERROR_CONNECTION_ABORTED = 1236L
|
2269 |
|
2270 |
|
2271 |
The operation could not be
|
2272 |
completed. A retry should be
|
2273 |
performed.
|
2274 |
|
2275 |
ERROR_RETRY = 1237L
|
2276 |
|
2277 |
|
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 |
|
2284 |
ERROR_CONNECTION_COUNT_LIMIT = 1238L
|
2285 |
|
2286 |
|
2287 |
Attempting to login during an
|
2288 |
unauthorized time of day for
|
2289 |
this account.
|
2290 |
|
2291 |
ERROR_LOGIN_TIME_RESTRICTION = 1239L
|
2292 |
|
2293 |
|
2294 |
The account is not authorized
|
2295 |
to login from this station.
|
2296 |
|
2297 |
ERROR_LOGIN_WKSTA_RESTRICTION = 1240L
|
2298 |
|
2299 |
|
2300 |
The network address could not
|
2301 |
be used for the operation
|
2302 |
requested.
|
2303 |
|
2304 |
ERROR_INCORRECT_ADDRESS = 1241L
|
2305 |
|
2306 |
|
2307 |
The service is already
|
2308 |
registered.
|
2309 |
|
2310 |
ERROR_ALREADY_REGISTERED = 1242L
|
2311 |
|
2312 |
|
2313 |
The specified service does not
|
2314 |
exist.
|
2315 |
|
2316 |
ERROR_SERVICE_NOT_FOUND = 1243L
|
2317 |
|
2318 |
|
2319 |
The operation being requested
|
2320 |
was not performed because the
|
2321 |
user has not been
|
2322 |
authenticated.
|
2323 |
|
2324 |
ERROR_NOT_AUTHENTICATED = 1244L
|
2325 |
|
2326 |
|
2327 |
The operation being requested
|
2328 |
was not performed because the
|
2329 |
user has not logged on to the
|
2330 |
network.
|
2331 |
|
2332 |
ERROR_NOT_LOGGED_ON = 1245L
|
2333 |
|
2334 |
|
2335 |
Return that wants caller to
|
2336 |
continue with work in
|
2337 |
progress.
|
2338 |
|
2339 |
ERROR_CONTINUE = 1246L
|
2340 |
|
2341 |
|
2342 |
An attempt was made to perform
|
2343 |
an initialization operation
|
2344 |
when initialization has
|
2345 |
already been completed.
|
2346 |
|
2347 |
ERROR_ALREADY_INITIALIZED = 1247L
|
2348 |
|
2349 |
|
2350 |
No more local devices.
|
2351 |
|
2352 |
ERROR_NO_MORE_DEVICES = 1248L
|
2353 |
|
2354 |
|
2355 |
|
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 |
|
2364 |
ERROR_NOT_ALL_ASSIGNED = 1300L
|
2365 |
|
2366 |
|
2367 |
Some of the information to be
|
2368 |
mapped has not been
|
2369 |
translated.
|
2370 |
|
2371 |
ERROR_SOME_NOT_MAPPED = 1301L
|
2372 |
|
2373 |
|
2374 |
No system quota limits are
|
2375 |
specifically set for this
|
2376 |
account.
|
2377 |
|
2378 |
ERROR_NO_QUOTAS_FOR_ACCOUNT = 1302L
|
2379 |
|
2380 |
|
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 |
|
2388 |
ERROR_LOCAL_USER_SESSION_KEY = 1303L
|
2389 |
|
2390 |
|
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 |
|
2398 |
ERROR_NULL_LM_PASSWORD = 1304L
|
2399 |
|
2400 |
|
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 |
|
2407 |
ERROR_UNKNOWN_REVISION = 1305L
|
2408 |
|
2409 |
|
2410 |
Indicates two revision levels
|
2411 |
are incompatible.
|
2412 |
|
2413 |
ERROR_REVISION_MISMATCH = 1306L
|
2414 |
|
2415 |
|
2416 |
Indicates a particular
|
2417 |
Security ID cannot be assigned
|
2418 |
as the owner of an object.
|
2419 |
|
2420 |
ERROR_INVALID_OWNER = 1307L
|
2421 |
|
2422 |
|
2423 |
Indicates a particular
|
2424 |
Security ID cannot be assigned
|
2425 |
as the primary group of an
|
2426 |
object.
|
2427 |
|
2428 |
ERROR_INVALID_PRIMARY_GROUP = 1308L
|
2429 |
|
2430 |
|
2431 |
An attempt was made to operate
|
2432 |
on an impersonation token by a
|
2433 |
thread was not currently
|
2434 |
impersonating a client.
|
2435 |
|
2436 |
ERROR_NO_IMPERSONATION_TOKEN = 1309L
|
2437 |
|
2438 |
|
2439 |
A mandatory group cannot be
|
2440 |
disabled.
|
2441 |
|
2442 |
ERROR_CANT_DISABLE_MANDATORY = 1310L
|
2443 |
|
2444 |
|
2445 |
There are currently no logon
|
2446 |
servers available to service
|
2447 |
the logon request.
|
2448 |
|
2449 |
ERROR_NO_LOGON_SERVERS = 1311L
|
2450 |
|
2451 |
|
2452 |
A specified logon session does
|
2453 |
not exist. It may already have
|
2454 |
been terminated.
|
2455 |
|
2456 |
ERROR_NO_SUCH_LOGON_SESSION = 1312L
|
2457 |
|
2458 |
|
2459 |
A specified privilege does not
|
2460 |
exist.
|
2461 |
|
2462 |
ERROR_NO_SUCH_PRIVILEGE = 1313L
|
2463 |
|
2464 |
|
2465 |
A required privilege is not
|
2466 |
held by the client.
|
2467 |
|
2468 |
ERROR_PRIVILEGE_NOT_HELD = 1314L
|
2469 |
|
2470 |
|
2471 |
The name provided is not a
|
2472 |
properly formed account name.
|
2473 |
|
2474 |
ERROR_INVALID_ACCOUNT_NAME = 1315L
|
2475 |
|
2476 |
|
2477 |
The specified user already
|
2478 |
exists.
|
2479 |
|
2480 |
ERROR_USER_EXISTS = 1316L
|
2481 |
|
2482 |
|
2483 |
The specified user does not
|
2484 |
exist.
|
2485 |
|
2486 |
ERROR_NO_SUCH_USER = 1317L
|
2487 |
|
2488 |
|
2489 |
The specified group already
|
2490 |
exists.
|
2491 |
|
2492 |
|
2493 |
ERROR_GROUP_EXISTS = 1318L
|
2494 |
|
2495 |
|
2496 |
The specified group does not
|
2497 |
exist.
|
2498 |
|
2499 |
ERROR_NO_SUCH_GROUP = 1319L
|
2500 |
|
2501 |
|
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 |
|
2508 |
ERROR_MEMBER_IN_GROUP = 1320L
|
2509 |
|
2510 |
|
2511 |
The specified user account is
|
2512 |
not a member of the specified
|
2513 |
group account.
|
2514 |
|
2515 |
ERROR_MEMBER_NOT_IN_GROUP = 1321L
|
2516 |
|
2517 |
|
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 |
|
2527 |
ERROR_LAST_ADMIN = 1322L
|
2528 |
|
2529 |
|
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 |
|
2536 |
ERROR_WRONG_PASSWORD = 1323L
|
2537 |
|
2538 |
|
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 |
|
2546 |
ERROR_ILL_FORMED_PASSWORD = 1324L
|
2547 |
|
2548 |
|
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 |
|
2556 |
ERROR_PASSWORD_RESTRICTION = 1325L
|
2557 |
|
2558 |
|
2559 |
The attempted logon is
|
2560 |
invalid. This is due to either
|
2561 |
a bad user name or
|
2562 |
authentication information.
|
2563 |
|
2564 |
ERROR_LOGON_FAILURE = 1326L
|
2565 |
|
2566 |
|
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 |
|
2575 |
ERROR_ACCOUNT_RESTRICTION = 1327L
|
2576 |
|
2577 |
|
2578 |
The user account has time
|
2579 |
restrictions and cannot be
|
2580 |
logged onto at this time.
|
2581 |
|
2582 |
ERROR_INVALID_LOGON_HOURS = 1328L
|
2583 |
|
2584 |
|
2585 |
The user account is restricted
|
2586 |
and cannot be used to log on
|
2587 |
from the source workstation.
|
2588 |
|
2589 |
ERROR_INVALID_WORKSTATION = 1329L
|
2590 |
|
2591 |
|
2592 |
The user account
|
2593 |
has expired.
|
2594 |
|
2595 |
ERROR_PASSWORD_EXPIRED = 1330L
|
2596 |
|
2597 |
|
2598 |
The referenced account is
|
2599 |
currently disabled and cannot
|
2600 |
be logged on to.
|
2601 |
|
2602 |
ERROR_ACCOUNT_DISABLED = 1331L
|
2603 |
|
2604 |
|
2605 |
None of the information to be
|
2606 |
mapped has been translated.
|
2607 |
|
2608 |
ERROR_NONE_MAPPED = 1332L
|
2609 |
|
2610 |
|
2611 |
The number of LUID requested
|
2612 |
cannot be allocated with a
|
2613 |
single allocation.
|
2614 |
|
2615 |
ERROR_TOO_MANY_LUIDS_REQUESTED = 1333L
|
2616 |
|
2617 |
|
2618 |
Indicates there are no more
|
2619 |
LUID to allocate.
|
2620 |
|
2621 |
ERROR_LUIDS_EXHAUSTED = 1334L
|
2622 |
|
2623 |
|
2624 |
Indicates the sub-authority
|
2625 |
value is invalid for the
|
2626 |
particular use.
|
2627 |
|
2628 |
ERROR_INVALID_SUB_AUTHORITY = 1335L
|
2629 |
|
2630 |
|
2631 |
Indicates the ACL structure is
|
2632 |
not valid.
|
2633 |
|
2634 |
ERROR_INVALID_ACL = 1336L
|
2635 |
|
2636 |
|
2637 |
Indicates the SID structure is
|
2638 |
invalid.
|
2639 |
|
2640 |
ERROR_INVALID_SID = 1337L
|
2641 |
|
2642 |
|
2643 |
Indicates the
|
2644 |
SECURITY_DESCRIPTOR structure
|
2645 |
is invalid.
|
2646 |
|
2647 |
ERROR_INVALID_SECURITY_DESCR = 1338L
|
2648 |
|
2649 |
|
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
|
2656 |
into the ACE or ACL.
|
2657 |
|
2658 |
ERROR_BAD_INHERITANCE_ACL = 1340L
|
2659 |
|
2660 |
|
2661 |
The GUID allocation server is
|
2662 |
already disabled at the
|
2663 |
moment.
|
2664 |
|
2665 |
ERROR_SERVER_DISABLED = 1341L
|
2666 |
|
2667 |
|
2668 |
The GUID allocation server is
|
2669 |
already enabled at the moment.
|
2670 |
|
2671 |
ERROR_SERVER_NOT_DISABLED = 1342L
|
2672 |
|
2673 |
|
2674 |
The value provided is an
|
2675 |
invalid value for an
|
2676 |
identifier authority.
|
2677 |
|
2678 |
ERROR_INVALID_ID_AUTHORITY = 1343L
|
2679 |
|
2680 |
|
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 |
|
2702 |
ERROR_ALLOTTED_SPACE_EXCEEDED = 1344L
|
2703 |
|
2704 |
|
2705 |
The specified attributes are
|
2706 |
invalid, or incompatible with
|
2707 |
the attributes for the group
|
2708 |
as a whole.
|
2709 |
|
2710 |
ERROR_INVALID_GROUP_ATTRIBUTES = 1345L
|
2711 |
|
2712 |
|
2713 |
A specified impersonation
|
2714 |
level is invalid. Also used to
|
2715 |
indicate a required
|
2716 |
impersonation level was not
|
2717 |
provided.
|
2718 |
|
2719 |
ERROR_BAD_IMPERSONATION_LEVEL = 1346L
|
2720 |
|
2721 |
|
2722 |
An attempt was made to open an
|
2723 |
anonymous level token.
|
2724 |
Anonymous tokens cannot be
|
2725 |
opened.
|
2726 |
|
2727 |
ERROR_CANT_OPEN_ANONYMOUS = 1347L
|
2728 |
|
2729 |
|
2730 |
The requested validation
|
2731 |
information class is invalid.
|
2732 |
|
2733 |
ERROR_BAD_VALIDATION_CLASS = 1348L
|
2734 |
|
2735 |
|
2736 |
The type of token object is
|
2737 |
inappropriate for its
|
2738 |
attempted use.
|
2739 |
|
2740 |
ERROR_BAD_TOKEN_TYPE = 1349L
|
2741 |
|
2742 |
|
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 |
|
2748 |
ERROR_NO_SECURITY_ON_OBJECT = 1350L
|
2749 |
|
2750 |
|
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 |
|
2758 |
ERROR_CANT_ACCESS_DOMAIN_INFO = 1351L
|
2759 |
|
2760 |
|
2761 |
Indicates the Sam Server was
|
2762 |
in the wrong state to perform
|
2763 |
the desired operation.
|
2764 |
|
2765 |
ERROR_INVALID_SERVER_STATE = 1352L
|
2766 |
|
2767 |
|
2768 |
Indicates the domain is in the
|
2769 |
wrong state to perform the
|
2770 |
desired operation.
|
2771 |
|
2772 |
ERROR_INVALID_DOMAIN_STATE = 1353L
|
2773 |
|
2774 |
|
2775 |
Indicates the requested
|
2776 |
operation cannot be completed
|
2777 |
with the domain in its present
|
2778 |
role.
|
2779 |
|
2780 |
ERROR_INVALID_DOMAIN_ROLE = 1354L
|
2781 |
|
2782 |
|
2783 |
The specified domain does not
|
2784 |
exist.
|
2785 |
|
2786 |
ERROR_NO_SUCH_DOMAIN = 1355L
|
2787 |
|
2788 |
|
2789 |
The specified domain already
|
2790 |
exists.
|
2791 |
|
2792 |
ERROR_DOMAIN_EXISTS = 1356L
|
2793 |
|
2794 |
|
2795 |
An attempt to exceed the limit
|
2796 |
on the number of domains per
|
2797 |
server for this release.
|
2798 |
|
2799 |
ERROR_DOMAIN_LIMIT_EXCEEDED = 1357L
|
2800 |
|
2801 |
|
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 |
|
2809 |
ERROR_INTERNAL_DB_CORRUPTION = 1358L
|
2810 |
|
2811 |
|
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 |
|
2819 |
ERROR_INTERNAL_ERROR = 1359L
|
2820 |
|
2821 |
|
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 |
|
2828 |
ERROR_GENERIC_NOT_MAPPED = 1360L
|
2829 |
|
2830 |
|
2831 |
Indicates a security
|
2832 |
descriptor is not in the
|
2833 |
required format (absolute or
|
2834 |
self-relative).
|
2835 |
|
2836 |
ERROR_BAD_DESCRIPTOR_FORMAT = 1361L
|
2837 |
|
2838 |
|
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 |
|
2845 |
ERROR_NOT_LOGON_PROCESS = 1362L
|
2846 |
|
2847 |
|
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 |
|
2853 |
ERROR_LOGON_SESSION_EXISTS = 1363L
|
2854 |
|
2855 |
|
2856 |
A specified authentication
|
2857 |
package is unknown.
|
2858 |
|
2859 |
ERROR_NO_SUCH_PACKAGE = 1364L
|
2860 |
|
2861 |
|
2862 |
The logon session is not in a
|
2863 |
state consistent with the
|
2864 |
requested operation.
|
2865 |
|
2866 |
ERROR_BAD_LOGON_SESSION_STATE = 1365L
|
2867 |
|
2868 |
|
2869 |
The logon session ID is
|
2870 |
already in use.
|
2871 |
|
2872 |
ERROR_LOGON_SESSION_COLLISION = 1366L
|
2873 |
|
2874 |
|
2875 |
Indicates an invalid value has
|
2876 |
been provided for LogonType
|
2877 |
has been requested.
|
2878 |
|
2879 |
ERROR_INVALID_LOGON_TYPE = 1367L
|
2880 |
|
2881 |
|
2882 |
Indicates that an attempt was
|
2883 |
made to impersonate via a
|
2884 |
named pipe was not yet read
|
2885 |
from.
|
2886 |
|
2887 |
ERROR_CANNOT_IMPERSONATE = 1368L
|
2888 |
|
2889 |
|
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 |
|
2905 |
ERROR_RXACT_INVALID_STATE = 1369L
|
2906 |
|
2907 |
|
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 |
|
2919 |
ERROR_RXACT_COMMIT_FAILURE = 1370L
|
2920 |
|
2921 |
|
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 |
|
2930 |
ERROR_SPECIAL_ACCOUNT = 1371L
|
2931 |
|
2932 |
|
2933 |
The requested operation cannot
|
2934 |
be performed on the specified
|
2935 |
group because it is a built-in
|
2936 |
special group.
|
2937 |
|
2938 |
ERROR_SPECIAL_GROUP = 1372L
|
2939 |
|
2940 |
|
2941 |
The requested operation cannot
|
2942 |
be performed on the specified
|
2943 |
user because it is a built-in
|
2944 |
special user.
|
2945 |
|
2946 |
ERROR_SPECIAL_USER = 1373L
|
2947 |
|
2948 |
|
2949 |
Indicates a member cannot be
|
2950 |
removed from a group because
|
2951 |
the group is currently the
|
2952 |
member
|
2953 |
|
2954 |
ERROR_MEMBERS_PRIMARY_GROUP = 1374L
|
2955 |
|
2956 |
|
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 |
|
2964 |
ERROR_TOKEN_ALREADY_IN_USE = 1375L
|
2965 |
|
2966 |
|
2967 |
The specified alias does not
|
2968 |
exist.
|
2969 |
|
2970 |
ERROR_NO_SUCH_ALIAS = 1376L
|
2971 |
|
2972 |
|
2973 |
The specified account name is
|
2974 |
not a member of the alias.
|
2975 |
|
2976 |
ERROR_MEMBER_NOT_IN_ALIAS = 1377L
|
2977 |
|
2978 |
|
2979 |
The specified account name is
|
2980 |
not a member of the alias.
|
2981 |
|
2982 |
ERROR_MEMBER_IN_ALIAS = 1378L
|
2983 |
|
2984 |
|
2985 |
The specified alias already
|
2986 |
exists.
|
2987 |
|
2988 |
ERROR_ALIAS_EXISTS = 1379L
|
2989 |
|
2990 |
|
2991 |
A requested type of logon,
|
2992 |
such as Interactive, Network,
|
2993 |
or Service, is not granted by
|
2994 |
the target system
|
2995 |
security policy. The system
|
2996 |
administrator can grant the
|
2997 |
required form of logon.
|
2998 |
|
2999 |
ERROR_LOGON_NOT_GRANTED = 1380L
|
3000 |
|
3001 |
|
3002 |
The maximum number of secrets
|
3003 |
that can be stored in a single
|
3004 |
system was exceeded.
|
3005 |
|
3006 |
ERROR_TOO_MANY_SECRETS = 1381L
|
3007 |
|
3008 |
|
3009 |
The length of a secret exceeds
|
3010 |
the maximum length allowed.
|
3011 |
|
3012 |
ERROR_SECRET_TOO_LONG = 1382L
|
3013 |
|
3014 |
|
3015 |
The Local Security Authority
|
3016 |
(LSA) database contains in
|
3017 |
internal inconsistency.
|
3018 |
|
3019 |
ERROR_INTERNAL_DB_ERROR = 1383L
|
3020 |
|
3021 |
|
3022 |
During a logon attempt, the
|
3023 |
user
|
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 |
|
3031 |
ERROR_TOO_MANY_CONTEXT_IDS = 1384L
|
3032 |
|
3033 |
|
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 |
|
3042 |
ERROR_LOGON_TYPE_NOT_GRANTED = 1385L
|
3043 |
|
3044 |
|
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 |
|
3052 |
ERROR_NT_CROSS_ENCRYPTION_REQUIRED = 1386L
|
3053 |
|
3054 |
|
3055 |
A new member cannot be added
|
3056 |
to an alias because the member
|
3057 |
does not exist.
|
3058 |
|
3059 |
ERROR_NO_SUCH_MEMBER = 1387L
|
3060 |
|
3061 |
|
3062 |
A new member could not be
|
3063 |
added to an alias because the
|
3064 |
member has the wrong account
|
3065 |
type.
|
3066 |
|
3067 |
ERROR_INVALID_MEMBER = 1388L
|
3068 |
|
3069 |
|
3070 |
Too many SIDs specified.
|
3071 |
|
3072 |
ERROR_TOO_MANY_SIDS = 1389L
|
3073 |
|
3074 |
|
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 |
|
3081 |
ERROR_LM_CROSS_ENCRYPTION_REQUIRED = 1390L
|
3082 |
|
3083 |
|
3084 |
Indicates an ACL contains no
|
3085 |
inheritable components.
|
3086 |
|
3087 |
ERROR_NO_INHERITANCE = 1391L
|
3088 |
|
3089 |
|
3090 |
The file or directory is
|
3091 |
damaged and nonreadable.
|
3092 |
|
3093 |
ERROR_FILE_CORRUPT = 1392L
|
3094 |
|
3095 |
|
3096 |
The disk structure is damaged
|
3097 |
and nonreadable.
|
3098 |
|
3099 |
ERROR_DISK_CORRUPT = 1393L
|
3100 |
|
3101 |
|
3102 |
There is no user session key
|
3103 |
for the specified logon
|
3104 |
session.
|
3105 |
|
3106 |
ERROR_NO_USER_SESSION_KEY = 1394L
|
3107 |
|
3108 |
|
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 |
|
3118 |
ERROR_LICENSE_QUOTA_EXCEEDED = 1395L
|
3119 |
|
3120 |
|
3121 |
The window handle invalid.
|
3122 |
|
3123 |
ERROR_INVALID_WINDOW_HANDLE = 1400L
|
3124 |
|
3125 |
|
3126 |
The menu handle is invalid.
|
3127 |
|
3128 |
ERROR_INVALID_MENU_HANDLE = 1401L
|
3129 |
|
3130 |
|
3131 |
The cursor handle is invalid.
|
3132 |
|
3133 |
ERROR_INVALID_CURSOR_HANDLE = 1402L
|
3134 |
|
3135 |
|
3136 |
Invalid accelerator-table
|
3137 |
handle.
|
3138 |
|
3139 |
ERROR_INVALID_ACCEL_HANDLE = 1403L
|
3140 |
|
3141 |
|
3142 |
The hook handle is invalid.
|
3143 |
|
3144 |
ERROR_INVALID_HOOK_HANDLE = 1404L
|
3145 |
|
3146 |
|
3147 |
The DeferWindowPos handle is
|
3148 |
invalid.
|
3149 |
|
3150 |
ERROR_INVALID_DWP_HANDLE = 1405L
|
3151 |
|
3152 |
|
3153 |
CreateWindow failed, creating
|
3154 |
top-level window with WS_CHILD
|
3155 |
style.
|
3156 |
|
3157 |
ERROR_TLW_WITH_WSCHILD = 1406L
|
3158 |
|
3159 |
|
3160 |
Cannot find window class.
|
3161 |
|
3162 |
ERROR_CANNOT_FIND_WND_CLASS = 1407L
|
3163 |
|
3164 |
|
3165 |
Invalid window, belongs to
|
3166 |
other thread.
|
3167 |
|
3168 |
ERROR_WINDOW_OF_OTHER_THREAD = 1408L
|
3169 |
|
3170 |
|
3171 |
Hotkey is already registered.
|
3172 |
|
3173 |
ERROR_HOTKEY_ALREADY_REGISTERED = 1409L
|
3174 |
|
3175 |
|
3176 |
Class already exists.
|
3177 |
|
3178 |
ERROR_CLASS_ALREADY_EXISTS = 1410L
|
3179 |
|
3180 |
|
3181 |
Class does not exist.
|
3182 |
|
3183 |
ERROR_CLASS_DOES_NOT_EXIST = 1411L
|
3184 |
|
3185 |
|
3186 |
Class still has open windows.
|
3187 |
|
3188 |
ERROR_CLASS_HAS_WINDOWS = 1412L
|
3189 |
|
3190 |
|
3191 |
The index is invalid.
|
3192 |
|
3193 |
ERROR_INVALID_INDEX = 1413L
|
3194 |
|
3195 |
|
3196 |
The icon handle is invalid.
|
3197 |
|
3198 |
ERROR_INVALID_ICON_HANDLE = 1414L
|
3199 |
|
3200 |
|
3201 |
Using private DIALOG window
|
3202 |
words.
|
3203 |
|
3204 |
ERROR_PRIVATE_DIALOG_INDEX = 1415L
|
3205 |
|
3206 |
|
3207 |
List box ID not found.
|
3208 |
|
3209 |
ERROR_LISTBOX_ID_NOT_FOUND = 1416L
|
3210 |
|
3211 |
|
3212 |
No wildcard characters found.
|
3213 |
|
3214 |
ERROR_NO_WILDCARD_CHARACTERS = 1417L
|
3215 |
|
3216 |
|
3217 |
Thread doesn
|
3218 |
open.
|
3219 |
|
3220 |
ERROR_CLIPBOARD_NOT_OPEN = 1418L
|
3221 |
|
3222 |
|
3223 |
Hotkey is not registered.
|
3224 |
|
3225 |
ERROR_HOTKEY_NOT_REGISTERED = 1419L
|
3226 |
|
3227 |
|
3228 |
The window is not a valid
|
3229 |
dialog window.
|
3230 |
|
3231 |
ERROR_WINDOW_NOT_DIALOG = 1420L
|
3232 |
|
3233 |
|
3234 |
Control ID not found.
|
3235 |
|
3236 |
ERROR_CONTROL_ID_NOT_FOUND = 1421L
|
3237 |
|
3238 |
|
3239 |
Invalid Message, combo box
|
3240 |
doesn
|
3241 |
|
3242 |
ERROR_INVALID_COMBOBOX_MESSAGE = 1422L
|
3243 |
|
3244 |
|
3245 |
The window is not a combo box.
|
3246 |
|
3247 |
ERROR_WINDOW_NOT_COMBOBOX = 1423L
|
3248 |
|
3249 |
|
3250 |
Height must be less than 256.
|
3251 |
|
3252 |
ERROR_INVALID_EDIT_HEIGHT = 1424L
|
3253 |
|
3254 |
|
3255 |
Invalid HDC passed to
|
3256 |
ReleaseDC.
|
3257 |
|
3258 |
ERROR_DC_NOT_FOUND = 1425L
|
3259 |
|
3260 |
|
3261 |
The hook filter type is
|
3262 |
invalid.
|
3263 |
|
3264 |
ERROR_INVALID_HOOK_FILTER = 1426L
|
3265 |
|
3266 |
|
3267 |
The filter proc is invalid.
|
3268 |
|
3269 |
ERROR_INVALID_FILTER_PROC = 1427L
|
3270 |
|
3271 |
|
3272 |
Cannot set non-local hook
|
3273 |
without an module handle.
|
3274 |
|
3275 |
ERROR_HOOK_NEEDS_HMOD = 1428L
|
3276 |
|
3277 |
|
3278 |
This hook can only be set
|
3279 |
globally.
|
3280 |
|
3281 |
ERROR_GLOBAL_ONLY_HOOK = 1429L
|
3282 |
|
3283 |
|
3284 |
The journal hook is already
|
3285 |
installed.
|
3286 |
|
3287 |
ERROR_JOURNAL_HOOK_SET = 1430L
|
3288 |
|
3289 |
|
3290 |
Hook is not installed.
|
3291 |
|
3292 |
ERROR_HOOK_NOT_INSTALLED = 1431L
|
3293 |
|
3294 |
|
3295 |
The message for single-
|
3296 |
selection list box is invalid.
|
3297 |
|
3298 |
ERROR_INVALID_LB_MESSAGE = 1432L
|
3299 |
|
3300 |
|
3301 |
LB_SETCOUNT sent to non-lazy
|
3302 |
list box.
|
3303 |
|
3304 |
ERROR_SETCOUNT_ON_BAD_LB = 1433L
|
3305 |
|
3306 |
|
3307 |
This list box doesn
|
3308 |
tab stops.
|
3309 |
|
3310 |
ERROR_LB_WITHOUT_TABSTOPS = 1434L
|
3311 |
|
3312 |
|
3313 |
Cannot destroy object created
|
3314 |
by another thread.
|
3315 |
|
3316 |
ERROR_DESTROY_OBJECT_OF_OTHER_THREAD = 1435L
|
3317 |
|
3318 |
|
3319 |
Child windows can
|
3320 |
menus.
|
3321 |
|
3322 |
ERROR_CHILD_WINDOW_MENU = 1436L
|
3323 |
|
3324 |
|
3325 |
Window does not have system
|
3326 |
menu.
|
3327 |
|
3328 |
ERROR_NO_SYSTEM_MENU = 1437L
|
3329 |
|
3330 |
|
3331 |
The message box style is
|
3332 |
invalid.
|
3333 |
|
3334 |
ERROR_INVALID_MSGBOX_STYLE = 1438L
|
3335 |
|
3336 |
|
3337 |
The SPI_* parameter is
|
3338 |
invalid.
|
3339 |
|
3340 |
ERROR_INVALID_SPI_VALUE = 1439L
|
3341 |
|
3342 |
|
3343 |
Screen already locked.
|
3344 |
|
3345 |
ERROR_SCREEN_ALREADY_LOCKED = 1440L
|
3346 |
|
3347 |
|
3348 |
All DeferWindowPos HWNDs must
|
3349 |
have same parent.
|
3350 |
|
3351 |
ERROR_HWNDS_HAVE_DIFFERENT_PARENT = 1441L
|
3352 |
|
3353 |
|
3354 |
Window is not a child window.
|
3355 |
|
3356 |
ERROR_NOT_CHILD_WINDOW = 1442L
|
3357 |
|
3358 |
|
3359 |
The GW_* command is invalid.
|
3360 |
|
3361 |
ERROR_INVALID_GW_COMMAND = 1443L
|
3362 |
|
3363 |
|
3364 |
The thread ID is invalid.
|
3365 |
|
3366 |
ERROR_INVALID_THREAD_ID = 1444L
|
3367 |
|
3368 |
|
3369 |
DefMDIChildProc called with a
|
3370 |
non-MDI child window.
|
3371 |
|
3372 |
ERROR_NON_MDICHILD_WINDOW = 1445L
|
3373 |
|
3374 |
|
3375 |
Pop-up menu already active.
|
3376 |
|
3377 |
ERROR_POPUP_ALREADY_ACTIVE = 1446L
|
3378 |
|
3379 |
|
3380 |
Window does not have scroll
|
3381 |
bars.
|
3382 |
|
3383 |
ERROR_NO_SCROLLBARS = 1447L
|
3384 |
|
3385 |
|
3386 |
Scrollbar range greater than
|
3387 |
0x7FFF.
|
3388 |
|
3389 |
ERROR_INVALID_SCROLLBAR_RANGE = 1448L
|
3390 |
|
3391 |
|
3392 |
The ShowWindow command is
|
3393 |
invalid.
|
3394 |
|
3395 |
ERROR_INVALID_SHOWWIN_COMMAND = 1449L
|
3396 |
|
3397 |
|
3398 |
Insufficient system resources
|
3399 |
exist to complete the
|
3400 |
requested service.
|
3401 |
|
3402 |
ERROR_NO_SYSTEM_RESOURCES = 1450L
|
3403 |
|
3404 |
|
3405 |
Insufficient system resources
|
3406 |
exist to complete the
|
3407 |
requested service.
|
3408 |
|
3409 |
ERROR_NONPAGED_SYSTEM_RESOURCES = 1451L
|
3410 |
|
3411 |
|
3412 |
Insufficient system resources
|
3413 |
exist to complete the
|
3414 |
requested service.
|
3415 |
|
3416 |
ERROR_PAGED_SYSTEM_RESOURCES = 1452L
|
3417 |
|
3418 |
|
3419 |
Insufficient quota to complete
|
3420 |
the requested service.
|
3421 |
|
3422 |
ERROR_WORKING_SET_QUOTA = 1453L
|
3423 |
|
3424 |
|
3425 |
Insufficient quota to complete
|
3426 |
the requested service.
|
3427 |
|
3428 |
ERROR_PAGEFILE_QUOTA = 1454L
|
3429 |
|
3430 |
|
3431 |
The paging file is too small
|
3432 |
for this operation to
|
3433 |
complete.
|
3434 |
|
3435 |
ERROR_COMMITMENT_LIMIT = 1455L
|
3436 |
|
3437 |
|
3438 |
A menu item was not found.
|
3439 |
|
3440 |
ERROR_MENU_ITEM_NOT_FOUND = 1456L
|
3441 |
|
3442 |
|
3443 |
Invalid keyboard layout
|
3444 |
handle.
|
3445 |
|
3446 |
ERROR_INVALID_KEYBOARD_HANDLE = 1457L
|
3447 |
|
3448 |
|
3449 |
Hook type not allowed.
|
3450 |
|
3451 |
ERROR_HOOK_TYPE_NOT_ALLOWED = 1458L
|
3452 |
|
3453 |
|
3454 |
One of the Eventlog logfiles
|
3455 |
is damaged.
|
3456 |
|
3457 |
ERROR_EVENTLOG_FILE_CORRUPT = 1500L
|
3458 |
|
3459 |
|
3460 |
No event log file could be
|
3461 |
opened, so the event logging
|
3462 |
service did not start.
|
3463 |
|
3464 |
ERROR_EVENTLOG_CANT_START = 1501L
|
3465 |
|
3466 |
|
3467 |
The event log file is full.
|
3468 |
|
3469 |
ERROR_LOG_FILE_FULL = 1502L
|
3470 |
|
3471 |
|
3472 |
The event log file has changed
|
3473 |
between reads.
|
3474 |
|
3475 |
ERROR_EVENTLOG_FILE_CHANGED = 1503L
|
3476 |
|
3477 |
|
3478 |
The string binding is invalid.
|
3479 |
|
3480 |
RPC_S_INVALID_STRING_BINDING = 1700L
|
3481 |
|
3482 |
|
3483 |
The binding handle is the
|
3484 |
incorrect type.
|
3485 |
|
3486 |
RPC_S_WRONG_KIND_OF_BINDING = 1701L
|
3487 |
|
3488 |
|
3489 |
The binding handle is invalid.
|
3490 |
|
3491 |
RPC_S_INVALID_BINDING = 1702L
|
3492 |
|
3493 |
|
3494 |
The RPC protocol sequence is
|
3495 |
not supported.
|
3496 |
|
3497 |
RPC_S_PROTSEQ_NOT_SUPPORTED = 1703L
|
3498 |
|
3499 |
|
3500 |
The RPC protocol sequence is
|
3501 |
invalid.
|
3502 |
|
3503 |
RPC_S_INVALID_RPC_PROTSEQ = 1704L
|
3504 |
|
3505 |
|
3506 |
The string UUID is invalid.
|
3507 |
|
3508 |
RPC_S_INVALID_STRING_UUID = 1705L
|
3509 |
|
3510 |
|
3511 |
The endpoint format is
|
3512 |
invalid.
|
3513 |
|
3514 |
RPC_S_INVALID_ENDPOINT_FORMAT = 1706L
|
3515 |
|
3516 |
|
3517 |
The network address is
|
3518 |
invalid.
|
3519 |
|
3520 |
RPC_S_INVALID_NET_ADDR = 1707L
|
3521 |
|
3522 |
|
3523 |
No endpoint was found.
|
3524 |
|
3525 |
RPC_S_NO_ENDPOINT_FOUND = 1708L
|
3526 |
|
3527 |
|
3528 |
The timeout value is invalid.
|
3529 |
|
3530 |
RPC_S_INVALID_TIMEOUT = 1709L
|
3531 |
|
3532 |
|
3533 |
The object UUID was not found.
|
3534 |
|
3535 |
RPC_S_OBJECT_NOT_FOUND = 1710L
|
3536 |
|
3537 |
|
3538 |
The object UUID already
|
3539 |
registered.
|
3540 |
|
3541 |
RPC_S_ALREADY_REGISTERED = 1711L
|
3542 |
|
3543 |
|
3544 |
The type UUID is already
|
3545 |
registered.
|
3546 |
|
3547 |
RPC_S_TYPE_ALREADY_REGISTERED = 1712L
|
3548 |
|
3549 |
|
3550 |
The server is already
|
3551 |
listening.
|
3552 |
|
3553 |
RPC_S_ALREADY_LISTENING = 1713L
|
3554 |
|
3555 |
|
3556 |
No protocol sequences were
|
3557 |
registered.
|
3558 |
|
3559 |
RPC_S_NO_PROTSEQS_REGISTERED = 1714L
|
3560 |
|
3561 |
|
3562 |
The server is not listening.
|
3563 |
|
3564 |
RPC_S_NOT_LISTENING = 1715L
|
3565 |
|
3566 |
|
3567 |
The manager type is unknown.
|
3568 |
|
3569 |
RPC_S_UNKNOWN_MGR_TYPE = 1716L
|
3570 |
|
3571 |
|
3572 |
The interface is unknown.
|
3573 |
|
3574 |
RPC_S_UNKNOWN_IF = 1717L
|
3575 |
|
3576 |
|
3577 |
There are no bindings.
|
3578 |
|
3579 |
RPC_S_NO_BINDINGS = 1718L
|
3580 |
|
3581 |
|
3582 |
There are no protocol
|
3583 |
sequences.
|
3584 |
|
3585 |
RPC_S_NO_PROTSEQS = 1719L
|
3586 |
|
3587 |
|
3588 |
The endpoint cannot be
|
3589 |
created.
|
3590 |
|
3591 |
RPC_S_CANT_CREATE_ENDPOINT = 1720L
|
3592 |
|
3593 |
|
3594 |
Not enough resources are
|
3595 |
available to complete this
|
3596 |
operation.
|
3597 |
|
3598 |
RPC_S_OUT_OF_RESOURCES = 1721L
|
3599 |
|
3600 |
|
3601 |
The server is unavailable.
|
3602 |
|
3603 |
RPC_S_SERVER_UNAVAILABLE = 1722L
|
3604 |
|
3605 |
|
3606 |
The server is too busy to
|
3607 |
complete this operation.
|
3608 |
|
3609 |
RPC_S_SERVER_TOO_BUSY = 1723L
|
3610 |
|
3611 |
|
3612 |
The network options are
|
3613 |
invalid.
|
3614 |
|
3615 |
RPC_S_INVALID_NETWORK_OPTIONS = 1724L
|
3616 |
|
3617 |
|
3618 |
There is not a remote
|
3619 |
procedure call active in this
|
3620 |
thread.
|
3621 |
|
3622 |
RPC_S_NO_CALL_ACTIVE = 1725L
|
3623 |
|
3624 |
|
3625 |
The remote procedure call
|
3626 |
failed.
|
3627 |
|
3628 |
RPC_S_CALL_FAILED = 1726L
|
3629 |
|
3630 |
|
3631 |
The remote procedure call
|
3632 |
failed and did not execute.
|
3633 |
|
3634 |
RPC_S_CALL_FAILED_DNE = 1727L
|
3635 |
|
3636 |
|
3637 |
An RPC protocol error
|
3638 |
occurred.
|
3639 |
|
3640 |
RPC_S_PROTOCOL_ERROR = 1728L
|
3641 |
|
3642 |
|
3643 |
The transfer syntax is not
|
3644 |
supported by the server.
|
3645 |
|
3646 |
RPC_S_UNSUPPORTED_TRANS_SYN = 1730L
|
3647 |
|
3648 |
|
3649 |
The server has insufficient
|
3650 |
memory to complete this
|
3651 |
operation.
|
3652 |
|
3653 |
RPC_S_SERVER_OUT_OF_MEMORY = 1731L
|
3654 |
|
3655 |
|
3656 |
The type UUID is not
|
3657 |
supported.
|
3658 |
|
3659 |
RPC_S_UNSUPPORTED_TYPE = 1732L
|
3660 |
|
3661 |
|
3662 |
The tag is invalid.
|
3663 |
|
3664 |
RPC_S_INVALID_TAG = 1733L
|
3665 |
|
3666 |
|
3667 |
The array bounds are invalid.
|
3668 |
|
3669 |
RPC_S_INVALID_BOUND = 1734L
|
3670 |
|
3671 |
|
3672 |
The binding does not contain
|
3673 |
|