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.

688 lines
17 KiB

  1. ; * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  2. ;
  3. ; File System ACL definition file
  4. ;
  5. ; Use this file to set the ACL's on files and directories to the desired
  6. ; security. The format of each entry is:
  7. ;
  8. ; [DirPath]
  9. ; Domain\Account = [Predefined Access | FileAccessString [, DirAccessString]]
  10. ;
  11. ; [FilePath]
  12. ; Domain\Account = [Predefined Access | FileAccessString]
  13. ;
  14. ; where:
  15. ;
  16. ; FilePath is the path of the file or directory to set. This is in the
  17. ; format of a file path name. The file path may contain environment
  18. ; variables (such as %systemroot%) which will be expanded on the
  19. ; system running tha application.
  20. ;
  21. ; the last item in the FilePath string may be a directory, file,
  22. ; wildcard file or an exclamation ("!"). In the case of an exclamation
  23. ; all files and sub-directories of the preceeding path will be set
  24. ; to the specified security.
  25. ;
  26. ; for example:
  27. ;
  28. ; [%systemroot%\system32\!]
  29. ;
  30. ; would assign the security description of that section
  31. ; to all files and sub-directories UNDER the
  32. ; %systemroot\system32 directory as well as to the
  33. ; %systemroot\system32 directory itself. To assign
  34. ; security to just the files in that directory ,
  35. ; an entry such as the following would be needed:
  36. ;
  37. ; [%systemroot%\system32\*.*]
  38. ;
  39. ;
  40. ; Domain\Account
  41. ; specifies the account to recieve the specified access for that
  42. ; file. Account may be an account or a group. For Example to give
  43. ; permissions to all administrator accounts, the:
  44. ;
  45. ; BUILTIN\Administrators
  46. ;
  47. ; would be the correct entry.
  48. ;
  49. ; access string is defined as one of the following:
  50. ;
  51. ; a combination of access chars
  52. ;
  53. ; access
  54. ; char File Access Dir Access
  55. ; ---- ---------------- ----------------
  56. ; R = Read Data List Directory
  57. ; W = Write Data Add File
  58. ; X = Execute File Traverse Directory
  59. ; D = Delete Delete
  60. ; P = Change Perms Change Perms
  61. ; O = Take Ownership Take Ownership
  62. ;
  63. ; e.g. SYSTEM = RWXD
  64. ;
  65. ;
  66. ; there are also some predefined combination access keys:
  67. ;
  68. ; NONE = no access
  69. ; ALL = RWXDPO
  70. ;
  71. ; Standard Directory & File access references are:
  72. ;
  73. ; Access Access Granted
  74. ; Name (Dir)(File)
  75. ; ----------- ------------------
  76. ; FullControl = (ALL)(ALL)
  77. ; Change = (RWXD)(RWXD)
  78. ; AddRead = (RWX)(RX)
  79. ; Read = (RX)(RX)
  80. ; Add = (WX)(none specified)
  81. ; List = (RX)(none specified)
  82. ; NoAccess = (NONE)(NONE)
  83. ;
  84. ;
  85. ; * * * * * * * * * * * * N O T E * * * * * * * * * * * * * * * * *
  86. ;
  87. ; For correct application of the access control, the more restrictive
  88. ; access entries must be placed ahead of (on top of) the more permissive
  89. ; access. The correct "sort" order would be:
  90. ;
  91. ; NoAccess, List, Add, Read, AddRead, Change, FullControl
  92. ;
  93. ;
  94. ; * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  95. ;
  96. ; NOTE: the security items are applied from the top of the file to the
  97. ; bottom. Because of that, top level directory entries with more re-
  98. ; strictive security should be at the top of the file and less restric-
  99. ; tive entries to specific users and/or specific files should be listed
  100. ; next.
  101. ;
  102. ; * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  103. ; remove access for Everyone for whole drive
  104. [%SystemDrive%\!]
  105. BUILTIN\Administrators = FullControl
  106. SYSTEM = FullControl
  107. [%SystemDrive%\]
  108. BUILTIN\Users = List
  109. ;Anonymous = List
  110. BUILTIN\Administrators = FullControl
  111. SYSTEM = FullControl
  112. [%SystemDrive%\*.*]
  113. BUILTIN\Users = R
  114. ;Anonymous = R
  115. BUILTIN\Administrators = FullControl
  116. SYSTEM = FullControl
  117. [%SystemDrive%\IO.SYS]
  118. BUILTIN\Administrators = FullControl
  119. SYSTEM = FullControl
  120. [%SystemDrive%\MSDOS.SYS]
  121. BUILTIN\Administrators = FullControl
  122. SYSTEM = FullControl
  123. [%SystemDrive%\BOOT.INI]
  124. BUILTIN\Administrators = FullControl
  125. SYSTEM = FullControl
  126. [%SystemDrive%\NTDETECT.COM]
  127. BUILTIN\Administrators = FullControl
  128. SYSTEM = FullControl
  129. [%SystemDrive%\NTLDR.]
  130. BUILTIN\Administrators = FullControl
  131. SYSTEM = FullControl
  132. [%SystemDrive%\AUTOEXEC.BAT]
  133. BUILTIN\Administrators = FullControl
  134. SYSTEM = FullControl
  135. [%SystemDrive%\CONFIG.SYS]
  136. BUILTIN\Administrators = FullControl
  137. SYSTEM = FullControl
  138. [%SystemDrive%\TEMP\!]
  139. BUILTIN\Users = RWX
  140. ;Anonymous = RWX
  141. CREATOR OWNER= RWXD, RWD
  142. BUILTIN\Administrators = FullControl
  143. SYSTEM = FullControl
  144. ;[%SystemDrive%\USERS\!]
  145. ;BUILTIN\Users = R
  146. ;Anonymous = R
  147. ;CREATOR OWNER= RWXD, RWD
  148. ;BUILTIN\Administrators = FullControl
  149. ;SYSTEM = FullControl
  150. ;[%SystemDrive%\USERS\DEFAULT\!]
  151. ;BUILTIN\Users = RWD, RWD
  152. ;Anonymous = RWD, RWD
  153. ;CREATOR OWNER= RWXD, RWD
  154. ;SYSTEM = FullControl
  155. ;BUILTIN\Administrators = FullControl
  156. ;[%SystemDrive%\WIN32APP\!]
  157. ;SYSTEM = FullControl
  158. ;BUILTIN\Administrators = FullControl
  159. [%SystemRoot%\!]
  160. BUILTIN\Users = READ
  161. ;Anonymous = READ
  162. BUILTIN\Administrators = FullControl
  163. SYSTEM = FullControl
  164. ;cannot deny users since it breaks WIN16 apps
  165. ;[%SystemRoot%]
  166. ;BUILTIN\Administrators = FullControl
  167. ;SYSTEM = FullControl
  168. [%SystemRoot%\*.*]
  169. BUILTIN\Users = Read
  170. ;Anonymous = Read
  171. BUILTIN\Administrators = FullControl
  172. SYSTEM = FullControl
  173. [%SystemRoot%\*.INI]
  174. BUILTIN\Users = READ
  175. ;Anonymous = READ
  176. BUILTIN\Administrators = FullControl
  177. SYSTEM = FullControl
  178. [%SystemRoot%\HELP\]
  179. BUILTIN\Users = Change
  180. ;Anonymous = Change
  181. BUILTIN\Administrators = FullControl
  182. SYSTEM = FullControl
  183. [%SystemRoot%\REPAIR\!]
  184. BUILTIN\Administrators = FullControl
  185. [%SystemRoot%\SYSTEM\*.*]
  186. BUILTIN\Users = Read
  187. ;Anonymous = Read
  188. BUILTIN\Administrators = FullControl
  189. SYSTEM = FullControl
  190. [%SystemRoot%\SYSTEM32\*.*]
  191. BUILTIN\Users = Read
  192. ;Anonymous = Read
  193. BUILTIN\Administrators = FullControl
  194. SYSTEM = FullControl
  195. [%SystemRoot%\SYSTEM32\AUTOEXEC.NT]
  196. BUILTIN\Users = READ
  197. ;Anonymous = READ
  198. BUILTIN\Administrators = FullControl
  199. SYSTEM = FullControl
  200. [%SystemRoot%\SYSTEM32\CMOS.RAM]
  201. BUILTIN\Users = R W
  202. ;Anonymous = R W
  203. BUILTIN\Administrators = FullControl
  204. SYSTEM = FullControl
  205. [%SystemRoot%\SYSTEM32\CONFIG.NT]
  206. BUILTIN\Users = Read
  207. ;Anonymous = Read
  208. BUILTIN\Administrators = FullControl
  209. SYSTEM = FullControl
  210. [%SystemRoot%\SYSTEM32\MIDIMAP.CFG]
  211. BUILTIN\Users = Read
  212. ;Anonymous = Read
  213. BUILTIN\Administrators = FullControl
  214. SYSTEM = FullControl
  215. [%SystemRoot%\SYSTEM32\CONFIG]
  216. BUILTIN\Administrators = FullControl
  217. BUILTIN\Users = List
  218. ;Anonymous = List
  219. SYSTEM = FullControl
  220. [%SystemRoot%\SYSTEM32\CONFIG\*.*]
  221. BUILTIN\Administrators = FullControl
  222. SYSTEM = FullControl
  223. [%SystemRoot%\SYSTEM32\DRIVERS\!]
  224. BUILTIN\Users = Read
  225. ;Anonymous = Read
  226. BUILTIN\Administrators = FullControl
  227. SYSTEM = FullControl
  228. [%SystemRoot%\SYSTEM32\RAS\!]
  229. BUILTIN\Administrators = FullControl
  230. SYSTEM = FullControl
  231. [%SystemRoot%\SYSTEM32\REPL\!]
  232. BUILTIN\Administrators = FullControl
  233. SYSTEM = FullControl
  234. [%SystemRoot%\SYSTEM32\SPOOL\!]
  235. BUILTIN\Users = Read
  236. ;Anonymous = Read
  237. BUILTIN\Administrators = FullControl
  238. SYSTEM = FullControl
  239. [%SystemRoot%\SYSTEM32\WINS\!]
  240. BUILTIN\Administrators = FullControl
  241. SYSTEM = FullControl
  242. [%SystemRoot%\SYSTEM32\AT.EXE ]
  243. SYSTEM = FullControl
  244. BUILTIN\Administrators = FullControl
  245. ;[%SystemRoot%\SYSTEM32\ACLCONV.EXE ]
  246. ;SYSTEM = FullControl
  247. ;BUILTIN\Administrators = FullControl
  248. [%SystemRoot%\SYSTEM32\ARP.EXE ]
  249. SYSTEM = FullControl
  250. BUILTIN\Administrators = FullControl
  251. [%SystemRoot%\SYSTEM32\ATSVC.EXE ]
  252. SYSTEM = FullControl
  253. BUILTIN\Administrators = FullControl
  254. [%SystemRoot%\SYSTEM32\AUDITLOG.EXE ]
  255. SYSTEM = FullControl
  256. BUILTIN\Administrators = FullControl
  257. [%SystemRoot%\SYSTEM32\AUTOCHK.EXE ]
  258. SYSTEM = FullControl
  259. BUILTIN\Administrators = FullControl
  260. [%SystemRoot%\SYSTEM32\AUTOCONV.EXE ]
  261. SYSTEM = FullControl
  262. BUILTIN\Administrators = FullControl
  263. ;[%SystemRoot%\SYSTEM32\AUTOSETP.EXE ]
  264. ;SYSTEM = FullControl
  265. ;BUILTIN\Administrators = FullControl
  266. [%SystemRoot%\SYSTEM32\BOOTOK.EXE ]
  267. SYSTEM = FullControl
  268. BUILTIN\Administrators = FullControl
  269. [%SystemRoot%\SYSTEM32\BOOTVRFY.EXE ]
  270. SYSTEM = FullControl
  271. BUILTIN\Administrators = FullControl
  272. [%SystemRoot%\SYSTEM32\CACLS.EXE ]
  273. SYSTEM = FullControl
  274. BUILTIN\Administrators = FullControl
  275. [%SystemRoot%\SYSTEM32\CHKDSK.EXE ]
  276. SYSTEM = FullControl
  277. BUILTIN\Administrators = FullControl
  278. [%SystemRoot%\SYSTEM32\CONVERT.EXE ]
  279. SYSTEM = FullControl
  280. BUILTIN\Administrators = FullControl
  281. [%SystemRoot%\SYSTEM32\C2CONFIG.EXE ]
  282. SYSTEM = FullControl
  283. BUILTIN\Administrators = FullControl
  284. [%SystemRoot%\SYSTEM32\C2*.INF ]
  285. SYSTEM = FullControl
  286. BUILTIN\Administrators = FullControl
  287. [%SystemRoot%\SYSTEM32\C2*.DLL ]
  288. SYSTEM = FullControl
  289. BUILTIN\Administrators = FullControl
  290. [%SystemRoot%\SYSTEM32\CXNETDDE.EXE ]
  291. SYSTEM = FullControl
  292. BUILTIN\Administrators = FullControl
  293. [%SystemRoot%\SYSTEM32\DBGTRACE.EXE ]
  294. SYSTEM = FullControl
  295. BUILTIN\Administrators = FullControl
  296. [%SystemRoot%\SYSTEM32\DDESHARE.EXE ]
  297. SYSTEM = FullControl
  298. BUILTIN\Administrators = FullControl
  299. [%SystemRoot%\SYSTEM32\DISKPERF.EXE ]
  300. SYSTEM = FullControl
  301. BUILTIN\Administrators = FullControl
  302. [%SystemRoot%\SYSTEM32\EVENTVWR.EXE ]
  303. SYSTEM = FullControl
  304. BUILTIN\Administrators = FullControl
  305. [%SystemRoot%\SYSTEM32\EXE2BIN.EXE ]
  306. SYSTEM = FullControl
  307. BUILTIN\Administrators = FullControl
  308. [%SystemRoot%\SYSTEM32\FC.EXE ]
  309. SYSTEM = FullControl
  310. BUILTIN\Administrators = FullControl
  311. [%SystemRoot%\SYSTEM32\FINDSTR.EXE ]
  312. SYSTEM = FullControl
  313. BUILTIN\Administrators = FullControl
  314. [%SystemRoot%\SYSTEM32\FINGER.EXE ]
  315. SYSTEM = FullControl
  316. BUILTIN\Administrators = FullControl
  317. [%SystemRoot%\SYSTEM32\FORMAT.COM ]
  318. SYSTEM = FullControl
  319. BUILTIN\Administrators = FullControl
  320. [%SystemRoot%\SYSTEM32\FTP.EXE ]
  321. SYSTEM = FullControl
  322. BUILTIN\Administrators = FullControl
  323. [%SystemRoot%\SYSTEM32\IBROWSER.EXE ]
  324. SYSTEM = FullControl
  325. BUILTIN\Administrators = FullControl
  326. ;[%SystemRoot%\SYSTEM32\INTRO.EXE ]
  327. ;SYSTEM = FullControl
  328. ;BUILTIN\Administrators = FullControl
  329. [%SystemRoot%\SYSTEM32\IPCONFIG.EXE ]
  330. SYSTEM = FullControl
  331. BUILTIN\Administrators = FullControl
  332. [%SystemRoot%\SYSTEM32\IPXROUTE.EXE ]
  333. SYSTEM = FullControl
  334. BUILTIN\Administrators = FullControl
  335. [%SystemRoot%\SYSTEM32\KILL.EXE ]
  336. SYSTEM = FullControl
  337. BUILTIN\Administrators = FullControl
  338. [%SystemRoot%\SYSTEM32\LABEL.EXE ]
  339. SYSTEM = FullControl
  340. BUILTIN\Administrators = FullControl
  341. [%SystemRoot%\SYSTEM32\LLSMGR.EXE ]
  342. SYSTEM = FullControl
  343. BUILTIN\Administrators = FullControl
  344. [%SystemRoot%\SYSTEM32\LLSSRV.EXE ]
  345. SYSTEM = FullControl
  346. BUILTIN\Administrators = FullControl
  347. [%SystemRoot%\SYSTEM32\LMREPL.EXE ]
  348. SYSTEM = FullControl
  349. BUILTIN\Administrators = FullControl
  350. [%SystemRoot%\SYSTEM32\LOCATOR.EXE ]
  351. SYSTEM = FullControl
  352. BUILTIN\Administrators = FullControl
  353. [%SystemRoot%\SYSTEM32\LODCTR.EXE ]
  354. SYSTEM = FullControl
  355. BUILTIN\Administrators = FullControl
  356. [%SystemRoot%\SYSTEM32\LOGVIEW.EXE ]
  357. SYSTEM = FullControl
  358. BUILTIN\Administrators = FullControl
  359. ;[%SystemRoot%\SYSTEM32\LPQ.EXE ]
  360. ;SYSTEM = FullControl
  361. ;BUILTIN\Administrators = FullControl
  362. ;[%SystemRoot%\SYSTEM32\LPR.EXE ]
  363. ;SYSTEM = FullControl
  364. ;BUILTIN\Administrators = FullControl
  365. [%SystemRoot%\SYSTEM32\LSASS.EXE ]
  366. SYSTEM = FullControl
  367. BUILTIN\Administrators = FullControl
  368. [%SystemRoot%\SYSTEM32\MIGRATE.EXE ]
  369. SYSTEM = FullControl
  370. BUILTIN\Administrators = FullControl
  371. [%SystemRoot%\SYSTEM32\MPNOTIFY.EXE ]
  372. SYSTEM = FullControl
  373. BUILTIN\Administrators = FullControl
  374. ;[%SystemRoot%\SYSTEM32\MUSRMGR.EXE ]
  375. ;SYSTEM = FullControl
  376. ;BUILTIN\Administrators = FullControl
  377. [%SystemRoot%\SYSTEM32\NBTSTAT.EXE ]
  378. SYSTEM = FullControl
  379. BUILTIN\Administrators = FullControl
  380. [%SystemRoot%\SYSTEM32\NCADMIN.EXE ]
  381. SYSTEM = FullControl
  382. BUILTIN\Administrators = FullControl
  383. [%SystemRoot%\SYSTEM32\NDDEAGNT.EXE ]
  384. SYSTEM = FullControl
  385. BUILTIN\Administrators = FullControl
  386. [%SystemRoot%\SYSTEM32\NDDEAPIR.EXE ]
  387. SYSTEM = FullControl
  388. BUILTIN\Administrators = FullControl
  389. [%SystemRoot%\SYSTEM32\NET1.EXE ]
  390. SYSTEM = FullControl
  391. BUILTIN\Administrators = FullControl
  392. [%SystemRoot%\SYSTEM32\NETDDE.EXE ]
  393. SYSTEM = FullControl
  394. BUILTIN\Administrators = FullControl
  395. [%SystemRoot%\SYSTEM32\NTBACKUP.EXE ]
  396. SYSTEM = FullControl
  397. BUILTIN\Administrators = FullControl
  398. [%SystemRoot%\SYSTEM32\NTOSKRNL.EXE ]
  399. SYSTEM = FullControl
  400. BUILTIN\Administrators = FullControl
  401. [%SystemRoot%\SYSTEM32\NWCONV.EXE ]
  402. SYSTEM = FullControl
  403. BUILTIN\Administrators = FullControl
  404. [%SystemRoot%\SYSTEM32\NW2NT.EXE ]
  405. SYSTEM = FullControl
  406. BUILTIN\Administrators = FullControl
  407. [%SystemRoot%\SYSTEM32\NWSETUP.BAT ]
  408. SYSTEM = FullControl
  409. BUILTIN\Administrators = FullControl
  410. [%SystemRoot%\SYSTEM32\PAX.EXE ]
  411. SYSTEM = FullControl
  412. BUILTIN\Administrators = FullControl
  413. [%SystemRoot%\SYSTEM32\PENTNT.EXE ]
  414. SYSTEM = FullControl
  415. BUILTIN\Administrators = FullControl
  416. [%SystemRoot%\SYSTEM32\PERFMON.EXE ]
  417. SYSTEM = FullControl
  418. BUILTIN\Administrators = FullControl
  419. ;[%SystemRoot%\SYSTEM32\PID.EXE ]
  420. ;SYSTEM = FullControl
  421. ;BUILTIN\Administrators = FullControl
  422. [%SystemRoot%\SYSTEM32\PLICENSE.EXE ]
  423. SYSTEM = FullControl
  424. BUILTIN\Administrators = FullControl
  425. [%SystemRoot%\SYSTEM32\PORTUAS.EXE ]
  426. SYSTEM = FullControl
  427. BUILTIN\Administrators = FullControl
  428. ;[%SystemRoot%\SYSTEM32\PSERVER.EXE ]
  429. ;SYSTEM = FullControl
  430. ;BUILTIN\Administrators = FullControl
  431. [%SystemRoot%\SYSTEM32\PSXSS.EXE ]
  432. SYSTEM = FullControl
  433. BUILTIN\Administrators = FullControl
  434. ;[%SystemRoot%\SYSTEM32\PVIEW.EXE ]
  435. ;SYSTEM = FullControl
  436. ;BUILTIN\Administrators = FullControl
  437. ;[%SystemRoot%\SYSTEM32\PVIEWER.EXE ]
  438. ;SYSTEM = FullControl
  439. ;BUILTIN\Administrators = FullControl
  440. [%SystemRoot%\SYSTEM32\RASADMIN.EXE ]
  441. SYSTEM = FullControl
  442. BUILTIN\Administrators = FullControl
  443. ;[%SystemRoot%\SYSTEM32\RASSRV.EXE ]
  444. ;SYSTEM = FullControl
  445. ;BUILTIN\Administrators = FullControl
  446. [%SystemRoot%\SYSTEM32\RCP.EXE ]
  447. SYSTEM = FullControl
  448. BUILTIN\Administrators = FullControl
  449. [%SystemRoot%\SYSTEM32\REXEC.EXE ]
  450. SYSTEM = FullControl
  451. BUILTIN\Administrators = FullControl
  452. [%SystemRoot%\SYSTEM32\RSH.EXE ]
  453. SYSTEM = FullControl
  454. BUILTIN\Administrators = FullControl
  455. [%SystemRoot%\SYSTEM32\RDISK.EXE ]
  456. SYSTEM = FullControl
  457. BUILTIN\Administrators = FullControl
  458. [%SystemRoot%\SYSTEM32\RECOVER.EXE ]
  459. SYSTEM = FullControl
  460. BUILTIN\Administrators = FullControl
  461. [%SystemRoot%\SYSTEM32\REGINI.EXE ]
  462. SYSTEM = FullControl
  463. BUILTIN\Administrators = FullControl
  464. [%SystemRoot%\SYSTEM32\REGISTER.EXE ]
  465. SYSTEM = FullControl
  466. BUILTIN\Administrators = FullControl
  467. [%SystemRoot%\SYSTEM32\REGSVR32.EXE ]
  468. SYSTEM = FullControl
  469. BUILTIN\Administrators = FullControl
  470. [%SystemRoot%\SYSTEM32\RESET.EXE ]
  471. SYSTEM = FullControl
  472. BUILTIN\Administrators = FullControl
  473. [%SystemRoot%\SYSTEM32\ROUTE.EXE ]
  474. SYSTEM = FullControl
  475. BUILTIN\Administrators = FullControl
  476. [%SystemRoot%\SYSTEM32\RPCSS.EXE ]
  477. SYSTEM = FullControl
  478. BUILTIN\Administrators = FullControl
  479. [%SystemRoot%\SYSTEM32\RUNDLL32.EXE ]
  480. SYSTEM = FullControl
  481. BUILTIN\Administrators = FullControl
  482. [%SystemRoot%\SYSTEM32\RWINSTA.EXE ]
  483. SYSTEM = FullControl
  484. BUILTIN\Administrators = FullControl
  485. [%SystemRoot%\SYSTEM32\SAVEDUMP.EXE ]
  486. SYSTEM = FullControl
  487. BUILTIN\Administrators = FullControl
  488. ;[%SystemRoot%\SYSTEM32\SCM.EXE ]
  489. ;SYSTEM = FullControl
  490. ;BUILTIN\Administrators = FullControl
  491. [%SystemRoot%\SYSTEM32\SERVICES.EXE ]
  492. SYSTEM = FullControl
  493. BUILTIN\Administrators = FullControl
  494. ;[%SystemRoot%\SYSTEM32\SETACL.EXE ]
  495. ;SYSTEM = FullControl
  496. ;BUILTIN\Administrators = FullControl
  497. ;[%SystemRoot%\SYSTEM32\SETBUILD.EXE ]
  498. ;SYSTEM = FullControl
  499. ;BUILTIN\Administrators = FullControl
  500. [%SystemRoot%\SYSTEM32\SHADOW.EXE ]
  501. SYSTEM = FullControl
  502. BUILTIN\Administrators = FullControl
  503. [%SystemRoot%\SYSTEM32\SHUTDOWN.EXE ]
  504. SYSTEM = FullControl
  505. BUILTIN\Administrators = FullControl
  506. [%SystemRoot%\SYSTEM32\SRVMGR.EXE ]
  507. SYSTEM = FullControl
  508. BUILTIN\Administrators = FullControl
  509. [%SystemRoot%\SYSTEM32\TCPSVCS.EXE ]
  510. SYSTEM = FullControl
  511. BUILTIN\Administrators = FullControl
  512. [%SystemRoot%\SYSTEM32\TELNET.EXE ]
  513. SYSTEM = FullControl
  514. BUILTIN\Administrators = FullControl
  515. [%SystemRoot%\SYSTEM32\TFTP.EXE ]
  516. SYSTEM = FullControl
  517. BUILTIN\Administrators = FullControl
  518. ;[%SystemRoot%\SYSTEM32\TOP.EXE ]
  519. ;SYSTEM = FullControl
  520. ;BUILTIN\Administrators = FullControl
  521. ;[%SystemRoot%\SYSTEM32\TPROGMAN.EXE ]
  522. ;SYSTEM = FullControl
  523. ;BUILTIN\Administrators = FullControl
  524. [%SystemRoot%\SYSTEM32\TRACERT.EXE ]
  525. SYSTEM = FullControl
  526. BUILTIN\Administrators = FullControl
  527. [%SystemRoot%\SYSTEM32\UNLODCTR.EXE ]
  528. SYSTEM = FullControl
  529. BUILTIN\Administrators = FullControl
  530. ;[%SystemRoot%\SYSTEM32\UPEDIT.EXE ]
  531. ;SYSTEM = FullControl
  532. ;BUILTIN\Administrators = FullControl
  533. ;[%SystemRoot%\SYSTEM32\UPGRADE.EXE ]
  534. ;SYSTEM = FullControl
  535. ;BUILTIN\Administrators = FullControl
  536. [%SystemRoot%\SYSTEM32\UPS.EXE ]
  537. SYSTEM = FullControl
  538. BUILTIN\Administrators = FullControl
  539. [%SystemRoot%\SYSTEM32\USRMGR.EXE ]
  540. SYSTEM = FullControl
  541. BUILTIN\Administrators = FullControl
  542. [%SystemRoot%\SYSTEM32\WINDISK.EXE ]
  543. SYSTEM = FullControl
  544. BUILTIN\Administrators = FullControl
  545. [%SystemRoot%\SYSTEM32\WINMSD.EXE ]
  546. SYSTEM = FullControl
  547. BUILTIN\Administrators = FullControl
  548. [%SystemRoot%\SYSTEM32\WOWDEB.EXE ]
  549. SYSTEM = FullControl
  550. BUILTIN\Administrators = FullControl