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.

843 lines
46 KiB

  1. #ifdef NT5
  2. #define REG_EXPAND_SZ 0x00020000
  3. #define REG_EXPAND_SZNC 0x00020002
  4. #define REG_DWORD 0x00010001
  5. #define REG_DWORD_NC 0x00010003
  6. #define DDIR_IEXPLORE 16422,%MSIE4%
  7. #define DDIR_SIGNUP 16422,%MSIE4%\SIGNUP
  8. #define DDIR_TEXTCONVERTER 16427,Microsoft Shared\TextConv
  9. #define DDIR_TRIEDIT 16427,Microsoft Shared\Triedit
  10. #define DDIR_MSINFO 16427,Microsoft Shared\MSInfo
  11. #define KEY_LOCALE "*"
  12. #if defined(_M_IX86)
  13. #define IE4_BASEID "BASEIE40_NTx86"
  14. #define IE4_SHELLID "IE4Shell_NT"
  15. #define IE4_DATA_KEY HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\IE4Data"
  16. #elif defined(_M_ALPHA)
  17. #define IE4_BASEID "BASEIE40_NTAlpha"
  18. #define IE4_SHELLID "IE4Shell_Alpha"
  19. #define IE4_DATA_KEY HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\IE4DataX"
  20. #elif defined(_M_IA64)
  21. #define IE4_BASEID "BASEIE40_NTIa64"
  22. #define IE4_SHELLID "IE4Shell_Ia64"
  23. #define IE4_DATA_KEY HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\IE4Data"
  24. #else
  25. #error ERROR: Unknown platform!
  26. #endif
  27. #else
  28. #define REG_EXPAND_SZ 0
  29. #define REG_EXPAND_SZNC 2
  30. #define REG_DWORD 0x10001
  31. #define REG_DWORD_NC 0x10003
  32. #define IE4_BASEID "BASEIE40_Win"
  33. #define IE4_SHELLID "IE4Shell_Win"
  34. #define IE4_DATA_KEY HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\IE4Data"
  35. #define DDIR_IEXPLORE 29000
  36. #define DDIR_SIGNUP 29000,SIGNUP
  37. #define DDIR_TEXTCONVERTER 28740,TextConv
  38. #define DDIR_TRIEDIT 28740,Triedit
  39. #define DDIR_MSINFO 28740,MSInfo
  40. #define KEY_LOCALE "%ASETUP_LOCALE%"
  41. #endif
  42. ;
  43. ; IE4 INF
  44. ;
  45. [Version]
  46. #ifdef NT5
  47. signature="$Windows NT$"
  48. ClassGUID={00000000-0000-0000-0000-000000000000}
  49. SetupClass=Base
  50. LayoutFile=layout.inf
  51. #else
  52. signature="$CHICAGO$"
  53. SetupClass=Base
  54. LayoutFile=layout.inf, layout1.inf, layout2.inf
  55. IEVersion="TOK_MAJOR_NUM.TOK_MINOR_NUM.TOK_LONGNUM"
  56. #endif
  57. [DestinationDirs]
  58. ; Anything not installed by the system by default
  59. Base.AppDir.CopyFile = DDIR_IEXPLORE
  60. Base.AppDir.DelFiles = DDIR_IEXPLORE
  61. Base.SysDir.DelFiles = 11
  62. Base.WinDir.DelFiles = 25
  63. Base.Backup.DelFiles = DDIR_IEXPLORE\Backup Data
  64. Base.ExcepInf.DelFiles = 17
  65. MSIE3patch = 17
  66. TextConverter.CopyFile = DDIR_TEXTCONVERTER
  67. Branding.CopyFile = DDIR_SIGNUP
  68. Triedit.CopyFile = DDIR_TRIEDIT
  69. MSInfo.CopyFile = DDIR_MSINFO
  70. #ifdef NT5
  71. [DefaultInstall]
  72. #else
  73. [BaseWinOptions]
  74. MSIE4_Inst
  75. [MSIE4_Inst]
  76. #endif
  77. CopyFiles = Base.AppDir.CopyFile, TextConverter.CopyFile, Branding.CopyFile, Triedit.CopyFile, MSInfo.CopyFile
  78. AddReg = Base.IE.AddReg, Base.Sweeper.AddReg, Sweeper.AddReg, Shell.BrowserReg, Token.Reg, TextConverter.AddReg
  79. UpdateInis= Base.StartMenu.UpdateIni, Shell.AddIni
  80. #ifdef NT5
  81. RegisterDlls = Base.RegSvr, Triedit.RegSvr, MSInfo.RegSvr
  82. DelReg = Base.DelReg, Base.Backup.DelReg
  83. DelFiles = Base.SysDir.DelFiles, Base.AppDir.DelFiles, Base.WinDir.DelFiles, MSIE3patch, Base.Backup.DelFiles, Base.ExcepInf.DelFiles
  84. #else
  85. DelReg = Base.DelReg
  86. DelFiles = Base.SysDir.DelFiles, Base.AppDir.DelFiles, Base.WinDir.DelFiles, MSIE3patch
  87. #endif
  88. ;================================================
  89. ; Base Section
  90. ;================================================
  91. [Base.AppDir.CopyFile]
  92. #ifdef NT5
  93. IEXPLORE.EXE,,,32
  94. HMMAPI.DLL,,,32
  95. #endif
  96. [TextConverter.CopyFile]
  97. html32.cnv,,,32
  98. msconv97.dll,,,32
  99. #ifdef NT5
  100. mswrd632.wpc,,,32
  101. mswrd832.cnv,,,32
  102. write32.wpc,,,32
  103. #endif
  104. [Branding.CopyFile]
  105. INSTALL.INS
  106. [Triedit.CopyFile]
  107. DHTMLED.OCX
  108. TRIEDIT.DLL
  109. [MSInfo.CopyFile]
  110. IEINFO5.OCX
  111. IEFILES5.INF
  112. IEINFO5.MOF
  113. ;========================
  114. ; Base DelFile
  115. ;========================
  116. [Base.SysDir.DelFiles]
  117. secbasic.dll
  118. urlcache.dll
  119. vbs.dll
  120. js.dll
  121. htmlctl.ocx
  122. shdisp.dll
  123. hlinkprx.dll
  124. shdocvw.bad
  125. [Base.AppDir.DelFiles]
  126. mailnews.txt
  127. README.TXT
  128. BROWSEUI.DLL
  129. [Base.WinDir.DelFiles]
  130. ie4regun
  131. ie4bak.dat
  132. ie4bak.ini
  133. ie4unin.log
  134. #ifdef NT5
  135. ie4 error log.txt
  136. ie4 setup log.txt
  137. ie4 setup log.bak
  138. active setup log.txt
  139. active setup log.bak
  140. ie4 uninstall log.txt
  141. bind list log.txt
  142. runonceex log.txt
  143. soft boot log.txt
  144. #else
  145. ie4err~1.txt
  146. ie4set~1.txt
  147. ie4set~1.bak
  148. active~1.txt
  149. active~1.bak
  150. ie4uni~1.txt
  151. bindli~1.txt
  152. runonc~1.txt
  153. softbo~1.txt
  154. #endif
  155. [MSIE3patch]
  156. ie3fix.inf
  157. #ifdef NT5
  158. [Base.Backup.DelFiles]
  159. ie_w2k.dat
  160. ie_w2k.ini
  161. [Base.ExcepInf.DelFiles]
  162. ieexcep.inf
  163. #endif
  164. ;========================
  165. ; Base AddReg
  166. ;========================
  167. [Base.IE.AddReg]
  168. ; disable repair mode for OS installs
  169. HKLM,"Software\Microsoft\Active Setup","DisableRepair",REG_DWORD,1
  170. #ifndef NT5
  171. ; write JIT download registry keys for the OSR
  172. HKLM,"SOFTWARE\Microsoft\Active Setup\JITInfo\5","InstallType",REG_DWORD,2
  173. HKLM,"SOFTWARE\Microsoft\Active Setup\JITInfo\5","DownloadSiteURL",,"http://windowsupdate.microsoft.com/millennium/ie5sites.dat"
  174. HKLM,"SOFTWARE\Microsoft\Active Setup\JITInfo\5","DownloadSiteRegion",,"North America"
  175. HKLM,"SOFTWARE\Microsoft\Active Setup\JITInfo\5","Local",,"%JIT_DL_LOCAL%"
  176. #endif
  177. ; ActiveSetup Microsoft Internet Explorer v4.0 Registration
  178. HKLM,"Software\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4383}",,,"%ASETUP_BASE_DESC%"
  179. HKLM,"Software\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4383}","ComponentID",,IE4_BASEID
  180. HKLM,"Software\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4383}","IsInstalled",REG_DWORD,1,0,0,0
  181. HKLM,"Software\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4383}","Locale",,"%ASETUP_LOCALE%"
  182. HKLM,"Software\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4383}","StubPath",REG_EXPAND_SZ,"%SystemRoot%\system32\ie4uinit.exe"
  183. HKLM,"Software\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4383}","Version",,VER_CORE
  184. HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\IE40"
  185. #ifdef NT5
  186. ; ActiveSetup Microsoft Internet Explorer v4.0 Shell Registration
  187. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_IESHELL%",,,"%ASETUP_SHELL_DESC%"
  188. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_IESHELL%","ComponentID",,IE4_SHELLID
  189. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_IESHELL%","IsInstalled",REG_DWORD,1,0,0,0
  190. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_IESHELL%","Locale",,"%ASETUP_LOCALE%"
  191. ; This is temporary while we test the new ie-free method for installing the shell during GUI mode setup - ToddB
  192. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_IESHELL%","StubPath",REG_EXPAND_SZ,"regsvr32.exe /s /n /i:U shell32.dll"
  193. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_IESHELL%","Version",,VER_CORE
  194. #endif
  195. HKLM,"Software\Microsoft\Active Setup\Install Check","IE40",,"TOK_MAJOR_NUM.TOK_MINOR_NUM.TOK_LONGNUM"
  196. ; Advanced Authoring Registration
  197. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_ADVAUTH%",,,"%ASETUP_ADVAUTH_DESC%"
  198. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_ADVAUTH%","ComponentID",,"AdvAuth"
  199. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_ADVAUTH%","IsInstalled",REG_DWORD,1,0,0,0
  200. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_ADVAUTH%","Locale",,KEY_LOCALE
  201. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_ADVAUTH%","Version",,VER_CORE
  202. #ifndef NT5
  203. ; AOL Support Registration
  204. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_AOLSUPP%",,,"%ASETUP_AOLSUPP_DESC%"
  205. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_AOLSUPP%","ComponentID",,"AOLSUPP"
  206. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_AOLSUPP%","IsInstalled",REG_DWORD,1,0,0,0
  207. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_AOLSUPP%","Locale",,KEY_LOCALE
  208. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_AOLSUPP%","Version",,VER_AOLSUPP
  209. #endif
  210. ; DirectAnimation for Java Registration
  211. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DAJAVA%",,,"%ASETUP_DAJAVA_DESC%"
  212. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DAJAVA%","ComponentID",,"DAJava"
  213. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DAJAVA%","IsInstalled",REG_DWORD,1,0,0,0
  214. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DAJAVA%","Locale",,KEY_LOCALE
  215. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DAJAVA%","Version",,VER_DAJAVA
  216. ; DirectDrawEx Registration
  217. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DDRAWEX%",,,"%ASETUP_DDRAWEX_DESC%"
  218. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DDRAWEX%","ComponentID",,"DirectDrawEx"
  219. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DDRAWEX%","IsInstalled",REG_DWORD,1,0,0,0
  220. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DDRAWEX%","Locale",,KEY_LOCALE
  221. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DDRAWEX%","Version",,VER_DIRECTDRAWEX
  222. HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\DirectDrawEx"
  223. #ifndef NT5
  224. ; DirectX Registration
  225. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DIRECTX%",,,"%ASETUP_DIRECTX_DESC%"
  226. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DIRECTX%","ComponentID",,"DirectXMini"
  227. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DIRECTX%","IsInstalled",REG_DWORD,1,0,0,0
  228. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DIRECTX%","Locale",,KEY_LOCALE
  229. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DIRECTX%","Version",,VER_DIRECTXMINI
  230. #endif
  231. ; Extra Pack Registration - because of msieftp.dll
  232. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_EXTRAPK%",,,"%ASETUP_EXTRAPK_DESC%"
  233. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_EXTRAPK%","ComponentID",,"ExtraPack"
  234. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_EXTRAPK%","IsInstalled",REG_DWORD,1,0,0,0
  235. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_EXTRAPK%","Locale",,KEY_LOCALE
  236. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_EXTRAPK%","Version",,VER_CORE
  237. ; FontCore Registration
  238. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_FONTCORE%",,,"%ASETUP_FONTCORE_DESC%"
  239. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_FONTCORE%","ComponentID",,"Fontcore"
  240. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_FONTCORE%","IsInstalled",REG_DWORD,1,0,0,0
  241. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_FONTCORE%","Locale",,"*"
  242. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_FONTCORE%","Version",,VER_FONTCORE
  243. HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\Fontcore"
  244. ; GenSetup Registration
  245. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_GSETUP%",,,"%ASETUP_GSETUP_DESC%"
  246. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_GSETUP%","ComponentID",,"GenSetup"
  247. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_GSETUP%","IsInstalled",REG_DWORD,1,0,0,0
  248. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_GSETUP%","Locale",,KEY_LOCALE
  249. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_GSETUP%","Version",,VER_GSETUP
  250. HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\IE5BAKEX"
  251. ; Help Content Registration
  252. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HELPCONT%",,,"%ASETUP_HELPCONT_DESC%"
  253. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HELPCONT%","ComponentID",,"HelpCont"
  254. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HELPCONT%","IsInstalled",REG_DWORD,1,0,0,0
  255. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HELPCONT%","Locale",,KEY_LOCALE
  256. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HELPCONT%","Version",,VER_CORE
  257. ; HTML Help Registration
  258. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HTMLHELP%",,,"%ASETUP_HTMLHELP_DESC%"
  259. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HTMLHELP%","ComponentID",,"HTMLHelp"
  260. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HTMLHELP%","IsInstalled",REG_DWORD,1,0,0,0
  261. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HTMLHELP%","Locale",,KEY_LOCALE
  262. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HTMLHELP%","Version",,VER_HTMLHELP
  263. ; MSTask Registration
  264. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_MSTASK%",,,"%ASETUP_MSTASK_DESC%"
  265. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_MSTASK%","ComponentID",,"MSTASK"
  266. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_MSTASK%","IsInstalled",REG_DWORD,1,0,0,0
  267. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_MSTASK%","Locale",,KEY_LOCALE
  268. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_MSTASK%","Version",,VER_MSTASK
  269. HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\SchedulingAgent"
  270. ; Offline Browsing Pack Registration
  271. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_OFFLINE%",,,"%ASETUP_OFFLINE_DESC%"
  272. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_OFFLINE%","ComponentID",,"MobilePk"
  273. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_OFFLINE%","IsInstalled",REG_DWORD,1,0,0,0
  274. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_OFFLINE%","Locale",,KEY_LOCALE
  275. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_OFFLINE%","Version",,VER_CORE
  276. HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\MobileOptionPack"
  277. ; TriData Registration
  278. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIDATA%",,,"%ASETUP_TRIDATA_DESC%"
  279. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIDATA%","ComponentID",,"Tridata"
  280. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIDATA%","IsInstalled",REG_DWORD,1,0,0,0
  281. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIDATA%","Locale",,KEY_LOCALE
  282. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIDATA%","Version",,VER_TRIDATA
  283. HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\IEData"
  284. ; the following key is defined at top of page -- DO NOT REMOVE!
  285. IE4_DATA_KEY
  286. ; TriDataJava Registration
  287. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIJAVA%",,,"%ASETUP_TRIJAVA_DESC%"
  288. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIJAVA%","ComponentID",,"TridataJava"
  289. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIJAVA%","IsInstalled",REG_DWORD,1,0,0,0
  290. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIJAVA%","Locale",,KEY_LOCALE
  291. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIJAVA%","Version",,VER_TRIJAVA
  292. ; USP10 Registration
  293. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_USP10%",,,"%ASETUP_USP10_DESC%"
  294. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_USP10%","ComponentID",,"USP10"
  295. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_USP10%","IsInstalled",REG_DWORD,1,0,0,0
  296. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_USP10%","Locale",,"*"
  297. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_USP10%","Version",,VER_USP10
  298. ; VBScript Registration
  299. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_VBSCRIPT%",,,"%ASETUP_VBSCRIPT_DESC%"
  300. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_VBSCRIPT%","ComponentID",,"MSVBScript"
  301. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_VBSCRIPT%","IsInstalled",REG_DWORD,1,0,0,0
  302. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_VBSCRIPT%","Locale",,KEY_LOCALE
  303. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_VBSCRIPT%","Version",,VER_MSVBSCRIPT
  304. ; Branding Registration
  305. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_BRANDING%",,,"%ASETUP_BRANDING_DESC%"
  306. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_BRANDING%","ComponentID",,"BRANDING.CAB"
  307. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_BRANDING%","StubPath",,"RunDLL32 IEDKCS32.DLL,BrandIE4 SIGNUP"
  308. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_BRANDING%","Version",,VER_CORE
  309. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_BRANDING%","Locale",,KEY_LOCALE
  310. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_BRANDING%","IsInstalled",REG_DWORD,1,0,0,0
  311. HKLM,"Software\Microsoft\Windows\CurrentVersion\RunOnce",BrandClearStubs,,"RUNDLL32 IEDKCS32.DLL,BrandCleanInstallStubs MICROS"
  312. ; IEXPLORE.EXE Interface Registration
  313. HKCR,"InternetExplorer.Application",,,"Internet Explorer"
  314. HKCR,"InternetExplorer.Application\CLSID",,,"%CLSID_IE_App%"
  315. HKCR,"InternetExplorer.Application\CurVer",,,"InternetExplorer.Application.1"
  316. HKCR,"InternetExplorer.Application.1",,,"Internet Explorer (Ver 1.0)"
  317. HKCR,"InternetExplorer.Application.1\CLSID",,,"%CLSID_IE_App%"
  318. HKCR,"CLSID\%CLSID_IE_App%",,,"Internet Explorer(Ver 1.0)"
  319. #ifdef NT5
  320. HKCR,"CLSID\%CLSID_IE_App%\LocalServer32",,REG_EXPAND_SZ,"""%programfiles%\%LMSIE4%\iexplore.exe"""
  321. #else
  322. HKCR,"CLSID\%CLSID_IE_App%\LocalServer32",,0,"""%29000%\iexplore.exe"""
  323. #endif
  324. HKCR,"CLSID\%CLSID_IE_App%\ProgID",,,"InternetExplorer.Application.1"
  325. HKCR,"CLSID\%CLSID_IE_App%\VersionIndependentProgID",,,"InternetExplorer.Application"
  326. HKCR,"CLSID\%CLSID_IE_App%\TypeLib",,,"%CLSID_IE_TypeLib%"
  327. HKCR,"CLSID\%CLSID_IE_App%\Programmable",,,""
  328. ; DeskTop Icon
  329. HKCR,"CLSID\%CLSID_DesktopIcon%",,2,"%THENET%"
  330. HKLM,"Software\Microsoft\Windows\CurrentVersion\explorer\Desktop\NameSpace\%CLSID_DesktopIcon%",,2,"%THENET%"
  331. ; DeskTop Icon Mappings
  332. #ifdef NT5
  333. HKCR,"CLSID\%CLSID_DesktopIcon%\DefaultIcon",,REG_EXPAND_SZ,"""%programfiles%\%LMSIE4%\iexplore.exe"",-32528"
  334. #else
  335. HKCR,"CLSID\%CLSID_DesktopIcon%\DefaultIcon",,0,"""%29000%\iexplore.exe"",-32528"
  336. #endif
  337. HKCR,"CLSID\%CLSID_DesktopIcon%\InProcServer32",,REG_EXPAND_SZ,"%SystemRoot%\system32\url.dll"
  338. HKCR,"CLSID\%CLSID_DesktopIcon%\InProcServer32","ThreadingModel",,"Apartment"
  339. HKCR,"CLSID\%CLSID_DesktopIcon%\ShellEx\PropertySheetHandlers\%CLSID_DesktopIcon%",,,""
  340. HKCR,"CLSID\%CLSID_DesktopIcon%\ShellFolder",,,""
  341. HKCR,"CLSID\%CLSID_DesktopIcon%\ShellFolder","Attributes",1,72,00,00,00
  342. ; Internet Explorer Version
  343. HKLM,"SOFTWARE\Microsoft\Internet Explorer","Build",,"TOK_MAJOR_NUMTOK_LONGNUM"
  344. HKLM,"SOFTWARE\Microsoft\Internet Explorer","Version",,"TOK_MAJOR_NUM.TOK_MINOR_NUM.TOK_LONGNUM"
  345. ;Build version displayed in System Properties
  346. #ifndef NT5
  347. HKLM,"Software\Microsoft\Windows\CurrentVersion","Plus! VersionNumber",,"IE 5 TOK_MAJOR_NUM.TOK_MINOR_NUM.TOK_LONGNUM"
  348. #endif
  349. ; App Paths. 3rd Party Programs should look here to find iexplore.exe
  350. #ifdef NT5
  351. HKLM,"Software\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE",,0,"%16422%\%LMSIE4%\iexplore.exe"
  352. HKLM,"Software\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE","Path",0,"%16422%\%LMSIE4%;"
  353. #else
  354. HKLM,"Software\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE",,0,"%29000%\iexplore.exe"
  355. HKLM,"Software\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE","Path",0,"%29000%;"
  356. #endif
  357. ; These following 4 entries should be nuked and clients like ieuinit.inx,
  358. ; ICW should stop looking here and look at the App Paths above
  359. #ifdef NT5
  360. HKLM,"Software\Microsoft\IE4\Setup","Path",REG_EXPAND_SZ,"%programfiles%\%LMSIE4%"
  361. HKLM,"Software\Microsoft\IE Setup\Setup","Path",REG_EXPAND_SZ,"%programfiles%\%LMSIE4%"
  362. #else
  363. HKLM,"Software\Microsoft\IE4\Setup","Path",0,"%29000%"
  364. HKLM,"Software\Microsoft\IE Setup\Setup","Path",0,"%29000%"
  365. #endif
  366. HKLM,"Software\Microsoft\IE4\Setup","Apps.hlpDate",0,"1998.02.01"
  367. HKLM,"Software\Microsoft\IE Setup\Setup","Apps.hlpDate",0,"1998.02.01"
  368. ; Used during remove
  369. HKLM,"Software\Microsoft\Internet Explorer"
  370. HKCU,"Software\Microsoft\Internet Explorer"
  371. ; News Shortcuts
  372. HKLM,"Software\Microsoft\Windows\CurrentVersion\Explorer\NewShortcutHandlers","%CLSID_NewsShortcut%",2,""
  373. [Base.Sweeper.AddReg]
  374. ; Plug-in OCX Registration
  375. HKLM,"Software\Microsoft\Internet Explorer\Plugins",,2,
  376. HKLM,"Software\Microsoft\Internet Explorer\Plugins\Extension",,2,
  377. HKLM,"Software\Microsoft\Internet Explorer\Plugins\MIME",,2,
  378. HKLM,"Software\Microsoft\Internet Explorer\Plugins\PluginsPageFriendlyName",,2,"%ACTIVEX_GALLERY%"
  379. HKLM,"Software\Microsoft\Internet Explorer\Plugins\PluginsPage",,2,"%PLUGIN_PAGE%"
  380. #ifdef NT5
  381. ; RunOnce Commands
  382. HKLM,"Software\Microsoft\Windows\CurrentVersion\RunOnce","IE - 00",,"rundll32.exe msnsspc.dll,SspcCreateSspiReg"
  383. HKLM,"Software\Microsoft\Windows\CurrentVersion\RunOnce","IE - 01",,"rundll32.exe msapsspc.dll,SspcCreateSspiReg"
  384. HKLM,"Software\Microsoft\Windows\CurrentVersion\RunOnce","IE - 02",,"%11%\mshta.exe /register"
  385. HKLM,"Software\Microsoft\Windows\CurrentVersion\RunOnce","IE - 03",,"fixmapi.exe"
  386. ; For NT, the regsvr calls are dealt with in syssetup.inx under the OleControlDlls section hdr.
  387. #endif
  388. ; URL.DLL Registry Entries
  389. HKCR,"CLSID\%CLSID_URL_DLL%",,2,"MIME and Internet Property Sheet Hook"
  390. HKCR,"CLSID\%CLSID_URL_DLL%\InProcServer32",,REG_EXPAND_SZ,"%SystemRoot%\system32\url.dll"
  391. HKCR,"CLSID\%CLSID_URL_DLL%\InProcServer32","ThreadingModel",2,"Apartment"
  392. ; URLMON.DLL Registry Entries
  393. HKCR,"CLSID\%CLSID_URLMON%",,2,"UrlMon ProxyStub Factory"
  394. HKCR,"CLSID\%CLSID_URLMON%\InprocServer32",,REG_EXPAND_SZ,"%SystemRoot%\system32\urlmon.dll"
  395. HKCR,"CLSID\%CLSID_IPersistMoniker%",,2,"IPersistMoniker"
  396. HKCR,"CLSID\%CLSID_IPersistMoniker%\ProxyStubClsid32",,2,"%CLSID_URLMON%"
  397. ; Object Store Registry Entries
  398. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings","CodeBaseSearchPath",2,"CODEBASE;<http://activex.microsoft.com/objects/ocget.dll>"
  399. ; Marquee.ocx Registry Entries
  400. HKLM,"Software\Classes\CLSID\{1a4da620-6217-11cf-be62-0080c72edd2d}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}",,2,
  401. HKLM,"Software\Classes\CLSID\{1a4da620-6217-11cf-be62-0080c72edd2d}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}",,2,
  402. ; These values will be used when the user clicks on the "Use Default" button.
  403. HKLM,"Software\Microsoft\Internet Explorer\Main","Default_Page_URL",,"%START_PAGE%"
  404. HKLM,"Software\Microsoft\Internet Explorer\Main","Default_Search_URL",,"%SEARCH_PAGE_URL%"
  405. HKLM,"Software\Microsoft\Internet Explorer\Main","Search Page",,"%SEARCH_PAGE_URL%"
  406. ; History Interface
  407. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Special Paths\History","",2,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Url History"
  408. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Url History","DaysToKeep",3,14,00,00,00
  409. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Url History","CacheLimit",3,00,02,00,00
  410. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Url History","Directory",REG_EXPAND_SZ,"%SystemRoot%\%HISTORY_DIR%"
  411. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Url History","CachePrefix",2,"Visited: "
  412. ; Cache Settings
  413. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache","FreshnessInterval",3,80,f4,03,00
  414. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache","CleanupFactor",3,19,00,00,00
  415. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache","CleanupTime",3,00,00,00,00
  416. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache","Persistent",3,01,00,00,00
  417. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache","CleanupInterval",3,80,51,01,00
  418. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache","DebugFlag",3,ff,ff,00,00
  419. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths","Paths",3,04,00,00,00
  420. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths","Directory",REG_EXPAND_SZNC,"%SystemRoot%\%CACHE_DIR%"
  421. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths","Size",3,24,01,00,00
  422. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path1","CacheLimit",3,00,20,00,00
  423. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path1","CachePath",REG_EXPAND_SZ,"%SystemRoot%\%CACHE_DIR%\cache1"
  424. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path2","CacheLimit",3,00,20,00,00
  425. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path2","CachePath",REG_EXPAND_SZ,"%SystemRoot%\%CACHE_DIR%\cache2"
  426. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path3","CacheLimit",3,00,20,00,00
  427. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path3","CachePath",REG_EXPAND_SZ,"%SystemRoot%\%CACHE_DIR%\cache3"
  428. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path4","CacheLimit",3,00,20,00,00
  429. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path4","CachePath",REG_EXPAND_SZ,"%SystemRoot%\%CACHE_DIR%\cache4"
  430. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Special Paths\Cookies","Directory",REG_EXPAND_SZ,"%SystemRoot%\Cookies"
  431. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Special Paths\Cookies","CachePrefix",2,"Cookie:"
  432. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Special Paths\Cookies","CacheLimit",3,00,04,00,00
  433. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Accepted Documents","0",0,"image/gif"
  434. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Accepted Documents","1",0,"image/x-xbitmap"
  435. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Accepted Documents","2",0,"image/jpeg"
  436. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Accepted Documents","3",0,"image/pjpeg"
  437. HKLM,"Software\Microsoft\Internet Explorer\Document Caching","Number",3,04,00,00,00
  438. HKLM,"Software\Microsoft\Internet Explorer\Image Caching","Number",3,04,00,00,00
  439. HKLM,"Software\Microsoft\Internet Explorer\Main","Enable_Disk_Cache",2,"yes"
  440. HKLM,"Software\Microsoft\Internet Explorer\Main","Cache_Percent_of_Disk",3,0A,00,00,00
  441. HKLM,"Software\Microsoft\Internet Explorer\Main","Delete_Temp_Files_On_Exit",2,"yes"
  442. ; Miscellaneous IE Settings
  443. HKLM,"Software\Microsoft\Internet Explorer\Main","Local Page",REG_EXPAND_SZ,"%SystemRoot%\system32\blank.htm"
  444. HKLM,"Software\Microsoft\Internet Explorer\Main","Anchor_Visitation_Horizon",3,01,00,00,00
  445. HKLM,"Software\Microsoft\Internet Explorer\Main","Use_Async_DNS",2,"yes"
  446. HKLM,"Software\Microsoft\Internet Explorer\Main","Placeholder_Width",3,1A,00,00,00
  447. HKLM,"Software\Microsoft\Internet Explorer\Main","Placeholder_Height",3,1A,00,00,00
  448. HKLM,"Software\Microsoft\Internet Explorer\Styles","Count_Style_Sheets",3,05,00,00,00
  449. #ifndef NT5
  450. HKLM,"System\currentControlSet\Services\Winsock\Autodial","AutodialDllName32",2,"wininet.dll"
  451. HKLM,"System\currentControlSet\Services\Winsock\Autodial","AutodialFcnName32",2,"InternetAutodialCallback"
  452. HKLM,"Software\Microsoft\Internet Explorer\Registration","PID.Version",REG_DWORD,0x00050032
  453. #else
  454. HKLM,"Software\Microsoft\Internet Explorer\PrintAppletsOnFEWin95",,""
  455. #endif
  456. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Last Update\IEXPLOREV4","CurrentVerTimestamp",0,"Sun, 21 April 1996 01:00:00 GMT"
  457. HKLM,"Software\Microsoft\Windows\CurrentVersion","WallPaperDir",REG_EXPAND_SZNC,"%SystemRoot%\Web\%LWallpaper%"
  458. ; URL Mappings
  459. HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\DefaultPrefix",,2,"http://"
  460. HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\Prefixes","ftp",2,"ftp://"
  461. HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\Prefixes","gopher",2,"gopher://"
  462. HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\Prefixes","home",2,"http://"
  463. HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\Prefixes","mosaic",2,"http://"
  464. HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\Prefixes","www",2,"http://"
  465. ; MSNSSPC/WinSSPI Reg Entries
  466. HKLM,"Software\Microsoft\Internet Explorer\Security\MSN","Flags",1,0A,00,00,00
  467. HKLM,"Software\Microsoft\Internet Explorer\Security\NTLM","Flags",1,08,00,00,00
  468. HKLM,"Software\Microsoft\Internet Explorer\Security\DPA","Flags",1,1A,00,00,00
  469. #ifdef NT5
  470. HKLM,"Software\Microsoft\Internet Explorer\Security\Negotiate","Flags",1,18,00,00,00
  471. #endif
  472. ; MIME and FILE Mappings
  473. HKCR,"exefile","EditFlags",3,D8,07,00,00
  474. ; Auto Config stuff (jsproxy.dll)
  475. HKCR,"AutoProxyTypes"
  476. HKCR,"AutoProxyTypes\Application/x-internet-signup","Default",1,00,00,00,00
  477. HKCR,"AutoProxyTypes\Application/x-internet-signup","DllFile",REG_EXPAND_SZ,"%SystemRoot%\system32\iedkcs32.dll"
  478. HKCR,"AutoProxyTypes\Application/x-internet-signup","FileExtensions",,".ins"
  479. HKCR,"AutoProxyTypes\Application/x-ns-proxy-autoconfig","Default",1,01,00,00,00
  480. HKCR,"AutoProxyTypes\Application/x-ns-proxy-autoconfig","DllFile",REG_EXPAND_SZ,"%SystemRoot%\system32\jsproxy.dll"
  481. HKCR,"AutoProxyTypes\Application/x-ns-proxy-autoconfig","FileExtensions",,".pac;.jvs;.js"
  482. HKCR,"AutoProxyTypes\application/x-ns-proxy-autoconfig","Flags",1,01,00,00,00
  483. ; MS Download (*.exe, *.dll)
  484. HKCR,".exe","Content Type",2,"application/x-msdownload"
  485. HKCR,".dll","Content Type",2,"application/x-msdownload"
  486. ; TIFF Files (*.tif, *.tiff)
  487. HKCR,".tiff","Content Type",2,"image/tiff"
  488. HKCR,".tif","Content Type",2,"image/tiff"
  489. HKCR,"MIME\Database\Content Type\image/tiff","Extension",2,".tiff"
  490. ; PictureIt Files �
  491. HKCR,"MIME\Database\Content Type\application/x-mix-transfer","Extension",2,".nix"
  492. HKCR,"MIME\Database\Content Type\application/x-mix-transfer","CLSID",2,"{10000000-0000-0000-0000-000000000001}"
  493. ; Other Formats (Compressed, UNIX formats)
  494. HKCR,".tar","Content Type",,"application/x-tar"
  495. HKCR,"MIME\Database\Content Type\application/x-tar","Extension",,".tar"
  496. HKCR,".tgz","Content Type",,"application/x-compressed"
  497. HKCR,"MIME\Database\Content Type\application/x-compressed","Extension",,".tgz"
  498. HKCR,".man","Content Type",,"application/x-troff-man"
  499. HKCR,"MIME\Database\Content Type\application/x-troff-man","Extension",,".man"
  500. HKCR,".latex","Content Type",,"application/x-latex"
  501. HKCR,"MIME\Database\Content Type\application/x-latex","Extension",,".latex"
  502. HKCR,".ps","Content Type",,"application/postscript"
  503. HKCR,".eps","Content Type",,"application/postscript"
  504. HKCR,".ai","Content Type",,"application/postscript"
  505. HKCR,"MIME\Database\Content Type\application/postscript","Extension",,".ps"
  506. HKCR,".sit","Content Type",,"application/x-stuffit"
  507. HKCR,"MIME\Database\Content Type\application/x-stuffit","Extension",,".sit"
  508. HKCR,".hqx","Content Type",,"application/mac-binhex40"
  509. HKCR,"MIME\Database\Content Type\application/mac-binhex40","Extension",,".hqx"
  510. HKCR,".fif","Content Type",,"application/fractals"
  511. HKCR,"MIME\Database\Content Type\application/fractals","Extension",,".fif"
  512. HKCR,".zip","Content Type",,"application/x-zip-compressed"
  513. HKCR,"MIME\Database\Content Type\application/x-zip-compressed","Extension",,".zip"
  514. HKCR,".gz","Content Type",,"application/x-gzip"
  515. HKCR,"MIME\Database\Content Type\application/x-gzip","Extension",,".gz"
  516. HKCR,".z","Content Type",,"application/x-compress"
  517. HKCR,"MIME\Database\Content Type\application/x-compress","Extension",,".z"
  518. ; AVI File
  519. HKLM,"Software\Classes\CLSID\{00022602-0000-0000-C000-000000000046}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}","",2,""
  520. HKLM,"Software\Classes\CLSID\{00022602-0000-0000-C000-000000000046}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}","",2,""
  521. ; MIDI File
  522. HKLM,"Software\Classes\CLSID\{00022603-0000-0000-C000-000000000046}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}","",2,""
  523. HKLM,"Software\Classes\CLSID\{00022603-0000-0000-C000-000000000046}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}","",2,""
  524. ; WAV File
  525. HKLM,"Software\Classes\CLSID\{00020C01-0000-0000-C000-000000000046}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}","",2,""
  526. HKLM,"Software\Classes\CLSID\{00020C01-0000-0000-C000-000000000046}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}","",2,""
  527. ; CLSIDs for Embed Formats.
  528. HKLM,"Software\Microsoft\Internet Explorer\EmbedExtnToClsidMappings\.dcr",,2,"clsid:166B1BCA-3F9C-11CF-8075-444553540000"
  529. HKLM,"Software\Microsoft\Internet Explorer\EmbedExtnToClsidMappings\.dir",,2,"clsid:166B1BCA-3F9C-11CF-8075-444553540000"
  530. [Sweeper.AddReg]
  531. ; International CodePages
  532. #ifdef NT5
  533. HKLM,"Software\Microsoft\Windows NT\CurrentVersion\Winlogon","shell",,"Explorer.exe"
  534. #else
  535. HKLM,"System\CurrentControlSet\control\Nls\CodePage","20866",,"cp_20866.nls"
  536. HKLM,"System\CurrentControlSet\control\Nls\CodePage","28592",,"cp_28592.nls"
  537. HKLM,"System\CurrentControlSet\control\Nls\CodePage","28595",,"cp_28595.nls"
  538. HKLM,"System\CurrentControlSet\control\Nls\CodePage","28591",,"cp_28591.nls"
  539. HKLM,"System\CurrentControlSet\control\Nls\CodePage","28597",,"cp_28597.nls"
  540. HKLM,"Software\Microsoft\Plus!\Setup","COOL.DLL",2,"1"
  541. #endif
  542. [Shell.BrowserReg]
  543. #ifdef NT5
  544. ;misc additions
  545. HKLM,"System\CurrentControlSet\Services\inetaccs",,2,""
  546. HKLM,"System\CurrentControlSet\Services\inetaccs\Parameters",,2,""
  547. #else
  548. ;NT5 only
  549. #endif
  550. [Token.Reg]
  551. #ifdef NT5
  552. HKLM,"Software\Microsoft\Internet Explorer\Main","What's New",,"http://www.microsoft.com/ie/webintro/intro/ie4intro.htm"
  553. #else
  554. ;NT5 only
  555. #endif
  556. [TextConverter.AddReg]
  557. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Export\HTML","Extensions",2,"%TextCnv_Exp_Ext%"
  558. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Export\HTML","Name",2,"%TextCnv_Exp_Name%"
  559. #ifdef NT5
  560. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Export\HTML","Path",0,"%16427%\Microsoft Shared\TextConv\html32.cnv"
  561. #else
  562. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Export\HTML","Path",0,"%28742%\TextConv\html32.cnv"
  563. #endif
  564. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\HTML","Extensions",2,"%TextCnv_Imp_Ext%"
  565. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\HTML","Name",2,"%TextCnv_Imp_Name%"
  566. #ifdef NT5
  567. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\HTML","Path",0,"%16427%\Microsoft Shared\TextConv\html32.cnv"
  568. #else
  569. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\HTML","Path",0,"%28742%\TextConv\html32.cnv"
  570. #endif
  571. HKLM,"Software\Microsoft\Shared Tools\HTML\Clients","Name",2,"HTML Document"
  572. #ifdef NT5
  573. HKLM,"Software\Microsoft\Shared Tools Location","TEXTCONV",2,"%16427%\Microsoft Shared\TextConv"
  574. HKLM,"Software\Microsoft\Shared Tools\HTML\Clients","%16422%\%MSIE4%\iexplore.exe",2,""
  575. ;Wordpad settings
  576. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWord6.wpc","Extensions",2,"doc"
  577. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWord6.wpc","Name",2,"Word 6.0/95 for Windows & Macintosh"
  578. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWord6.wpc","Path",0,"%16427%\Microsoft Shared\TextConv\mswrd632.wpc"
  579. HKLM,"Software\Microsoft\Shared Tools\MSWord6.wpc\Clients","%16422%\Windows NT\%Accessories%\wordpad.exe",2,""
  580. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWord8","Extensions",2,"doc"
  581. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWord8","Name",2,"Word 97"
  582. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWord8","Path",0,"%16427%\Microsoft Shared\TextConv\mswrd832.cnv"
  583. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWord8\NoDialogs"
  584. HKLM,"Software\Microsoft\Shared Tools\MSWord8\Clients","%16422%\Windows NT\%Accessories%\wordpad.exe",2,""
  585. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWinWrite.wpc","Extensions",2,"wri"
  586. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWinWrite.wpc","Name",2,"Windows Write"
  587. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWinWrite.wpc","Path",0,"%16427%\Microsoft Shared\TextConv\write32.wpc"
  588. HKLM,"Software\Microsoft\Shared Tools\MSWinWrite.wpc\Clients","%16422%\Windows NT\%Accessories%\wordpad.exe",2,""
  589. #endif
  590. ; Do not remove the following section. It is not called during base OS install,
  591. ; but the section is called directly from external sources post install. (W98 & NT5)
  592. [Channel]
  593. 0409=chlen_us.inf,chlen_us.cab
  594. ;========================
  595. ; Base DelReg
  596. ;========================
  597. [Base.DelReg]
  598. #ifdef NT5
  599. ; delete the old Explorer icon
  600. HKLM,"Software\Microsoft\Windows\CurrentVersion\explorer\Desktop\NameSpace\{FBF23B42-E3F0-101B-8488-00AA003E56F8}"
  601. HKLM,"Software\Microsoft\Windows\CurrentVersion\explorer\Desktop\NameSpace\FBF23B42-E3F0-101B-8488-00AA003E56F8"
  602. HKCR,Shell.Browser
  603. HKCR,Shell.Browser.1
  604. HKCR,"news\shell\open\ddeexec"
  605. ; Nuke the old hlinkprx.dll Entries
  606. HKCR,"CLSID\%CLSID_HLinkPSFactory%"
  607. HKCR,"Interface\%CLSID_HLinkPSFactory%"
  608. HKCR,"Interface\%CLSID_IBindStatusCallback%"
  609. HKCR,"Interface\%CLSID_IHlinkSite%"
  610. HKCR,"Interface\%CLSID_IHlink%"
  611. HKCR,"Interface\%CLSID_IHlinkSource%"
  612. HKCR,"Interface\%CLSID_IHlinkFrame%"
  613. HKCR,"Interface\%CLSID_IEnumHLINKITEM%"
  614. HKCR,"Interface\%CLSID_IHlinkBrowseContext%"
  615. HKCR,"Interface\%CLSID_IHlinkHistory%"
  616. HKCR,"Interface\%CLSID_IPersistMoniker%"
  617. HKCR,"Interface\%CLSID_IFile%"
  618. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\cache1"
  619. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\cache2"
  620. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\cache3"
  621. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\cache4"
  622. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path5"
  623. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path6"
  624. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path7"
  625. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path8"
  626. HKLM,"System\CurrentControlSet\control\SecurityProviders\Schannel\CertificationAuthorities\internetMCI Mall"
  627. HKLM,"Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\DockingWindows\Microsoft.Ticker"
  628. HKLM,"Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\DockingWindows\Microsoft.DesktopChannel"
  629. HKLM,"Software\Microsoft\Internet Explorer\Main","Default Channels"
  630. HKLM,"Software\Microsoft\Internet Explorer\Main","Additional Channels"
  631. HKLM,"Software\Microsoft\Internet Explorer\SecurityProtocols","Basic"
  632. HKLM,"Software\Microsoft\Internet Explorer\Styles"
  633. #endif
  634. HKLM,"Software\Microsoft\Active Setup\JITInfo\5"
  635. HKLM,"Software\Microsoft\Internet Explorer\Help_Menu_URLs","3"
  636. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings","MinorVersion"
  637. HKLM,"Software\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4383}","QFEVersion"
  638. HKLM,"Software\Microsoft\Internet Explorer\MediaTypeClass\{00000000-0000-0000-0000-000000000000}","audio/wav"
  639. HKLM,"Software\Microsoft\Windows\CurrentVersion\Uninstall\IE3 SecurityLnkUpdate"
  640. HKLM,"Software\Microsoft\Windows\CurrentVersion\Uninstall\InternetExplorer"
  641. HKLM,"Software\Microsoft\Windows\CurrentVersion\Uninstall\IE40"
  642. HKLM,"Software\Microsoft\Windows\CurrentVersion\Uninstall\IE40RemovBak"
  643. HKLM,"Software\Microsoft\Windows\CurrentVersion\Uninstall\IE4Shell"
  644. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings","User Agent"
  645. HKLM,"Software\Microsoft\Windows\CurrentVersion\Run","UserDataUninstall"
  646. HKLM,"Software\Microsoft\Windows\CurrentVersion\Run","BrowserWebCheck"
  647. ;powertoys "find on the internet"
  648. HKLM,"Software\Microsoft\Windows\CurrentVersion\Explorer\FindExtensions\{97E2C371-FDDD-11CF-807F-02608C8D98DF}"
  649. HKCR,"CLSID\{97E2C371-FDDD-11CF-807F-02608C8D98DF}"
  650. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\User Agent\Post Platform","DigExt"
  651. #ifdef NT5
  652. ; channels cleanup
  653. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chl99","StubPath"
  654. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-us","StubPath"
  655. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlja-jp","StubPath"
  656. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlcs-cz","StubPath"
  657. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlda-dk","StubPath"
  658. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlde-at","StubPath"
  659. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlde-ch","StubPath"
  660. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlde-de","StubPath"
  661. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlel-gr","StubPath"
  662. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-au","StubPath"
  663. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-bb","StubPath"
  664. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-bz","StubPath"
  665. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-ca","StubPath"
  666. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-gy","StubPath"
  667. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-ie","StubPath"
  668. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-jm","StubPath"
  669. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-me","StubPath"
  670. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-nz","StubPath"
  671. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-ph","StubPath"
  672. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-sr","StubPath"
  673. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-tt","StubPath"
  674. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-uk","StubPath"
  675. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-za","StubPath"
  676. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-ar","StubPath"
  677. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-cl","StubPath"
  678. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-co","StubPath"
  679. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-cr","StubPath"
  680. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-do","StubPath"
  681. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-es","StubPath"
  682. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-gt","StubPath"
  683. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-hn","StubPath"
  684. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-mx","StubPath"
  685. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-ni","StubPath"
  686. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-pa","StubPath"
  687. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-pe","StubPath"
  688. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-pr","StubPath"
  689. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-sv","StubPath"
  690. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-uy","StubPath"
  691. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-ve","StubPath"
  692. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlfi-fi","StubPath"
  693. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlfr-be","StubPath"
  694. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlfr-ch","StubPath"
  695. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlfr-fr","StubPath"
  696. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlhi-in","StubPath"
  697. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlhr-hr","StubPath"
  698. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlhu-hu","StubPath"
  699. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlin-id","StubPath"
  700. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlit-it","StubPath"
  701. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlko-kr","StubPath"
  702. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlml-my","StubPath"
  703. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlnl-be","StubPath"
  704. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlnl-nl","StubPath"
  705. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlno-no","StubPath"
  706. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlpl-pl","StubPath"
  707. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlpt-br","StubPath"
  708. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlpt-pt","StubPath"
  709. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlru-ru","StubPath"
  710. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlsl-si","StubPath"
  711. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlsv-se","StubPath"
  712. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlth-th","StubPath"
  713. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chltr-tr","StubPath"
  714. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlzh-cn","StubPath"
  715. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlzh-hk","StubPath"
  716. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlzh-sg","StubPath"
  717. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlzh-tw","StubPath"
  718. HKLM,"Software\Microsoft\Active Setup\Installed Components\ChlOEM","StubPath"
  719. #endif
  720. #ifdef NT5
  721. [Base.Backup.DelReg]
  722. HKLM,"Software\Microsoft\Advanced INF Setup\IE_W2K"
  723. HKLM,"Software\Microsoft\Windows\CurrentVersion\Uninstall\IE40"
  724. #endif
  725. ;========================
  726. ; Base UpdateIni
  727. ;========================
  728. [Base.StartMenu.UpdateIni]
  729. #ifdef NT5
  730. setup.ini, progman.groups,,"IE_INTERNET=%MSIEXPLORE_PROGGROUP%"
  731. setup.ini, IE_INTERNET,,""%MSINETWIZ_DESC%"",,,
  732. setup.ini, progman.groups,,"X_GROUP="
  733. setup.ini, X_GROUP,,""%MSIEXPLORE_DESC%""
  734. setup.ini, X_GROUP,,""Windows Explorer""
  735. #endif
  736. [Shell.AddIni]
  737. #ifndef NT5
  738. system.ini,boot,,"shell=Explorer.exe"
  739. #endif
  740. #ifdef NT5
  741. [Base.RegSvr]
  742. 16422,%MSIE4%,hmmapi.dll,1
  743. [Triedit.RegSvr]
  744. 16427,Microsoft Shared\Triedit,dhtmled.ocx,1
  745. 16427,Microsoft Shared\Triedit,triedit.dll,1
  746. [MSInfo.RegSvr]
  747. 16427,Microsoft Shared\MSInfo,ieinfo5.ocx,1
  748. #endif