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.

928 lines
48 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 aaaamon.dll . win32 ansi . aaaamon.dll net2 yes_without net . .
  251. call %2 access.cpl . win32 unicode . access.cpl shell2 yes_without shell . .
  252. call %2 acctres.dll . win32 ansi . acctres.dll inetcore1 yes_without inetcore . .
  253. call %2 accwiz.exe . win32 unicode . accwiz.exe shell2 yes_with shell . .
  254. call %2 acledit.dll . FE-Multi unicode . acledit.dll admin2 yes_without admin . .
  255. call %2 aclui.dll . win32 unicode . aclui.dll shell2 yes_without shell . .
  256. call %2 acpi.sys . win32 unicode . acpi.sys base1 yes_without base . .
  257. call %2 acpiec.sys . win32 unicode . acpiec.sys base1 yes_without base . .
  258. call %2 actconn.htm . html ansi . actconn.htm admin3\oobe html base . .
  259. call %2 actdone.htm . html ansi . actdone.htm admin3\oobe html base . .
  260. call %2 activ.htm . html ansi . activ.htm admin3\oobe html base . .
  261. call %2 activeds.dll . win32 unicode . activeds.dll ds1 yes_without ds . .
  262. call %2 activerr.htm . html ansi . activerr.htm admin3\oobe html base . .
  263. call %2 activsvc.htm . html ansi . activsvc.htm admin3\oobe html base . .
  264. call %2 actlan.htm . html ansi . actlan.htm admin3\oobe html base . .
  265. call %2 actshell.htm . html ansi . actshell.htm admin3\oobe html base . .
  266. call %2 adeskerr.htm . html ansi . adeskerr.htm admin3\oobe html base . .
  267. call %2 admparse.dll . win32 unicode . admparse.dll inetcore1 excluded inetcore . .
  268. call %2 adrdyreg.htm . html ansi . adrdyreg.htm admin3\oobe html base . .
  269. call %2 adrot.dll . win32 unicode . adrot.dll iis yes_without inetsrv . .
  270. call %2 adsldpc.dll . win32 unicode . adsldpc.dll ds1 yes_without ds . .
  271. call %2 adsnds.dll . win32 unicode . adsnds.dll ds1 yes_without ds . .
  272. call %2 adsnt.dll . win32 unicode . adsnt.dll ds1 yes_without ds . .
  273. call %2 advapi32.dll . win32 unicode . advapi32.dll wmsos1\mergedcomponents yes_without mergedcomponents . .
  274. call %2 agtscrpt.js . html ansi . agtscrpt.js admin3\oobe html base . .
  275. call %2 ahui.exe . win32 unicode . ahui.exe wmsos1\windows yes_with windows . .
  276. call %2 alpsres.dll . win32 unicode . alpsres.dll printscan1 yes_without printscan . .
  277. call %2 amdk6.sys . win32 unicode . amdk6.sys resource_identical yes_without base . .
  278. call %2 apolicy.htm . html ansi . apolicy.htm admin3\oobe html base . .
  279. call %2 appmgmts.dll . win32 unicode . appmgmts.dll ds2 yes_without ds . .
  280. call %2 appmgr.dll . win32 unicode . appmgr.dll ds2 yes_without ds . .
  281. call %2 appwiz.cpl . win32 ansi . appwiz.cpl shell1 yes_without shell . .
  282. call %2 aprvcyms.htm . html ansi . aprvcyms.htm admin3\oobe html base . .
  283. call %2 areg1.htm . html ansi . areg1.htm admin3\oobe html base . .
  284. call %2 aregdial.htm . html ansi . aregdial.htm admin3\oobe html base . .
  285. call %2 aregdone.htm . html ansi . aregdone.htm admin3\oobe html base . .
  286. call %2 aregsty2.css . html ansi . aregsty2.css admin3\oobe html base . .
  287. call %2 aregstyl.css . html ansi . aregstyl.css admin3\oobe html base . .
  288. call %2 asctrls.ocx . win32 unicode . asctrls.ocx inetcore1 yes_without inetcore . .
  289. call %2 asr_fmt.exe . win32 unicode . asr_fmt.exe base2 yes_with base . .
  290. call %2 asr_ldm.exe . win32 unicode . asr_ldm.exe drivers1 yes_with drivers . .
  291. call %2 at.exe . FE-Multi oem . at.exe ds1 excluded ds . .
  292. call %2 dfrgfat.exe . win32 unicode . dfrgfat.exe base2 yes_with base . .
  293. call %2 nbtstat.exe . win32 oem . nbtstat.exe net3 excluded net . .
  294. call %2 netstat.exe . win32 oem . netstat.exe net1 excluded net . .
  295. call %2 winchat.exe . win32 unicode . winchat.exe shell2 yes_without shell . .
  296. call %2 ati.sys . win32 unicode . ati.sys drivers1 yes_without drivers . .
  297. call %2 atkctrs.dll . win32 unicode . atkctrs.dll net3 excluded net . .
  298. call %2 atmadm.exe . FE-Multi oem . atmadm.exe net1 excluded net . .
  299. call %2 ausrinfo.htm . html ansi . ausrinfo.htm admin3\oobe html base . .
  300. call %2 autochk.exe . win32 oem . autochk.exe resource_identical yes_with base . .
  301. call %2 autoconv.exe . win32 oem . autoconv.exe resource_identical yes_with base . .
  302. call %2 autodisc.dll . win32 ansi . autodisc.dll inetcore1 yes_without inetcore . .
  303. call %2 autofmt.exe . win32 oem . autofmt.exe resource_identical yes_with base . .
  304. call %2 autorun.exe . win32_bi ansi . autorun.exe shell1 yes_with shell . .
  305. call %2 avicap32.dll . win32 unicode . avicap32.dll mmedia1\multimedia yes_without multimedia . .
  306. call %2 avifil32.dll . win32 unicode . avifil32.dll mmedia1\multimedia yes_without multimedia . .
  307. call %2 b57xp32.sys . win32 unicode . b57xp32.sys drivers1 yes_without drivers . .
  308. call %2 batmeter.dll . win32 unicode . batmeter.dll shell2 yes_without shell . .
  309. call %2 battc.sys . win32 unicode . battc.sys base1 yes_without base . .
  310. call %2 blue_ss.dll . win32 unicode . blue_ss.dll shell1 yes_without shell . .
  311. call %2 bootcfg.exe . win32 oem . bootcfg.exe admin2 yes_with admin . .
  312. call %2 br24res.dll . win32 unicode . br24res.dll printscan1 yes_without printscan . .
  313. call %2 br9res.dll . win32 unicode . br9res.dll printscan1 yes_without printscan . .
  314. call %2 brcl00ui.dll . win32 unicode . brcl00ui.dll printscan1 yes_without printscan . .
  315. call %2 brclr.dll . win32 unicode . brclr.dll printscan1 yes_without printscan . .
  316. call %2 brclr0.dll . win32 unicode . brclr0.dll resource_identical yes_without printscan . .
  317. call %2 brclr00.dll . win32 unicode . brclr00.dll printscan1 yes_without printscan . .
  318. call %2 brclr0ui.dll . win32 unicode . brclr0ui.dll resource_identical yes_without printscan . .
  319. call %2 brclrui.dll . win32 unicode . brclrui.dll resource_identical yes_without printscan . .
  320. call %2 brhjres.dll . win32 unicode . brhjres.dll printscan1 yes_without printscan . .
  321. call %2 brhlres.dll . win32 unicode . brhlres.dll printscan1 yes_without printscan . .
  322. call %2 brmfcwia.dll . win32 unicode . brmfcwia.dll printscan1 yes_without printscan . .
  323. call %2 brmfpmon.dll . win32 unicode . brmfpmon.dll printscan1 yes_without printscan . .
  324. call %2 brother.dll . win32 unicode . brother.dll printscan1 yes_without printscan . .
  325. call %2 brothui.dll . win32 unicode . brothui.dll printscan1 yes_without printscan . .
  326. call %2 browscap.dll . win32 unicode . browscap.dll iis yes_without inetsrv . .
  327. call %2 browselc.dll . win32 ansi . browselc.dll shell1 yes_without shell . .
  328. call %2 browseui.dll . win32 ansi . browseui.dll shell1 yes_without shell . .
  329. call %2 brparwdm.sys . win32 unicode . brparwdm.sys printscan1 yes_without printscan . .
  330. call %2 bul18res.dll . win32 unicode . bul18res.dll printscan1 yes_without printscan . .
  331. call %2 bul24res.dll . win32 unicode . bul24res.dll printscan1 yes_without printscan . .
  332. call %2 bull9res.dll . win32 unicode . bull9res.dll printscan1 yes_without printscan . .
  333. call %2 bulltlp3.sys . win32 unicode . bulltlp3.sys drivers1 yes_without drivers . .
  334. call %2 cabview.dll . win32 ansi . cabview.dll shell2 yes_without shell . .
  335. call %2 cacls.exe . FE-Multi oem . cacls.exe wmsos1\sdktools excluded sdktools . .
  336. call %2 calc.exe . win32 unicode . calc.exe shell2 yes_with shell . .
  337. call %2 camocx.dll . win32 unicode . camocx.dll printscan1 yes_without printscan . .
  338. call %2 cbmdmkxx.sys . win32 ansi . cbmdmkxx.sys net2 yes_without net . .
  339. call %2 cdfview.dll . win32 ansi . cdfview.dll shell2 yes_without shell . .
  340. call %2 ce3n5.sys . win32 ansi . ce3n5.sys drivers1 yes_without drivers . .
  341. call %2 cem28n5.sys . win32 ansi . cem28n5.sys legacy yes_without drivers . .
  342. call %2 cem33n5.sys . win32 ansi . cem33n5.sys legacy yes_without drivers . .
  343. call %2 cem56n5.sys . win32 ansi . cem56n5.sys drivers1 yes_without drivers . .
  344. call %2 certcli.dll . win32 unicode . certcli.dll ds2 yes_without ds . .
  345. call %2 certmap.ocx . win32 unicode . certmap.ocx iis yes_without inetsrv . .
  346. call %2 certmgr.dll . win32 unicode . certmgr.dll admin2 yes_without admin . .
  347. call %2 certwiz.ocx . win32 unicode . certwiz.ocx iis yes_without inetsrv . .
  348. call %2 cfgbkend.dll . win32 unicode . cfgbkend.dll wmsos1\termsrv excluded termsrv . .
  349. call %2 change.exe . FE-Multi oem . change.exe wmsos1\termsrv excluded termsrv . .
  350. call %2 charchsr.xml . xml ansi . charchsr.xml mmedia1\enduser html enduser . .
  351. call %2 charctxt.xml . xml ansi . charctxt.xml mmedia1\enduser html enduser . .
  352. call %2 charmap.exe . win32 unicode . charmap.exe shell2 yes_with shell . .
  353. call %2 chglogon.exe . FE-Multi oem . chglogon.exe wmsos1\termsrv excluded termsrv . .
  354. call %2 chgport.exe . FE-Multi oem . chgport.exe wmsos1\termsrv excluded termsrv . .
  355. call %2 chgusr.exe . FE-Multi oem . chgusr.exe wmsos1\termsrv excluded termsrv . .
  356. call %2 cic.dll . win32 unicode . cic.dll admin2 yes_without admin . .
  357. call %2 cimwin32.dll . win32 unicode . cimwin32.dll admin3 yes_without admin . .
  358. call %2 cimwin32.mfl . wmi unicode . cimwin32.mfl admin3 no admin . .
  359. call %2 cinemclc.sys . win32 ansi . cinemclc.sys drivers1 yes_without drivers . .
  360. call %2 cipher.exe . FE-Multi oem . cipher.exe base2 excluded base . .
  361. call %2 citohres.dll . win32 unicode . citohres.dll printscan1 yes_without printscan . .
  362. call %2 class_ss.dll . win32 unicode . class_ss.dll shell1 yes_without shell . .
  363. call %2 clb.dll . win32 unicode . clb.dll base2 yes_without base . .
  364. call %2 cleanmgr.exe . win32 unicode . cleanmgr.exe shell1 yes_with shell . .
  365. call %2 cleanri.exe . win32 unicode . cleanri.exe base2 yes_with base . .
  366. call %2 cliegali.mfl . wmi unicode . cliegali.mfl admin3 no admin . .
  367. call %2 cmbp0wdm.sys . win32 unicode . cmbp0wdm.sys drivers1 yes_without drivers . .
  368. call %2 cmcfg32.dll . win32 ansi . cmcfg32.dll net2 yes_without net . .
  369. call %2 cmd.exe . FE-Multi oem . cmd.exe base1 excluded base . .
  370. call %2 dfscmd.exe . FE-Multi oem . dfscmd.exe base2 excluded base . .
  371. call %2 cmdial32.dll . win32 unicode . cmdial32.dll net2 yes_without net . .
  372. call %2 cmdide.sys . win32 unicode . cmdide.sys drivers1 yes_without drivers . .
  373. call %2 cmdl32.exe . win32 unicode . cmdl32.exe net2 yes_with net . .
  374. call %2 cmmon32.exe . win32 unicode . cmmon32.exe net2 yes_with net . .
  375. call %2 cmprops.dll . win32 unicode . cmprops.dll admin3 yes_without admin . .
  376. call %2 cmutil.dll . win32 unicode . cmutil.dll net2 yes_without net . .
  377. call %2 cn10000.dll . win32 unicode . cn10000.dll printscan1 yes_without printscan . .
  378. call %2 cn10002.dll . win32 unicode . cn10002.dll printscan1 yes_without printscan . .
  379. call %2 cn1600.dll . win32 unicode . cn1600.dll printscan1 yes_without printscan . .
  380. call %2 cn1602.dll . win32 unicode . cn1602.dll resource_identical yes_without printscan . .
  381. call %2 cn1760e0.dll . win32 unicode . cn1760e0.dll printscan1 yes_without printscan . .
  382. call %2 cn1760e2.dll . win32 unicode . cn1760e2.dll resource_identical yes_without printscan . .
  383. call %2 cn2000.dll . win32 unicode . cn2000.dll printscan1 yes_without printscan . .
  384. call %2 cn2002.dll . win32 unicode . cn2002.dll resource_identical yes_without printscan . .
  385. call %2 cn32600.dll . win32 unicode . cn32600.dll printscan1 yes_without printscan . .
  386. call %2 cn32602.dll . win32 unicode . cn32602.dll resource_identical yes_without printscan . .
  387. call %2 cn330res.dll . win32 unicode . cn330res.dll printscan1 yes_without printscan . .
  388. call %2 cnbjcres.dll . win32 unicode . cnbjcres.dll printscan1 yes_without printscan . .
  389. call %2 cnbjmon.dll . win32 unicode . cnbjmon.dll printscan1 yes_without printscan . .
  390. call %2 cnbjmon2.dll . win32 unicode . cnbjmon2.dll printscan1 yes_without printscan . .
  391. call %2 cnbjui.dll . win32 unicode . cnbjui.dll printscan1 yes_without printscan . .
  392. call %2 cnbjui2.dll . win32 unicode . cnbjui2.dll printscan1 yes_without printscan . .
  393. call %2 CNETCFG.dll . win32 unicode . cnetcfg.dll net2 yes_without net . .
  394. call %2 cnfgprts.ocx . win32 unicode . cnfgprts.ocx iis yes_without inetsrv . .
  395. call %2 cnlbpres.dll . win32 unicode . cnlbpres.dll printscan1 yes_without printscan . .
  396. call %2 cnncterr.htm . html ansi . cnncterr.htm admin3\oobe html base . .
  397. call %2 coadmin.dll . win32 unicode . coadmin.dll iis yes_without inetsrv . .
  398. call %2 comdlg32.dll . win32 ansi . comdlg32.dll shell1 yes_without shell . .
  399. call %2 compact.exe . FE-Multi oem . compact.exe base2 excluded base . .
  400. call %2 compatui.dll . win32 unicode . compatui.dll wmsos1\windows yes_without windows . .
  401. call %2 compstui.dll . win32 unicode . compstui.dll printscan1 yes_without printscan . .
  402. call %2 confmsp.dll . win32 unicode . confmsp.dll net2 yes_without net . .
  403. call %2 console.dll . win32 unicode . console.dll shell2 yes_without shell . .
  404. call %2 control.exe . win32 unicode . control.exe shell1 yes_with shell . .
  405. call %2 convlog.exe . FE-Multi oem . convlog.exe iis yes_with inetsrv . .
  406. call %2 cpqtrnd5.sys . win32 ansi . cpqtrnd5.sys drivers1 yes_without drivers . .
  407. call %2 cprofile.exe . FE-Multi oem . cprofile.exe wmsos1\termsrv excluded termsrv . .
  408. call %2 credui.dll . win32 oem . credui.dll ds1 yes_without ds . .
  409. call %2 crusoe.sys . win32 unicode . crusoe.sys resource_identical yes_without base . .
  410. call %2 crypt32.dll . win32 unicode . crypt32.dll ds2 yes_without ds . .
  411. call %2 cryptdlg.dll . win32 unicode . cryptdlg.dll inetcore1 yes_without inetcore . .
  412. call %2 cryptext.dll . win32 unicode . cryptext.dll ds2 yes_without ds . .
  413. call %2 cryptui.dll . win32 unicode . cryptui.dll ds2 yes_without ds . .
  414. call %2 csamsp.dll . win32 unicode . csamsp.dll net2 yes_without net . .
  415. call %2 cscdll.dll . win32 unicode . cscdll.dll base2 yes_without base . .
  416. call %2 cscui.dll . win32 ansi . cscui.dll shell2 yes_without shell . .
  417. call %2 ct24res.dll . win32 unicode . ct24res.dll printscan1 yes_without printscan . .
  418. call %2 ct9res.dll . win32 unicode . ct9res.dll printscan1 yes_without printscan . .
  419. call %2 ctmasetp.dll . win32 unicode . ctmasetp.dll drivers1 yes_without drivers . .
  420. call %2 ctmrclas.dll . win32 unicode . ctmrclas.dll drivers1 yes_without drivers . .
  421. call %2 cyclad-z.sys . win32 unicode . cyclad-z.sys drivers1 yes_without drivers . .
  422. call %2 cyclom-y.sys . win32 unicode . cyclom-y.sys drivers1 yes_without drivers . .
  423. call %2 cyycoins.dll . win32 unicode . cyycoins.dll drivers1 yes_without drivers . .
  424. call %2 cyyport.sys . win32 unicode . cyyport.sys drivers1 yes_without drivers . .
  425. call %2 cyyports.dll . win32 unicode . cyyports.dll drivers1 yes_without drivers . .
  426. call %2 cyzcoins.dll . win32 unicode . cyzcoins.dll drivers1 yes_without drivers . .
  427. call %2 cyzport.sys . win32 unicode . cyzport.sys drivers1 yes_without drivers . .
  428. call %2 cyzports.dll . win32 unicode . cyzports.dll drivers1 yes_without drivers . .
  429. call %2 d3d8.dll . win32 unicode . d3d8.dll mmedia1\multimedia yes_without multimedia . .
  430. call %2 danim.dll . win32 unicode . danim.dll mmedia1\multimedia yes_without multimedia . .
  431. call %2 dataclen.dll . win32 ansi . dataclen.dll shell1 yes_without shell . .
  432. call %2 davclnt.dll . win32 unicode . davclnt.dll base2 yes_without base . .
  433. call %2 dc240usd.dll . win32 unicode . dc240usd.dll printscan1 yes_without printscan . .
  434. call %2 dc24res.dll . win32 unicode . dc24res.dll printscan1 yes_without printscan . .
  435. call %2 dc260usd.dll . win32 unicode . dc260usd.dll resource_identical yes_without printscan . .
  436. call %2 dc9res.dll . win32 unicode . dc9res.dll printscan1 yes_without printscan . .
  437. call %2 dclsres.dll . win32 unicode . dclsres.dll printscan1 yes_without printscan . .
  438. call %2 ddeshare.exe . win32 unicode . ddeshare.exe wmsos1\windows yes_with windows . .
  439. call %2 ddraw.dll . win32 unicode . ddraw.dll mmedia1\multimedia yes_without multimedia . .
  440. call %2 desk.cpl . win32 unicode . desk.cpl shell1 yes_without shell . .
  441. call %2 deskadp.dll . win32 unicode . deskadp.dll shell1 yes_without shell . .
  442. call %2 deskmon.dll . win32 unicode . deskmon.dll shell1 yes_without shell . .
  443. call %2 deskperf.dll . win32 unicode . deskperf.dll shell1 yes_without shell . .
  444. call %2 devenum.dll . win32 unicode . devenum.dll mmedia1\multimedia yes_without multimedia . .
  445. call %2 devmgr.dll . win32 unicode . devmgr.dll shell2 yes_without shell . .
  446. call %2 dfrgfat.exe . win32 unicode . dfrgfat.exe base2 yes_with base . .
  447. call %2 dfrgntfs.exe . win32 unicode . dfrgntfs.exe base2 yes_with base . .
  448. call %2 dfrgres.dll . win32 unicode . dfrgres.dll base2 yes_without base . .
  449. call %2 dfrgsnap.dll . win32 unicode . dfrgsnap.dll base2 yes_without base . .
  450. call %2 dfsshlex.dll . win32 unicode . dfsshlex.dll admin2 yes_without admin . .
  451. call %2 dgapci.sys . win32 ansi . dgapci.sys drivers1 yes_without drivers . .
  452. call %2 dgconfig.dll . win32 unicode . dgconfig.dll drivers1 yes_without drivers . .
  453. call %2 dgnet.dll . FE-Multi unicode . dgnet.dll net3 yes_without net . .
  454. call %2 dgsetup.dll . win32 unicode . dgsetup.dll drivers1 yes_without drivers . .
  455. call %2 dhcpcsvc.dll . win32 unicode . dhcpcsvc.dll net1 excluded net . .
  456. call %2 dhcpmon.dll . FE-Multi oem . dhcpmon.dll net1 excluded net . .
  457. call %2 dhcpsapi.dll . win32 unicode . dhcpsapi.dll net1 excluded net . .
  458. call %2 diactfrm.dll . win32 unicode . diactfrm.dll mmedia1\multimedia yes_without multimedia . .
  459. call %2 dialer.exe . win32 unicode . dialer.exe net2 yes_with net . .
  460. call %2 dialmgr.js . html ansi . dialmgr.js admin3\oobe html base . .
  461. call %2 dialtone.htm . html ansi . dialtone.htm admin3\oobe html base . .
  462. call %2 diconres.dll . win32 unicode . diconres.dll printscan1 yes_without printscan . .
  463. call %2 digest.dll . win32 unicode . digest.dll inetcore1 yes_without inetcore . .
  464. call %2 digiasyn.dll . win32 unicode . digiasyn.dll drivers1 yes_without drivers . .
  465. call %2 digiasyn.sys . win32 unicode . digiasyn.sys drivers1 yes_without drivers . .
  466. call %2 digidbp.dll . win32 unicode . digidbp.dll drivers1 yes_without drivers . .
  467. call %2 digidxb.sys . win32 unicode . digidxb.sys drivers1 yes_without drivers . .
  468. call %2 digifep5.sys . win32 ansi . digifep5.sys drivers1 yes_without drivers . .
  469. call %2 digifwrk.dll . win32 unicode . digifwrk.dll drivers1 yes_without drivers . .
  470. call %2 digihlc.dll . win32 unicode . digihlc.dll drivers1 yes_without drivers . .
  471. call %2 digiinf.dll . win32 unicode . digiinf.dll drivers1 yes_without drivers . .
  472. call %2 digiisdn.dll . win32 unicode . digiisdn.dll drivers1 yes_without drivers . .
  473. call %2 digirlpt.dll . win32 unicode . digirlpt.dll drivers1 yes_without drivers . .
  474. call %2 digirlpt.sys . win32 ansi . digirlpt.sys drivers1 yes_without drivers . .
  475. call %2 digiview.exe . win32 unicode . digiview.exe drivers1 yes_with drivers . .
  476. call %2 dinput.dll . win32 unicode . dinput.dll mmedia1\multimedia yes_without multimedia . .
  477. call %2 dinput8.dll . win32 unicode . dinput8.dll mmedia1\multimedia yes_without multimedia . .
  478. call %2 diskcopy.dll . win32 unicode . diskcopy.dll shell2 yes_without shell . .
  479. call %2 diskpart.exe . win32 oem . diskpart.exe drivers1 no drivers . .
  480. call %2 diskperf.exe . FE-Multi oem . diskperf.exe wmsos1\sdktools yes_with sdktools . .
  481. call %2 disrvpp.dll . win32 unicode . disrvpp.dll drivers1 yes_without drivers . .
  482. call %2 dmadmin.exe . win32 unicode . dmadmin.exe drivers1 yes_with drivers . .
  483. call %2 dmboot.sys . win32 unicode . dmboot.sys drivers1 yes_without drivers . .
  484. call %2 dmdskres.dll . win32 unicode . dmdskres.dll drivers1 yes_without drivers . .
  485. call %2 dmio.sys . win32 unicode . dmio.sys drivers1 yes_without drivers . .
  486. call %2 dmocx.dll . win32 unicode . dmocx.dll shell2 yes_without shell . .
  487. call %2 dmserver.dll . win32 unicode . dmserver.dll drivers1 yes_without drivers . .
  488. call %2 dmusic.dll . win32 unicode . dmusic.dll mmedia1\multimedia yes_without multimedia . .
  489. call %2 dmutil.dll . win32 unicode . dmutil.dll drivers1 yes_without drivers . .
  490. call %2 dnsrslvr.dll . win32 unicode . dnsrslvr.dll ds1 yes_without ds . .
  491. call %2 docprop.dll . win32 unicode . docprop.dll shell2 yes_without shell . .
  492. call %2 docprop2.dll . win32 unicode . docprop2.dll shell2 yes_without shell . .
  493. call %2 dot4usb.sys . win32 unicode . dot4usb.sys drivers1 yes_without drivers . .
  494. call %2 dpcdll.dll . win32 unicode . dpcdll.dll ds2 yes_without ds . .
  495. call %2 dpcres.dll . win32 unicode . dpcres.dll printscan1 yes_without printscan . .
  496. call %2 dpmodemx.dll . win32 unicode . dpmodemx.dll mmedia1\multimedia yes_without multimedia . .
  497. call %2 dpnsvr.exe . win32 unicode . dpnsvr.exe mmedia1\multimedia yes_with multimedia . .
  498. call %2 dpvacm.dll . win32 unicode . dpvacm.dll mmedia1\multimedia yes_without multimedia . .
  499. call %2 dpvoice.dll . win32 ansi . dpvoice.dll mmedia1\multimedia yes_without multimedia . .
  500. call %2 dpvvox.dll . win32 unicode . dpvvox.dll mmedia1\multimedia yes_without multimedia . .
  501. call %2 dpwsockx.dll . win32 unicode . dpwsockx.dll mmedia1\multimedia yes_without multimedia . .
  502. call %2 drvqry.exe . FE-Multi oem . drvqry.exe base2 yes_with base . .
  503. call %2 drwtsn32.exe . win32 unicode . drwtsn32.exe wmsos1\sdktools yes_with sdktools . .
  504. call %2 dsdmoprp.dll . win32 unicode . dsdmoprp.dll mmedia1\multimedia yes_without multimedia . .
  505. call %2 dskquota.dll . win32 ansi . dskquota.dll shell2 yes_without shell . .
  506. call %2 dskquoui.dll . win32 unicode . dskquoui.dll shell2 yes_without shell . .
  507. call %2 dslmain.js . html ansi . dslmain.js admin3\oobe html base . .
  508. call %2 dsound.dll . win32 unicode . dsound.dll mmedia1\multimedia yes_without multimedia . .
  509. call %2 dsprop.dll . win32 unicode . dsprop.dll admin2 yes_without admin . .
  510. call %2 dsprov.mfl . wmi unicode . dsprov.mfl admin3 no admin . .
  511. call %2 dsquery.dll . FE-Multi oem . dsquery.dll shell2 yes_without shell . .
  512. call %2 dssec.dll . win32 unicode . dssec.dll shell2 yes_without shell . .
  513. call %2 dsuiext.dll . win32 unicode . dsuiext.dll shell2 yes_without shell . .
  514. call %2 dtiwait.htm . html ansi . dtiwait.htm admin3\oobe no base . .
  515. call %2 dtsgnup.htm . html ansi . dtsgnup.htm admin3\oobe no base . .
  516. call %2 dvdplay.exe . win32 unicode . dvdplay.exe mmedia1\multimedia yes_with multimedia . .
  517. call %2 dvdupgrd.exe . win32 unicode . dvdupgrd.exe mmedia1\multimedia yes_with multimedia . .
  518. call %2 dx7vb.dll . win32 unicode . dx7vb.dll mmedia1\multimedia yes_without multimedia . .
  519. call %2 dx8vb.dll . win32 unicode . dx8vb.dll mmedia1\multimedia yes_without multimedia . .
  520. call %2 dxdiag.exe . win32 ansi . dxdiag.exe mmedia1\multimedia yes_with multimedia . .
  521. call %2 e100b325.sys . win32 ansi . e100b325.sys drivers1 no drivers . .
  522. call %2 ecp2eres.dll . win32 unicode . ecp2eres.dll printscan1 yes_without printscan . .
  523. call %2 efsadu.dll . win32 unicode . efsadu.dll shell2 yes_without shell . .
  524. call %2 el656ct5.sys . win32 ansi . el656ct5.sys net2 yes_without net . .
  525. call %2 el656se5.sys . win32 ansi . el656se5.sys resource_identical yes_without net . .
  526. call %2 el90xnd5.sys . win32 ansi . el90xnd5.sys drivers1 yes_without drivers . .
  527. call %2 el985n51.sys . win32 ansi . el985n51.sys drivers1 yes_without drivers . .
  528. call %2 el99xn51.sys . win32 unicode . el99xn51.sys drivers1 yes_without drivers . .
  529. call %2 els.dll . win32 unicode . els.dll admin2 yes_without admin . .
  530. call %2 ep24res.dll . win32 unicode . ep24res.dll printscan1 yes_without printscan . .
  531. call %2 ep2bres.dll . win32 unicode . ep2bres.dll printscan1 yes_without printscan . .
  532. call %2 ep9bres.dll . win32 unicode . ep9bres.dll printscan1 yes_without printscan . .
  533. call %2 ep9res.dll . win32 unicode . ep9res.dll printscan1 yes_without printscan . .
  534. call %2 epcl5res.dll . win32 unicode . epcl5res.dll printscan1 yes_without printscan . .
  535. call %2 epcl5ui.dll . win32 unicode . epcl5ui.dll printscan1 yes_without printscan . .
  536. call %2 epndrv01.dll . win32 unicode . epndrv01.dll printscan1 yes_without printscan . .
  537. call %2 epngui10.dll . win32 unicode . epngui10.dll printscan1 yes_without printscan . .
  538. call %2 epngui30.dll . win32 unicode . epngui30.dll printscan1 yes_without printscan . .
  539. call %2 epngui40.dll . win32 unicode . epngui40.dll printscan1 yes_without printscan . .
  540. call %2 epnutx22.dll . win32 unicode . epnutx22.dll printscan1 yes_without printscan . .
  541. call %2 eqn.sys . win32 ansi . eqn.sys drivers1 yes_without drivers . .
  542. call %2 eqnclass.dll . win32 unicode . eqnclass.dll drivers1 yes_without drivers . .
  543. call %2 eqndiag.exe . win32 unicode . eqndiag.exe drivers1 yes_with drivers . .
  544. call %2 eqnlogr.exe . win32 unicode . eqnlogr.exe drivers1 yes_with drivers . .
  545. call %2 eqnloop.exe . win32 unicode . eqnloop.exe drivers1 yes_with drivers . .
  546. call %2 error.js . html ansi . error.js admin3\oobe html base . .
  547. call %2 es56cvmp.sys . win32 ansi . es56cvmp.sys net2 yes_without net . .
  548. call %2 es56hpi.sys . win32 ansi . es56hpi.sys resource_identical yes_without net . .
  549. call %2 es56tpi.sys . win32 ansi . es56tpi.sys resource_identical yes_without net . .
  550. call %2 escp2res.dll . win32 unicode . escp2res.dll printscan1 yes_without printscan . .
  551. call %2 esuni.dll . win32 unicode . esuni.dll printscan1 yes_without printscan . .
  552. call %2 esunib.dll . win32 unicode . esunib.dll resource_identical yes_without printscan . .
  553. call %2 eudcedit.exe . win32 unicode . eudcedit.exe shell2 yes_with shell . .
  554. call %2 evcreate.exe . FE-Multi oem . evcreate.exe admin2 yes_with admin . .
  555. call %2 eventlog.dll . win32 unicode . eventlog.dll base1 yes_without base . .
  556. call %2 eventvwr.exe . win32 unicode . eventvwr.exe admin2 yes_with admin . .
  557. call %2 evntagnt.dll . win32 unicode . evntagnt.dll net3 yes_without net . .
  558. call %2 evntcmd.exe . FE-Multi oem . evntcmd.exe net3 excluded net . .
  559. call %2 evntwin.exe . win32 unicode . evntwin.exe net3 yes_with net . .
  560. call %2 EvTgProv.dll . win32 oem . EvTgProv.dll admin3 yes_without admin . .
  561. call %2 evtrig.exe . FE-Multi oem . evtrig.exe admin2 yes_with admin . .
  562. call %2 exp24res.dll . win32 unicode . exp24res.dll printscan1 yes_without printscan . .
  563. call %2 expand.exe . FE-Multi oem . expand.exe base1 excluded base . .
  564. call %2 explorer.exe . win32 unicode . explorer.exe shell1 yes_without shell . .
  565. call %2 extrac32.exe . win32 unicode . extrac32.exe shell2 yes_with shell . .
  566. call %2 faultrep.dll . win32 unicode . faultrep.dll admin2 yes_without admin . .
  567. call %2 fconprov.mfl . wmi unicode . fconprov.mfl admin3 no admin . .
  568. call %2 fde.dll . win32 unicode . fde.dll ds2 yes_without ds . .
  569. call %2 fdeploy.dll . win32 unicode . fdeploy.dll ds2 yes_without ds . .
  570. call %2 fevprov.mfl . wmi unicode . fevprov.mfl admin3 no admin . .
  571. call %2 filemgmt.dll . win32 unicode . filemgmt.dll admin2 yes_without admin . .
  572. call %2 findstr.exe . FE-Multi oem . findstr.exe base2 excluded base . .
  573. call %2 finger.exe . win32 oem . finger.exe net1 excluded net . .
  574. call %2 finish.xml . xml ansi . finish.xml mmedia1\enduser html enduser . .
  575. call %2 fips.sys . win32 unicode . fips.sys ds1 yes_without ds . .
  576. call %2 flattemp.exe . FE-Multi oem . flattemp.exe wmsos1\termsrv excluded termsrv . .
  577. call %2 fontext.dll . win32 unicode . fontext.dll shell2 yes_without shell . .
  578. call %2 fontview.exe . FE-Multi ansi . fontview.exe shell2 yes_with shell . .
  579. call %2 forcedos.exe . FE-Multi oem . forcedos.exe base1 excluded base . .
  580. call %2 fsconins.dll . win32 unicode . fsconins.dll drivers1 yes_without drivers . .
  581. call %2 fsutil.exe . FE-Multi oem . fsutil.exe base2 yes_with base . .
  582. call %2 fsvga.sys . win32 unicode . fsvga.sys drivers1 yes_without drivers . .
  583. call %2 ftdisk.sys . win32 unicode . ftdisk.sys drivers1 yes_without drivers . .
  584. call %2 ftp.exe . win32 oem . ftp.exe net1 excluded net . .
  585. call %2 irftp.exe . win32 unicode . irftp.exe net3 yes_with net . .
  586. call %2 tftp.exe . win32 oem . tftp.exe net1 excluded net . .
  587. call %2 ftpctrs2.dll . win32 unicode . ftpctrs2.dll iis yes_without inetsrv . .
  588. call %2 fu24res.dll . win32 unicode . fu24res.dll printscan1 yes_without printscan . .
  589. call %2 fu9res.dll . win32 unicode . fu9res.dll printscan1 yes_without printscan . .
  590. call %2 fupclres.dll . win32 unicode . fupclres.dll printscan1 yes_without printscan . .
  591. call %2 fx5eres.dll . win32 unicode . fx5eres.dll printscan1 yes_without printscan . .
  592. call %2 FXSCLNTR.DLL . win32 unicode . FXSCLNTR.DLL fax_msmq\faxsrv yes_without printscan . .
  593. call %2 FXSEVENT.DLL . win32 unicode . FXSEVENT.DLL fax_msmq\faxsrv yes_without printscan . .
  594. call %2 FXSOCM.dll . win32 unicode . FXSOCM.dll fax_msmq yes_without printscan . .
  595. call %2 FXSRES.DLL . win32 unicode . FXSRES.DLL fax_msmq\faxsrv yes_without printscan . .
  596. call %2 g200m.sys . win32 unicode . g200m.sys drivers1 yes_without drivers . .
  597. call %2 g400m.sys . win32 unicode . g400m.sys drivers1\ia64 yes_without drivers . ia64only
  598. call %2 gcdef.dll . win32 unicode . gcdef.dll mmedia1\multimedia yes_without multimedia . .
  599. call %2 getmac.exe . win32 oem . getmac.exe admin2 yes_with admin . .
  600. call %2 getuname.dll . win32 unicode . getuname.dll shell2 excluded shell . .
  601. call %2 glu32.dll . win32 unicode . glu32.dll mmedia1\multimedia yes_without multimedia . .
  602. call %2 gpedit.dll . win32 unicode . gpedit.dll ds2 yes_without ds . .
  603. call %2 gpkrsrc.dll . win32 unicode . gpkrsrc.dll ds2 yes_without ds . .
  604. call %2 gpr400.sys . win32 unicode . gpr400.sys drivers1 yes_without drivers . .
  605. call %2 gprslt.exe . FE-Multi oem . gprslt.exe admin2 yes_with admin . .
  606. call %2 gptext.dll . win32 unicode . gptext.dll ds2 yes_without ds . .
  607. call %2 gpupdate.exe . FE-Multi unicode . gpupdate.exe ds2 yes_with ds . .
  608. call %2 graftabl.com . FE-Multi oem . graftabl.com base1 excluded base . .
  609. call %2 grpconv.exe . win32 unicode . grpconv.exe shell1 yes_with shell . .
  610. call %2 grserial.sys . win32 unicode . grserial.sys drivers1 yes_without drivers . .
  611. call %2 h323.tsp . win32 unicode . h323.tsp net2 yes_without net . .
  612. call %2 h323msp.dll . win32 unicode . h323msp.dll net2 yes_without net . .
  613. call %2 hcappres.dll . win32 unicode . hcappres.dll admin2 yes_without admin . .
  614. call %2 hcf_msft.sys . win32 ansi . hcf_msft.sys net2 yes_without net . .
  615. call %2 hdwwiz.cpl . win32 unicode . hdwwiz.cpl shell2 yes_without base . .
  616. call %2 dcphelp.exe . win32 unicode . dcphelp.exe admin2 yes_with admin . .
  617. call %2 help.exe . win32 oem . help.exe base2 yes_with base . .
  618. call %2 winhelp.exe . win16 ansi . winhelp.exe extra excluded base . .
  619. call %2 helpctr.exe . win32 unicode . helpctr.exe admin2 yes_with admin . .
  620. call %2 hidphone.tsp . win32 unicode . hidphone.tsp net2 yes_without net . .
  621. call %2 hndshake.htm . html ansi . hndshake.htm admin3\oobe html base . .
  622. call %2 hnetcfg.dll . win32 unicode . hnetcfg.dll net3 yes_without net . .
  623. call %2 hnetmon.dll . FE-Multi unicode . hnetmon.dll net3 yes_without net . .
  624. call %2 home_ss.dll . win32 unicode . home_ss.dll shell1 yes_without shell . .
  625. call %2 hostname.exe . win32 oem . hostname.exe net1 excluded net . .
  626. call %2 hotplug.dll . win32 unicode . hotplug.dll shell2 yes_without base . .
  627. call %2 hpc4500u.dll . win32 unicode . hpc4500u.dll printscan1 yes_without printscan . .
  628. call %2 hpcabout.dll . win32 unicode . hpcabout.dll printscan1 yes_without printscan . .
  629. call %2 hpccljui.dll . win32 unicode . hpccljui.dll printscan1 yes_without printscan . .
  630. call %2 hpcjrui.dll . win32 unicode . hpcjrui.dll printscan1 yes_without printscan . .
  631. call %2 hpclj5ui.dll . win32 unicode . hpclj5ui.dll printscan1 yes_without printscan . .
  632. call %2 hpcstr.dll . win32 unicode . hpcstr.dll printscan1 yes_without printscan . .
  633. call %2 hpdjres.dll . win32 unicode . hpdjres.dll printscan1 yes_without printscan . .
  634. call %2 hpf880al.dll . win32 unicode . hpf880al.dll printscan1 yes_without printscan . .
  635. call %2 hpf900al.dll . win32 unicode . hpf900al.dll printscan1 yes_without printscan . .
  636. call %2 hpf940al.dll . win32 unicode . hpf940al.dll printscan1 yes_without printscan . .
  637. call %2 hpfui50.dll . win32 unicode . hpfui50.dll printscan1 yes_without printscan . .
  638. call %2 hpoemui.dll . win32 unicode . hpoemui.dll printscan1 yes_without printscan . .
  639. call %2 hpojwia.dll . win32 unicode . hpojwia.dll printscan1 yes_without printscan . .
  640. call %2 hppjres.dll . win32 unicode . hppjres.dll printscan1 yes_without printscan . .
  641. call %2 hpqjres.dll . win32 unicode . hpqjres.dll printscan1 yes_without printscan . .
  642. call %2 hptjres.dll . win32 unicode . hptjres.dll printscan1 yes_without printscan . .
  643. call %2 hpv200al.dll . win32 unicode . hpv200al.dll printscan1 yes_without printscan . .
  644. call %2 hpv600al.dll . win32 unicode . hpv600al.dll printscan1 yes_without printscan . .
  645. call %2 hpv700al.dll . win32 unicode . hpv700al.dll printscan1 yes_without printscan . .
  646. call %2 hpv800al.dll . win32 unicode . hpv800al.dll printscan1 yes_without printscan . .
  647. call %2 hpv820al.dll . win32 unicode . hpv820al.dll printscan1 yes_without printscan . .
  648. call %2 hpv850al.dll . win32 unicode . hpv850al.dll printscan1 yes_without printscan . .
  649. call %2 hpv880al.dll . win32 unicode . hpv880al.dll printscan1 yes_without printscan . .
  650. call %2 hpvui50.dll . win32 unicode . hpvui50.dll printscan1 yes_without printscan . .
  651. call %2 hpwm50al.dll . win32 unicode . hpwm50al.dll printscan1 yes_without printscan . .
  652. call %2 htui.dll . win32 unicode . htui.dll wmsos1\windows yes_without windows . .
  653. call %2 i8042prt.sys . win32 unicode . i8042prt.sys drivers1 yes_without drivers . .
  654. call %2 iasacct.dll . win32 unicode . iasacct.dll net2 yes_without net . .
  655. call %2 iasads.dll . win32 unicode . iasads.dll net2 yes_without net . .
  656. call %2 iashlpr.dll . win32 unicode . iashlpr.dll net2 yes_without net . .
  657. call %2 iasrad.dll . win32 unicode . iasrad.dll net2 excluded net . .
  658. call %2 iassdo.dll . win32 unicode . iassdo.dll net2 excluded net . .
  659. call %2 iassvcs.dll . win32 unicode . iassvcs.dll net2 yes_without net . .
  660. call %2 ib238res.dll . win32 unicode . ib238res.dll printscan1 yes_without printscan . .
  661. call %2 ib239res.dll . win32 unicode . ib239res.dll printscan1 yes_without printscan . .
  662. call %2 ib52res.dll . win32 unicode . ib52res.dll printscan1 yes_without printscan . .
  663. call %2 ibmptres.dll . win32 unicode . ibmptres.dll printscan1 yes_without printscan . .
  664. call %2 ibmsgnet.dll . win32 ansi . ibmsgnet.dll drivers1 yes_without drivers . .
  665. call %2 ibp24res.dll . win32 unicode . ibp24res.dll printscan1 yes_without printscan . .
  666. call %2 ibppdres.dll . win32 unicode . ibppdres.dll printscan1 yes_without printscan . .
  667. call %2 ibprores.dll . win32 unicode . ibprores.dll printscan1 yes_without printscan . .
  668. call %2 ibps1res.dll . win32 unicode . ibps1res.dll printscan1 yes_without printscan . .
  669. call %2 ibqwres.dll . win32 unicode . ibqwres.dll printscan1 yes_without printscan . .
  670. call %2 icam3ext.dll . win32 unicode . icam3ext.dll drivers1 yes_without drivers . .
  671. call %2 icam4com.dll . win32 unicode . icam4com.dll drivers1 yes_without drivers . .
  672. call %2 icam4ext.dll . win32 unicode . icam4ext.dll drivers1 yes_without drivers . .
  673. call %2 icam5com.dll . win32 unicode . icam5com.dll drivers1 yes_without drivers . .
  674. call %2 icam5ext.dll . win32 unicode . icam5ext.dll drivers1 yes_without drivers . .
  675. call %2 icm32.dll . win32 unicode . icm32.dll wmsos1\windows yes_without windows . .
  676. call %2 icmui.dll . win32 unicode . icmui.dll wmsos1\windows yes_without windows . .
  677. call %2 iconnect.js . html ansi . iconnect.js admin3\oobe html base . .
  678. call %2 icsmgr.js . html ansi . icsmgr.js admin3\oobe html base . .
  679. call %2 icwconn1.exe . win32 unicode . icwconn1.exe inetcore1 yes_with inetcore . .
  680. call %2 icwconn2.exe . win32 unicode . icwconn2.exe inetcore1 yes_with inetcore . .
  681. call %2 icwdial.dll . win32 unicode . icwdial.dll inetcore1 yes_without inetcore . .
  682. call %2 icwdl.dll . win32 unicode . icwdl.dll inetcore1 yes_without inetcore . .
  683. call %2 icwhelp.dll . win32 unicode . icwhelp.dll inetcore1 yes_without inetcore . .
  684. call %2 icwphbk.dll . win32 unicode . icwphbk.dll inetcore1 yes_without inetcore . .
  685. call %2 icwres.dll . win32 unicode . icwres.dll inetcore1 yes_without inetcore . .
  686. call %2 icwrmind.exe . win32 unicode . icwrmind.exe inetcore1 yes_with inetcore . .
  687. call %2 icwtutor.exe . win32 ansi . icwtutor.exe inetcore1 yes_with inetcore . .
  688. call %2 icwutil.dll . win32 unicode . icwutil.dll inetcore1 yes_without inetcore . .
  689. call %2 ie4uinit.exe . win32 unicode . ie4uinit.exe inetcore1 yes_with inetcore . .
  690. call %2 ieakeng.dll . win32 unicode . ieakeng.dll inetcore1 excluded inetcore . .
  691. call %2 ieaksie.dll . win32 unicode . ieaksie.dll inetcore1 excluded inetcore . .
  692. call %2 ieakui.dll . win32 unicode . ieakui.dll inetcore1 yes_without inetcore . .
  693. call %2 iedkcs32.dll . win32 unicode . iedkcs32.dll inetcore1 yes_without inetcore . .
  694. call %2 ieinfo5.ocx . win32 unicode . ieinfo5.ocx inetcore1 yes_without inetcore . .
  695. call %2 iepeers.dll . win32 unicode . iepeers.dll inetcore1 yes_without inetcore . .
  696. call %2 iernonce.dll . win32 unicode . iernonce.dll inetcore1 yes_without inetcore . .
  697. call %2 iesetup.dll . win32 unicode . iesetup.dll inetcore1 yes_without inetcore . .
  698. call %2 iexplore.exe . win32 unicode . iexplore.exe shell1 yes_without shell . .
  699. call %2 ifmon.dll . FE-Multi oem . ifmon.dll net2 excluded net . .
  700. call %2 iis.dll . win32 unicode . iis.dll iis yes_without inetsrv . .
  701. call %2 iisclex4.dll . win32 unicode . iisclex4.dll iis yes_without inetsrv . .
  702. call %2 iismap.dll . win32 unicode . iismap.dll iis yes_without inetsrv . .
  703. call %2 iismui.dll . win32 unicode . iismui.dll iis yes_without inetsrv . .
  704. call %2 iisres.dll . win32 unicode . iisres.dll iis yes_without inetsrv . .
  705. call %2 iisreset.exe . FE-Multi unicode . iisreset.exe iis yes_with inetsrv . .
  706. call %2 iisrstas.exe . win32 unicode . iisrstas.exe iis yes_with inetsrv . .
  707. call %2 iisui.dll . win32 unicode . iisui.dll iis yes_without inetsrv . .
  708. call %2 iiswmi.mfl . wmi ansi . iiswmi.mfl iis no inetsrv . .
  709. call %2 imaadp32.acm . win32 unicode . imaadp32.acm mmedia1\multimedia yes_without multimedia . .
  710. call logmsg /t "Whistler1.bat ................[Finished]"
  711. goto end
  712. :writetime
  713. goto end
  714. :usage
  715. echo.
  716. rem echo whistler PLOC PlocScript LogFile BinPath LcsPath PLPConfigFile MapFile Batch
  717. echo PLOC: pseudo localization routine
  718. echo whistler PLOC PlocScript LogFile BinPath LcsPath PLPConfigFile MapFile
  719. echo PlocScript: full path to ploc.bat
  720. echo LogFile: full path to log file
  721. echo BinPath: full path to bin root
  722. echo LcsPath: full path to lcs root
  723. echo PLPConfigFile: full path to PLP configuration file
  724. echo MapTable: full path to PLP mapping table
  725. echo VERIFY: verification of correctness of lc-files
  726. echo whistler VERIFY VericationScript LogFile BinPath LcsPath
  727. echo VerificationScript: full path to verify.bat
  728. echo LogFile: full path to log file
  729. echo BinPath: full path to bin root
  730. echo LcsPath: full path to lcs root
  731. echo SNAP: snap the US build
  732. echo whistler SNAP SnapScript LogFile UsBinPath LocalBinPath LocKitPath
  733. echo SnapScript: full path to snap.bat
  734. echo LogFile: full path to log file
  735. echo USBinPath: full path to US Bin folder
  736. echo LocalBinPath: full path to local BIN folder
  737. echo LocKitPath: full path to local loc kit
  738. echo SNAP1: snap the US build
  739. echo whistler SNAP1 SnapScript LogFile UsBinPath LocalBinPath LocKitPath
  740. echo SnapScript: full path to snap1.bat
  741. echo LogFile: full path to log file
  742. echo USBinPath: full path to US Bin folder
  743. echo LocalBinPath: full path to local BIN folder
  744. echo LocKitPath: full path to local loc kit
  745. echo LCTREE: create a dummy lc tree to check for redundant files
  746. echo whistler LCTREE LcTreeScript LcPath DummyFile
  747. echo LcTreeScript: full path to lctree.bat
  748. echo LcPath: full path to LcTree to create
  749. echo DummyFile: full path to dummy file
  750. echo LOCTREE: create a dummy loc tree to check for correctness of filelist
  751. echo whistler LOCTREE LocTreeScript BinPath DummyFile
  752. echo LcTreeScript: full path to loctree.bat
  753. echo BinPath: full path to LocTree to create
  754. echo DummyFile: full path to dummy file
  755. echo LCINF: copy lc files in BIN structure to be included in US build tree
  756. echo whistler LCINF LcINFScript LcsSourcePath NewTargetPath
  757. echo LocEDBScript: full path to locinf.bat
  758. echo LcsSourcePath: full path to lcs root
  759. echo LcsTargetPath: full path to new lcs root
  760. echo LOCEDB: move lc files in structure to be imported in EDBs
  761. echo whistler LOCEDB LocEdbScript TargetFolder
  762. echo LocEdbScript: full path to locedb.bat
  763. echo TargetFolder: full path to new lcs folder
  764. echo RESDUMP: create a resource dump of all files (including instructions/comments)
  765. echo whistler RESDUMP ResDumpScript BinTree LcsPath ResDump
  766. echo ResDumpScript: full path to resdump.bat
  767. echo BinTree: full path to binary tree (BIN or SNAP folder)
  768. echo LcsPath: full path to lcs root
  769. echo ResDump: full path to resource dump
  770. echo MIRROR: mirror WIN16/WIN32 binaries
  771. echo whistler MIRROR MirrorScript LogFile BinPath
  772. echo MirrorScript: full path to mirror.bat
  773. echo LogFile: full path to log file
  774. echo BinPath: full path to US Bin Folder
  775. echo 16BIT: create tree with tokres16 token files
  776. echo whistler 16BIT 16bitScript BinTree TokPath
  777. echo 16bitScript: full path to 16bit.bat
  778. echo BinTree: full path to US Bin Folder
  779. echo TokPath: full path to TokRes16 token Folder
  780. echo EMBEDDED: create tree with win32 embedded resources
  781. echo whistler EMBEDDED EmbeddedScript BinTree EmbeddedPath
  782. echo EmbeddedScript: full path to embedded.bat
  783. echo BinTree: full path to US Bin Folder
  784. echo EmbeddedPath: full path to embedded folder
  785. echo TOKTREE: create LCTOOLS token tree
  786. echo whistler TOKTREE TokenScript InputLang BinTree USTokTree TokTree
  787. echo TokenScript: full path to tokenize.bat
  788. echo InputLang: hex code of LCID (eg 0x0413)
  789. echo BinTree: Path to Localized BIN structure
  790. echo USTokTree: Path to US token tree
  791. echo TokTree: Path to token tree to create
  792. echo DIFF: Create Tree with diff files based on two LCTOOLS toktrees
  793. echo whistler DIFF DiffScript TokTree1 TokTree2 DiffTree
  794. echo DiffScript: full path to tokdiff.bat
  795. echo TokTree1: Path to TokTree1
  796. echo TokTree2: Path to TokTree2
  797. echo DiffTree: Path to diff tree (only diffs for files with differences)
  798. echo.
  799. goto end:
  800. :end