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.

1188 lines
68 KiB

  1. @echo off
  2. call logmsg /t "starting Whistler.bat process"
  3. if "%1"=="" goto usage
  4. if %1==PLOC goto PLOC
  5. if %1==VERIFY goto VERIFY
  6. if %1==SNAP goto SNAP
  7. if %1==SNAP1 goto SNAP1
  8. if %1==LCTREE goto LCTREE
  9. if %1==LOCTREE goto LOCTREE
  10. if %1==LOCEDB goto LOCEDB
  11. if %1==RESDUMP goto RESDUMP
  12. if %1==MIRROR goto MIRROR
  13. if %1==LCINF goto LCINF
  14. if %1==16BIT goto 16bit
  15. if %1==EMBEDDED goto embedded
  16. if %1==TOKTREE goto TOKTREE
  17. if %1==DIFF goto DIFF
  18. if %1==COPYLC goto COPYLC
  19. if %1==SETUPINFS goto Setupinfs
  20. if %1==BINTREE goto BINTREE
  21. if %1==MAINTRACK goto MAINTRACK
  22. if %1==LABTRACK goto LABTRACK
  23. if %1==BVTBAT goto BVTBAT
  24. if %1==BVTDIFF goto BVTDIFF
  25. if %1==SNAPLCS goto SNAPLCS
  26. goto :eof
  27. rem ********************** SNAPLCS ******************
  28. :SNAPLCS
  29. echo Snap_Dest=%Snap_Dest%
  30. if "%2"=="" goto usage
  31. goto main
  32. rem ********************** BVTDIFF ******************
  33. :BVTDIFF
  34. echo BinPath=%BinPath%
  35. if "%2"=="" goto usage
  36. if "%3"=="" goto usage
  37. set LogFile=%3
  38. goto main
  39. rem ********************** BVTBAT INIT ******************
  40. :BVTBAT
  41. if "%2"=="" goto usage
  42. echo rem mapinf is %mapinf%
  43. goto main
  44. rem ********************** MAINTRACK INIT ******************
  45. :MAINTRACK
  46. if "%2"=="" goto usage
  47. if "%3"=="" goto usage
  48. if "%4"=="" goto usage
  49. if "%5"=="" goto usage
  50. if "%6"=="" goto usage
  51. set Labenv=%3
  52. set Mainenv=%4
  53. set CSVFile=%5
  54. set StatFile=%6
  55. echo if exist %CSVFile% del /q %CSVFile%
  56. if exist %CSVFile% del /q %CSVFile%
  57. echo if exist %StatFile% del /q %StatFile%
  58. if exist %StatFile% del /q %StatFile%
  59. goto main
  60. rem ********************** LABTRACK INIT ******************
  61. :LABTRACK
  62. if "%2"=="" goto usage
  63. if "%3"=="" goto usage
  64. if "%4"=="" goto usage
  65. if "%5"=="" goto usage
  66. if "%6"=="" goto usage
  67. set Labenv=%3
  68. set Mainenv=%4
  69. set CSVFile=%5
  70. set StatFile=%6
  71. set Labprevenv=%7
  72. echo if exist %CSVFile% del /q %CSVFile%
  73. if exist %CSVFile% del /q %CSVFile%
  74. echo if exist %StatFile% del /q %StatFile%
  75. if exist %StatFile% del /q %StatFile%
  76. goto main
  77. rem ********************** PLOC INIT ******************
  78. :PLOC
  79. rem environments set by plocwrap.bat
  80. echo InputLanguage=%InputLanguage%
  81. echo OutputLanguage=%OutputLanguage%
  82. echo ReplacementTable=%ReplacementTable%
  83. echo ReplacementMethod=%ReplacementMethod%
  84. echo MappingTable=%MappingTable%
  85. echo PLPConfigFile=%PLPConfigFile%
  86. echo PartialReplacementTable%PartialReplacementTable%
  87. echo PartialReplacementMethod=%PartialReplacementMethod%
  88. echo LimitedReplacementTable=%LimitedReplacementTable%
  89. echo LimitedReplacementMethod=%LimitedReplacementMethod%
  90. echo LogFile=%LogFile%
  91. echo BinPath=%BinPath%
  92. echo LcPath=%LcPath%
  93. echo PLPFile=%PLPFile%
  94. echo BingenLang1=%BingenLang1%
  95. echo BingenLang2=%BingenLang2%
  96. goto main
  97. rem ********************** SetupInfs ******************
  98. :SetupInfs
  99. echo BinPath=%BinPath%
  100. if "%2"=="" goto usage
  101. goto main
  102. rem ********************** VERIFY INIT ******************
  103. :VERIFY
  104. if "%2"=="" goto usage
  105. if "%3"=="" goto usage
  106. if "%4"=="" goto usage
  107. if "%5"=="" goto usage
  108. set InputLanguage=0x0409
  109. set LogFile=%3
  110. set BinPath=%4
  111. set LcPath=%5
  112. goto main
  113. rem ********************** SNAP INIT ********************
  114. :SNAP
  115. if "%2"=="" goto usage
  116. if "%3"=="" goto usage
  117. if "%4"=="" goto usage
  118. if "%5"=="" goto usage
  119. if "%6"=="" goto usage
  120. set LogFile=%3
  121. set USBinPath=%4
  122. set BinPath=%5
  123. set LockitPath=%6
  124. time /t >> %LogFile%
  125. goto main
  126. rem ********************** SNAP1 INIT *******************
  127. :SNAP1
  128. if "%2"=="" goto usage
  129. if "%3"=="" goto usage
  130. if "%4"=="" goto usage
  131. if "%5"=="" goto usage
  132. if "%6"=="" goto usage
  133. set LogFile=%3
  134. set USBinPath=%4
  135. set BinPath=%5
  136. set LockitPath=%6
  137. time /t >> %LogFile%
  138. goto main
  139. rem ********************** LCTREE INIT ****************
  140. :LCTREE
  141. if "%2"=="" goto usage
  142. if "%3"=="" goto usage
  143. if "%4"=="" goto usage
  144. set LcPath=%3
  145. set DummyFile=%4
  146. goto main
  147. rem ********************** LOCTREE INIT ****************
  148. :LOCTREE
  149. if "%2"=="" goto usage
  150. if "%3"=="" goto usage
  151. if "%4"=="" goto usage
  152. set BinPath=%3
  153. set DummyFile=%4
  154. goto main
  155. rem ********************** BINTREE INIT *****************
  156. :BINTREE
  157. if "%2"=="" goto usage
  158. if "%3"=="" goto usage
  159. if "%4"=="" goto usage
  160. set USBinfolder=%3
  161. set TargetFolder=%4
  162. goto main
  163. rem ********************** LOCEDB INIT *****************
  164. :LOCEDB
  165. if "%2"=="" goto usage
  166. if "%3"=="" goto usage
  167. set TargetFolder=%3
  168. goto main
  169. rem ********************** RESDUMP INIT *****************
  170. :RESDUMP
  171. if "%2"=="" goto usage
  172. if "%3"=="" goto usage
  173. if "%4"=="" goto usage
  174. if "%5"=="" goto usage
  175. set BinTree=%3
  176. set LcsPath=%4
  177. set ResDump=%5
  178. goto main
  179. rem ********************** MIRROR INIT *****************
  180. :MIRROR
  181. if "%2"=="" goto usage
  182. if "%3"=="" goto usage
  183. if "%4"=="" goto usage
  184. set LogFile=%3
  185. set BinTree=%4
  186. goto main
  187. rem ********************** 16bit INIT *****************
  188. :16bit
  189. if "%2"=="" goto usage
  190. if "%3"=="" goto usage
  191. if "%4"=="" goto usage
  192. set BinTree=%3
  193. set TokPath=%4
  194. goto main
  195. rem ********************** embedded INIT *****************
  196. :embedded
  197. if "%2"=="" goto usage
  198. if "%3"=="" goto usage
  199. if "%4"=="" goto usage
  200. set BinTree=%3
  201. set EmbeddedPath=%4
  202. goto main
  203. rem ********************** LCINF **********************
  204. :LCINF
  205. if "%2"=="" goto usage
  206. if "%3"=="" goto usage
  207. if "%4"=="" goto usage
  208. set LcsPath=%3
  209. set NewLcsPath=%4
  210. goto main
  211. rem ********************** TOKTREE **********************
  212. :TOKTREE
  213. if "%2"=="" goto usage
  214. if "%3"=="" goto usage
  215. if "%4"=="" goto usage
  216. if "%5"=="" goto usage
  217. if "%6"=="" goto usage
  218. set InputLang=%3
  219. set BinPath=%4
  220. set USTokTree=%5
  221. set TokTree=%6
  222. if not %InputLang%==0x0409 xcopy %USTokTree%\*.* %TokTree%\us\*.* /s /e /v
  223. goto main
  224. rem ********************** DIFF **********************
  225. :DIFF
  226. if "%2"=="" goto usage
  227. if "%3"=="" goto usage
  228. if "%4"=="" goto usage
  229. if "%5"=="" goto usage
  230. set TokTree1=%3
  231. set TokTree2=%4
  232. set DiffTree=%5
  233. goto main
  234. rem ********************** COPYLC *************************
  235. :COPYLC
  236. if "%2"=="" goto usage
  237. if "%3"=="" goto usage
  238. set TargetFolder=%3
  239. goto main
  240. for /f %%i in (%SDXROOT%\tools\ploc\branches.txt) do (
  241. echo syncing %%i
  242. if not exist %SDXROOT%\%%i\ploc md %SDXROOT%\%%i\ploc
  243. pushd %SDXROOT%\%%i\ploc
  244. sd sync ...
  245. popd
  246. )
  247. rem ********************** MAIN *************************
  248. :main
  249. for /f "tokens=1 delims=_" %%i in ("%_BuildBranch%") do set LabName=%%i
  250. call %2 imapi.exe . win32 unicode . imapi.exe shell2 yes_with shell . .
  251. call %2 indxsvc.xml . xml ansi . indxsvc.xml mmedia1\enduser html enduser . .
  252. call %2 inetcfg.dll . win32 unicode . inetcfg.dll inetcore1 yes_without inetcore . .
  253. call %2 inetcpl.cpl . win32 ansi . inetcpl.cpl shell1 yes_without shell . .
  254. call %2 inetcplc.dll . win32 ansi . inetcplc.dll shell1 yes_without shell . .
  255. call %2 inetfind.xml . xml ansi . inetfind.xml mmedia1\enduser html enduser . .
  256. call %2 inetmgr.dll . win32 unicode . inetmgr.dll iis yes_without inetsrv . .
  257. call %2 inetmgr.exe . win32 unicode . inetmgr.exe iis yes_with inetsrv . .
  258. call %2 inetopts.xml . xml ansi . inetopts.xml mmedia1\enduser html enduser . .
  259. call %2 inetpp.dll . win32 unicode . inetpp.dll printscan1 yes_without printscan . .
  260. call %2 inetppui.dll . win32 unicode . inetppui.dll printscan1 yes_without printscan . .
  261. call %2 inetpref.xml . xml ansi . inetpref.xml mmedia1\enduser html enduser . .
  262. call %2 inetres.dll . win32 ansi . inetres.dll inetcore1 yes_without inetcore . .
  263. call %2 inetsrch.xml . xml ansi . inetsrch.xml mmedia1\enduser html enduser . .
  264. call %2 inetwiz.exe . win32 unicode . inetwiz.exe inetcore1 yes_with inetcore . .
  265. call %2 infoctrs.dll . win32 unicode . infoctrs.dll iis yes_without inetsrv . .
  266. call %2 initpki.dll . win32 unicode . initpki.dll ds2 yes_without ds . .
  267. call %2 dinput.dll . win32 unicode . dinput.dll mmedia1\multimedia yes_without multimedia . .
  268. call %2 input.dll . win32 unicode . input.dll shell2 yes_without windows . .
  269. call %2 inseng.dll . win32 ansi . inseng.dll inetcore1 yes_without inetcore . .
  270. call %2 intelide.sys . win32 unicode . intelide.sys drivers1 yes_without drivers . .
  271. call %2 intents.xml . xml ansi . intents.xml mmedia1\enduser html enduser . .
  272. call %2 intl.cpl . win32 unicode . intl.cpl shell2 yes_without shell . .
  273. call %2 intro.xml . xml ansi . intro.xml mmedia1\enduser html enduser . .
  274. call %2 io8ports.dll . win32 unicode . io8ports.dll drivers1 yes_without drivers . .
  275. call %2 iologmsg.dll . win32 unicode . iologmsg.dll drivers1 yes_without drivers . .
  276. call %2 ipconf.tsp . win32 unicode . ipconf.tsp net2 yes_without net . .
  277. call %2 ipconfig.exe . win32 oem . ipconfig.exe net1 excluded net . .
  278. call %2 iphlpapi.dll . win32 unicode . iphlpapi.dll net1 yes_without net . .
  279. call %2 ipmontr.dll . FE-Multi oem . ipmontr.dll net2 excluded net . .
  280. call %2 ipnathlp.dll . win32 unicode . ipnathlp.dll net2 excluded net . .
  281. call %2 ippromon.dll . FE-Multi oem . ippromon.dll net2 excluded net . .
  282. call %2 iprip.dll . win32 unicode . iprip.dll net1 excluded net . .
  283. call %2 iprtrmgr.dll . win32 unicode . iprtrmgr.dll net2 excluded net . .
  284. call %2 ipsec6.exe . win32 unicode . ipsec6.exe net1 yes_with net . .
  285. call %2 ipsecsnp.dll . win32 unicode . ipsecsnp.dll net3 yes_without net . .
  286. call %2 ipsecsvc.dll . win32 unicode . ipsecsvc.dll net3 yes_without net . .
  287. call %2 ipsmsnap.dll . win32 unicode . ipsmsnap.dll net3 yes_without net . .
  288. call %2 ipv6mon.dll . win32 unicode . ipv6mon.dll net1 yes_without net . .
  289. call %2 ipxroute.exe . FE-Multi oem . ipxroute.exe net3 excluded net . .
  290. call %2 irclass.dll . win32 unicode . irclass.dll net3 yes_without net . .
  291. call %2 irftp.exe . win32 unicode . irftp.exe net3 yes_with net . .
  292. call %2 irmon.dll . win32 unicode . irmon.dll net3 yes_without net . .
  293. call %2 irprops.cpl . win32 unicode . irprops.cpl net3 yes_without net . .
  294. call %2 isapnp.sys . win32 unicode . isapnp.sys base1 yes_without base . .
  295. call %2 iscomlog.dll . win32 unicode . iscomlog.dll iis yes_without inetsrv . .
  296. call %2 isign32.dll . win32 unicode . isign32.dll inetcore1 yes_without inetcore . .
  297. call %2 isp2busy.htm . html ansi . isp2busy.htm admin3\oobe html base . .
  298. call %2 iyuv_32.dll . win32 unicode . iyuv_32.dll drivers1 yes_without drivers . .
  299. call %2 jobexec.dll . win32 ansi . jobexec.dll inetcore1 yes_without inetcore . .
  300. call %2 joy.cpl . win32 unicode . joy.cpl mmedia1\multimedia yes_without multimedia . .
  301. call %2 jp350res.dll . win32 unicode . jp350res.dll printscan1 yes_without printscan . .
  302. call %2 kbdclass.sys . win32 unicode . kbdclass.sys drivers1 yes_without drivers . .
  303. call %2 kbdhid.sys . win32 unicode . kbdhid.sys drivers1 yes_without drivers . .
  304. call %2 kernel32.dll . win32 oem . kernel32.dll base1 yes_without base . .
  305. call %2 keymgr.dll . win32 unicode . keymgr.dll ds2 yes_without ds . .
  306. call %2 kmres.dll . win32 unicode . kmres.dll printscan1 yes_without printscan . .
  307. call %2 krnlprov.mfl . wmi unicode . krnlprov.mfl admin3 no admin . .
  308. call %2 kstvtune.ax . win32 unicode . kstvtune.ax mmedia1\multimedia yes_without multimedia . .
  309. call %2 kswdmcap.ax . win32 unicode . kswdmcap.ax mmedia1\multimedia yes_without multimedia . .
  310. call %2 kyores.dll . win32 unicode . kyores.dll printscan1 yes_without printscan . .
  311. call %2 kyrares.dll . win32 unicode . kyrares.dll printscan1 yes_without printscan . .
  312. call %2 lcladv.xml . xml ansi . lcladv.xml mmedia1\enduser html enduser . .
  313. call %2 lcladvd.xml . xml ansi . lcladvd.xml mmedia1\enduser html enduser . .
  314. call %2 lcladvdf.xml . xml ansi . lcladvdf.xml mmedia1\enduser html enduser . .
  315. call %2 lcladvmm.xml . xml ansi . lcladvmm.xml mmedia1\enduser html enduser . .
  316. call %2 lclcomp.xml . xml ansi . lclcomp.xml mmedia1\enduser html enduser . .
  317. call %2 lcldate.xml . xml ansi . lcldate.xml mmedia1\enduser html enduser . .
  318. call %2 lcldocs.xml . xml ansi . lcldocs.xml mmedia1\enduser html enduser . .
  319. call %2 lclkwrds.xml . xml ansi . lclkwrds.xml mmedia1\enduser html enduser . .
  320. call %2 lcllook.xml . xml ansi . lcllook.xml mmedia1\enduser html enduser . .
  321. call %2 lclmm.xml . xml ansi . lclmm.xml mmedia1\enduser html enduser . .
  322. call %2 lclmode.xml . xml ansi . lclmode.xml mmedia1\enduser html enduser . .
  323. call %2 lclother.xml . xml ansi . lclother.xml mmedia1\enduser html enduser . .
  324. call %2 lclprog.xml . xml ansi . lclprog.xml mmedia1\enduser html enduser . .
  325. call %2 lclrfine.xml . xml ansi . lclrfine.xml mmedia1\enduser html enduser . .
  326. call %2 lclsize.xml . xml ansi . lclsize.xml mmedia1\enduser html enduser . .
  327. call %2 lclsrch.xml . xml ansi . lclsrch.xml mmedia1\enduser html enduser . .
  328. call %2 lcltechy.xml . xml ansi . lcltechy.xml mmedia1\enduser html enduser . .
  329. call %2 lexutil.dll . win32 unicode . lexutil.dll printscan1 yes_without printscan . .
  330. call %2 licdll.dll . win32 unicode . licdll.dll ds2 yes_without ds . .
  331. call %2 licmgr10.dll . win32 unicode . licmgr10.dll shell1 yes_without shell . .
  332. call %2 licwmi.mfl . wmi unicode . licwmi.mfl ds2 no ds . .
  333. call %2 lit220p.sys . win32 unicode . lit220p.sys drivers1 yes_without drivers . .
  334. call %2 lmikjres.dll . win32 unicode . lmikjres.dll printscan1 yes_without printscan . .
  335. call %2 lmoptra.dll . win32 unicode . lmoptra.dll printscan1 yes_without printscan . .
  336. call %2 lmpclres.dll . win32 unicode . lmpclres.dll printscan1 yes_without printscan . .
  337. call %2 lnkstub.exe . win32 ansi . lnkstub.exe admin1 yes_with base . .
  338. call %2 loadperf.dll . FE-Multi oem . loadperf.dll wmsos1\sdktools excluded base . .
  339. call %2 localsec.dll . win32 unicode . localsec.dll admin2 yes_without admin . .
  340. call %2 localspl.dll . win32 unicode . localspl.dll printscan1 yes_without printscan . .
  341. call %2 localui.dll . win32 unicode . localui.dll printscan1 yes_without printscan . .
  342. call %2 loghours.dll . win32 unicode . loghours.dll admin2 yes_without admin . .
  343. call %2 logman.exe . FE-Multi oem . logman.exe wmsos1\sdktools yes_with sdktools . .
  344. call %2 logoff.exe . FE-Multi oem . logoff.exe wmsos1\termsrv excluded termsrv . .
  345. call %2 logon.scr . win32 unicode . logon.scr shell2 yes_without shell . .
  346. call %2 logonui.exe . win32_setup ansi . logonui.exe shell2 excluded shell . .
  347. call %2 logui.ocx . win32 unicode . logui.ocx iis yes_without inetsrv . .
  348. call %2 lpq.exe . win32 oem . lpq.exe net1 excluded net . .
  349. call %2 lpr.exe . win32 oem . lpr.exe net1 excluded net . .
  350. call %2 lprmon.dll . win32 ansi . lprmon.dll net1 excluded net . .
  351. call %2 lprmonui.dll . win32 unicode . lprmonui.dll net1 yes_without net . .
  352. call %2 lsasrv.dll . win32 unicode . lsasrv.dll ds2 yes_without ds . .
  353. call %2 ltck000c.sys . win32 ansi . ltck000c.sys resource_identical yes_without net . .
  354. call %2 ltmdmnt.sys . win32 ansi . ltmdmnt.sys resource_identical yes_without net . .
  355. call %2 ltmdmntl.sys . win32 ansi . ltmdmntl.sys resource_identical yes_without net . .
  356. call %2 ltmdmntt.sys . win32 ansi . ltmdmntt.sys resource_identical yes_without net . .
  357. call %2 luna.mst . win32 unicode . luna.mst shell1 yes_without shell . .
  358. call %2 lx238res.dll . win32 unicode . lx238res.dll printscan1 yes_without printscan . .
  359. call %2 lxaasres.dll . win32 unicode . lxaasres.dll printscan1 yes_without printscan . .
  360. call %2 lxaasui.dll . win32 unicode . lxaasui.dll printscan1 yes_without printscan . .
  361. call %2 lxacsres.dll . win32 unicode . lxacsres.dll resource_identical yes_without printscan . .
  362. call %2 lxacsui.dll . win32 unicode . lxacsui.dll printscan1 yes_without printscan . .
  363. call %2 lxadsres.dll . win32 unicode . lxadsres.dll printscan1 yes_without printscan . .
  364. call %2 lxadsui.dll . win32 unicode . lxadsui.dll printscan1 yes_without printscan . .
  365. call %2 lxaesres.dll . win32 unicode . lxaesres.dll printscan1 yes_without printscan . .
  366. call %2 lxaesui.dll . win32 unicode . lxaesui.dll printscan1 yes_without printscan . .
  367. call %2 lxcasres.dll . win32 unicode . lxcasres.dll resource_identical yes_without printscan . .
  368. call %2 lxcasui.dll . win32 unicode . lxcasui.dll printscan1 yes_without printscan . .
  369. call %2 lxfmpres.dll . win32 unicode . lxfmpres.dll printscan1 yes_without printscan . .
  370. call %2 lxinkres.dll . win32 unicode . lxinkres.dll printscan1 yes_without printscan . .
  371. call %2 lxmasres.dll . win32 unicode . lxmasres.dll resource_identical yes_without printscan . .
  372. call %2 lxmasui.dll . win32 unicode . lxmasui.dll printscan1 yes_without printscan . .
  373. call %2 lxmdsres.dll . win32 unicode . lxmdsres.dll resource_identical yes_without printscan . .
  374. call %2 lxmdsui.dll . win32 unicode . lxmdsui.dll printscan1 yes_without printscan . .
  375. call %2 lxrosres.dll . win32 unicode . lxrosres.dll resource_identical yes_without printscan . .
  376. call %2 lxrosui.dll . win32 unicode . lxrosui.dll printscan1 yes_without printscan . .
  377. call %2 lxsysres.dll . win32 unicode . lxsysres.dll resource_identical yes_without printscan . .
  378. call %2 lxsysui.dll . win32 unicode . lxsysui.dll printscan1 yes_without printscan . .
  379. call %2 magnify.exe . win32 unicode . magnify.exe shell2 no shell . .
  380. call %2 main.cpl . win32 unicode . main.cpl shell1 yes_without shell . .
  381. call %2 mciavi32.dll . win32 unicode . mciavi32.dll mmedia1\multimedia yes_without multimedia . .
  382. call %2 mcicda.dll . win32 unicode . mcicda.dll mmedia1\multimedia yes_without multimedia . .
  383. call %2 mciqtz32.dll . win32 unicode . mciqtz32.dll mmedia1\multimedia yes_without multimedia . .
  384. call %2 mciseq.dll . win32 unicode . mciseq.dll mmedia1\multimedia yes_without multimedia . .
  385. call %2 mciwave.dll . win32 unicode . mciwave.dll mmedia1\multimedia yes_without multimedia . .
  386. call %2 mdgndis5.sys . win32 ansi . mdgndis5.sys drivers1 yes_without drivers . .
  387. call %2 mdhcp.dll . win32 unicode . mdhcp.dll net2 yes_without net . .
  388. call %2 mdminst.dll . win32 unicode . mdminst.dll net2 yes_without net . .
  389. call %2 metadata.dll . win32 unicode . metadata.dll iis yes_without inetsrv . .
  390. call %2 metal_ss.dll . win32 unicode . metal_ss.dll shell1 yes_without shell . .
  391. call %2 mgaum.sys . win32 unicode . mgaum.sys drivers1 yes_without drivers . .
  392. call %2 midimap.dll . win32 unicode . midimap.dll mmedia1\multimedia yes_without multimedia . .
  393. call %2 migip.dun . ini ansi . migip.dun resource_identical no base . .
  394. call %2 migisol.exe . win32 unicode . migisol.exe base1 yes_with base . .
  395. call %2 migpwd.exe . win32 unicode . migpwd.exe admin1 yes_with base . .
  396. call %2 migrate.js . html ansi . migrate.js admin3\oobe html base . .
  397. call %2 minolres.dll . win32 unicode . minolres.dll printscan1 yes_without printscan . .
  398. call %2 minqmsui.dll . win32 unicode . minqmsui.dll printscan1 yes_without printscan . .
  399. call %2 mltres.dll . win32 unicode . mltres.dll printscan1 yes_without printscan . .
  400. call %2 mmc.exe . win32 unicode . mmc.exe admin2 yes_with admin . .
  401. call %2 mmcbase.dll . win32 unicode . mmcbase.dll admin2 yes_without admin . .
  402. call %2 mmcndmgr.dll . win32 unicode . mmcndmgr.dll admin2 yes_without admin . .
  403. call %2 mmfutil.dll . win32 unicode . mmfutil.dll admin3 yes_without admin . .
  404. call %2 mmsys.cpl . win32 unicode . mmsys.cpl shell2 yes_without shell . .
  405. call %2 mn350620.dll . win32 unicode . mn350620.dll printscan1 yes_without printscan . .
  406. call %2 mobsync.dll . win32 ansi . mobsync.dll wmsos1\com yes_without com . .
  407. call %2 mobsync.exe . win32 unicode . mobsync.exe wmsos1\com yes_with com . .
  408. call %2 modem.sys . win32 unicode . modem.sys net2 yes_without net . .
  409. call %2 modemui.dll . win32 unicode . modemui.dll net2 yes_without net . .
  410. call %2 mofcomp.exe . win32 ansi . mofcomp.exe admin3 yes_with admin . .
  411. call %2 mofd.dll . win32 ansi . mofd.dll admin3 yes_without admin . .
  412. call %2 mouclass.sys . win32 unicode . mouclass.sys drivers1 yes_without drivers . .
  413. call %2 mouhid.sys . win32 unicode . mouhid.sys drivers1 yes_without drivers . .
  414. call %2 mountvol.exe . FE-Multi oem . mountvol.exe base2 excluded base . .
  415. call %2 mousetut.js . html ansi . mousetut.js admin3\oobe html base . .
  416. call %2 mplay32.exe . win32 unicode . mplay32.exe mmedia1\multimedia yes_with multimedia . .
  417. call %2 mpr.dll . win32 oem . mpr.dll net3 yes_without net . .
  418. call %2 mprddm.dll . win32 unicode . mprddm.dll net2 yes_without net . .
  419. call %2 mprmsg.dll . FE-Multi ansi . mprmsg.dll net2 excluded net . .
  420. call %2 mprui.dll . win32 unicode . mprui.dll admin2 yes_without admin . .
  421. call %2 mqutil.dll . win32 unicode . mqutil.dll fax_msmq\msmq yes_without inetsrv . .
  422. call %2 mrinfo.exe . FE-Multi ansi . mrinfo.exe net1 excluded net . .
  423. call %2 msacm32.dll . win32 unicode . msacm32.dll mmedia1\multimedia yes_without multimedia . .
  424. call %2 msacm32.drv . win32 unicode . msacm32.drv mmedia1\multimedia yes_without multimedia . .
  425. call %2 msadp32.acm . win32 unicode . msadp32.acm mmedia1\multimedia yes_without multimedia . .
  426. call %2 msapsspc.dll . win32 unicode . msapsspc.dll legacy yes_without enduser . .
  427. call %2 msaudite.dll . win32 unicode . msaudite.dll base1 yes_without base . .
  428. call %2 msconfig.exe . win32 unicode . msconfig.exe admin2 yes_with admin . .
  429. call %2 msctf.dll . win32 unicode . msctf.dll wmsos1\windows yes_without windows . .
  430. call %2 msg.exe . FE-Multi oem . msg.exe wmsos1\termsrv excluded termsrv . .
  431. call %2 msg711.acm . win32 unicode . msg711.acm mmedia1\multimedia yes_without multimedia . .
  432. call %2 msgina.dll . win32 ansi . msgina.dll ds2 yes_without ds . .
  433. call %2 msgsm32.acm . win32 unicode . msgsm32.acm mmedia1\multimedia yes_without multimedia . .
  434. call %2 mshtml.dll . win32 ansi . mshtml.dll inetcore1 yes_without inetcore . .
  435. call %2 mshtmled.dll . win32 unicode . mshtmled.dll inetcore1 yes_without inetcore . .
  436. call %2 mshtmler.dll . win32 ansi . mshtmler.dll inetcore1 yes_without inetcore . .
  437. call %2 msi.mfl . wmi unicode . msi.mfl admin3 no admin . .
  438. call %2 msident.dll . win32 ansi . msident.dll shell2 yes_without shell . .
  439. call %2 msidntld.dll . win32 ansi . msidntld.dll shell2 yes_without shell . .
  440. call %2 msieftp.dll . win32 ansi . msieftp.dll shell2 yes_without shell . .
  441. call %2 msimn.exe . win32 ansi . msimn.exe inetcore1 yes_without inetcore . .
  442. call %2 msinfo.dll . win32 unicode . msinfo.dll admin2 yes_without admin . .
  443. call %2 msinfo32.exe . win32 unicode . msinfo32.exe mmedia1\enduser yes_with enduser . .
  444. call %2 mslbui.dll . win32 unicode . mslbui.dll wmsos1\windows yes_without windows . .
  445. call %2 msnsspc.dll . win32 unicode . msnsspc.dll legacy yes_without enduser . .
  446. call %2 msobcomm.dll . win32 unicode . msobcomm.dll admin3\oobe yes_without base . .
  447. call %2 msobdl.dll . win32 unicode . msobdl.dll admin3\oobe yes_without base . .
  448. call %2 msobjs.dll . win32 unicode . msobjs.dll base1 yes_without base . .
  449. call %2 msobmain.dll . win32 unicode . msobmain.dll admin3\oobe yes_without base . .
  450. call %2 msobshel.dll . win32 unicode . msobshel.dll admin3\oobe yes_without base . .
  451. call %2 msobshel.htm . html ansi . msobshel.htm admin3\oobe html base . .
  452. call %2 msoeres.dll . win32 ansi . msoeres.dll inetcore1 yes_without inetcore . .
  453. call %2 msoobe.exe . win32 unicode . msoobe.exe admin3\oobe yes_with base . .
  454. call %2 mspaint.exe . win32 unicode . mspaint.exe shell2 yes_with shell . .
  455. call %2 mspmspsv.dll . win32 ansi . mspmspsv.dll mmedia1\multimedia yes_without multimedia . .
  456. call %2 msports.dll . win32 unicode . msports.dll shell2 yes_without shell . .
  457. call %2 msrle32.dll . win32 unicode . msrle32.dll mmedia1\multimedia yes_without multimedia . .
  458. call %2 mssign32.dll . win32 unicode . mssign32.dll ds2 yes_without ds . .
  459. call %2 msswchx.exe . win32 unicode . msswchx.exe shell2 yes_with shell . .
  460. call %2 mstask.dll . win32 unicode . mstask.dll admin2 yes_without admin . .
  461. call %2 mstime.dll . win32 unicode . mstime.dll inetcore1 yes_without inetcore . .
  462. call %2 mstinit.exe . win32 unicode . mstinit.exe admin2 yes_with admin . .
  463. call %2 mstsc.exe . win32 ansi . mstsc.exe wmsos1\termsrv yes_without termsrv . .
  464. call %2 msutb.dll . win32 unicode . msutb.dll wmsos1\windows yes_without windows . .
  465. call %2 msvfw32.dll . win32 unicode . msvfw32.dll mmedia1\multimedia yes_without multimedia . .
  466. call %2 msvidc32.dll . win32 unicode . msvidc32.dll mmedia1\multimedia yes_without multimedia . .
  467. call %2 msvidctl.dll . win32 unicode . msvidctl.dll mmedia1\multimedia yes_without multimedia . .
  468. call %2 msw3prt.dll . win32 unicode . msw3prt.dll printscan1 yes_without printscan . .
  469. call %2 mswebdvd.dll . win32 unicode . mswebdvd.dll mmedia1\multimedia yes_without multimedia . .
  470. call %2 mswrd632.wpc . win32 unicode . mswrd632.wpc mmedia1\enduser yes_without enduser . .
  471. call %2 mswsock.dll . win32 oem . mswsock.dll net1 excluded net . .
  472. call %2 mt735res.dll . win32 unicode . mt735res.dll printscan1 yes_without printscan . .
  473. call %2 mt90res.dll . win32 unicode . mt90res.dll printscan1 yes_without printscan . .
  474. call %2 mtbjres.dll . win32 unicode . mtbjres.dll printscan1 yes_without printscan . .
  475. call %2 mtltres.dll . win32 unicode . mtltres.dll printscan1 yes_without printscan . .
  476. call %2 mtpclres.dll . win32 unicode . mtpclres.dll printscan1 yes_without printscan . .
  477. call %2 mty24res.dll . win32 unicode . mty24res.dll printscan1 yes_without printscan . .
  478. call %2 mty9res.dll . win32 unicode . mty9res.dll printscan1 yes_without printscan . .
  479. call %2 mxcard.sys . win32 unicode . mxcard.sys drivers1 yes_without drivers . .
  480. call %2 mxicfg.dll . win32 unicode . mxicfg.dll drivers1 yes_without drivers . .
  481. call %2 mxport.sys . win32 unicode . mxport.sys drivers1 yes_without drivers . .
  482. call %2 mycomput.dll . win32 unicode . mycomput.dll admin2 yes_without admin . .
  483. call %2 mydocs.dll . win32 ansi . mydocs.dll shell2 yes_without shell . .
  484. call %2 n100325.sys . win32 ansi . n100325.sys drivers1 no drivers . .
  485. call %2 narrator.exe . win32 unicode . narrator.exe shell2 yes_with shell . .
  486. call %2 narrhook.dll . win32 unicode . narrhook.dll shell2 yes_without shell . .
  487. call %2 nbtstat.exe . win32 oem . nbtstat.exe net3 excluded net . .
  488. call %2 nc24res.dll . win32 unicode . nc24res.dll printscan1 yes_without printscan . .
  489. call %2 ncpa.cpl . win32 unicode . ncpa.cpl net3 yes_without net . .
  490. call %2 ncpclres.dll . win32 unicode . ncpclres.dll printscan1 yes_without printscan . .
  491. call %2 ncpsui.dll . win32 unicode . ncpsui.dll printscan1 yes_without printscan . .
  492. call %2 nddeapi.dll . win32 unicode . nddeapi.dll wmsos1\windows yes_without windows . .
  493. call %2 nddenb32.dll . win32 unicode . nddenb32.dll wmsos1\windows yes_without windows . .
  494. call %2 ndptsp.tsp . win32 unicode . ndptsp.tsp net2 yes_without net . .
  495. call %2 netcfgx.dll . win32 unicode . netcfgx.dll net3 yes_without net . .
  496. call %2 netdde.exe . win32 unicode . netdde.exe wmsos1\windows yes_with windows . .
  497. call %2 netevent.dll . win32 unicode . netevent.dll net3 excluded net . .
  498. call %2 neth.dll . win32 oem . neth.dll ds1 yes_without ds . .
  499. call %2 netid.dll . win32 unicode . netid.dll admin2 yes_without admin . .
  500. call %2 netman.dll . win32 unicode . netman.dll net3 yes_without net . .
  501. call %2 netmsg.dll . win32 oem . netmsg.dll ds1 yes_without ds . .
  502. call %2 netoc.dll . win32 unicode . netoc.dll net3 yes_without net . .
  503. call %2 netplwiz.dll . win32 ansi . netplwiz.dll shell2 yes_without shell . .
  504. call %2 netsh.exe . FE-Multi oem . netsh.exe net2 excluded net . .
  505. call %2 netshell.dll . win32 unicode . netshell.dll net3 yes_without net . .
  506. call %2 netstat.exe . win32 oem . netstat.exe net1 excluded net . .
  507. call %2 netui0.dll . win32 unicode . netui0.dll admin2 yes_without admin . .
  508. call %2 netui2.dll . win32 unicode . netui2.dll admin2 yes_without admin . .
  509. call %2 netwlan5.sys . win32 ansi . netwlan5.sys drivers1 yes_without drivers . .
  510. call %2 newdev.dll . win32 unicode . newdev.dll shell2 yes_without base . .
  511. call %2 nextlink.dll . win32 unicode . nextlink.dll iis yes_without inetsrv . .
  512. call %2 noanswer.htm . html ansi . noanswer.htm admin3\oobe html base . .
  513. call %2 notepad.exe . win32 unicode . notepad.exe shell2 yes_with shell . .
  514. call %2 nppagent.exe . win32 unicode . nppagent.exe net3 yes_with net . .
  515. call %2 npptools.dll . win32 unicode . npptools.dll net3 yes_without net . .
  516. call %2 nslookup.exe . win32 oem . nslookup.exe ds1 excluded ds . .
  517. call %2 ntbackup.exe . win32 unicode . ntbackup.exe base2 yes_with base . .
  518. call %2 ntdll.dll . win32 unicode . ntdll.dll base1 yes_without base . .
  519. call %2 ntevt.mfl . wmi unicode . ntevt.mfl admin3 no admin . .
  520. call %2 ntkrnlmp.exe . win32 oem . ntkrnlmp.exe resource_identical yes_with base . .
  521. call %2 ntkrnlpa.exe . win32 oem . ntkrnlpa.exe resource_identical yes_with base . .
  522. call %2 ntkrpamp.exe . win32 oem . ntkrpamp.exe resource_identical yes_with base . .
  523. call %2 ntlanman.dll . win32 oem . ntlanman.dll admin2 yes_without admin . .
  524. call %2 ntlanui.dll . win32 unicode . ntlanui.dll admin2 yes_without admin . .
  525. call %2 ntlanui2.dll . win32 unicode . ntlanui2.dll shell2 yes_without shell . .
  526. call %2 ntmarta.dll . win32 unicode . ntmarta.dll ds2 yes_without ds . .
  527. call %2 ntmsapi.dll . win32 unicode . ntmsapi.dll drivers1 yes_without drivers . .
  528. call %2 ntmsdba.dll . win32 unicode . ntmsdba.dll drivers1 yes_without drivers . .
  529. call %2 ntmsevt.dll . win32 unicode . ntmsevt.dll drivers1 yes_without drivers . .
  530. call %2 ntmsmgr.dll . win32 unicode . ntmsmgr.dll drivers1 yes_without drivers . .
  531. call %2 ntmssvc.dll . win32 unicode . ntmssvc.dll drivers1 yes_without drivers . .
  532. call %2 ntoc.dll . win32 unicode . ntoc.dll admin1 yes_without base . .
  533. call %2 ntoskrnl.exe . win32 oem . ntoskrnl.exe base1 yes_with base . .
  534. call %2 ntprint.dll . win32 unicode . ntprint.dll printscan1 yes_without printscan . .
  535. call %2 ntshrui.dll . win32 unicode . ntshrui.dll shell2 yes_without shell . .
  536. call %2 ntvdm.exe . win32 oem . ntvdm.exe base1 yes_with base . .
  537. call %2 nwc.cpl . win32 unicode . nwc.cpl admin2 yes_without admin . .
  538. call %2 nwevent.dll . win32 unicode . nwevent.dll ds1 yes_without ds . .
  539. call %2 nwprovau.dll . win32 unicode . nwprovau.dll ds1 yes_without ds . .
  540. call %2 nwscript.exe . win32 oem . nwscript.exe ds1 excluded ds . .
  541. call %2 oakley.dll . win32 unicode . oakley.dll net3 excluded net . .
  542. call %2 obeip.dun . ini ansi . obeip.dun admin3\oobe no base . .
  543. call %2 objsel.dll . win32 unicode . objsel.dll admin2 yes_without admin . .
  544. call %2 occache.dll . win32 ansi . occache.dll shell2 yes_without shell . .
  545. call %2 oce.dll . win32 unicode . oce.dll printscan1 yes_without printscan . .
  546. call %2 ocmanage.dll . win32 unicode . ocmanage.dll admin1 yes_without base . .
  547. call %2 od9ibres.dll . win32 unicode . od9ibres.dll printscan1 yes_without printscan . .
  548. call %2 oemig50.exe . win32 unicode . oemig50.exe inetcore1 yes_with inetcore . .
  549. call %2 oemiglib.dll . win32 ansi . oemiglib.dll inetcore1 yes_without inetcore . .
  550. call %2 ok9ibres.dll . win32 unicode . ok9ibres.dll printscan1 yes_without printscan . .
  551. call %2 okd24res.dll . win32 unicode . okd24res.dll printscan1 yes_without printscan . .
  552. call %2 oki24res.dll . win32 unicode . oki24res.dll printscan1 yes_without printscan . .
  553. call %2 oki9res.dll . win32 unicode . oki9res.dll printscan1 yes_without printscan . .
  554. call %2 okipage.dll . win32 unicode . okipage.dll printscan1 yes_without printscan . .
  555. call %2 okm24res.dll . win32 unicode . okm24res.dll printscan1 yes_without printscan . .
  556. call %2 okml9res.dll . win32 unicode . okml9res.dll printscan1 yes_without printscan . .
  557. call %2 oksidm9.dll . win32 unicode . oksidm9.dll printscan1 yes_without printscan . .
  558. call %2 ol24res.dll . win32 unicode . ol24res.dll printscan1 yes_without printscan . .
  559. call %2 ol9res.dll . win32 unicode . ol9res.dll printscan1 yes_without printscan . .
  560. call %2 old24res.dll . win32 unicode . old24res.dll printscan1 yes_without printscan . .
  561. call %2 old9res.dll . win32 unicode . old9res.dll printscan1 yes_without printscan . .
  562. call %2 ole32.dll . win32 unicode . ole32.dll wmsos1\com yes_without com . .
  563. call %2 oleaccrc.dll . win32 ansi . oleaccrc.dll wmsos1\windows yes_without windows . .
  564. call %2 olecli32.dll . win32 unicode . olecli32.dll wmsos1\com yes_without com . .
  565. call %2 oledlg.dll . win32 unicode . oledlg.dll wmsos1\com yes_without com . .
  566. call %2 oleprn.dll . win32 unicode . oleprn.dll printscan1 yes_without printscan . .
  567. call %2 oobebaln.exe . win32 unicode . oobebaln.exe admin3\oobe html base . .
  568. call %2 opnfiles.exe . FE-Multi oem . opnfiles.exe base2 yes_with base . .
  569. call %2 opteures.dll . win32 unicode . opteures.dll printscan1 yes_without printscan . .
  570. call %2 optrares.dll . win32 unicode . optrares.dll printscan1 yes_without printscan . .
  571. call %2 osk.exe . win32 unicode . osk.exe shell2 yes_with shell . .
  572. call %2 osuninst.dll . win32 ansi . osuninst.dll admin1 yes_without base . .
  573. call %2 osuninst.exe . win32 unicode . osuninst.exe admin1 yes_with base . .
  574. call %2 otceth5.sys . win32 ansi . otceth5.sys drivers1 yes_without drivers . .
  575. call %2 otcsercb.sys . win32 ansi . otcsercb.sys net2 yes_without net . .
  576. call %2 ovui2rc.dll . win32 unicode . ovui2rc.dll drivers1 yes_without drivers . .
  577. call %2 bulltlp3.sys . win32 unicode . bulltlp3.sys drivers1 yes_without drivers . .
  578. call %2 p3.sys . win32 unicode . p3.sys resource_identical yes_without base . .
  579. call %2 p5000.dll . win32 unicode . p5000.dll printscan1 yes_without printscan . .
  580. call %2 p5000ui.dll . win32 unicode . p5000ui.dll printscan1 yes_without printscan . .
  581. call %2 p5000uni.dll . win32 unicode . p5000uni.dll printscan1 yes_without printscan . .
  582. call %2 pa24res.dll . win32 unicode . pa24res.dll printscan1 yes_without printscan . .
  583. call %2 pa24w9x.dll . win32 unicode . pa24w9x.dll printscan1 yes_without printscan . .
  584. call %2 pa9res.dll . win32 unicode . pa9res.dll printscan1 yes_without printscan . .
  585. call %2 pa9w9x.dll . win32 unicode . pa9w9x.dll printscan1 yes_without printscan . .
  586. call %2 parport.sys . win32 unicode . parport.sys drivers1 yes_without drivers . .
  587. call %2 parvdm.sys . win32 unicode . parvdm.sys drivers1 yes_without drivers . .
  588. call %2 pathping.exe . win32 oem . pathping.exe net1 excluded net . .
  589. call %2 pautoenr.dll . win32 unicode . pautoenr.dll ds1 yes_without ds . .
  590. call %2 isppberr.htm . html ansi . isppberr.htm admin3 html base locked .
  591. call %2 pberr.htm . html ansi . pberr.htm admin3\oobe html base . .
  592. call %2 rpberr.htm . html ansi . rpberr.htm admin3\oobe html base . .
  593. call %2 dgapci.sys . win32 ansi . dgapci.sys drivers1 yes_without drivers . .
  594. call %2 pci.sys . win32 unicode . pci.sys base1 yes_without base . .
  595. call %2 pciide.sys . win32 unicode . pciide.sys drivers1 yes_without drivers . .
  596. call %2 pcl4res.dll . win32 unicode . pcl4res.dll printscan1 yes_without printscan . .
  597. call %2 pcl5eres.dll . win32 unicode . pcl5eres.dll printscan1 yes_without printscan . .
  598. call %2 pcl5ures.dll . win32 unicode . pcl5ures.dll printscan1 yes_without printscan . .
  599. call %2 pcleures.dll . win32 unicode . pcleures.dll printscan1 yes_without printscan . .
  600. call %2 pclxl.dll . win32 unicode . pclxl.dll printscan1 yes_without printscan . .
  601. call %2 pcmcia.sys . win32 unicode . pcmcia.sys base1 yes_without base . .
  602. call %2 pdh.dll . FE-Multi unicode . pdh.dll wmsos1\sdktools yes_without sdktools . .
  603. call %2 peer.exe . win32 unicode . peer.exe drivers1 yes_with drivers . .
  604. call %2 perfctrs.dll . win32 unicode . perfctrs.dll wmsos1\sdktools yes_without base . .
  605. call %2 perfdisk.dll . win32 unicode . perfdisk.dll base1 yes_without base . .
  606. call %2 perfnet.dll . win32 unicode . perfnet.dll base1 yes_without base . .
  607. call %2 perfos.dll . win32 unicode . perfos.dll base1 yes_without base . .
  608. call %2 perfproc.dll . win32 unicode . perfproc.dll base1 yes_without base . .
  609. call %2 philcam1.dll . win32 unicode . philcam1.dll drivers1 yes_without drivers . .
  610. call %2 phone.inf . inf unicode . phone.inf admin3\oobe no base . .
  611. call %2 photowiz.dll . win32 ansi . photowiz.dll printscan1 no printscan . .
  612. call %2 pathping.exe . win32 oem . pathping.exe net1 excluded net . .
  613. call %2 ping.exe . FE-Multi oem . ping.exe net1 excluded net . .
  614. call %2 plotui.dll . win32 unicode . plotui.dll printscan1 yes_without printscan . .
  615. call %2 policman.mfl . wmi unicode . policman.mfl admin3 no admin . .
  616. call %2 polstore.dll . win32 unicode . polstore.dll net3 yes_without net . .
  617. call %2 powercfg.cpl . win32 unicode . powercfg.cpl shell2 yes_without shell . .
  618. call %2 prflbmsg.dll . win32 unicode . prflbmsg.dll base1 yes_without base . .
  619. call %2 printui.dll . win32 unicode . printui.dll printscan1 yes_without printscan . .
  620. call %2 processr.sys . win32 unicode . processr.sys base1 yes_without base . .
  621. call %2 progman.exe . win32 unicode . progman.exe shell2 yes_with shell . .
  622. call %2 proquota.exe . win32 unicode . proquota.exe ds2 yes_with ds . .
  623. call %2 ps5ui.dll . win32 unicode . ps5ui.dll printscan1 yes_without printscan . .
  624. call %2 psbase.dll . win32 unicode . psbase.dll ds2 yes_without ds . .
  625. call %2 pscr.sys . win32 unicode . pscr.sys drivers1 yes_without drivers . .
  626. call %2 pscript5.dll . win32 unicode . pscript5.dll printscan1 yes_without printscan . .
  627. call %2 pstorsvc.dll . win32 unicode . pstorsvc.dll ds2 yes_without ds . .
  628. call %2 ptpusd.dll . win32 unicode . ptpusd.dll printscan1 yes_without printscan . .
  629. call %2 pulse.htm . html ansi . pulse.htm admin3\oobe html base . .
  630. call %2 rpulse.htm . html ansi . rpulse.htm admin3\oobe html base . .
  631. call %2 qappsrv.exe . FE-Multi oem . qappsrv.exe wmsos1\termsrv excluded termsrv . .
  632. call %2 qasf.dll . win32 unicode . qasf.dll mmedia1\multimedia yes_without multimedia . .
  633. call %2 qcap.dll . win32 unicode . qcap.dll mmedia1\multimedia yes_without multimedia . .
  634. call %2 qdv.dll . win32 unicode . qdv.dll mmedia1\multimedia yes_without multimedia . .
  635. call %2 qdvd.dll . win32 unicode . qdvd.dll mmedia1\multimedia yes_without multimedia . .
  636. call %2 qedit.dll . win32 unicode . qedit.dll mmedia1\multimedia yes_without multimedia . .
  637. call %2 qmgr.dll . win32 ansi . qmgr.dll admin2 yes_without admin . .
  638. call %2 qprocess.exe . FE-Multi oem . qprocess.exe wmsos1\termsrv excluded termsrv . .
  639. call %2 quartz.dll . win32 unicode . quartz.dll mmedia1\multimedia yes_without multimedia . .
  640. call %2 dsquery.exe . win32 unicode . dsquery.exe admin2 yes_with admin . .
  641. call %2 query.exe . FE-Multi oem . query.exe wmsos1\termsrv excluded termsrv . .
  642. call %2 quser.exe . FE-Multi oem . quser.exe wmsos1\termsrv excluded termsrv . .
  643. call %2 qwinsta.exe . FE-Multi oem . qwinsta.exe wmsos1\termsrv excluded termsrv . .
  644. call %2 r2mdkxga.sys . win32 ansi cbmdmkxx.sys r2mdkxga.sys resource_identical yes_without net . .
  645. call %2 r2mdmkxx.sys . win32 ansi . r2mdmkxx.sys resource_identical yes_without net . .
  646. call %2 racpldlg.dll . win32 unicode . racpldlg.dll admin2 yes_without admin . .
  647. call %2 rasapi32.dll . win32 unicode . rasapi32.dll net2 yes_without net . .
  648. call %2 rasctrs.dll . win32 unicode . rasctrs.dll net2 excluded net . .
  649. call %2 rasdial.exe . FE-Multi oem . rasdial.exe net2 excluded net . .
  650. call %2 rasdlg.dll . win32 unicode . rasdlg.dll net2 yes_without net . .
  651. call %2 rasmontr.dll . FE-Multi ansi . rasmontr.dll net2 excluded net . .
  652. call %2 rasphone.exe . win32 unicode . rasphone.exe net2 yes_with net . .
  653. call %2 rastls.dll . win32 unicode . rastls.dll net2 yes_without net . .
  654. call %2 rcbdyctl.dll . win32 unicode . rcbdyctl.dll admin2 yes_without admin . .
  655. call %2 rcimlby.exe . win32 unicode . rcimlby.exe admin2 yes_with admin . .
  656. call %2 rcnterr.htm . html ansi . rcnterr.htm admin3\oobe html base . .
  657. call %2 rcp.exe . win32 oem . rcp.exe net1 excluded net . .
  658. call %2 rdpcfgex.dll . win32 unicode . rdpcfgex.dll wmsos1\termsrv excluded termsrv . .
  659. call %2 rdpsnd.dll . win32 unicode . rdpsnd.dll wmsos1\termsrv yes_without termsrv . .
  660. call %2 rdtone.htm . html ansi . rdtone.htm admin3\oobe html base . .
  661. call %2 redbook.sys . win32 unicode . redbook.sys drivers1 yes_without drivers . .
  662. call %2 reg.exe . FE-Multi oem . reg.exe wmsos1\sdktools yes_without base . .
  663. call %2 regedit.exe . win32 ansi . regedit.exe base2 yes_with base . .
  664. call %2 regevent.mfl . wmi unicode . regevent.mfl admin3 no admin . .
  665. call %2 register.exe . FE-Multi oem . register.exe wmsos1\termsrv excluded termsrv . .
  666. call %2 regsvr32.exe . FE-Multi oem . regsvr32.exe wmsos1\sdktools yes_with sdktools . .
  667. call %2 regwiz.exe . win32 unicode . regwiz.exe shell2 yes_with shell . .
  668. call %2 regwizc.dll . win32 unicode . regwizc.dll shell2 yes_without shell . .
  669. call %2 relog.exe . FE-Multi oem . relog.exe wmsos1\sdktools yes_with sdktools . .
  670. call %2 remotepg.dll . win32 unicode . remotepg.dll wmsos1\termsrv yes_without termsrv . ia64
  671. call %2 iisreset.exe . FE-Multi unicode . iisreset.exe iis yes_with inetsrv . .
  672. call %2 reset.exe . FE-Multi oem . reset.exe wmsos1\termsrv excluded termsrv . .
  673. call %2 rexec.exe . win32 oem . rexec.exe net1 excluded net . .
  674. call %2 rhndshk.htm . html ansi . rhndshk.htm admin3\oobe html base . .
  675. call %2 riafres.dll . win32 unicode . riafres.dll printscan1 yes_without printscan . .
  676. call %2 riafui1.dll . win32 unicode . riafui1.dll printscan1 yes_without printscan . .
  677. call %2 riafui2.dll . win32 unicode . riafui2.dll printscan1 yes_without printscan . .
  678. call %2 ricohres.dll . win32 unicode . ricohres.dll printscan1 yes_without printscan . .
  679. call %2 rnoansw.htm . html ansi . rnoansw.htm admin3\oobe html base . .
  680. call %2 rnomdm.htm . html ansi . rnomdm.htm admin3\oobe html base . .
  681. call %2 rocket.sys . win32 ansi . rocket.sys drivers1 yes_without drivers . .
  682. call %2 ipxroute.exe . FE-Multi oem . ipxroute.exe net3 excluded net . .
  683. call %2 route.exe . win32 oem . route.exe net1 excluded net . .
  684. call %2 rpberr.htm . html ansi . rpberr.htm admin3\oobe html base . .
  685. call %2 rpulse.htm . html ansi . rpulse.htm admin3\oobe html base . .
  686. call %2 rsh.exe . win32 oem . rsh.exe net1 excluded net . .
  687. call %2 rshx32.dll . win32 ansi . rshx32.dll shell2 yes_without shell . .
  688. call %2 rsm.exe . FE-Multi oem . rsm.exe drivers1 yes_with drivers . .
  689. call %2 rsmgrstr.dll . win32 unicode . rsmgrstr.dll printscan1 yes_without printscan . .
  690. call %2 rsmui.exe . win32 unicode . rsmui.exe drivers1 yes_with drivers . .
  691. call %2 rsnotify.exe . win32 unicode . rsnotify.exe base2 yes_with base . .
  692. call %2 rsop.mfl . wmi unicode . rsop.mfl ds2 no ds . .
  693. call %2 rsopprov.exe . win32 unicode . rsopprov.exe ds2 yes_with ds . .
  694. call %2 rtcdll.dll . win32 unicode . rtcdll.dll net2 yes_without net . .
  695. call %2 rtcshare.exe . win32 unicode . rtcshare.exe net2 yes_with net . .
  696. call %2 rtoobusy.htm . html ansi . rtoobusy.htm admin3\oobe html base . .
  697. call %2 runas.exe . FE-Multi oem . runas.exe base2 excluded base . .
  698. call %2 rundll32.exe . win32 unicode . rundll32.exe shell2 yes_without shell . .
  699. call %2 runonce.exe . win32 unicode . runonce.exe shell2 yes_with shell . .
  700. call %2 rwinsta.exe . FE-Multi oem . rwinsta.exe wmsos1\termsrv excluded termsrv . .
  701. call %2 safrcdlg.dll . win32 unicode . safrcdlg.dll admin2 yes_without admin . .
  702. call %2 safrdm.dll . win32 unicode . safrdm.dll admin2 yes_without admin . .
  703. call %2 samsrv.dll . win32 unicode . samsrv.dll ds1 yes_without ds . .
  704. call %2 sapi.cpl . win32 unicode . sapi.cpl resource_identical yes_with enduser . .
  705. call %2 savedump.exe . win32 unicode . savedump.exe wmsos1\sdktools excluded sdktools . .
  706. call %2 scarddlg.dll . win32 unicode . scarddlg.dll ds2 yes_without ds . .
  707. call %2 scardsvr.exe . win32 ansi . scardsvr.exe ds2 excluded ds . .
  708. call %2 sccmn50m.sys . win32 unicode . sccmn50m.sys drivers1 yes_without drivers . .
  709. call %2 sccsccp.dll . win32 unicode . sccsccp.dll ds2 yes_without ds . .
  710. call %2 scecli.dll . win32 unicode . scecli.dll ds2 yes_without ds . .
  711. call %2 scesrv.dll . win32 unicode . scesrv.dll ds2 yes_without ds . .
  712. call %2 schedsvc.dll . win32 unicode . schedsvc.dll admin2 yes_without admin . .
  713. call %2 sclgntfy.dll . win32 unicode . sclgntfy.dll ds1 yes_without ds . .
  714. call %2 scmstcs.sys . win32 unicode . scmstcs.sys drivers1 yes_without drivers . .
  715. call %2 scr111.sys . win32 unicode . scr111.sys drivers1 yes_without drivers . .
  716. call %2 scrcons.mfl . wmi unicode . scrcons.mfl admin3 no admin . .
  717. call %2 sctasks.exe . win32 oem . sctasks.exe admin2 yes_with admin . .
  718. call %2 sdbinst.exe . win32 oem . sdbinst.exe wmsos1\windows yes_with windows . .
  719. call %2 secedit.exe . FE-Multi oem . secedit.exe ds2 excluded ds . .
  720. call %2 seclogon.dll . win32 unicode . seclogon.dll ds1 yes_without ds . .
  721. call %2 secrcw32.mfl . wmi unicode . secrcw32.mfl admin3 no admin . .
  722. call %2 sek24res.dll . win32 unicode . sek24res.dll printscan1 yes_without printscan . .
  723. call %2 sek9res.dll . win32 unicode . sek9res.dll printscan1 yes_without printscan . .
  724. call %2 sendcmsg.dll . win32 unicode . sendcmsg.dll admin2 yes_without admin . .
  725. call %2 sendmail.dll . win32 unicode . sendmail.dll shell2 yes_without shell . .
  726. call %2 grserial.sys . win32 unicode . grserial.sys drivers1 yes_without drivers . .
  727. call %2 serial.sys . win32 unicode . serial.sys drivers1 yes_without drivers . .
  728. call %2 serialui.dll . win32 unicode . serialui.dll net2 yes_without net . .
  729. call %2 sermouse.sys . win32 unicode . sermouse.sys drivers1 yes_without drivers . .
  730. call %2 serscan.sys . win32 unicode . serscan.sys printscan1 yes_without printscan . .
  731. call %2 servdeps.dll . win32 unicode . servdeps.dll admin3 yes_without admin . .
  732. call %2 services.exe . win32 oem . services.exe base1 yes_with base . .
  733. call %2 serwvdrv.dll . win32 unicode . serwvdrv.dll net2 yes_without net . .
  734. call %2 sessmgr.exe . win32 unicode . sessmgr.exe wmsos1\termsrv excluded termsrv . .
  735. call %2 sethc.exe . win32 unicode . sethc.exe ds2 yes_with ds . .
  736. call %2 setup50.exe . win32 unicode . setup50.exe inetcore1 yes_with inetcore . .
  737. call %2 setupapi.dll . FE-Multi ansi . setupapi.dll admin1 yes_without base . .
  738. call %2 sfc.exe . FE-Multi oem . sfc.exe base1 excluded base . .
  739. call %2 sfc_os.dll . win32 unicode . sfc_os.dll base1 yes_without base . .
  740. call %2 sgsmusb.sys . win32 ansi . sgsmusb.sys net2 yes_without net . .
  741. call %2 shadow.exe . FE-Multi oem . shadow.exe wmsos1\termsrv excluded termsrv . .
  742. call %2 shdoclc.dll . win32 ansi . shdoclc.dll shell1 yes_without shell . .
  743. call %2 shell32.dll . win32 ansi . shell32.dll shell1 yes_without shell . ia64
  744. call %2 shimgvw.dll . win32 ansi . shimgvw.dll shell2 yes_without shell . ia64
  745. call %2 shlwapi.dll . win32 unicode . shlwapi.dll shell1 yes_without shell . .
  746. call %2 shmedia.dll . win32 unicode . shmedia.dll shell2 yes_without shell . .
  747. call %2 shrpubw.exe . win32 unicode . shrpubw.exe admin2 yes_with admin . .
  748. call %2 shscrap.dll . win32 ansi . shscrap.dll shell2 yes_without shell . .
  749. call %2 shsvcs.dll . win32 unicode . shsvcs.dll shell1 yes_without shell . .
  750. call %2 shutdown.exe . FE-Multi oem . shutdown.exe ds2 yes_with ds . .
  751. call %2 sigtab.dll . win32 unicode . sigtab.dll base2 yes_without base . .
  752. call %2 sigverif.exe . win32 unicode . sigverif.exe base2 yes_with base . .
  753. call %2 simptcp.dll . win32 unicode . simptcp.dll net1 excluded net . .
  754. call %2 sk98xwin.sys . win32 ansi . sk98xwin.sys drivers1 yes_without drivers . .
  755. call %2 skcolres.dll . win32 unicode . skcolres.dll printscan1 yes_without printscan . .
  756. call %2 slayerxp.dll . win32 unicode . slayerxp.dll wmsos1\windows yes_without windows . .
  757. call %2 slbrccsp.dll . win32 unicode . slbrccsp.dll ds2 yes_without ds . .
  758. call %2 smcirda.sys . win32 ansi . smcirda.sys drivers1 yes_without drivers . .
  759. call %2 sml8xres.dll . win32 unicode . sml8xres.dll printscan1 yes_without printscan . .
  760. call %2 smlogcfg.dll . win32 ansi . smlogcfg.dll admin2 yes_without admin . .
  761. call %2 smlogsvc.exe . win32 unicode . smlogsvc.exe admin2 yes_with admin . .
  762. call %2 smtpcons.mfl . wmi unicode . smtpcons.mfl admin3 no admin . .
  763. call %2 sndrec32.exe . win32 unicode . sndrec32.exe mmedia1\multimedia yes_with multimedia . .
  764. call %2 sndvol32.exe . win32 unicode . sndvol32.exe mmedia1\multimedia yes_with multimedia . .
  765. call %2 snmp.exe . win32 unicode . snmp.exe net3 excluded net . .
  766. call %2 snmpsnap.dll . win32 unicode . snmpsnap.dll net3 yes_without net . .
  767. call %2 softkbd.dll . win32 unicode . softkbd.dll wmsos1\windows yes_without windows . .
  768. call %2 sort.exe . FE-Multi oem . sort.exe base2 excluded base . .
  769. call %2 spdports.dll . win32 unicode . spdports.dll drivers1 yes_without drivers . .
  770. call %2 sprestrt.exe . win32 unicode . sprestrt.exe admin1 yes_with base . .
  771. call %2 sptip.dll . win32 unicode . sptip.dll wmsos1\windows yes_without windows . .
  772. call %2 spxports.dll . win32 unicode . spxports.dll drivers1 yes_without drivers . .
  773. call %2 srchctls.dll . win32 unicode . srchctls.dll mmedia1\enduser yes_without enduser . .
  774. call %2 srchui.dll . win32 unicode . srchui.dll mmedia1\enduser yes_without enduser . .
  775. call %2 ssmarque.scr . win32 unicode . ssmarque.scr shell2 yes_without shell . .
  776. call %2 st24eres.dll . win32 unicode . st24eres.dll printscan1 yes_without printscan . .
  777. call %2 star9res.dll . win32 unicode . star9res.dll printscan1 yes_without printscan . .
  778. call %2 stcusb.sys . win32 unicode . stcusb.sys drivers1 yes_without drivers . .
  779. call %2 sti.dll . win32 unicode . sti.dll printscan1 yes_without printscan . .
  780. call %2 sti_ci.dll . win32 unicode . sti_ci.dll printscan1 yes_without printscan . .
  781. call %2 stjtres.dll . win32 unicode . stjtres.dll printscan1 yes_without printscan . .
  782. call %2 stlnata.sys . win32 ansi . stlnata.sys drivers1 yes_without drivers . .
  783. call %2 stlnprop.dll . win32 unicode . stlnprop.dll drivers1 yes_without drivers . .
  784. call %2 stobject.dll . win32 unicode . stobject.dll shell2 yes_without shell . .
  785. call %2 storprop.dll . win32 unicode . storprop.dll drivers1 yes_without drivers . .
  786. call %2 str24res.dll . win32 unicode . str24res.dll printscan1 yes_without printscan . .
  787. call %2 str9eres.dll . win32 unicode . str9eres.dll printscan1 yes_without printscan . .
  788. call %2 swprv.dll . win32 unicode . swprv.dll drivers1 yes_without drivers locked .
  789. call %2 sxports.dll . win32 unicode . sxports.dll drivers1 yes_without drivers . .
  790. call %2 sxs.dll . win32 unicode . sxs.dll base1 yes_without base . .
  791. call %2 syncui.dll . win32 unicode . syncui.dll shell2 yes_without shell . .
  792. call %2 sysdm.cpl . win32 unicode . sysdm.cpl shell1 yes_without shell . .
  793. call %2 sysinfo.exe . win32 oem . sysinfo.exe wmsos1\sdktools yes_with sdktools . .
  794. call %2 sysinv.dll . win32 unicode . sysinv.dll shell2 yes_without shell . .
  795. call %2 syskey.exe . win32 unicode . syskey.exe ds2 yes_with ds . .
  796. call %2 sysmon.ocx . win32 unicode . sysmon.ocx admin2 yes_without admin . .
  797. call %2 sysocmgr.exe . win32 unicode . sysocmgr.exe admin1 yes_with base . .
  798. call %2 syssetup.dll . FE-Multi unicode_limited . syssetup.dll admin1 yes_without base . .
  799. call %2 t3016.dll . win32 unicode . t3016.dll printscan1 yes_without printscan . .
  800. call %2 t5000.dll . win32 unicode . t5000.dll printscan1 yes_without printscan . .
  801. call %2 t5000ui.dll . win32 unicode . t5000ui.dll printscan1 yes_without printscan . .
  802. call %2 t5000uni.dll . win32 unicode . t5000uni.dll printscan1 yes_without printscan . .
  803. call %2 tapi3.dll . win32 unicode . tapi3.dll net2 yes_without net . .
  804. call %2 tapi32.dll . win32 unicode . tapi32.dll net2 yes_without net . .
  805. call %2 tapisrv.dll . win32 ansi . tapisrv.dll net2 yes_without net . .
  806. call %2 tapiui.dll . win32 unicode . tapiui.dll net2 yes_without net . .
  807. call %2 taskkill.exe . win32 oem . taskkill.exe wmsos1\sdktools yes_with sdktools . .
  808. call %2 tasklist.exe . win32 oem . tasklist.exe wmsos1\sdktools yes_with sdktools . .
  809. call %2 taskmgr.exe . win32 unicode . taskmgr.exe shell1 yes_with shell . .
  810. call %2 tcmsetup.exe . FE-Multi unicode . tcmsetup.exe net2 excluded net . .
  811. call %2 tcpmon.dll . win32 unicode . tcpmon.dll printscan1 yes_without printscan . .
  812. call %2 tcpmonui.dll . win32 unicode . tcpmonui.dll printscan1 yes_without printscan . .
  813. call %2 telephon.cpl . win32 unicode . telephon.cpl net2 yes_without net . .
  814. call %2 telnet.exe . FE-Multi oem . telnet.exe net1 excluded net . .
  815. call %2 termmgr.dll . win32 unicode . termmgr.dll net2 yes_without net . .
  816. call %2 termsrv.dll . win32 unicode . termsrv.dll wmsos1\termsrv excluded termsrv . .
  817. call %2 tftp.exe . win32 oem . tftp.exe net1 excluded net . .
  818. call %2 themeui.dll . win32 ansi . themeui.dll shell1 yes_without shell . .
  819. call %2 ti850res.dll . win32 unicode . ti850res.dll printscan1 yes_without printscan . .
  820. call %2 timedate.cpl . win32 unicode . timedate.cpl shell1 yes_without shell . .
  821. call %2 tip.htm . html ansi . tip.htm inetcore1 html inetcore . .
  822. call %2 tlntadmn.exe . FE-Multi oem . tlntadmn.exe net1 excluded net . .
  823. call %2 tlntsess.exe . win32 oem . tlntsess.exe net1 excluded net . .
  824. call %2 tlntsvr.exe . win32 oem . tlntsvr.exe resource_identical yes_with net . .
  825. call %2 tly3res.dll . win32 unicode . tly3res.dll printscan1 yes_without printscan . .
  826. call %2 tly5cres.dll . win32 unicode . tly5cres.dll printscan1 yes_without printscan . .
  827. call %2 tlyp6res.dll . win32 unicode . tlyp6res.dll printscan1 yes_without printscan . .
  828. call %2 tmplprov.mfl . wmi unicode . tmplprov.mfl admin3 no admin . .
  829. call %2 rtoobusy.htm . html ansi . rtoobusy.htm admin3\oobe html base . .
  830. call %2 toobusy.htm . html ansi . toobusy.htm admin3\oobe html base . .
  831. call %2 npptools.dll . win32 unicode . npptools.dll net3 yes_without net . .
  832. call %2 toside.sys . win32 unicode . toside.sys drivers1 yes_without drivers . .
  833. call %2 tp4res.dll . win32 unicode . tp4res.dll drivers1 yes_without drivers . .
  834. call %2 tracerpt.exe . FE-Multi oem . tracerpt.exe wmsos1\sdktools yes_with sdktools . .
  835. call %2 tracert.exe . win32 oem . tracert.exe net1 excluded net . .
  836. call %2 trnsprov.mfl . wmi unicode . trnsprov.mfl admin3 no admin . .
  837. call %2 tscfgwmi.dll . win32 unicode . tscfgwmi.dll wmsos1\termsrv excluded termsrv . .
  838. call %2 tscfgwmi.mfl . wmi unicode . tscfgwmi.mfl wmsos1\termsrv no termsrv . .
  839. call %2 tscon.exe . FE-Multi oem . tscon.exe wmsos1\termsrv excluded termsrv . .
  840. call %2 tscupgrd.exe . win32 unicode . tscupgrd.exe wmsos1\termsrv yes_with termsrv . .
  841. call %2 tsdiscon.exe . FE-Multi oem . tsdiscon.exe wmsos1\termsrv excluded termsrv . .
  842. call %2 tskill.exe . FE-Multi oem . tskill.exe wmsos1\termsrv excluded termsrv . .
  843. call %2 bitsoc.dll . win32 unicode . bitsoc.dll admin2 yes_without admin . .
  844. call %2 tsoc.dll . win32 unicode . tsoc.dll wmsos1\termsrv excluded termsrv . .
  845. call %2 tsprof.exe . FE-Multi oem . tsprof.exe wmsos1\termsrv excluded termsrv . .
  846. call %2 tsshutdn.exe . FE-Multi oem . tsshutdn.exe wmsos1\termsrv excluded termsrv . .
  847. call %2 tssoft32.acm . win32 unicode . tssoft32.acm mmedia1\multimedia yes_without multimedia . .
  848. call %2 ttyres.dll . win32 unicode . ttyres.dll printscan1 yes_without printscan . .
  849. call %2 ttyui.dll . win32 unicode . ttyui.dll printscan1 yes_without printscan . .
  850. call %2 twain_32.dll . win32 unicode . twain_32.dll printscan1 yes_without printscan . .
  851. call %2 ty2x3res.dll . win32 unicode . ty2x3res.dll printscan1 yes_without printscan . .
  852. call %2 ty2x4res.dll . win32 unicode . ty2x4res.dll printscan1 yes_without printscan . .
  853. call %2 typeperf.exe . FE-Multi oem . typeperf.exe wmsos1\sdktools yes_with sdktools . .
  854. call %2 uihelper.dll . win32 unicode . uihelper.dll iis yes_without inetsrv . .
  855. call %2 ulib.dll . FE-Multi oem . ulib.dll base2 excluded base . .
  856. call %2 umandlg.dll . win32 unicode . umandlg.dll shell2 yes_without shell . .
  857. call %2 umaxcam.dll . win32 unicode . umaxcam.dll printscan1 yes_without printscan . .
  858. call %2 umpnpmgr.dll . win32 unicode . umpnpmgr.dll base1 yes_without base . .
  859. call %2 unidrvui.dll . win32 unicode . unidrvui.dll printscan1 yes_without printscan . .
  860. call %2 unimdm.tsp . win32 oem . unimdm.tsp net2 yes_without net . .
  861. call %2 unimdmat.dll . win32 unicode . unimdmat.dll net2 yes_without net . .
  862. call %2 unires.dll . win32 unicode . unires.dll printscan1 yes_without printscan . .
  863. call %2 updprov.mfl . wmi unicode . updprov.mfl admin3 no admin . .
  864. call %2 uploadm.exe . win32 unicode . uploadm.exe admin2 yes_with admin . .
  865. call %2 urlmon.dll . win32 ansi . urlmon.dll inetcore1 yes_without inetcore . .
  866. call %2 usbui.dll . win32 unicode . usbui.dll shell2 yes_without shell . .
  867. call %2 user32.dll . win32 unicode . user32.dll wmsos1\windows yes_without windows . .
  868. call %2 userenv.dll . win32 unicode . userenv.dll ds2 yes_without ds . .
  869. call %2 userinit.exe . win32 unicode . userinit.exe ds2 yes_with ds . .
  870. call %2 usetup.exe . win32_setup oem . usetup.exe admin1 yes_with base . .
  871. call %2 utildll.dll . FE-Multi unicode . utildll.dll wmsos1\termsrv excluded termsrv . .
  872. call %2 utilman.exe . win32 unicode . utilman.exe shell2 yes_with shell . .
  873. call %2 uxtheme.dll . win32 ansi . uxtheme.dll shell1 yes_without shell . .
  874. call %2 verifier.exe . FE-Multi oem . verifier.exe wmsos1\sdktools yes_with sdktools . .
  875. call %2 vfwwdm32.dll . win32 unicode . vfwwdm32.dll mmedia1\multimedia yes_without multimedia . .
  876. call %2 volsnap.sys . win32 unicode . volsnap.sys drivers1 yes_without drivers . .
  877. call %2 vssadmin.exe . FE-Multi oem . vssadmin.exe drivers1 yes_with drivers locked .
  878. call %2 vssvc.exe . win32 unicode . vssvc.exe drivers1 yes_with drivers locked .
  879. call %2 w32time.dll . FE-Multi ansi . w32time.dll ds2 yes_without ds . .
  880. call %2 w32tm.exe . FE-Multi ansi . w32tm.exe ds2 yes_with ds . .
  881. call %2 w3ext.dll . win32 unicode . w3ext.dll iis yes_without inetsrv . .
  882. call %2 w95upgnt.dll . win32 ansi . w95upgnt.dll admin1 yes_without base . .
  883. call %2 wab32.dll . win32 ansi . wab32.dll inetcore1 yes_without inetcore . .
  884. call %2 wab32res.dll . win32 ansi . wab32res.dll inetcore1 yes_without inetcore . .
  885. call %2 wabfind.dll . win32 ansi . wabfind.dll inetcore1 yes_without inetcore . .
  886. call %2 wabimp.dll . win32 ansi . wabimp.dll inetcore1 yes_without inetcore . .
  887. call %2 wavemsp.dll . win32 unicode . wavemsp.dll net2 yes_without net . .
  888. call %2 wbemcntl.dll . win32 unicode . wbemcntl.dll admin3 yes_without admin . .
  889. call %2 wbemcons.mfl . wmi unicode . wbemcons.mfl admin3 no admin . .
  890. call %2 wbemcore.dll . win32 unicode . wbemcore.dll admin3 yes_without admin . .
  891. call %2 wbemperf.dll . win32 unicode . wbemperf.dll wmsos1\sdktools yes_without sdktools . .
  892. call %2 wceusbsh.sys . win32 unicode . wceusbsh.sys drivers1 yes_without drivers . .
  893. call %2 wcom32.exe . win32 unicode . wcom32.exe drivers1 yes_with drivers . .
  894. call %2 webcheck.dll . win32 ansi . webcheck.dll shell2 yes_without shell . .
  895. call %2 webvw.dll . win32 ansi . webvw.dll shell2 yes_without shell . .
  896. call %2 wextract.exe . win32 ansi . wextract.exe inetcore1 yes_with inetcore . .
  897. call %2 wiaacmgr.exe . win32 unicode . wiaacmgr.exe printscan1 yes_with printscan . .
  898. call %2 wiadefui.dll . win32 ansi . wiadefui.dll printscan1 yes_without printscan . .
  899. call %2 wiadss.dll . win32 unicode . wiadss.dll printscan1 yes_without printscan . .
  900. call %2 wiafbdrv.dll . win32 unicode . wiafbdrv.dll printscan1 yes_without printscan . .
  901. call %2 wiaservc.dll . win32 ansi . wiaservc.dll printscan1 yes_without printscan . .
  902. call %2 wiashext.dll . win32 ansi . wiashext.dll printscan1 yes_without printscan . .
  903. call %2 wiavideo.dll . win32 unicode . wiavideo.dll printscan1 yes_without printscan . .
  904. call %2 win32k.sys . win32 ansi . win32k.sys wmsos1\windows yes_without windows . .
  905. call %2 win32spl.dll . win32 unicode . win32spl.dll printscan1 yes_without printscan . .
  906. call %2 winchat.exe . win32 unicode . winchat.exe shell2 yes_without shell . .
  907. call %2 wininet.dll . win32 ansi . wininet.dll inetcore1 yes_without inetcore . .
  908. call %2 winlogon.exe . win32 unicode_limited . winlogon.exe ds2 yes_without ds . .
  909. call %2 winmgmt.exe . win32 unicode . winmgmt.exe admin3 yes_with admin . .
  910. call %2 winmgmtr.dll . win32 unicode . winmgmtr.dll admin3 yes_without admin . .
  911. call %2 winmm.dll . win32 unicode . winmm.dll mmedia1\multimedia yes_without multimedia . .
  912. call %2 winmsd.exe . win32 unicode . winmsd.exe mmedia1\enduser yes_with enduser . .
  913. call %2 winntbbu.dll . win32 unicode_limited . winntbbu.dll admin1 yes_without base . .
  914. call %2 winscard.dll . win32 unicode . winscard.dll ds2 yes_without ds . .
  915. call %2 winspool.drv . win32 unicode . winspool.drv printscan1 yes_without printscan . .
  916. call %2 winsrv.dll . win32 oem . winsrv.dll wmsos1\windows yes_without windows . .
  917. call %2 wintrust.dll . win32 unicode . wintrust.dll ds2 yes_without ds . .
  918. call %2 winver.exe . win32 unicode . winver.exe shell2 yes_with shell . .
  919. call %2 wldap32.dll . win32 unicode . wldap32.dll ds1 yes_without ds . .
  920. call %2 wlnotify.dll . win32 unicode . wlnotify.dll wmsos1\mergedcomponents yes_without mergedcomponents . .
  921. call %2 iiswmi.mfl . wmi ansi . iiswmi.mfl iis no inetsrv . .
  922. call %2 licwmi.mfl . wmi unicode . licwmi.mfl ds2 no ds . .
  923. call %2 tscfgwmi.mfl . wmi unicode . tscfgwmi.mfl wmsos1\termsrv no termsrv . .
  924. call %2 wmi.mfl . wmi unicode . wmi.mfl admin3 no admin . .
  925. call %2 wmiapres.dll . win32 unicode . wmiapres.dll admin3 yes_without admin . .
  926. call %2 wmiapsrv.exe . win32 unicode . wmiapsrv.exe admin3 yes_with admin . .
  927. call %2 wmic.exe . FE-Multi oem . wmic.exe admin3 yes_with admin . .
  928. call %2 wmipcima.mfl . wmi unicode . wmipcima.mfl admin3 no admin . .
  929. call %2 wmipdskq.mfl . wmi unicode . wmipdskq.mfl admin3 no admin . .
  930. call %2 wmipicmp.dll . win32 unicode . wmipicmp.dll admin3 yes_without admin . .
  931. call %2 wmipicmp.mfl . wmi unicode . wmipicmp.mfl admin3 no admin . .
  932. call %2 wmipiprt.mfl . wmi unicode . wmipiprt.mfl admin3 no admin . .
  933. call %2 wmipjobj.mfl . wmi unicode . wmipjobj.mfl admin3 no admin . .
  934. call %2 wmiprop.dll . win32 unicode . wmiprop.dll admin3 yes_without base . .
  935. call %2 wmipsess.mfl . wmi unicode . wmipsess.mfl admin3 no admin . .
  936. call %2 wmiscmgr.dll . win32 unicode . wmiscmgr.dll admin2 yes_without admin . .
  937. call %2 wmisvc.dll . win32 unicode . wmisvc.dll admin3 yes_without admin . .
  938. call %2 wmitimep.mfl . wmi unicode . wmitimep.mfl admin3 no admin . .
  939. call %2 wmiutils.dll . win32 unicode . wmiutils.dll admin3 yes_without admin . .
  940. call %2 wordpad.exe . win32 unicode . wordpad.exe shell2 yes_with shell . .
  941. call %2 wow32.dll . win32 unicode . wow32.dll base1 yes_without base . .
  942. call %2 wowfaxui.dll . win32 unicode . wowfaxui.dll base1 yes_without base . .
  943. call %2 wp24res.dll . win32 unicode . wp24res.dll printscan1 yes_without printscan . .
  944. call %2 wp9res.dll . win32 unicode . wp9res.dll printscan1 yes_without printscan . .
  945. call %2 wpabaln.exe . win32 unicode . wpabaln.exe ds2 yes_with ds . .
  946. call %2 wpnpinst.exe . win32 unicode . wpnpinst.exe printscan1 yes_with printscan . .
  947. call %2 write32.wpc . win32 unicode . write32.wpc mmedia1\enduser yes_without enduser . .
  948. call %2 ws2help.dll . win32 unicode . ws2help.dll net1 yes_without net . .
  949. call %2 wsecedit.dll . win32 unicode . wsecedit.dll admin2 yes_without admin . .
  950. call %2 wsock32.dll . FE-Multi ansi . wsock32.dll net1 excluded net . .
  951. call %2 wstdecod.dll . win32 unicode . wstdecod.dll drivers1 yes_without drivers . .
  952. call %2 wuauclt.exe . win32 unicode . wuauclt.exe mmedia1\enduser yes_with enduser . .
  953. call %2 wuaueng.dll . win32 ansi . wuaueng.dll mmedia1\enduser yes_without enduser . .
  954. call %2 wupdmgr.exe . win32 unicode . wupdmgr.exe mmedia1\enduser yes_with enduser . .
  955. call %2 wzcdlg.dll . win32 unicode . wzcdlg.dll net3 yes_without net . .
  956. call %2 wzcsvc.dll . win32 unicode . wzcsvc.dll net3 yes_without net . .
  957. call %2 xenroll.dll . notloc ansi . xenroll.dll ds2 no ds . .
  958. call %2 xpclres1.dll . win32 unicode . xpclres1.dll printscan1 yes_without printscan . .
  959. call %2 xrpclres.dll . win32 unicode . xrpclres.dll printscan1 yes_without printscan . .
  960. call %2 xrpr6res.dll . win32 unicode . xrpr6res.dll printscan1 yes_without printscan . .
  961. call %2 xrxnui.dll . win32 unicode . xrxnui.dll printscan1 yes_without printscan . .
  962. call %2 xuim750.dll . win32 unicode . xuim750.dll printscan1 yes_without printscan . .
  963. call %2 xuim760.dll . win32 unicode xuim750.dll xuim760.dll resource_identical yes_without printscan . .
  964. call %2 xxui1.dll . win32 unicode . xxui1.dll printscan1 yes_without printscan . .
  965. call %2 zipfldr.dll . win32 ansi . zipfldr.dll shell2 yes_without shell . .
  966. call %2 bitsmgr.dll . win32 unicode . bitsmgr.dll admin2 yes_without admin . .
  967. call %2 bitsoc.dll . win32 unicode . bitsoc.dll admin2 yes_without admin . .
  968. call %2 bitssrv.dll . win32 unicode . bitssrv.dll admin2 yes_without admin . .
  969. call %2 qmgr.inf . inf unicode . qmgr.inf admin2 no admin . .
  970. call %2 liccpa.cpl . win32 unicode . liccpa.cpl admin2 yes_without admin . .
  971. call logmsg /t "Whistler1.bat ................[Finished]"
  972. goto end
  973. :writetime
  974. goto end
  975. :usage
  976. echo.
  977. rem echo whistler PLOC PlocScript LogFile BinPath LcsPath PLPConfigFile MapFile Batch
  978. echo PLOC: pseudo localization routine
  979. echo whistler PLOC PlocScript LogFile BinPath LcsPath PLPConfigFile MapFile
  980. echo PlocScript: full path to ploc.bat
  981. echo LogFile: full path to log file
  982. echo BinPath: full path to bin root
  983. echo LcsPath: full path to lcs root
  984. echo PLPConfigFile: full path to PLP configuration file
  985. echo MapTable: full path to PLP mapping table
  986. echo VERIFY: verification of correctness of lc-files
  987. echo whistler VERIFY VericationScript LogFile BinPath LcsPath
  988. echo VerificationScript: full path to verify.bat
  989. echo LogFile: full path to log file
  990. echo BinPath: full path to bin root
  991. echo LcsPath: full path to lcs root
  992. echo SNAP: snap the US build
  993. echo whistler SNAP SnapScript LogFile UsBinPath LocalBinPath LocKitPath
  994. echo SnapScript: full path to snap.bat
  995. echo LogFile: full path to log file
  996. echo USBinPath: full path to US Bin folder
  997. echo LocalBinPath: full path to local BIN folder
  998. echo LocKitPath: full path to local loc kit
  999. echo SNAP1: snap the US build
  1000. echo whistler SNAP1 SnapScript LogFile UsBinPath LocalBinPath LocKitPath
  1001. echo SnapScript: full path to snap1.bat
  1002. echo LogFile: full path to log file
  1003. echo USBinPath: full path to US Bin folder
  1004. echo LocalBinPath: full path to local BIN folder
  1005. echo LocKitPath: full path to local loc kit
  1006. echo LCTREE: create a dummy lc tree to check for redundant files
  1007. echo whistler LCTREE LcTreeScript LcPath DummyFile
  1008. echo LcTreeScript: full path to lctree.bat
  1009. echo LcPath: full path to LcTree to create
  1010. echo DummyFile: full path to dummy file
  1011. echo LOCTREE: create a dummy loc tree to check for correctness of filelist
  1012. echo whistler LOCTREE LocTreeScript BinPath DummyFile
  1013. echo LcTreeScript: full path to loctree.bat
  1014. echo BinPath: full path to LocTree to create
  1015. echo DummyFile: full path to dummy file
  1016. echo LCINF: copy lc files in BIN structure to be included in US build tree
  1017. echo whistler LCINF LcINFScript LcsSourcePath NewTargetPath
  1018. echo LocEDBScript: full path to locinf.bat
  1019. echo LcsSourcePath: full path to lcs root
  1020. echo LcsTargetPath: full path to new lcs root
  1021. echo LOCEDB: move lc files in structure to be imported in EDBs
  1022. echo whistler LOCEDB LocEdbScript TargetFolder
  1023. echo LocEdbScript: full path to locedb.bat
  1024. echo TargetFolder: full path to new lcs folder
  1025. echo RESDUMP: create a resource dump of all files (including instructions/comments)
  1026. echo whistler RESDUMP ResDumpScript BinTree LcsPath ResDump
  1027. echo ResDumpScript: full path to resdump.bat
  1028. echo BinTree: full path to binary tree (BIN or SNAP folder)
  1029. echo LcsPath: full path to lcs root
  1030. echo ResDump: full path to resource dump
  1031. echo MIRROR: mirror WIN16/WIN32 binaries
  1032. echo whistler MIRROR MirrorScript LogFile BinPath
  1033. echo MirrorScript: full path to mirror.bat
  1034. echo LogFile: full path to log file
  1035. echo BinPath: full path to US Bin Folder
  1036. echo 16BIT: create tree with tokres16 token files
  1037. echo whistler 16BIT 16bitScript BinTree TokPath
  1038. echo 16bitScript: full path to 16bit.bat
  1039. echo BinTree: full path to US Bin Folder
  1040. echo TokPath: full path to TokRes16 token Folder
  1041. echo EMBEDDED: create tree with win32 embedded resources
  1042. echo whistler EMBEDDED EmbeddedScript BinTree EmbeddedPath
  1043. echo EmbeddedScript: full path to embedded.bat
  1044. echo BinTree: full path to US Bin Folder
  1045. echo EmbeddedPath: full path to embedded folder
  1046. echo TOKTREE: create LCTOOLS token tree
  1047. echo whistler TOKTREE TokenScript InputLang BinTree USTokTree TokTree
  1048. echo TokenScript: full path to tokenize.bat
  1049. echo InputLang: hex code of LCID (eg 0x0413)
  1050. echo BinTree: Path to Localized BIN structure
  1051. echo USTokTree: Path to US token tree
  1052. echo TokTree: Path to token tree to create
  1053. echo DIFF: Create Tree with diff files based on two LCTOOLS toktrees
  1054. echo whistler DIFF DiffScript TokTree1 TokTree2 DiffTree
  1055. echo DiffScript: full path to tokdiff.bat
  1056. echo TokTree1: Path to TokTree1
  1057. echo TokTree2: Path to TokTree2
  1058. echo DiffTree: Path to diff tree (only diffs for files with differences)
  1059. echo.
  1060. goto end:
  1061. :end