Source code of Windows XP (NT5)
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.

938 lines
24 KiB

  1. ;/*++
  2. ;
  3. ;Copyright (c) 1998, 1999 Sequent Computer Systems, Incorporated
  4. ;
  5. ;Description:
  6. ;
  7. ;---------------------------------------------------------------------------------------//
  8. ; This file contains the message resource definitions. //
  9. ; Compiling it with the message compiler generates related .RC, .BIN, and .H files. //
  10. ;---------------------------------------------------------------------------------------//
  11. ;;
  12. ;Created:
  13. ;
  14. ; Jarl McDonald 06-98
  15. ;
  16. ;Revision History:
  17. ;
  18. ;--*/
  19. ;//---------------------------------------------------------------------------
  20. ;//
  21. ;// HEADER SECTION
  22. ;//
  23. ;// The header section defines names and language identifiers for use
  24. ;// by the message definitions later in this file. The MessageIdTypedef,
  25. ;// SeverityNames, FacilityNames, and LanguageNames keywords are
  26. ;// optional and not required.
  27. ;//
  28. MessageIdTypedef=DWORD
  29. ;//
  30. ;// The MessageIdTypedef keyword gives a typedef name that is used in a
  31. ;// type cast for each message code in the generated include file. Each
  32. ;// message code appears in the include file with the format: #define
  33. ;// name ((type) 0xnnnnnnnn) The default value for type is empty, and no
  34. ;// type cast is generated. It is the programmer's responsibility to
  35. ;// specify a typedef statement in the application source code to define
  36. ;// the type. The type used in the typedef must be large enough to
  37. ;// accomodate the entire 32-bit message code.
  38. ;//
  39. ;//
  40. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  41. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  42. Warning=0x2:STATUS_SEVERITY_WARNING
  43. Error=0x3:STATUS_SEVERITY_ERROR
  44. )
  45. ;//
  46. ;// The SeverityNames keyword defines the set of names that are allowed
  47. ;// as the value of the Severity keyword in the message definition. The
  48. ;// set is delimited by left and right parentheses. Associated with each
  49. ;// severity name is a number that, when shifted left by 30, gives the
  50. ;// bit pattern to logical-OR with the Facility value and MessageId
  51. ;// value to form the full 32-bit message code. The default value of
  52. ;// this keyword is:
  53. ;//
  54. ;// SeverityNames=(
  55. ;// Success=0x0
  56. ;// Informational=0x1
  57. ;// Warning=0x2
  58. ;// Error=0x3
  59. ;// )
  60. ;//
  61. ;// Severity values occupy the high two bits of a 32-bit message code.
  62. ;// Any severity value that does not fit in two bits is an error. The
  63. ;// severity codes can be given symbolic names by following each value
  64. ;// with :name
  65. ;//
  66. ;//
  67. FacilityNames=(System=0x0:FACILITY_SYSTEM
  68. ProcConSnapin=0x1:FACILITY_PROCCON_SNAPIN
  69. ProcConLib=0x2:FACILITY_PROCCON_LIB
  70. ProcConCLI=0x3:FACILITY_PROCCON_CLI
  71. )
  72. ;//
  73. ;// The FacilityNames keyword defines the set of names that are allowed
  74. ;// as the value of the Facility keyword in the message definition. The
  75. ;// set is delimited by left and right parentheses. Associated with each
  76. ;// facility name is a number that, when shift it left by 16 bits, gives
  77. ;// the bit pattern to logical-OR with the Severity value and MessageId
  78. ;// value to form the full 32-bit message code.
  79. ;//
  80. ;//
  81. ;// Facility codes occupy the low order 12 bits of the high order
  82. ;// 16-bits of a 32-bit message code. Any facility code that does not
  83. ;// fit in 12 bits is an error. This allows for 4,096 facility codes.
  84. ;// The first 256 codes are reserved for use by the system software. The
  85. ;// facility codes can be given symbolic names by following each value
  86. ;// with :name
  87. ;//
  88. ;//
  89. ;// The LanguageNames keyword defines the set of names that are allowed
  90. ;// as the value of the Language keyword in the message definition. The
  91. ;// set is delimited by left and right parentheses. Associated with each
  92. ;// language name is a number and a file name that are used to name the
  93. ;// generated resource file that contains the messages for that
  94. ;// language. The number corresponds to the language identifier to use
  95. ;// in the resource table. The number is separated from the file name
  96. ;// with a colon.
  97. ;//
  98. LanguageNames=(English=0x409:MSG00409)
  99. ;//
  100. ;// Any new names in the source file which don't override the built-in
  101. ;// names are added to the list of valid languages. This allows an
  102. ;// application to support private languages with descriptive names.
  103. ;//
  104. ;//
  105. ;//---------------------------------------------------------------------------
  106. ;// MESSAGE DEFINITION SECTION
  107. ;//
  108. ;// Following the header section is the body of the Message Compiler
  109. ;// source file. The body consists of zero or more message definitions.
  110. ;// Each message definition begins with one or more of the following
  111. ;// statements:
  112. ;//
  113. ;// MessageId = [number|+number]
  114. ;// Severity = severity_name
  115. ;// Facility = facility_name
  116. ;// SymbolicName = name
  117. ;//
  118. ;// The MessageId statement marks the beginning of the message
  119. ;// definition. A MessageID statement is required for each message,
  120. ;// although the value is optional. If no value is specified, the value
  121. ;// used is the previous value for the facility plus one. If the value
  122. ;// is specified as +number then the value used is the previous value
  123. ;// for the facility, plus the number after the plus sign. Otherwise, if
  124. ;// a numeric value is given, that value is used. Any MessageId value
  125. ;// that does not fit in 16 bits is an error.
  126. ;//
  127. ;// The Severity and Facility statements are optional. These statements
  128. ;// specify additional bits to OR into the final 32-bit message code. If
  129. ;// not specified they default to the value last specified for a message
  130. ;// definition. The initial values prior to processing the first message
  131. ;// definition are:
  132. ;//
  133. ;// Severity=Success
  134. ;// Facility=Application
  135. ;//
  136. ;// The value associated with Severity and Facility must match one of
  137. ;// the names given in the FacilityNames and SeverityNames statements in
  138. ;// the header section. The SymbolicName statement allows you to
  139. ;// associate a C/C++ symbolic constant with the final 32-bit message
  140. ;// code.
  141. ;//
  142. MessageId=150
  143. Severity=Informational
  144. SymbolicName=PC_SERVICE_STARTED
  145. Language=English
  146. %1 has started.
  147. .
  148. MessageId=151
  149. Severity=Informational
  150. SymbolicName=PC_SERVICE_STOPPED
  151. Language=English
  152. %1 has stopped.
  153. .
  154. MessageId=152
  155. Severity=Informational
  156. SymbolicName=PC_SERVICE_CHANGE_PROC_PRIORITY
  157. Language=English
  158. %1 has changed the priority for process "%2" (PID %3, image "%4") from %5 to %6.
  159. .
  160. MessageId=153
  161. Severity=Informational
  162. SymbolicName=PC_SERVICE_CHANGE_PROC_AFFINITY
  163. Language=English
  164. %1 has changed the affinity for process "%2" (PID %3, image "%4") from %5 to %6.
  165. .
  166. MessageId=154
  167. Severity=Informational
  168. SymbolicName=PC_SERVICE_CHANGE_PROC_WORKING_SET
  169. Language=English
  170. %1 has changed the working set for process "%2" (PID %3, image "%4") from %5,%6 to %7,%8.
  171. .
  172. MessageId=160
  173. Severity=Informational
  174. SymbolicName=PC_SERVICE_CREATE_JOB
  175. Language=English
  176. %1 has created the process group (job object) named "%2".
  177. .
  178. MessageId=161
  179. Severity=Informational
  180. SymbolicName=PC_SERVICE_ADD_PROC_TO_JOB
  181. Language=English
  182. %1 has added process "%2" (PID %3, image "%4") to process group "%5".
  183. .
  184. MessageId=162
  185. Severity=Informational
  186. SymbolicName=PC_SERVICE_CHANGE_JOB_PRIORITY
  187. Language=English
  188. %1 has changed the priority limit for process group "%2" from %3 to %4.
  189. .
  190. MessageId=163
  191. Severity=Informational
  192. SymbolicName=PC_SERVICE_CHANGE_JOB_AFFINITY
  193. Language=English
  194. %1 has changed the affinity limit for process group "%2" from %3 to %4.
  195. .
  196. MessageId=164
  197. Severity=Informational
  198. SymbolicName=PC_SERVICE_CHANGE_JOB_WORKING_SET
  199. Language=English
  200. %1 has changed the working set limit for process group "%2" from %3,%4 to %5,%6.
  201. .
  202. MessageId=165
  203. Severity=Informational
  204. SymbolicName=PC_SERVICE_CHANGE_JOB_SCHEDULING_CLASS
  205. Language=English
  206. %1 has changed the scheduling class limit for process group "%2" from %3 to %4.
  207. .
  208. MessageId=166
  209. Severity=Informational
  210. SymbolicName=PC_SERVICE_CHANGE_JOB_PROCESS_TIME
  211. Language=English
  212. %1 has changed the process time limit for process group "%2" from %3 ms to %4 ms.
  213. .
  214. MessageId=167
  215. Severity=Informational
  216. SymbolicName=PC_SERVICE_CHANGE_JOB_JOB_TIME
  217. Language=English
  218. %1 has changed the group time limit for process group "%2" from %3 ms to %4 ms.
  219. .
  220. MessageId=168
  221. Severity=Informational
  222. SymbolicName=PC_SERVICE_CHANGE_JOB_PROCESS_COUNT
  223. Language=English
  224. %1 has changed the process count limit for process group "%2" from %3 to %4.
  225. .
  226. MessageId=169
  227. Severity=Informational
  228. SymbolicName=PC_SERVICE_CHANGE_JOB_PROCESS_MEMORY
  229. Language=English
  230. %1 has changed the process memory limit for process group "%2" from %3 to %4.
  231. .
  232. MessageId=170
  233. Severity=Informational
  234. SymbolicName=PC_SERVICE_CHANGE_JOB_JOB_MEMORY
  235. Language=English
  236. %1 has changed the group memory limit for process group "%2" from %3 to %4.
  237. .
  238. MessageId=171
  239. Severity=Informational
  240. SymbolicName=PC_SERVICE_SET_BREAKAWAY_ALLOWED
  241. Language=English
  242. %1 has set the BREAKAWAY_OK flag for process group "%2".
  243. .
  244. MessageId=172
  245. Severity=Informational
  246. SymbolicName=PC_SERVICE_SET_SILENT_BREAKAWAY_ENABLED
  247. Language=English
  248. %1 has set the SILENT_BREAKAWAY_OK flag for process group "%2".
  249. .
  250. MessageId=173
  251. Severity=Informational
  252. SymbolicName=PC_SERVICE_SET_LIMIT_DIE_ON_UNHANDLED_EXCEPTION
  253. Language=English
  254. %1 has set the DIE_ON_UNHANDLED_EXCEPTION flag for process group "%2".
  255. .
  256. MessageId=181
  257. Severity=Error
  258. SymbolicName=PC_SERVICE_DISPATCH_ERROR
  259. Language=English
  260. Service dispatch failed for "%1". ("%2").
  261. .
  262. MessageId=182
  263. Severity=Error
  264. SymbolicName=PC_SERVICE_STATUS_ERROR
  265. Language=English
  266. Set or report status failed for "%1". ("%2").
  267. .
  268. MessageId=183
  269. Severity=Error
  270. SymbolicName=PC_SERVICE_UNSUPPORTED_WINDOWS_VERSION
  271. Language=English
  272. For the "%1", the only supported OS is Windows Datacenter Server.
  273. .
  274. MessageId=184
  275. Severity=Error
  276. SymbolicName=PC_UNEXPECTED_REGISTRY_ERROR
  277. Language=English
  278. Unexpected Windows registry error during "%1" for "%2". ("%3").
  279. .
  280. MessageId=185
  281. Severity=Error
  282. SymbolicName=PC_UNEXPECTED_NT_ERROR
  283. Language=English
  284. Unexpected Windows error: operand "%1", operation "%2", error "%3".
  285. .
  286. MessageId=188
  287. Severity=Error
  288. SymbolicName=PC_STARTUP_FAILED
  289. Language=English
  290. Service internal initialization failed, "%1". ("%2").
  291. .
  292. MessageId=189
  293. Severity=Error
  294. SymbolicName=PC_CANT_GET_MEMORY
  295. Language=English
  296. Cannot get requested memory, size is %1. ("%2").
  297. .
  298. MessageId=190
  299. Severity=Error
  300. SymbolicName=PC_INVALID_DATA_ERROR
  301. Language=English
  302. A database entry has invalid data or format. ("%1").
  303. .
  304. MessageId=191
  305. Severity=Error
  306. SymbolicName=PC_DB_OPEN_FAILED
  307. Language=English
  308. Initialization of Process Control database failed in "%1". ("%2").
  309. .
  310. MessageId=192
  311. Severity=Error
  312. SymbolicName=PC_SERVICE_APPLY_PROC_AFFINITY_ERROR
  313. Language=English
  314. %1 could not apply desired affinity to process %2 (PID %3, image "%4"). ("%5").
  315. .
  316. MessageId=193
  317. Severity=Error
  318. SymbolicName=PC_SERVICE_APPLY_PROC_PRIORITY_ERROR
  319. Language=English
  320. %1 could not apply desired priority to process %2 (PID %3, image "%4"). ("%5").
  321. .
  322. MessageId=194
  323. Severity=Error
  324. SymbolicName=PC_SERVICE_APPLY_PROC_WORKINGSET_ERROR
  325. Language=English
  326. %1 could not apply desired working set limits to process %2 (PID %3, image "%4"). ("%5").
  327. .
  328. MessageId=195
  329. Severity=Error
  330. SymbolicName=PC_MEDIATE_SVC_NEVER_STARTED
  331. Language=English
  332. %1 could not start because the %2 has never been started.
  333. .
  334. MessageId=196
  335. Severity=Error
  336. SymbolicName=PC_PROCESS_ALREADY_RUNNING
  337. Language=English
  338. %1 not started because it is already running.
  339. .
  340. MessageId=197
  341. Severity=Error
  342. SymbolicName=PC_SERVICE_ALREADY_IN_JOB
  343. Language=English
  344. %1 could not put process %2 (PID %3, image "%4") in job %5, already in job %6.
  345. .
  346. MessageId=200
  347. Severity=Informational
  348. SymbolicName=PC_SERVICE_KILLED_PROCESS
  349. Language=English
  350. %1 has killed process with PID %2 due to kill request.
  351. .
  352. MessageId=201
  353. Severity=Informational
  354. SymbolicName=PC_SERVICE_KILLED_JOB
  355. Language=English
  356. %1 has killed the processes in group named "%2" due to kill request.
  357. .
  358. MessageId=202
  359. Severity=Informational
  360. SymbolicName=PC_SERVICE_JOB_HIT_TIME_LIMIT_NOTERM
  361. Language=English
  362. %1: process group named "%2" hit the group time limit of %3ms; process group continues with time limit cleared.
  363. .
  364. MessageId=203
  365. Severity=Informational
  366. SymbolicName=PC_SERVICE_JOB_HIT_TIME_LIMIT_TERMINATED
  367. Language=English
  368. %1: process group named "%2" hit the group time limit of %3ms; all processes in the process group were terminated.
  369. .
  370. MessageId=204
  371. Severity=Informational
  372. SymbolicName=PC_SERVICE_PROC_HIT_TIME_LIMIT
  373. Language=English
  374. %1: process in process group named "%2" hit the process time limit of %3ms; process has been terminated (PID was %4).
  375. .
  376. MessageId=205
  377. Severity=Informational
  378. SymbolicName=PC_SERVICE_JOB_HIT_COUNT_LIMIT
  379. Language=English
  380. %1: process group named "%2" attempted to exceed the process count limit of %3; the offending process was terminated.
  381. .
  382. MessageId=206
  383. Severity=Informational
  384. SymbolicName=PC_SERVICE_JOB_HIT_MEMORY_LIMIT
  385. Language=English
  386. %1: process group named "%2" hit the group memory limit of %3; process responsible was PID %4.
  387. .
  388. MessageId=207
  389. Severity=Informational
  390. SymbolicName=PC_SERVICE_PROC_HIT_MEMORY_LIMIT
  391. Language=English
  392. %1: process group named "%2" hit the process memory limit of %3; process responsible was PID %4.
  393. .
  394. MessageId=208
  395. Severity=Informational
  396. SymbolicName=PC_SERVICE_ADD_NONPC_PROC_TO_JOB
  397. Language=English
  398. %1: new process created in process group "%2", process "%3" (PID %4, image "%5").
  399. .
  400. MessageId=262
  401. Severity=Informational
  402. SymbolicName=PC_SERVICE_REMOVE_JOB_PRIORITY
  403. Language=English
  404. %1 has removed the priority limit from process group "%2"; it was %3.
  405. .
  406. MessageId=263
  407. Severity=Informational
  408. SymbolicName=PC_SERVICE_REMOVE_JOB_AFFINITY
  409. Language=English
  410. %1 has removed the affinity limit from process group "%2"; it was %3.
  411. .
  412. MessageId=264
  413. Severity=Informational
  414. SymbolicName=PC_SERVICE_REMOVE_JOB_WORKING_SET
  415. Language=English
  416. %1 has removed the working set limit from process group "%2"; it was %3,%4.
  417. .
  418. MessageId=265
  419. Severity=Informational
  420. SymbolicName=PC_SERVICE_REMOVE_JOB_SCHEDULING_CLASS
  421. Language=English
  422. %1 has removed the scheduling class limit from process group "%2"; it was %3.
  423. .
  424. MessageId=266
  425. Severity=Informational
  426. SymbolicName=PC_SERVICE_REMOVE_JOB_PROCESS_TIME
  427. Language=English
  428. %1 has removed the process time limit from process group "%2"; it was %3 ms.
  429. .
  430. MessageId=267
  431. Severity=Informational
  432. SymbolicName=PC_SERVICE_REMOVE_JOB_JOB_TIME
  433. Language=English
  434. %1 has removed the group time limit from process group "%2"; it was %3 ms.
  435. .
  436. MessageId=268
  437. Severity=Informational
  438. SymbolicName=PC_SERVICE_REMOVE_JOB_PROCESS_COUNT
  439. Language=English
  440. %1 has removed the process count limit from process group "%2"; it was %3.
  441. .
  442. MessageId=269
  443. Severity=Informational
  444. SymbolicName=PC_SERVICE_REMOVE_JOB_PROCESS_MEMORY
  445. Language=English
  446. %1 has removed the process memory limit from process group "%2"; it was %3.
  447. .
  448. MessageId=270
  449. Severity=Informational
  450. SymbolicName=PC_SERVICE_REMOVE_JOB_JOB_MEMORY
  451. Language=English
  452. %1 has removed the process group memory limit from "%2"; it was %3.
  453. .
  454. MessageId=271
  455. Severity=Informational
  456. SymbolicName=PC_SERVICE_UNSET_BREAKAWAY_ALLOWED
  457. Language=English
  458. %1 has cleared the BREAKAWAY_OK flag for process group "%2".
  459. .
  460. MessageId=272
  461. Severity=Informational
  462. SymbolicName=PC_SERVICE_UNSET_SILENT_BREAKAWAY_ENABLED
  463. Language=English
  464. %1 has cleared the SILENT_BREAKAWAY_OK flag for process group "%2".
  465. .
  466. MessageId=273
  467. Severity=Informational
  468. SymbolicName=PC_SERVICE_UNSET_LIMIT_DIE_ON_UNHANDLED_EXCEPTION
  469. Language=English
  470. %1 has cleared the DIE_ON_UNHANDLED_EXCEPTION flag for process group "%2".
  471. .
  472. MessageId=300
  473. Severity=Error
  474. SymbolicName=PC_SERVICE_APPLY_JOB_AFFINITY_REJECT
  475. Language=English
  476. %1 did not apply group affinity limit for %2: no active processors requested.
  477. .
  478. MessageId=301
  479. Severity=Error
  480. SymbolicName=PC_SERVICE_APPLY_JOB_PRIORITY_REJECT
  481. Language=English
  482. %1 did not apply group priority limit for %2: invalid priority supplied.
  483. .
  484. MessageId=302
  485. Severity=Error
  486. SymbolicName=PC_SERVICE_APPLY_JOB_SCHEDULING_CLASS_REJECT
  487. Language=English
  488. %1 did not apply group scheduling class limit for %2: invalid class value supplied.
  489. .
  490. MessageId=303
  491. Severity=Error
  492. SymbolicName=PC_SERVICE_APPLY_JOB_WORKING_SET_REJECT
  493. Language=English
  494. %1 did not apply group working set limits for %2: invalid minimum and/or maximum supplied.
  495. .
  496. MessageId=304
  497. Severity=Error
  498. SymbolicName=PC_SERVICE_APPLY_JOB_MEMORY_REJECT
  499. Language=English
  500. %1 did not apply group memory limit for %2: invalid value supplied.
  501. .
  502. MessageId=305
  503. Severity=Error
  504. SymbolicName=PC_SERVICE_APPLY_PROC_MEMORY_REJECT
  505. Language=English
  506. %1 did not apply per-process memory limit for group %2: invalid value supplied.
  507. .
  508. MessageId=306
  509. Severity=Error
  510. SymbolicName=PC_SERVICE_APPLY_PROC_AFFINITY_REJECT
  511. Language=English
  512. %1 did not apply process affinity limit for %2: no active processors requested.
  513. .
  514. MessageId=307
  515. Severity=Error
  516. SymbolicName=PC_SERVICE_APPLY_PROC_PRIORITY_REJECT
  517. Language=English
  518. %1 did not apply process priority limit for %2: invalid priority supplied.
  519. .
  520. MessageId=308
  521. Severity=Error
  522. SymbolicName=PC_SERVICE_APPLY_PROC_WORKING_SET_REJECT
  523. Language=English
  524. %1 did not apply process working set limits for %2: invalid minimum and/or maximum supplied.
  525. .
  526. MessageId=309
  527. Severity=Error
  528. SymbolicName=PC_SERVICE_APPLY_JOB_TIME_REJECT
  529. Language=English
  530. %1 did not apply group time limit for %2: invalid value supplied.
  531. .
  532. MessageId=310
  533. Severity=Error
  534. SymbolicName=PC_SERVICE_APPLY_PROC_TIME_REJECT
  535. Language=English
  536. %1 did not apply per-process time limit for group %2: invalid value supplied.
  537. .
  538. MessageId=311
  539. Severity=Error
  540. SymbolicName=PC_SERVICE_UNABLE_TO_INSTALL
  541. Language=English
  542. Unable to install %2 - %1
  543. .
  544. MessageId=312
  545. Severity=Error
  546. SymbolicName=PC_SERVICE_REGISTRY_OPEN_FAILED
  547. Language=English
  548. %2 Registry Key open failed for '%3' - %1
  549. .
  550. MessageId=313
  551. Severity=Error
  552. SymbolicName=PC_SERVICE_ADD_VALUE_SERVICE_DESC_FAILED
  553. Language=English
  554. %2 add value failed for '%3' - %1
  555. .
  556. MessageId=314
  557. Severity=Error
  558. SymbolicName=PC_SERVICE_APP_KEY_OPEN_FAILED
  559. Language=English
  560. %2 Server Application Control Key open failed for '%3' - %1
  561. .
  562. MessageId=315
  563. Severity=Error
  564. SymbolicName=PC_SERVICE_APP_KEY_ADD_FAILED
  565. Language=English
  566. %2 add value failed for server application control registry entry '%3' - %1
  567. .
  568. MessageId=316
  569. Severity=Error
  570. SymbolicName=PC_SERVICE_REG_KEY_CREATE_FAILED
  571. Language=English
  572. %2 Registry Key Create failed for '%3' - %1
  573. .
  574. MessageId=317
  575. Severity=Error
  576. SymbolicName=PC_SERVICE_EVENTLOG_REG_SETUP_FAILED
  577. Language=English
  578. %2 EventLog registry entries set-up failed for '%3' - %1
  579. .
  580. MessageId=318
  581. Severity=Error
  582. SymbolicName=PC_SERVICE_PARAM_KEY_CREATE_FAILED
  583. Language=English
  584. %2 Parameter Key Create failed for '%3' - %1
  585. .
  586. MessageId=319
  587. Severity=Error
  588. SymbolicName=PC_SERVICE_PARAM_DATA_UPDATE_FAILED
  589. Language=English
  590. %2 Parameter Data Update failed for '%3' - %1
  591. .
  592. MessageId=320
  593. Severity=Error
  594. SymbolicName=PC_SERVICE_CREATESERVICE_FAILED
  595. Language=English
  596. %2 CreateService failed - %1
  597. .
  598. MessageId=321
  599. Severity=Error
  600. SymbolicName=PC_SERVICE_OPENSCMGR_FAILED
  601. Language=English
  602. OpenSCManager failed - %1
  603. .
  604. MessageId=322
  605. Severity=Error
  606. SymbolicName=PC_SERVICE_FAILED_TO_STOP
  607. Language=English
  608. %2 failed to stop.
  609. .
  610. MessageId=323
  611. Severity=Error
  612. SymbolicName=PC_SERVICE_DELETE_SVC_FAILED
  613. Language=English
  614. DeleteService failed - %1
  615. .
  616. MessageId=324
  617. Severity=Error
  618. SymbolicName=PC_SERVICE_OPEN_SVC_FAILED
  619. Language=English
  620. OpenService failed - %1
  621. .
  622. MessageId=325
  623. Severity=Error
  624. SymbolicName=PC_SERVICE_APP_REG_ENTRY_DELETED
  625. Language=English
  626. %2 server application control registry entry deleted.
  627. .
  628. MessageId=326
  629. Severity=Error
  630. SymbolicName=PC_SERVICE_APP_REG_ENTRY_DEL_FAILED
  631. Language=English
  632. %2 server application control registry entry delete failed for '%3' - %1
  633. .
  634. MessageId=327
  635. Severity=Error
  636. SymbolicName=PC_SERVICE_EVTLOG_REG_DEL_FAILED
  637. Language=English
  638. %2 EventLog registry entries delete failed for '%3' - %1
  639. .
  640. MessageId=328
  641. Severity=Error
  642. SymbolicName=PC_SERVICE_REG_TREE_DEL_FAILED
  643. Language=English
  644. %2 data registry tree delete failed for '%2' - %1
  645. .
  646. MessageId=400
  647. Severity=Informational
  648. SymbolicName=PC_SERVICE_DEL_ALL_NAME_RULES
  649. Language=English
  650. All process alias rules have been deleted.
  651. .
  652. MessageId=401
  653. Severity=Informational
  654. SymbolicName=PC_SERVICE_ADD_ALIAS_RULE
  655. Language=English
  656. New process alias rule %1 (alias name = "%2") has been inserted before rule %3 ("%4").%n
  657. Description: "%5"%n
  658. Match string: "%6"%n
  659. Match type: '%7'
  660. .
  661. MessageId=402
  662. Severity=Informational
  663. SymbolicName=PC_SERVICE_REPL_ALIAS_RULE
  664. Language=English
  665. Process alias rule %1 has been updated.%n
  666. Alias name: "%2" was "%3"%n
  667. Description: "%4" was "%5"%n
  668. Match string: "%6" was "%7"%n
  669. Match type: '%8' was '%9'
  670. .
  671. MessageId=403
  672. Severity=Informational
  673. SymbolicName=PC_SERVICE_DEL_ALIAS_RULE
  674. Language=English
  675. Process alias rule "%1" has been deleted.
  676. .
  677. MessageId=404
  678. Severity=Informational
  679. SymbolicName=PC_SERVICE_SWAP_ALIAS_RULE
  680. Language=English
  681. Process alias rule %1 ("%2") has been swapped with rule %3 ("%4").
  682. .
  683. MessageId=410
  684. Severity=Informational
  685. SymbolicName=PC_SERVICE_DEL_ALL_PROC_RULES
  686. Language=English
  687. All process execution rules have been deleted.
  688. .
  689. MessageId=411
  690. Severity=Informational
  691. SymbolicName=PC_SERVICE_ADD_PROC_EXECUTION_RULE
  692. Language=English
  693. Process execution rule "%1" has been added.%n
  694. Description: "%2"%n
  695. Member of job: %3[%4]%n
  696. Affinity: %5%n
  697. Priority: %6%n
  698. Working set: %7
  699. .
  700. MessageId=412
  701. Severity=Informational
  702. SymbolicName=PC_SERVICE_REPL_PROC_EXECUTION_RULE
  703. Language=English
  704. Process execution rule "%1" has been changed.%n
  705. Description: "%2" was "%3"%n
  706. Member of job: %4[%5] was %6[%7]%n
  707. Affinity: %8 was %9%n
  708. Priority: %10 was %11%n
  709. Working set: %12 was %13
  710. .
  711. MessageId=413
  712. Severity=Informational
  713. SymbolicName=PC_SERVICE_DEL_PROC_EXECUTION_RULE
  714. Language=English
  715. Process execution rule "%1" has been deleted.
  716. .
  717. MessageId=420
  718. Severity=Informational
  719. SymbolicName=PC_SERVICE_DEL_ALL_JOB_RULES
  720. Language=English
  721. All process group execution rules have been deleted.
  722. .
  723. MessageId=421
  724. Severity=Informational
  725. SymbolicName=PC_SERVICE_ADD_JOB_EXECUTION_RULE
  726. Language=English
  727. Process group execution rule "%1" has been added.%n
  728. Description: "%2"%n
  729. Affinity: %3%n
  730. Priority: %4%n
  731. Working set: %5%n
  732. Scheduling class: %6%n
  733. Process count limit: %7%n
  734. Process committed memory limit: %8%n
  735. Group committed memory limit: %9%n
  736. Per process user time limit: %10%n
  737. Group user time limit: %11%n
  738. Report on group user time limit(no termination): %12%n
  739. End process group when no processes in group: %13%n
  740. Die on unhandled exception: %14%n
  741. Silent breakaway: %15%n
  742. Breakaway OK: %16
  743. .
  744. MessageId=422
  745. Severity=Informational
  746. SymbolicName=PC_SERVICE_REPL_JOB_EXECUTION_RULE
  747. Language=English
  748. Process group execution rule "%1" has been changed.%n
  749. Description: "%2" was "%3"%n
  750. Affinity: %4 was %5%n
  751. Priority: %6 was %7%n
  752. Working set: %8 was %9%n
  753. Scheduling class: %10 was %11%n
  754. Process count limit: %12 was %13%n
  755. Process committed memory limit: %14 was %15%n
  756. Group committed memory limit: %16 was %17%n
  757. Per process user time limit: %18 was %19%n
  758. Group user time limit: %20 was %21%n
  759. Report on group user time limit(no termination): %22 was %23%n
  760. End process group when no processes in group: %24 was %25%n
  761. Die on unhandled exception: %26 was %27%n
  762. Silent breakaway: %28 was %29%n
  763. Breakaway OK: %30 was %31
  764. .
  765. MessageId=423
  766. Severity=Informational
  767. SymbolicName=PC_SERVICE_DEL_JOB_EXECUTION_RULE
  768. Language=English
  769. Process group execution rule "%1" has been deleted.
  770. .
  771. MessageId=424
  772. Severity=Informational
  773. SymbolicName=PC_SERVICE_SERVICE_INSTALLED
  774. Language=English
  775. %1 service installed.
  776. .
  777. MessageId=425
  778. Severity=Error
  779. SymbolicName=PC_SERVICE_APP_KEY_CREATED
  780. Language=English
  781. %1 server application control registry entry created.
  782. .
  783. MessageId=426
  784. Severity=Error
  785. SymbolicName=PC_SERVICE_EVENTLOG_REG_SETUP
  786. Language=English
  787. %1 EventLog registry entries created.
  788. .
  789. MessageId=427
  790. Severity=Error
  791. SymbolicName=PC_SERVICE_PARAM_DATA_CREATED
  792. Language=English
  793. %1 registry parameter data created.
  794. .
  795. MessageId=428
  796. Severity=Error
  797. SymbolicName=PC_SERVICE_STOPPING
  798. Language=English
  799. Stopping %1.%0
  800. .
  801. MessageId=429
  802. Severity=Error
  803. SymbolicName=PC_SERVICE_DOT
  804. Language=English
  805. .%0
  806. .
  807. MessageId=430
  808. Severity=Error
  809. SymbolicName=PC_SERVICE_STOPPING_STOPPED
  810. Language=English
  811. %1 stopped.
  812. .
  813. MessageId=431
  814. Severity=Error
  815. SymbolicName=PC_SERVICE_REG_ENTRIES_REMOVED
  816. Language=English
  817. %1 service registry entries removed.
  818. .
  819. MessageId=432
  820. Severity=Error
  821. SymbolicName=PC_SERVICE_EVTLOG_REG_DELETED
  822. Language=English
  823. %1 EventLog registry entries deleted.
  824. .
  825. ;//