Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1008 lines
26 KiB

  1. /*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. apperr.h
  5. Abstract:
  6. This file contains the number and text of application error
  7. messages.
  8. Author:
  9. Dan Hinsley (danhi) 8-Jun-1991
  10. Environment:
  11. User Mode - Win32
  12. Portable to any flat, 32-bit environment. (Uses Win32 typedefs.)
  13. Requires ANSI C extensions: slash-slash comments.
  14. --*/
  15. #define APPERR_BASE 3500 /* APP errs start here */
  16. /**INTERNAL_ONLY**/
  17. /***********WARNING ****************
  18. *See the comment in netcon.h for *
  19. *info on the allocation of errors *
  20. ************************************/
  21. /**END_INTERNAL**/
  22. /***
  23. *
  24. * Messages terminating multiple commands
  25. *
  26. */
  27. #define APE_Success (APPERR_BASE + 0) /* @I
  28. *
  29. *The command completed successfully.
  30. */
  31. #define APE_InvalidSwitch (APPERR_BASE + 1)
  32. /*
  33. *You used an invalid option.
  34. */
  35. #define APE_OS2Error (APPERR_BASE + 2) /* @I
  36. *
  37. *System error %1 has occurred.
  38. */
  39. #define APE_NumArgs (APPERR_BASE + 3)
  40. /*
  41. *The command contains an invalid number of arguments.
  42. */
  43. #define APE_CmdComplWErrors (APPERR_BASE + 4) /* @I
  44. *
  45. *The command completed with one or more errors.
  46. */
  47. #define APE_InvalidSwitchArg (APPERR_BASE + 5)
  48. /*
  49. *You used an option with an invalid value.
  50. */
  51. #define APE_SwUnkSw (APPERR_BASE + 6 )
  52. /*
  53. *The option %1 is unknown.
  54. */
  55. #define APE_SwAmbSw (APPERR_BASE + 7 )
  56. /*
  57. *Option %1 is ambiguous.
  58. */
  59. /*
  60. * For additional general command line switch/argument related messages,
  61. * see section with APE_CmdArgXXX.
  62. */
  63. /*** Use the following message only for real-mode (DOS) errors.
  64. *** This error is here to allow real-mode Lan Manager to share
  65. *** the message file.
  66. ***/
  67. #define APE_ConflictingSwitches (APPERR_BASE + 10)
  68. /*
  69. *A command was used with conflicting switches.
  70. */
  71. #define APE_SubpgmNotFound (APPERR_BASE + 11)
  72. /*
  73. *Could not find subprogram %1.
  74. */
  75. #define APE_GEN_OldOSVersion (APPERR_BASE + 12)
  76. /*
  77. *The software requires a newer version of the operating
  78. *system.
  79. */
  80. #define APE_MoreData (APPERR_BASE + 13)
  81. /*
  82. *More data is available than can be returned by Windows.
  83. */
  84. #define APE_MoreHelp (APPERR_BASE + 14 ) /* @I
  85. *
  86. *More help is available by typing NET HELPMSG %1.
  87. */
  88. #define APE_LanmanNTOnly (APPERR_BASE + 15)
  89. /*
  90. *This command can be used only on a Windows Domain Controller.
  91. */
  92. #define APE_WinNTOnly (APPERR_BASE + 16)
  93. /*
  94. *This command cannot be used on a Windows Domain Controller.
  95. */
  96. /***
  97. *
  98. * Starting, stopping, pausing, and continuing services
  99. *
  100. */
  101. #define APE_StartStartedList (APPERR_BASE + 20 ) /* @I
  102. *
  103. *These Windows services are started:
  104. */
  105. #define APE_StartNotStarted (APPERR_BASE + 21 ) /* @I
  106. *
  107. *The %1 service is not started.
  108. */
  109. #define APE_StartPending (APPERR_BASE + 22 ) /* @I
  110. *
  111. *The %1 service is starting%0
  112. */
  113. #define APE_StartFailed (APPERR_BASE + 23 ) /* @I
  114. *
  115. *The %1 service could not be started.
  116. */
  117. #define APE_StartSuccess (APPERR_BASE + 24 ) /* @I
  118. *
  119. *The %1 service was started successfully.
  120. */
  121. #define APE_StopSrvRunning (APPERR_BASE + 25 ) /* @I
  122. *
  123. *Stopping the Workstation service also stops the Server service.
  124. */
  125. #define APE_StopRdrOpenFiles (APPERR_BASE + 26 ) /* @I
  126. *
  127. *The workstation has open files.
  128. */
  129. #define APE_StopPending (APPERR_BASE + 27 ) /* @I
  130. *
  131. *The %1 service is stopping%0
  132. */
  133. #define APE_StopFailed (APPERR_BASE + 28 ) /* @I
  134. *
  135. *The %1 service could not be stopped.
  136. */
  137. #define APE_StopSuccess (APPERR_BASE + 29 ) /* @I
  138. *
  139. *The %1 service was stopped successfully.
  140. */
  141. #define APE_StopServiceList (APPERR_BASE + 30 ) /* @I
  142. *
  143. *The following services are dependent on the %1 service.
  144. *Stopping the %1 service will also stop these services.
  145. */
  146. #define APE_ServiceStatePending (APPERR_BASE + 33)
  147. /*
  148. *The service is starting or stopping. Please try again later.
  149. */
  150. #define APE_NoErrorReported (APPERR_BASE + 34) /* @I
  151. *
  152. *The service did not report an error.
  153. */
  154. #define APE_ContpausDevErr (APPERR_BASE + 35 ) /* @I
  155. *
  156. *An error occurred controlling the device.
  157. */
  158. #define APE_ContSuccess (APPERR_BASE + 36 ) /* @I
  159. *
  160. *The %1 service was continued successfully.
  161. */
  162. #define APE_PausSuccess (APPERR_BASE + 37 ) /* @I
  163. *
  164. *The %1 service was paused successfully.
  165. */
  166. #define APE_ContFailed (APPERR_BASE + 38 ) /* @I
  167. *
  168. *The %1 service failed to resume.
  169. */
  170. #define APE_PausFailed (APPERR_BASE + 39 ) /* @I
  171. *
  172. *The %1 service failed to pause.
  173. */
  174. #define APE_ContPending (APPERR_BASE + 40 ) /* @I
  175. *
  176. *The %1 service continue is pending%0
  177. */
  178. #define APE_PausPending (APPERR_BASE + 41 ) /* @I
  179. *
  180. *The %1 service pause is pending%0
  181. */
  182. #define APE_DevContSuccess (APPERR_BASE + 42 ) /* @I
  183. *
  184. *%1 was continued successfully.
  185. */
  186. #define APE_DevPausSuccess (APPERR_BASE + 43 ) /* @I
  187. *
  188. *%1 was paused successfully.
  189. */
  190. #define APE_StartPendingOther (APPERR_BASE + 44 ) /* @I
  191. *
  192. *The %1 service has been started by another process and is pending.%0
  193. */
  194. #define APE_ServiceSpecificError (APPERR_BASE + 47 ) /* @E
  195. *
  196. *A service specific error occurred: %1.
  197. */
  198. /***
  199. *
  200. * Information messages
  201. *
  202. */
  203. #define APE_SessionList (APPERR_BASE + 160 ) /* @I
  204. *
  205. *These workstations have sessions on this server:
  206. */
  207. #define APE_SessionOpenList (APPERR_BASE + 161 ) /* @I
  208. *
  209. *These workstations have sessions with open files on this server:
  210. */
  211. #define APE_NameIsFwd (APPERR_BASE + 166 ) /* @I
  212. *
  213. *The message alias is forwarded.
  214. */
  215. #define APE_KillDevList (APPERR_BASE + 170 ) /* @I
  216. *
  217. *You have these remote connections:
  218. */
  219. #define APE_KillCancel (APPERR_BASE + 171 ) /* @I
  220. *
  221. *Continuing will cancel the connections.
  222. */
  223. #define APE_SessionOpenFiles (APPERR_BASE + 175 ) /* @I
  224. *
  225. *The session from %1 has open files.
  226. */
  227. #define APE_ConnectionsAreRemembered (APPERR_BASE + 176 ) /* @I
  228. *
  229. *New connections will be remembered.
  230. */
  231. #define APE_ConnectionsAreNotRemembered (APPERR_BASE + 177 ) /* @I
  232. *
  233. *New connections will not be remembered.
  234. */
  235. #define APE_ProfileWriteError (APPERR_BASE + 178 ) /* @I
  236. *
  237. *An error occurred while saving your profile. The state of your remembered connections has not changed.
  238. */
  239. #define APE_ProfileReadError (APPERR_BASE + 179 ) /* @I
  240. *
  241. *An error occurred while reading your profile.
  242. */
  243. #define APE_LoadError (APPERR_BASE + 180 ) /* @E
  244. *
  245. *An error occurred while restoring the connection to %1.
  246. */
  247. #define APE_NothingRunning (APPERR_BASE + 182 ) /* @I
  248. *
  249. *No network services are started.
  250. */
  251. #define APE_EmptyList (APPERR_BASE + 183 ) /* @I
  252. *
  253. *There are no entries in the list.
  254. */
  255. #define APE_ShareOpens (APPERR_BASE + 188) /* @I
  256. *
  257. *Users have open files on %1. Continuing the operation will force the files closed.
  258. */
  259. #define APE_WkstaSwitchesIgnored (APPERR_BASE + 189) /* @I
  260. *
  261. *The Workstation service is already running. Windows will ignore command options for the workstation.
  262. */
  263. #define APE_OpenHandles (APPERR_BASE + 191 ) /* @I
  264. *
  265. *There are open files and/or incomplete directory searches pending on the connection to %1.
  266. */
  267. #define APE_RemotingToDC (APPERR_BASE + 193 ) /* @I
  268. *
  269. *The request will be processed at a domain controller for domain %1.
  270. */
  271. #define APE_ShareSpooling (APPERR_BASE + 194 ) /* @E
  272. *
  273. *The shared queue cannot be deleted while a print job is being spooled to the queue.
  274. */
  275. #define APE_DeviceIsRemembered (APPERR_BASE + 195 ) /* @E
  276. *
  277. *%1 has a remembered connection to %2.
  278. */
  279. /***
  280. *
  281. * Error messages
  282. *
  283. */
  284. #define APE_HelpFileDoesNotExist (APPERR_BASE + 210)
  285. /*
  286. *An error occurred while opening the Help file.
  287. */
  288. #define APE_HelpFileEmpty (APPERR_BASE + 211)
  289. /*
  290. *The Help file is empty.
  291. */
  292. #define APE_HelpFileError (APPERR_BASE + 212)
  293. /*
  294. *The Help file is corrupted.
  295. */
  296. #define APE_DCNotFound (APPERR_BASE + 213)
  297. /*
  298. *Could not find a domain controller for domain %1.
  299. */
  300. #define APE_DownlevelReqPriv (APPERR_BASE + 214)
  301. /*
  302. *This operation is privileged on systems with earlier
  303. *versions of the software.
  304. */
  305. #define APE_UnknDevType (APPERR_BASE + 216)
  306. /*
  307. *The device type is unknown.
  308. */
  309. #define APE_LogFileCorrupt (APPERR_BASE + 217)
  310. /*
  311. *The log file has been corrupted.
  312. */
  313. #define APE_OnlyNetRunExes (APPERR_BASE + 218)
  314. /*
  315. *Program filenames must end with .EXE.
  316. */
  317. #define APE_ShareNotFound (APPERR_BASE + 219)
  318. /*
  319. *A matching share could not be found so nothing was deleted.
  320. */
  321. #define APE_UserBadUPW (APPERR_BASE + 220)
  322. /*
  323. *A bad value is in the units-per-week field of the user record.
  324. */
  325. #define APE_UseBadPass (APPERR_BASE + 221 )
  326. /*
  327. *The password is invalid for %1.
  328. */
  329. #define APE_SendErrSending (APPERR_BASE + 222 )
  330. /*
  331. *An error occurred while sending a message to %1.
  332. */
  333. #define APE_UseBadPassOrUser (APPERR_BASE + 223 )
  334. /*
  335. *The password or user name is invalid for %1.
  336. */
  337. #define APE_ShareErrDeleting (APPERR_BASE + 225 )
  338. /*
  339. *An error occurred when the share was deleted.
  340. */
  341. #define APE_LogoInvalidName (APPERR_BASE + 226 )
  342. /*
  343. *The user name is invalid.
  344. */
  345. #define APE_UtilInvalidPass (APPERR_BASE + 227 )
  346. /*
  347. *The password is invalid.
  348. */
  349. /* Note. The APE_UtilNomatch error message string is used in the
  350. * WINNET project, where the string is hard coded. Therefore, if
  351. * This string changes, please do also update WINNET.RC in the
  352. * WINNET project (..\..\WINNET\WINNET.RC). Thank you.
  353. */
  354. #define APE_UtilNomatch (APPERR_BASE + 228 )
  355. /*
  356. *The passwords do not match.
  357. */
  358. #define APE_LoadAborted (APPERR_BASE + 229 ) /* @E
  359. *
  360. *Your persistent connections were not all restored.
  361. */
  362. #define APE_PassInvalidCname (APPERR_BASE + 230 )
  363. /*
  364. *This is not a valid computer name or domain name.
  365. */
  366. #define APE_NoDefaultPerms (APPERR_BASE + 232)
  367. /*
  368. *Default permissions cannot be set for that resource.
  369. */
  370. /* Note. The APE_NoGoodPass error message string is used in the
  371. * WINNET project, where the string is hard coded. Therefore, if
  372. * This string changes, please do also update WINNET.RC in the
  373. * WINNET project (..\..\WINNET\WINNET.RC). Thank you.
  374. */
  375. #define APE_NoGoodPass (APPERR_BASE + 234 )
  376. /*
  377. *A valid password was not entered.
  378. */
  379. #define APE_NoGoodName (APPERR_BASE + 235 )
  380. /*
  381. *A valid name was not entered.
  382. */
  383. #define APE_BadResource (APPERR_BASE + 236 ) /* @E
  384. *
  385. *The resource named cannot be shared.
  386. */
  387. #define APE_BadPermsString (APPERR_BASE + 237 ) /* @E
  388. *
  389. *The permissions string contains invalid permissions.
  390. */
  391. #define APE_InvalidDeviceType (APPERR_BASE + 238 ) /* @E
  392. *
  393. *You can only perform this operation on printers and communication devices.
  394. */
  395. #define APE_BadUGName (APPERR_BASE + 242 ) /* @E
  396. *
  397. *%1 is an invalid user or group name.
  398. */
  399. #define APE_BadAdminConfig (APPERR_BASE+243)
  400. /*
  401. *The server is not configured for remote administration.
  402. */
  403. #define APE_NoUsersOfSrv (APPERR_BASE + 252)
  404. /*
  405. *No users have sessions with this server.
  406. */
  407. #define APE_UserNotInGroup (APPERR_BASE + 253)
  408. /*
  409. *User %1 is not a member of group %2.
  410. */
  411. #define APE_UserAlreadyInGroup (APPERR_BASE + 254)
  412. /*
  413. *User %1 is already a member of group %2.
  414. */
  415. #define APE_NoSuchUser (APPERR_BASE + 255)
  416. /*
  417. *There is no such user: %1.
  418. */
  419. #define APE_UtilInvalidResponse (APPERR_BASE + 256) /* @I
  420. *
  421. *This is an invalid response.
  422. */
  423. #define APE_NoGoodResponse (APPERR_BASE + 257)
  424. /*
  425. *No valid response was provided.
  426. */
  427. #define APE_ShareNoMatch (APPERR_BASE + 258)
  428. /*
  429. *The destination list provided does not match the destination list of the printer queue.
  430. */
  431. #define APE_PassChgDate (APPERR_BASE + 259)
  432. /*
  433. *Your password cannot be changed until %1.
  434. */
  435. /***
  436. * NET USER /TIMES format messages
  437. *
  438. */
  439. #define APE_UnrecognizedDay (APPERR_BASE + 260)
  440. /*
  441. *%1 is not a recognized day of the week.
  442. */
  443. #define APE_ReversedTimeRange (APPERR_BASE + 261)
  444. /*
  445. *The time range specified ends before it starts.
  446. */
  447. #define APE_UnrecognizedHour (APPERR_BASE + 262)
  448. /*
  449. *%1 is not a recognized hour.
  450. */
  451. #define APE_UnrecognizedMinutes (APPERR_BASE + 263)
  452. /*
  453. *%1 is not a valid specification for minutes.
  454. */
  455. #define APE_NonzeroMinutes (APPERR_BASE + 264)
  456. /*
  457. *Time supplied is not exactly on the hour.
  458. */
  459. #define APE_MixedTimeFormat (APPERR_BASE + 265)
  460. /*
  461. *12 and 24 hour time formats may not be mixed.
  462. */
  463. #define APE_NeitherAmNorPm (APPERR_BASE + 266)
  464. /*
  465. *%1 is not a valid 12-hour suffix.
  466. */
  467. #define APE_BadDateFormat (APPERR_BASE + 267)
  468. /*
  469. *An illegal date format has been supplied.
  470. */
  471. #define APE_BadDayRange (APPERR_BASE + 268)
  472. /*
  473. *An illegal day range has been supplied.
  474. */
  475. #define APE_BadTimeRange (APPERR_BASE + 269)
  476. /*
  477. *An illegal time range has been supplied.
  478. */
  479. /***
  480. * Other NET USER messages
  481. *
  482. */
  483. #define APE_UserBadArgs (APPERR_BASE + 270)
  484. /*
  485. *Arguments to NET USER are invalid. Check the minimum password
  486. *length and/or arguments supplied.
  487. */
  488. #define APE_UserBadEnablescript (APPERR_BASE + 271)
  489. /*
  490. *The value for ENABLESCRIPT must be YES.
  491. */
  492. #define APE_UserBadCountryCode (APPERR_BASE + 273)
  493. /*
  494. *An illegal country code has been supplied.
  495. */
  496. #define APE_UserFailAddToUsersAlias (APPERR_BASE + 274)
  497. /*
  498. *The user was successfully created but could not be added
  499. *to the USERS local group.
  500. */
  501. /***
  502. *
  503. * Misc new messages for NT
  504. *
  505. */
  506. #define APE_BadUserContext (APPERR_BASE + 275)
  507. /*
  508. *The user context supplied is invalid.
  509. */
  510. #define APE_ErrorInDLL (APPERR_BASE + 276)
  511. /*
  512. *The dynamic-link library %1 could not be loaded, or an error
  513. *occurred while trying to use it.
  514. */
  515. #define APE_SendFileNotSupported (APPERR_BASE + 277)
  516. /*
  517. *Sending files is no longer supported.
  518. */
  519. #define APE_CannotShareSpecial (APPERR_BASE + 278)
  520. /*
  521. *You may not specify paths for ADMIN$ and IPC$ shares.
  522. */
  523. #define APE_AccountAlreadyInLocalGroup (APPERR_BASE + 279)
  524. /*
  525. *User or group %1 is already a member of local group %2.
  526. */
  527. #define APE_NoSuchAccount (APPERR_BASE + 280)
  528. /*
  529. *There is no such user or group: %1.
  530. */
  531. #define APE_NoSuchComputerAccount (APPERR_BASE + 281)
  532. /*
  533. *There is no such computer: %1.
  534. */
  535. #define APE_ComputerAccountExists (APPERR_BASE + 282)
  536. /*
  537. *The computer %1 already exists.
  538. */
  539. #define APE_NoSuchRegAccount (APPERR_BASE + 283)
  540. /*
  541. *There is no such global user or group: %1.
  542. */
  543. #define APE_BadCacheType (APPERR_BASE + 284)
  544. /*
  545. * Only disk shares can be marked as cacheable
  546. */
  547. /*
  548. * Used by NETLIB
  549. */
  550. #define APE_UNKNOWN_MESSAGE (APPERR_BASE + 290)
  551. /*
  552. *The system could not find message: %1.
  553. */
  554. /***
  555. *
  556. * AT messages
  557. *
  558. */
  559. #define APE_AT_INVALID_SCHED_DATE (APPERR_BASE + 302)
  560. /*
  561. *This schedule date is invalid.
  562. */
  563. #define APE_AT_WKSTAGETINFO_FAILURE (APPERR_BASE + 303)
  564. /*
  565. *The LANMAN root directory is unavailable.
  566. */
  567. #define APE_AT_SCHED_FILE_FAILURE (APPERR_BASE + 304)
  568. /*
  569. *The SCHED.LOG file could not be opened.
  570. */
  571. #define APE_AT_MEM_FAILURE (APPERR_BASE + 305)
  572. /*
  573. *The Server service has not been started.
  574. */
  575. #define APE_AT_ID_NOT_FOUND (APPERR_BASE + 306)
  576. /*
  577. *The AT job ID does not exist.
  578. */
  579. #define APE_AT_SCHED_CORRUPT (APPERR_BASE + 307)
  580. /*
  581. *The AT schedule file is corrupted.
  582. */
  583. #define APE_AT_DELETE_FAILURE (APPERR_BASE + 308)
  584. /*
  585. *The delete failed due to a problem with the AT schedule file.
  586. */
  587. #define APE_AT_COMMAND_TOO_LONG (APPERR_BASE + 309)
  588. /*
  589. *The command line cannot exceed 259 characters.
  590. */
  591. #define APE_AT_DISKFULL (APPERR_BASE + 310)
  592. /*
  593. *The AT schedule file could not be updated because the disk is full.
  594. */
  595. #define APE_AT_INVALIDATED_AT_FILE (APPERR_BASE + 312)
  596. /*
  597. *The AT schedule file is invalid. Please delete the file and create a new one.
  598. */
  599. #define APE_AT_SCHED_FILE_CLEARED (APPERR_BASE + 313)
  600. /*
  601. *The AT schedule file was deleted.
  602. */
  603. #define APE_AT_USAGE (APPERR_BASE + 314) /* @I
  604. *
  605. *The syntax of this command is:
  606. *
  607. *AT [id] [/DELETE]
  608. *AT time [/EVERY:date | /NEXT:date] command
  609. *
  610. *The AT command schedules a program command to run at a
  611. *later date and time on a server. It also displays the
  612. *list of programs and commands scheduled to be run.
  613. *
  614. *You can specify the date as M,T,W,Th,F,Sa,Su or 1-31
  615. *for the day of the month.
  616. *
  617. *You can specify the time in the 24 hour HH:MM format.
  618. */
  619. #define APE_AT_SEM_BLOCKED (APPERR_BASE + 315)
  620. /*
  621. *The AT command has timed-out.
  622. *Please try again later.
  623. */
  624. /***
  625. *
  626. * NET ACCOUNTS error messages for NT
  627. *
  628. */
  629. #define APE_MinGreaterThanMaxAge (APPERR_BASE + 316)
  630. /*
  631. *The minimum password age for user accounts cannot be greater
  632. *than the maximum password age.
  633. */
  634. #define APE_NotUASCompatible (APPERR_BASE + 317)
  635. /*
  636. *You have specified a value that is incompatible
  637. *with servers with down-level software. Please specify a lower value.
  638. */
  639. /* the following 2 messages have nothing to do with any ACC utility */
  640. #define APE_BAD_COMPNAME (APPERR_BASE + 370)
  641. /*
  642. *%1 is not a valid computer name.
  643. */
  644. #define APE_BAD_MSGID (APPERR_BASE + 371)
  645. /*
  646. *%1 is not a valid Windows network message number.
  647. */
  648. /*
  649. * Messenger message headers and ends. These messages are also bound into
  650. * the messenger, in case the net.msg file is not available.
  651. */
  652. #define APE_MSNGR_HDR (APPERR_BASE + 400)
  653. /*
  654. *Message from %1 to %2 on %3
  655. */
  656. #define APE_MSNGR_GOODEND (APPERR_BASE + 401)
  657. /*
  658. *****
  659. */
  660. #define APE_MSNGR_BADEND (APPERR_BASE + 402)
  661. /*
  662. ***** unexpected end of message ****
  663. */
  664. /*
  665. * Messages for the net popup service / api.
  666. */
  667. #define APE_POPUP_DISMISS (APPERR_BASE + 405)
  668. /* Press ESC to exit*/
  669. #define APE_POPUP_MOREDATA (APPERR_BASE + 406)
  670. /*...*/
  671. /***
  672. *
  673. * NET TIME messages
  674. *
  675. */
  676. #define APE_TIME_TimeDisp (APPERR_BASE + 410) /* @I
  677. *
  678. *Current time at %1 is %2
  679. */
  680. #define APE_TIME_SetTime (APPERR_BASE + 411) /* @P
  681. *
  682. *The current local clock is %1
  683. *Do you want to set the local computer's time to match the
  684. *time at %2? %3: %0
  685. */
  686. #define APE_TIME_RtsNotFound (APPERR_BASE + 412) /* @I
  687. *
  688. *Could not locate a time-server.
  689. */
  690. #define APE_TIME_DcNotFound (APPERR_BASE + 413) /* @E
  691. *
  692. *Could not find the domain controller for domain %1.
  693. */
  694. #define APE_TIME_TimeDispLocal (APPERR_BASE + 414) /* @I
  695. *
  696. *Local time (GMT%3) at %1 is %2
  697. */
  698. /***
  699. *
  700. * NET USE messages
  701. *
  702. */
  703. #define APE_UseHomeDirNotDetermined (APPERR_BASE + 415) /* @E
  704. *
  705. *The user's home directory could not be determined.
  706. */
  707. #define APE_UseHomeDirNotSet (APPERR_BASE + 416) /* @E
  708. *
  709. *The user's home directory has not been specified.
  710. */
  711. #define APE_UseHomeDirNotUNC (APPERR_BASE + 417) /* @E
  712. *
  713. *The name specified for the user's home directory (%1) is not a universal naming convention (UNC) name.
  714. */
  715. #define APE_UseHomeDirSuccess (APPERR_BASE + 418) /* @I
  716. *
  717. *Drive %1 is now connected to %2. Your home directory is %3\%4.
  718. */
  719. #define APE_UseWildCardSuccess (APPERR_BASE + 419) /* @I
  720. *
  721. *Drive %1 is now connected to %2.
  722. */
  723. #define APE_UseWildCardNoneLeft (APPERR_BASE + 420) /* @E
  724. *
  725. *There are no available drive letters left.
  726. */
  727. #define APE_CS_InvalidDomain (APPERR_BASE + 432) /* @E
  728. *
  729. *%1 is not a valid domain or workgroup name.
  730. */
  731. /*
  732. * More NET TIME messages
  733. */
  734. #define APE_TIME_SNTP (APPERR_BASE + 435) /* @I
  735. *
  736. *The current SNTP value is: %1
  737. */
  738. #define APE_TIME_SNTP_DEFAULT (APPERR_BASE + 436) /* @I
  739. *
  740. *This computer is not currently configured to use a specific SNTP server.
  741. */
  742. #define APE_TIME_SNTP_AUTO (APPERR_BASE + 437) /* @I
  743. *
  744. *This current autoconfigured SNTP value is: %1
  745. */
  746. #define APE_CmdArgTooMany (APPERR_BASE + 451)
  747. /*
  748. * You specified too many values for the %1 option.
  749. */
  750. #define APE_CmdArgIllegal (APPERR_BASE + 452)
  751. /*
  752. * You entered an invalid value for the %1 option.
  753. */
  754. #define APE_CmdArgIncorrectSyntax (APPERR_BASE + 453)
  755. /*
  756. *The syntax is incorrect.
  757. */
  758. /*
  759. * NET PRINT and NET FILE errors
  760. */
  761. #define APE_FILE_BadId (APPERR_BASE + 460)
  762. /*
  763. *You specified an invalid file number.
  764. */
  765. #define APE_PRINT_BadId (APPERR_BASE + 461)
  766. /*
  767. *You specified an invalid print job number.
  768. */
  769. /*
  770. * ALIAS related errors
  771. */
  772. #define APE_UnknownAccount (APPERR_BASE + 463)
  773. /*
  774. *The user or group account specified cannot be found.
  775. */
  776. /*
  777. * FPNW related errors
  778. */
  779. #define APE_CannotEnableNW (APPERR_BASE + 465)
  780. /*
  781. *The user was added but could not be enabled for File and Print
  782. *Services for NetWare.
  783. */
  784. #define APE_FPNWNotInstalled (APPERR_BASE + 466)
  785. /*
  786. *File and Print Services for NetWare is not installed.
  787. */
  788. #define APE_CannotSetNW (APPERR_BASE + 467)
  789. /*
  790. *Cannot set user properties for File and Print Services for NetWare.
  791. */
  792. #define APE_RandomPassword (APPERR_BASE + 468)
  793. /*
  794. *Password for %1 is: %2
  795. */
  796. #define APE_NWCompat (APPERR_BASE + 469)
  797. /*
  798. *NetWare compatible logon
  799. */