无忧启动论坛

标题: PE下不支持inf中的 “16427” 等 逻辑磁盘标识符 (LDID)解析吗? [打印本页]

作者: 1400700226    时间: 2017-1-16 20:46
标题: PE下不支持inf中的 “16427” 等 逻辑磁盘标识符 (LDID)解析吗?
这是一个十多年来没人发现的问题:

03PE安装IE6后,由于安装过程有

Rundll32 SetupAPI.dll,InstallHinfSection DefaultInstall 132 .\IE.INF

操作,所以会生成一个setupapi.log(可能在%Temp%)。

这个log是这样的:

  1. [2017/01/16 20:30:42 1464.1]
  2. #-199 正在执行 "X:\WXPE\System32\RUNDLL32.EXE",命令行是: Rundll32 SetupAPI.dll,InstallHinfSection DefaultInstall 132 .\IE.INF
  3. #-011 正在从 ".\IE.INF" 安装节 [DefaultInstall]。
  4. #-290 正在处理 REGISTERDLLS 节 [Base.RegSvr]。模板: "%16422%\Internet Explorer\hmmapi.dll",标志: 0x0001,超时: 60s。
  5. #W361 一个未经过签名、签名不正确或 Authenticode(TM) 签名的文件 "Internet Explorer\hmmapi.dll" 将得到安装(策略=忽略)。 错误 3: 系统找不到指定的路径。
  6. #E089 未能加载 OLE 控件 "Internet Explorer\hmmapi.dll"。 错误 126: 找不到指定的模块。
  7. #E291 未能注册 OLE 服务器 "Internet Explorer\hmmapi.dll"。 错误 126: 找不到指定的模块。
  8. #-290 正在处理 REGISTERDLLS 节 [Triedit.RegSvr]。模板: "%16427%\Microsoft Shared\Triedit\dhtmled.ocx",标志: 0x0001,超时: 60s。
  9. #W361 一个未经过签名、签名不正确或 Authenticode(TM) 签名的文件 "Microsoft Shared\Triedit\dhtmled.ocx" 将得到安装(策略=忽略)。 错误 3: 系统找不到指定的路径。
  10. #E089 未能加载 OLE 控件 "Microsoft Shared\Triedit\dhtmled.ocx"。 错误 126: 找不到指定的模块。
  11. #E291 未能注册 OLE 服务器 "Microsoft Shared\Triedit\dhtmled.ocx"。 错误 126: 找不到指定的模块。
  12. #-290 正在处理 REGISTERDLLS 节 [Triedit.RegSvr]。模板: "%16427%\Microsoft Shared\Triedit\triedit.dll",标志: 0x0001,超时: 60s。
  13. #W361 一个未经过签名、签名不正确或 Authenticode(TM) 签名的文件 "Microsoft Shared\Triedit\triedit.dll" 将得到安装(策略=忽略)。 错误 3: 系统找不到指定的路径。
  14. #E089 未能加载 OLE 控件 "Microsoft Shared\Triedit\triedit.dll"。 错误 126: 找不到指定的模块。
  15. #E291 未能注册 OLE 服务器 "Microsoft Shared\Triedit\triedit.dll"。 错误 126: 找不到指定的模块。
  16. #E238 尝试启用 'RUNONCE' 进程失败。 错误 2: 系统找不到指定的文件。
复制代码



其中有找不到文件的错误。其中找不到hmmapi.dll的错误是正常的,因为确无此文件。


对应的ie.inf中的片段为:

  1. [Base.RegSvr]
  2. 16422,%MSIE4%,hmmapi.dll,1
  3. [Triedit.RegSvr]
  4. 16427,Microsoft Shared\Triedit,dhtmled.ocx,1
  5. 16427,Microsoft Shared\Triedit,triedit.dll,1
复制代码


而,如果在正常系统中安装此ie.inf,则不会报错。
如何验证测试有效呢?如果我们把ie.inf中的  Microsoft Shared\Triedit   改成  M1icrosoft Shared\Triedit  

则会有如下log报错:

  1. [2017/01/16 20:25:18 2276.1]
  2. #-199 执行 "C:\WINDOWS\system32\rundll32.exe",用命令行: Rundll32 SetupAPI.dll,InstallHinfSection DefaultInstall 132 .\IE.INF
  3. #-011 正在从 ".\IE.INF" 安装段 [DefaultInstall]。
  4. #-290 正在处理 REGISTERDLLS 节 [Triedit.RegSvr]。二进制: "%16427%\M1icrosoft Shared\Triedit\dhtmled.ocx",标志: 0x0001,超时: 60s。
  5. #E361 一个未经过签署或签署不正确的文件 "C:\Program Files\Common Files\M1icrosoft Shared\Triedit\dhtmled.ocx" 将得到安装(策略=忽略)。 错误 3: 系统找不到指定的路径。
  6. #E089 加载 OLE 控制 "C:\Program Files\Common Files\M1icrosoft Shared\Triedit\dhtmled.ocx" 失败。 错误 126: 找不到指定的模块。
  7. #E291 未能注册 OLE 服务器 "C:\Program Files\Common Files\M1icrosoft Shared\Triedit\dhtmled.ocx"。 错误 126: 找不到指定的模块。
复制代码



这个log与pe中安装的报错log不同之处在于,正常系统中的报错log正确解析出了   16427  等所代表的完整路径。


证明2:

ie.inf中有如下语句:

  1. [TextConverter.AddReg]
  2. HKLM,"Software\Microsoft\Shared Tools Location","TEXTCONV",2,"%16427%\Microsoft Shared\TextConv"
复制代码


然后执行的结果是注册表中有如下项:

  1. Windows Registry Editor Version 5.00

  2. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools Location]
  3. "TEXTCONV"="\\Microsoft Shared\\TextConv"
复制代码


而正常系统的注册表中此项应该为:

  1. Windows Registry Editor Version 5.00

  2. [HKEY_LOCAL_MACHINE\Microsoft\Shared Tools Location]
  3. "TEXTCONV"="C:\\Program Files\\Common Files\\Microsoft Shared\\TextConv"
复制代码


对比之下可见 16427变量没有被正确解析。


所以我猜测,PE中是否是因为精简掉了某个/些文件导致 “16427” 等 逻辑磁盘标识符 (LDID)无法解析?


我已废寝忘食两天无果。

求高人研究。在此不尽感谢!


作者: 邪恶海盗    时间: 2017-1-16 21:31
玩毛的IE啊,直接弄个QtWeb不就好了,还是多标签的,自从我发现这货后就把XPE/03PE里的IE6删了...
作者: 1400700226    时间: 2017-1-16 21:41
邪恶海盗 发表于 2017-1-16 21:31
玩毛的IE啊,直接弄个QtWeb不就好了,还是多标签的,自从我发现这货后就把XPE/03PE里的IE6删了...

大哥,稳,删掉IE后该正常吗?有没有详细测试?

QtWeb起码不支持flash,删掉IE起码vbs不能用了,chm不能看了,很多软件调用IE的也不能显示了,例如DiskInfo

IE不只是浏览器,是系统组件!
作者: 邪恶海盗    时间: 2017-1-16 21:49
1400700226 发表于 2017-1-16 21:41
大哥,稳,删掉IE后该正常吗?有没有详细测试?

QtWeb起码不支持flash,删掉IE起码vbs不能用了,chm不 ...

好像是有几个DLL的事,QtWeb也可以用Flash的吧,一样要安装而已
作者: 1400700226    时间: 2017-1-16 22:21
邪恶海盗 发表于 2017-1-16 21:49
好像是有几个DLL的事,QtWeb也可以用Flash的吧,一样要安装而已

QtWeb能用Flash?!
作者: andos    时间: 2017-1-16 22:27
1400700226 发表于 2017-1-16 22:21
QtWeb能用Flash?!

可以的

就算不用QTWEB 也可以用老版OPERA
作者: 邪恶海盗    时间: 2017-1-16 22:38
本帖最后由 邪恶海盗 于 2017-1-16 22:40 编辑
1400700226 发表于 2017-1-16 22:21
QtWeb能用Flash?!



install_flash_player_11_plugin_32bit.exe
我装的这个,完全没问题...
作者: 1400700226    时间: 2017-1-16 23:55
andos 发表于 2017-1-16 22:27
可以的

就算不用QTWEB 也可以用老版OPERA

opera@usb有办法设置临时目录吗?我想在只读位置运行
作者: 1400700226    时间: 2017-1-16 23:55
邪恶海盗 发表于 2017-1-16 22:38
install_flash_player_11_plugin_32bit.exe
我装的这个,完全没问题...

谢谢,我看下能否修改Flash的位置,我不想安装。
作者: 1400700226    时间: 2017-1-17 16:29
本帖最后由 1400700226 于 2017-1-17 16:31 编辑

暂且的解决方案:

Dll另行注册,ie.inf中用其他变量替代:


ie.inf太长,这是第一部分:

  1. [Version]
  2. signature="$Windows NT[        DISCUZ_CODE_2        ]quot;
  3. ClassGUID={00000000-0000-0000-0000-000000000000}
  4. SetupClass=Base
  5. LayoutFile=layout.inf
  6. DriverVer=01/23/2009,5.2.3790.3959

  7. [DefaultInstall]
  8. ProfileItems=DeleteOldStartMenuLinks,CreateStartMenuLinks
  9. AddReg=Base.IE.AddReg,Base.Sweeper.AddReg,Sweeper.AddReg,Shell.BrowserReg,TextConverter.AddReg,AddReg.WSH
  10. DelReg=Base.DelReg,DelReg.WSH
  11. RegisterDlls=IEAccess.Reg

  12. [MarketplaceLinkInstall]
  13. ProfileItems=CreateMarketplaceLink

  14. [CreateMarketplaceLink]
  15. Name="Windows Marketplace",8,6
  16. URL="https://www.baidu.com/"
  17. SubDir="Links"
  18. IconPath=11,,moricons.dll
  19. IconIndex=107

  20. [IEAccess.Install]
  21. AddReg=IEAccess.DesktopIcon.AddReg

  22. [IEAccess.Uninstall]
  23. AddReg=IEAccess.Uninstall.AddReg
  24. DelReg=IEAccess.RemoveDesktopIcon

  25. [IEAccess.DesktopIcon.AddReg]
  26. HKCR,"CLSID\%CLSID_DesktopIcon%",,2,"%THENET%"
  27. HKLM,"Software\Microsoft\Windows\CurrentVersion\explorer\Desktop\NameSpace\%CLSID_DesktopIcon%",,2,"%THENET%"

  28. [IEAccess.RemoveDesktopIcon]
  29. HKCR,"CLSID\%CLSID_DesktopIcon%"
  30. HKLM,"Software\Microsoft\Windows\CurrentVersion\explorer\Desktop\NameSpace\%CLSID_DesktopIcon%"

  31. [DeleteOldStartMenuLinks]
  32. Name=%OLDHOMENETWORK_DESC%,0x00000002
  33. SubDir=%Communications_GROUP%

  34. [Base.IE.AddReg]
  35. HKCU,"Software\Microsoft\Internet Explorer\Main","Disable Script Debugger",,"yes"
  36. HKCU,"Software\Microsoft\Internet Explorer\Main","Check_Associations",,"Yes"
  37. HKLM,"Software\Microsoft\Active Setup","DisableRepair",0x00010001,1
  38. HKLM,"Software\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4383}",,,"%ASETUP_BASE_DESC%"
  39. HKLM,"Software\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4383}","ComponentID",,"BASEIE40_W2K"
  40. HKLM,"Software\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4383}","IsInstalled",0x00010001,1,0,0,0
  41. HKLM,"Software\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4383}","Locale",,"%ASETUP_LOCALE%"
  42. HKLM,"Software\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4383}","Version",,"6,0,2900,2180"
  43. HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\IE40"
  44. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_IESHELL%",,,"%ASETUP_SHELL_DESC%"
  45. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_IESHELL%","ComponentID",,"IE4Shell_NT"
  46. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_IESHELL%","IsInstalled",0x00010001,1,0,0,0
  47. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_IESHELL%","Locale",,"%ASETUP_LOCALE%"
  48. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_IESHELL%","StubPath",0x00020000,"regsvr32.exe /s /n /i:U shell32.dll"
  49. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_IESHELL%","Version",,"6,0,2900,2180"
  50. HKLM,"Software\Microsoft\Active Setup\Install Check","IE40",,"6.0.2900.2180"
  51. HKLM,"Software\Microsoft\Active Setup\Installed Components\{44BBA840-CC51-11CF-AAFA-00AA00B6015C}","Version",,"6,0,2900,2180"
  52. HKLM,"Software\Microsoft\Active Setup\Installed Components\{7790769C-0471-11d2-AF11-00C04FA35D02}","Version",,"6,0,2900,2180"
  53. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_ADVAUTH%",,,"%ASETUP_ADVAUTH_DESC%"
  54. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_ADVAUTH%","ComponentID",,"AdvAuth"
  55. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_ADVAUTH%","IsInstalled",0x00010001,1,0,0,0
  56. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_ADVAUTH%","Locale",,"*"
  57. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_ADVAUTH%","Version",,"6,0,2900,2180"
  58. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DAJAVA%",,,"%ASETUP_DAJAVA_DESC%"
  59. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DAJAVA%","ComponentID",,"DAJava"
  60. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DAJAVA%","IsInstalled",0x00010001,1,0,0,0
  61. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DAJAVA%","Locale",,"*"
  62. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DAJAVA%","Version",,"6,00,01,0223"
  63. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DDRAWEX%",,,"%ASETUP_DDRAWEX_DESC%"
  64. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DDRAWEX%","ComponentID",,"DirectDrawEx"
  65. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DDRAWEX%","IsInstalled",0x00010001,1,0,0,0
  66. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DDRAWEX%","Locale",,"*"
  67. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_DDRAWEX%","Version",,"4,71,1113,0"
  68. HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\DirectDrawEx"
  69. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_EXTRAPK%",,,"%ASETUP_EXTRAPK_DESC%"
  70. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_EXTRAPK%","ComponentID",,"ExtraPack"
  71. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_EXTRAPK%","IsInstalled",0x00010001,1,0,0,0
  72. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_EXTRAPK%","Locale",,"*"
  73. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_EXTRAPK%","Version",,"6,0,2900,2180"
  74. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_FONTCORE%",,,"%ASETUP_FONTCORE_DESC%"
  75. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_FONTCORE%","ComponentID",,"Fontcore"
  76. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_FONTCORE%","IsInstalled",0x00010001,1,0,0,0
  77. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_FONTCORE%","Locale",,"*"
  78. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_FONTCORE%","Version",,"1,00,0000,6"
  79. HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\Fontcore"
  80. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_GSETUP%",,,"%ASETUP_GSETUP_DESC%"
  81. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_GSETUP%","ComponentID",,"GenSetup"
  82. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_GSETUP%","IsInstalled",0x00010001,1,0,0,0
  83. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_GSETUP%","Locale",,"*"
  84. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_GSETUP%","Version",,"5,0,0,1"
  85. HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\IE5BAKEX"
  86. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HELPCONT%",,,"%ASETUP_HELPCONT_DESC%"
  87. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HELPCONT%","ComponentID",,"HelpCont"
  88. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HELPCONT%","IsInstalled",0x00010001,1,0,0,0
  89. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HELPCONT%","Locale",,"*"
  90. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HELPCONT%","Version",,"6,0,2900,2180"
  91. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HTMLHELP%",,,"%ASETUP_HTMLHELP_DESC%"
  92. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HTMLHELP%","ComponentID",,"HTMLHelp"
  93. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HTMLHELP%","IsInstalled",0x00010001,1,0,0,0
  94. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HTMLHELP%","Locale",,"*"
  95. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_HTMLHELP%","Version",,"4,74,9006,0"
  96. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_MSNAUTH%",,,"%ASETUP_MSNAUTH_DESC%"
  97. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_MSNAUTH%","ComponentID",,"MSN_Auth"
  98. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_MSNAUTH%","IsInstalled",0x00010001,1,0,0,0
  99. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_MSNAUTH%","Locale",,"*"
  100. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_MSNAUTH%","Version",,"4,9,9,2"
  101. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_OFFLINE%",,,"%ASETUP_OFFLINE_DESC%"
  102. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_OFFLINE%","ComponentID",,"MobilePk"
  103. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_OFFLINE%","IsInstalled",0x00010001,1,0,0,0
  104. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_OFFLINE%","Locale",,"*"
  105. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_OFFLINE%","Version",,"6,0,2900,2180"
  106. HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\MobileOptionPack"
  107. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIDATA%",,,"%ASETUP_TRIDATA_DESC%"
  108. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIDATA%","ComponentID",,"Tridata"
  109. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIDATA%","IsInstalled",0x00010001,1,0,0,0
  110. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIDATA%","Locale",,"*"
  111. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIDATA%","Version",,"5,5000,3130,0"
  112. HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\IEData"
  113. HKLM,"SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\IE4Data"
  114. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIJAVA%",,,"%ASETUP_TRIJAVA_DESC%"
  115. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIJAVA%","ComponentID",,"TridataJava"
  116. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIJAVA%","IsInstalled",0x00010001,1,0,0,0
  117. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIJAVA%","Locale",,"*"
  118. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_TRIJAVA%","Version",,"4,7,0,0320"
  119. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_USP10%",,,"%ASETUP_USP10_DESC%"
  120. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_USP10%","ComponentID",,"USP10"
  121. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_USP10%","IsInstalled",0x00010001,1,0,0,0
  122. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_USP10%","Locale",,"*"
  123. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_USP10%","Version",,"1,397,2406,1"
  124. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_VBSCRIPT%",,,"%ASETUP_VBSCRIPT_DESC%"
  125. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_VBSCRIPT%","ComponentID",,"MSVBScript"
  126. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_VBSCRIPT%","IsInstalled",0x00010001,1,0,0,0
  127. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_VBSCRIPT%","Locale",,"*"
  128. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_VBSCRIPT%","Version",,"5,6,0,5901"
  129. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_BRANDING%",,,"%ASETUP_BRANDING_DESC%"
  130. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_BRANDING%","ComponentID",,"BRANDING.CAB"
  131. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_BRANDING%","Version",,"6,0,2900,2180"
  132. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_BRANDING%","Locale",,"*"
  133. HKLM,"Software\Microsoft\Active Setup\Installed Components\%CLSID_BRANDING%","IsInstalled",0x00010001,1,0,0,0
  134. HKCR,"InternetExplorer.Application",,,"Internet Explorer"
  135. HKCR,"InternetExplorer.Application\CLSID",,,"%CLSID_IE_App%"
  136. HKCR,"InternetExplorer.Application\CurVer",,,"InternetExplorer.Application.1"
  137. HKCR,"InternetExplorer.Application.1",,,"Internet Explorer (Ver 1.0)"
  138. HKCR,"InternetExplorer.Application.1\CLSID",,,"%CLSID_IE_App%"
  139. HKCR,"CLSID\%CLSID_IE_App%",,,"Internet Explorer(Ver 1.0)"
  140. HKCR,"CLSID\%CLSID_IE_App%\LocalServer32",,0x00020000,"""%01%\iexplore.exe"""
  141. HKCR,"CLSID\%CLSID_IE_App%\ProgID",,,"InternetExplorer.Application.1"
  142. HKCR,"CLSID\%CLSID_IE_App%\VersionIndependentProgID",,,"InternetExplorer.Application"
  143. HKCR,"CLSID\%CLSID_IE_App%\TypeLib",,,"%CLSID_IE_TypeLib%"
  144. HKCR,"CLSID\%CLSID_IE_App%\Programmable",,,""
  145. HKCR,"CLSID\%CLSID_DesktopIcon%\DefaultIcon",,0x00020000,"""%01%\iexplore.exe"",-32528"
  146. HKCR,"CLSID\%CLSID_DesktopIcon%\InProcServer32",,0x00020000,"%01%\url.dll"
  147. HKCR,"CLSID\%CLSID_DesktopIcon%\InProcServer32","ThreadingModel",,"Apartment"
  148. HKCR,"CLSID\%CLSID_DesktopIcon%\ShellEx\PropertySheetHandlers\%CLSID_DesktopIcon%",,,""
  149. HKCR,"CLSID\%CLSID_DesktopIcon%\ShellFolder",,,""
  150. HKCR,"CLSID\%CLSID_DesktopIcon%\ShellFolder","Attributes",1,72,00,00,00
  151. HKLM,"SOFTWARE\Microsoft\Internet Explorer","Build",,"62900.2180"
  152. HKLM,"SOFTWARE\Microsoft\Internet Explorer","Version",,"6.0.2900.2180"
  153. HKLM,"SOFTWARE\Microsoft\Internet Explorer","W2kVersion",,"6.0.2900.2180"
  154. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings","MinorVersion",,";SP2;"
  155. HKLM,"Software\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE",,0,"%01%\iexplore.exe"
  156. HKLM,"Software\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE","Path",0,"%01%
  157. HKLM,"Software\Microsoft\IE4\Setup","Path",0x00020000,"%01%"
  158. HKLM,"Software\Microsoft\IE Setup\Setup","Path",0x00020000,"%01%"
  159. HKLM,"Software\Microsoft\IE4\Setup","Apps.hlpDate",0,"1998.02.01"
  160. HKLM,"Software\Microsoft\IE Setup\Setup","Apps.hlpDate",0,"1998.02.01"
  161. HKLM,"Software\Clients\StartMenuInternet\IEXPLORE.EXE","LocalizedString",,"@%01%\iexplore.exe,-702"
  162. HKLM,"Software\Clients\StartMenuInternet\IEXPLORE.EXE\DefaultIcon",,,"%01%\iexplore.exe,0"
  163. HKLM,"Software\Clients\StartMenuInternet\IEXPLORE.EXE\shell\open\command",,,"""%01%\iexplore.exe"""
  164. HKLM,"Software\Microsoft\Internet Explorer"
  165. HKCU,"Software\Microsoft\Internet Explorer"
  166. HKLM,"Software\Microsoft\Windows\CurrentVersion\Explorer\NewShortcutHandlers","%CLSID_NewsShortcut%",2,""

  167. ;以下部分由老毛桃自行添加,如果出错,请注意修改
  168. HKCU,"Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu","%CLSID_IE_Prog%",0x00010001,0
  169. HKCU,"Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\%CLSID_IE_Prog%\ShellFolder","Attributes",0x00010001,0
  170. HKCR,"Applications\iexplore.exe\shell\open\command",,,"""%01%\iexplore.exe"" %1"
  171. HKCR,"ftp\shell\open\command",,,"""%01%\iexplore.exe"" %1"
  172. HKCR,"gopher\shell\open\command",,,"""%01%\iexplore.exe"" -nohome"
  173. HKCR,"htmlfile\DefaultIcon",,,"""%01%\iexplore.exe"",1"
  174. HKCR,"htmlfile\shell\open\command",,,"""%01%\iexplore.exe"" -nohome"
  175. HKCR,"htmlfile\shell",,,"opennew"
  176. HKCR,"htmlfile\shell\opennew\command",,,"""%01%\iexplore.exe"" %1"
  177. HKCR,"http\shell\open\command",,,"""%01%\iexplore.exe"" -nohome"
  178. HKCR,"https\shell\open\command",,,"""%01%\iexplore.exe"" -nohome"
  179. HKCR,"mhtmlfile\DefaultIcon",,,"""%01%\iexplore.exe"",22"
  180. HKCR,"mhtmlfile\shell\open\command",,,"""%01%\iexplore.exe"" -nohome"
  181. HKCR,"mhtmlfile\shell\opennew\command",,,"""%01%\iexplore.exe"" %1"
  182. HKCR,"CLSID\%CLSID_IE_Prog%\DefaultIcon",,,"%01%\shdoclc.dll,-190"
  183. HKCR,"CLSID\%CLSID_IE_Prog%\shell\OpenHomePage","MUIVerb",,"打开主页(&H)"
  184. ;以上部分由老毛桃自行添加

  185. HKCR,".cer",,,"CERFile"
  186. HKCR,".cer","Content Type",,"application/x-x509-ca-cert"
  187. HKCR,"CERFile",,,"安全证书"
  188. HKCR,"CERFile","FriendlyTypeName",0x20000,"@%SystemRoot%\System32\cryptext.dll,-6108"
  189. HKCR,"CERFile\DefaultIcon",,0x20000,"%SystemRoot%\System32\cryptui.dll,-3410"
  190. HKCR,"CERFile\shell\add",,,"安装证书(&I)"
  191. HKCR,"CERFile\shell\add\command",,,"rundll32.exe cryptext.dll,CryptExtAddCER %%1"
  192. HKCR,"CERFile\shell\open\command",,,"rundll32.exe cryptext.dll,CryptExtOpenCER %%1"
  193. HKCR,".stl",,,"STLFile"
  194. HKCR,".stl","Content Type",,"application/vnd.ms-pki.stl"
  195. HKCR,"STLFile",,,"证书信任列表"
  196. HKCR,"STLFile","FriendlyTypeName",0x20000,"@%SystemRoot%\System32\cryptext.dll,-6109"
  197. HKCR,"STLFile\DefaultIcon",,0x20000,"%SystemRoot%\System32\cryptui.dll,-3413"
  198. HKCR,"STLFile\shell\add",,,"安装 CTL(&I)"
  199. HKCR,"STLFile\shell\add\command",,,"rundll32.exe cryptext.dll,CryptExtAddCTL %%1"
  200. HKCR,"STLFile\shell\open\command",,,"rundll32.exe cryptext.dll,CryptExtOpenCTL %%1"
  201. HKCR,".spc",,,"SPCFile"
  202. HKCR,".spc","Content Type",,"application/x-pkcs7-certificates"
  203. HKCR,"SPCFile",,,"PKCS #7 证书"
  204. HKCR,"SPCFile","FriendlyTypeName",0x20000,"@%SystemRoot%\System32\cryptext.dll,-6111"
  205. HKCR,"SPCFile\DefaultIcon",,0x20000,"%SystemRoot%\System32\cryptui.dll,-3410"
  206. HKCR,"SPCFile\shell\add",,,"安装证书(&I)"
  207. HKCR,"SPCFile\shell\add\command",,,"rundll32.exe cryptext.dll,CryptExtAddSPC %%1"
  208. HKCR,"SPCFile\shell\open\command",,,"rundll32.exe cryptext.dll,CryptExtOpenPKCS7 %%1"
  209. HKCR,"Applications\cryptext.dll","NoOpenWith",,""
  210. HKCR,"TypeLib\{7444C709-39BF-11D1-8CD9-00C04FC29D45}\1.0",,,"cryptext 1.0 Type Library"
  211. HKCR,"TypeLib\{7444C709-39BF-11D1-8CD9-00C04FC29D45}\1.0\0\win32",,,""%SystemRoot%\System32\cryptext.dll""
  212. HKCR,"TypeLib\{7444C709-39BF-11D1-8CD9-00C04FC29D45}\1.0\FLAGS",,,"0"
  213. HKCR,"TypeLib\{7444C709-39BF-11D1-8CD9-00C04FC29D45}\1.0\HELPDIR",,,"%SystemRoot%\system32"
  214. HKCR,".pfx",,,"PFXFile"
  215. HKCR,".pfx","Content Type",,"application/x-pkcs12"
  216. HKCR,"PFXFile",,,"Personal Information Exchange"
  217. HKCR,"PFXFile","FriendlyTypeName",0x20000,"@%SystemRoot%\System32\cryptext.dll,-6148"
  218. HKCR,"PFXFile\DefaultIcon",,0x20000,"%SystemRoot%\System32\cryptui.dll,-3425"
  219. HKCR,"PFXFile\shell\add",,,"安装 PFX(&I)"
  220. HKCR,"PFXFile\shell\add\command",,,"rundll32.exe cryptext.dll,CryptExtAddPFX %%1"
  221. HKCR,".p7r",,,"SPCFile"
  222. HKCR,".p7r","Content Type",,"application/x-pkcs7-certreqresp"
  223. HKCR,"P7RFile",,,"证书申请响应"
  224. HKCR,"P7RFile","FriendlyTypeName",0x20000,"@%SystemRoot%\System32\cryptext.dll,-6140"
  225. HKCR,"P7RFile\DefaultIcon",,0x20000,"%SystemRoot%\System32\cryptui.dll,-3410"
  226. HKCR,"P7RFile\shell\add",,,"安装证书(&I)"
  227. HKCR,"P7RFile\shell\add\command",,,"rundll32.exe cryptext.dll,CryptExtAddP7R %%1"
  228. HKCR,"P7RFile\shell\open\command",,,"rundll32.exe cryptext.dll,CryptExtOpenP7R %%1"
  229. HKCR,".p7s",,,"P7SFile"
  230. HKCR,".p7s","Content Type",,"application/pkcs7-signature"
  231. HKCR,"P7SFile",,,"PKCS #7 签名"
  232. HKCR,"P7SFile","FriendlyTypeName",0x20000,"@%SystemRoot%\System32\cryptext.dll,-6113"
  233. HKCR,"P7SFile\shell\open\command",,,"rundll32.exe cryptext.dll,CryptExtOpenPKCS7 %%1"
  234. HKCR,".p7m",,,"P7MFile"
  235. HKCR,".p7m","Content Type",,"application/pkcs7-mime"
  236. HKCR,"P7MFile",,,"PKCS #7 MIME 消息"
  237. HKCR,"P7MFile","FriendlyTypeName",0x20000,"@%SystemRoot%\System32\cryptext.dll,-6115"
  238. HKCR,".crl",,,"CRLFile"
  239. HKCR,".crl","Content Type",,"application/pkix-crl"
  240. HKCR,"CRLFile",,,"证书吊销列表"
  241. HKCR,"CRLFile","FriendlyTypeName",0x20000,"@%SystemRoot%\System32\cryptext.dll,-6110"
  242. HKCR,"CRLFile\DefaultIcon",,0x20000,"%SystemRoot%\System32\cryptui.dll,-3417"
  243. HKCR,"CRLFile\shell\add",,,"安装 CRL(&I)"
  244. HKCR,"CRLFile\shell\add\command",,,"rundll32.exe cryptext.dll,CryptExtAddCRL %%1"
  245. HKCR,"CRLFile\shell\open\command",,,"rundll32.exe cryptext.dll,CryptExtOpenCRL %%1"

  246. hkcu,"Software\Microsoft\Windows\CurrentVersion\Internet Settings","AutoConfigProxy",,"wininet.dll"
  247. hkcu,"Software\Microsoft\Windows\CurrentVersion\Internet Settings","EmailName",,"IEUser@"
  248. hkcu,"Software\Microsoft\Windows\CurrentVersion\Internet Settings","EnableHttp1_1",0x10001,01,00,00,00
  249. hkcu,"Software\Microsoft\Windows\CurrentVersion\Internet Settings","MimeExclusionListForCache",,"multipart/mixed multipart/x-mixed-replace multipart/x-byteranges "
  250. hkcu,"Software\Microsoft\Windows\CurrentVersion\Internet Settings","UseSchannelDirectly",0x1,01,00,00,00
  251. hkcu,"Software\Microsoft\Windows\CurrentVersion\Internet Settings","WarnOnPost",0x1,01,00,00,00

  252. [Base.Sweeper.AddReg]
  253. HKLM,"Software\Microsoft\Internet Explorer\Plugins",,2,
  254. HKLM,"Software\Microsoft\Internet Explorer\Plugins\Extension",,2,
  255. HKLM,"Software\Microsoft\Internet Explorer\Plugins\MIME",,2,
  256. HKLM,"Software\Microsoft\Internet Explorer\Plugins\PluginsPageFriendlyName",,2,"%ACTIVEX_GALLERY%"
  257. HKLM,"Software\Microsoft\Internet Explorer\Plugins\PluginsPage",,2,"%PLUGIN_PAGE%"
  258. HKCR,"CLSID\%CLSID_URL_DLL%",,2,"MIME and Internet Property Sheet Hook"
  259. HKCR,"CLSID\%CLSID_URL_DLL%\InProcServer32",,0x00020000,"%01%\url.dll"
  260. HKCR,"CLSID\%CLSID_URL_DLL%\InProcServer32","ThreadingModel",2,"Apartment"
  261. HKCR,"CLSID\%CLSID_URLMON%",,2,"UrlMon ProxyStub Factory"
  262. HKCR,"CLSID\%CLSID_URLMON%\InprocServer32",,0x00020000,"%SystemRoot%\system32\urlmon.dll"
  263. HKCR,"CLSID\%CLSID_IPersistMoniker%",,2,"IPersistMoniker"
  264. HKCR,"CLSID\%CLSID_IPersistMoniker%\ProxyStubClsid32",,2,"%CLSID_URLMON%"
  265. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings","CodeBaseSearchPath",2,"CODEBASE;<http://activex.microsoft.com/objects/ocget.dll>;<http://codecs.microsoft.com/isapi/ocget.dll>"
  266. HKLM,"Software\Classes\CLSID\{1a4da620-6217-11cf-be62-0080c72edd2d}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}",,2,
  267. HKLM,"Software\Classes\CLSID\{1a4da620-6217-11cf-be62-0080c72edd2d}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}",,2,
  268. HKLM,"Software\Microsoft\Internet Explorer\Main","Default_Page_URL",,"%START_PAGE%"
  269. HKLM,"Software\Microsoft\Internet Explorer\Main","Default_Search_URL",,"%SEARCH_PAGE_URL%"
  270. HKLM,"Software\Microsoft\Internet Explorer\Main","Search Page",,"%SEARCH_PAGE_URL%"
  271. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Special Paths\History","",2,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Url History"
  272. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Url History","DaysToKeep",3,14,00,00,00
  273. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Url History","CacheLimit",3,00,02,00,00
  274. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Url History","Directory",0x00020000,"%SystemRoot%\%HISTORY_DIR%"
  275. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Url History","CachePrefix",2,"Visited: "
  276. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache","FreshnessInterval",3,80,f4,03,00
  277. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache","CleanupFactor",3,19,00,00,00
  278. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache","CleanupTime",3,00,00,00,00
  279. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache","Persistent",3,01,00,00,00
  280. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache","CleanupInterval",3,80,51,01,00
  281. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache","DebugFlag",3,ff,ff,00,00
  282. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths","Paths",3,04,00,00,00
  283. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths","Directory",0x00020002,"%SystemRoot%\%CACHE_DIR%"
  284. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths","Size",3,24,01,00,00
  285. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path1","CacheLimit",3,00,20,00,00
  286. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path1","CachePath",0x00020000,"%SystemRoot%\%CACHE_DIR%\cache1"
  287. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path2","CacheLimit",3,00,20,00,00
  288. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path2","CachePath",0x00020000,"%SystemRoot%\%CACHE_DIR%\cache2"
  289. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path3","CacheLimit",3,00,20,00,00
  290. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path3","CachePath",0x00020000,"%SystemRoot%\%CACHE_DIR%\cache3"
  291. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path4","CacheLimit",3,00,20,00,00
  292. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path4","CachePath",0x00020000,"%SystemRoot%\%CACHE_DIR%\cache4"
  293. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Special Paths\Cookies","Directory",0x00020000,"%USERPROFILE%\Cookies"
  294. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Special Paths\Cookies","CachePrefix",2,"Cookie:"
  295. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Special Paths\Cookies","CacheLimit",3,00,04,00,00
  296. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Accepted Documents","0",0,"image/gif"
  297. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Accepted Documents","1",0,"image/x-xbitmap"
  298. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Accepted Documents","2",0,"image/jpeg"
  299. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Accepted Documents","3",0,"image/pjpeg"
  300. HKLM,"Software\Microsoft\Internet Explorer\Document Caching","Number",3,04,00,00,00
  301. HKLM,"Software\Microsoft\Internet Explorer\Image Caching","Number",3,04,00,00,00
  302. HKLM,"Software\Microsoft\Internet Explorer\Main","Enable_Disk_Cache",2,"yes"
  303. HKLM,"Software\Microsoft\Internet Explorer\Main","Cache_Percent_of_Disk",3,0A,00,00,00
  304. HKLM,"Software\Microsoft\Internet Explorer\Main","Delete_Temp_Files_On_Exit",2,"yes"
  305. HKLM,"Software\Microsoft\Internet Explorer\Main","Local Page",0x00020000,"%SystemRoot%\system32\blank.htm"
  306. HKLM,"Software\Microsoft\Internet Explorer\Main","Anchor_Visitation_Horizon",3,01,00,00,00
  307. HKLM,"Software\Microsoft\Internet Explorer\Main","Use_Async_DNS",2,"yes"
  308. HKLM,"Software\Microsoft\Internet Explorer\Main","Placeholder_Width",3,1A,00,00,00
  309. HKLM,"Software\Microsoft\Internet Explorer\Main","Placeholder_Height",3,1A,00,00,00
  310. HKLM,"Software\Microsoft\Internet Explorer\Styles","Count_Style_Sheets",3,05,00,00,00
  311. HKLM,"Software\Microsoft\Internet Explorer\PrintAppletsOnFEWin95",,""
  312. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Last Update\IEXPLOREV4","CurrentVerTimestamp",0,"Sun,21 April 1996 01:00:00 GMT"
  313. HKLM,"Software\Microsoft\Windows\CurrentVersion","WallPaperDir",0x00020002,"%SystemRoot%\Web\%LWallpaper%"
  314. HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\DefaultPrefix",,2,"http://"
  315. HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\Prefixes","ftp",2,"ftp://"
  316. HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\Prefixes","gopher",2,"gopher://"
  317. HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\Prefixes","home",2,"http://"
  318. HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\Prefixes","mosaic",2,"http://"
  319. HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\Prefixes","www",2,"http://"
  320. HKLM,"Software\Microsoft\Internet Explorer\Security\MSN","Flags",1,0A,00,00,00
  321. HKLM,"Software\Microsoft\Internet Explorer\Security\NTLM","Flags",1,08,00,00,00
  322. HKLM,"Software\Microsoft\Internet Explorer\Security\DPA","Flags",1,1A,00,00,00
  323. HKLM,"Software\Microsoft\Internet Explorer\Security\Negotiate","Flags",1,18,00,00,00
  324. HKCR,"exefile","EditFlags",3,D8,07,00,00
  325. HKCR,"AutoProxyTypes"
  326. HKCR,"AutoProxyTypes\Application/x-internet-signup","Default",1,00,00,00,00
  327. HKCR,"AutoProxyTypes\Application/x-internet-signup","FileExtensions",,".ins"
  328. HKCR,"AutoProxyTypes\Application/x-ns-proxy-autoconfig","Default",1,01,00,00,00
  329. HKCR,"AutoProxyTypes\Application/x-ns-proxy-autoconfig","DllFile",0x00020000,"%01%\jsproxy.dll"
  330. HKCR,"AutoProxyTypes\Application/x-ns-proxy-autoconfig","FileExtensions",,".pac;.jvs;.js"
  331. HKCR,"AutoProxyTypes\application/x-ns-proxy-autoconfig","Flags",1,01,00,00,00
  332. HKCR,".exe","Content Type",2,"application/x-msdownload"
  333. HKCR,".dll","Content Type",2,"application/x-msdownload"
  334. HKCR,".tiff","Content Type",2,"image/tiff"
  335. HKCR,".tif","Content Type",2,"image/tiff"
  336. HKCR,"MIME\Database\Content Type\image/tiff","Extension",2,".tiff"
  337. HKCR,"MIME\Database\Content Type\application/x-mix-transfer","Extension",2,".nix"
  338. HKCR,"MIME\Database\Content Type\application/x-mix-transfer","CLSID",2,"{10000000-0000-0000-0000-000000000001}"
  339. HKCR,".tar","Content Type",,"application/x-tar"
  340. HKCR,"MIME\Database\Content Type\application/x-tar","Extension",,".tar"
  341. HKCR,".tgz","Content Type",,"application/x-compressed"
  342. HKCR,"MIME\Database\Content Type\application/x-compressed","Extension",,".tgz"
  343. HKCR,".man","Content Type",,"application/x-troff-man"
  344. HKCR,"MIME\Database\Content Type\application/x-troff-man","Extension",,".man"
  345. HKCR,".latex","Content Type",,"application/x-latex"
  346. HKCR,"MIME\Database\Content Type\application/x-latex","Extension",,".latex"
  347. HKCR,".ps","Content Type",,"application/postscript"
  348. HKCR,".eps","Content Type",,"application/postscript"
  349. HKCR,".ai","Content Type",,"application/postscript"
  350. HKCR,"MIME\Database\Content Type\application/postscript","Extension",,".ps"
  351. HKCR,".sit","Content Type",,"application/x-stuffit"
  352. HKCR,"MIME\Database\Content Type\application/x-stuffit","Extension",,".sit"
  353. HKCR,".hqx","Content Type",,"application/mac-binhex40"
  354. HKCR,"MIME\Database\Content Type\application/mac-binhex40","Extension",,".hqx"
  355. HKCR,".fif","Content Type",,"application/fractals"
  356. HKCR,"MIME\Database\Content Type\application/fractals","Extension",,".fif"
  357. HKCR,".zip","Content Type",,"application/x-zip-compressed"
  358. HKCR,"MIME\Database\Content Type\application/x-zip-compressed","Extension",,".zip"
  359. HKCR,".gz","Content Type",,"application/x-gzip"
  360. HKCR,"MIME\Database\Content Type\application/x-gzip","Extension",,".gz"
  361. HKCR,".z","Content Type",,"application/x-compress"
  362. HKCR,"MIME\Database\Content Type\application/x-compress","Extension",,".z"
  363. HKLM,"Software\Classes\CLSID\{00022602-0000-0000-C000-000000000046}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}","",2,""
  364. HKLM,"Software\Classes\CLSID\{00022602-0000-0000-C000-000000000046}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}","",2,""
  365. HKLM,"Software\Classes\CLSID\{00022603-0000-0000-C000-000000000046}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}","",2,""
  366. HKLM,"Software\Classes\CLSID\{00022603-0000-0000-C000-000000000046}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}","",2,""
  367. HKLM,"Software\Classes\CLSID\{00020C01-0000-0000-C000-000000000046}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}","",2,""
  368. HKLM,"Software\Classes\CLSID\{00020C01-0000-0000-C000-000000000046}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}","",2,""
  369. HKLM,"Software\Microsoft\Internet Explorer\EmbedExtnToClsidMappings\.dcr",,2,"clsid:166B1BCA-3F9C-11CF-8075-444553540000"
  370. HKLM,"Software\Microsoft\Internet Explorer\EmbedExtnToClsidMappings\.dir",,2,"clsid:166B1BCA-3F9C-11CF-8075-444553540000"
  371. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00022601-0000-0000-C000-000000000046}","Compatibility Flags",0x00010001,0x400
  372. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00022602-0000-0000-C000-000000000046}","Compatibility Flags",0x00010001,0x400
  373. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00022603-0000-0000-C000-000000000046}","Compatibility Flags",0x00010001,0x400
  374. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0003000E-0000-0000-C000-000000000046}","Compatibility Flags",0x00010001,0x400
  375. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1141B704-053E-11D0-9DF0-00C04FD7BF41}","Compatibility Flags",0x00010001,0x400
  376. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{183C259A-0480-11d1-87EA-00C04FC29D46}","Compatibility Flags",0x00010001,0x400
  377. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1fb464c8-09bb-4017-a2f5-eb742f04392f}","Compatibility Flags",0x00010001,0x400
  378. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{29c13b62-b9f7-4cd3-8cef-0a58a1a99441}","Compatibility Flags",0x00010001,0x400
  379. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{791fa017-2de3-492e-acc5-53c67a2b94d0}","Compatibility Flags",0x00010001,0x400
  380. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{81361143-FAF9-11D3-B0D3-00C04F612FF1}","Compatibility Flags",0x00010001,0x400
  381. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{81361146-FAF9-11D3-B0D3-00C04F612FF1}","Compatibility Flags",0x00010001,0x400
  382. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{81361149-FAF9-11D3-B0D3-00C04F612FF1}","Compatibility Flags",0x00010001,0x400
  383. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8136114B-FAF9-11D3-B0D3-00C04F612FF1}","Compatibility Flags",0x00010001,0x400
  384. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8136114D-FAF9-11D3-B0D3-00C04F612FF1}","Compatibility Flags",0x00010001,0x400
  385. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8136114F-FAF9-11D3-B0D3-00C04F612FF1}","Compatibility Flags",0x00010001,0x400
  386. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{81361152-FAF9-11D3-B0D3-00C04F612FF1}","Compatibility Flags",0x00010001,0x400
  387. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{81361155-FAF9-11D3-B0D3-00C04F612FF1}","Compatibility Flags",0x00010001,0x400
  388. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{886E7BF0-C867-11CF-B1AE-00AA00A3F2C3}","Compatibility Flags",0x00010001,0x400
  389. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9088E688-063A-4806-A3DB-6522712FC061}","Compatibility Flags",0x00010001,0x400
  390. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{931a8c29-3ea9-494d-91e7-22e9a9247687}","Compatibility Flags",0x00010001,0x400
  391. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{99B42120-6EC7-11CF-A6C7-00AA00A47DD2}","Compatibility Flags",0x00010001,0x400
  392. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E87A6788-1D0F-4444-8898-1D25829B6755}","Compatibility Flags",0x00010001,0x400
  393. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{69DEAF94-AF66-11D3-BEC0-00105AA9B6AE}","Compatibility Flags",0x00010001,0x400
  394. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D32C3BAD-5213-49BD-A7D5-E6DE6C0D8249}","Compatibility Flags",0x00010001,0x400
  395. HKLM,"Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4B106874-DD36-11D0-8B44-00A024DD9EFF}","Compatibility Flags",0x00010001,0x400
  396. [Sweeper.AddReg]
  397. HKLM,"Software\Microsoft\Windows NT\CurrentVersion\Winlogon","shell",,"Explorer.exe"
  398. [Shell.BrowserReg]
  399. HKLM,"System\CurrentControlSet\Services\inetaccs",,2,""
  400. HKLM,"System\CurrentControlSet\Services\inetaccs\Parameters",,2,""
  401. [TextConverter.AddReg]
  402. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Export\HTML","Extensions",2,"%TextCnv_Exp_Ext%"
  403. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Export\HTML","Name",2,"%TextCnv_Exp_Name%"
  404. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Export\HTML","Path",0,"%ProgramFiles%\Common Files\Microsoft Shared\TextConv\html32.cnv"
  405. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\HTML","Extensions",2,"%TextCnv_Imp_Ext%"
  406. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\HTML","Name",2,"%TextCnv_Imp_Name%"
  407. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\HTML","Path",0,"%ProgramFiles%\Common Files\Microsoft Shared\TextConv\html32.cnv"
  408. HKLM,"Software\Microsoft\Shared Tools\HTML\Clients","Name",2,"HTML Document"
  409. HKLM,"Software\Microsoft\Shared Tools Location","TEXTCONV",2,"%ProgramFiles%\Common Files\Microsoft Shared\TextConv"
  410. HKLM,"Software\Microsoft\Shared Tools\HTML\Clients","%01%\iexplore.exe",2,""
  411. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWord6.wpc","Extensions",2,"doc"
  412. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWord6.wpc","Name",2,"%WORD_TYPES%"
  413. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWord6.wpc","Path",0,"%ProgramFiles%\Common Files\Microsoft Shared\TextConv\mswrd632.wpc"
  414. HKLM,"Software\Microsoft\Shared Tools\MSWord6.wpc\Clients","%ProgramFiles%\Windows NT\%Accessories%\wordpad.exe",2,""
  415. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWord8","Extensions",2,"doc"
  416. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWord8","Name",2,"Word 97"
  417. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWord8","Path",0,"%ProgramFiles%\Common Files\Microsoft Shared\TextConv\mswrd832.cnv"
  418. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWord8\NoDialogs"
  419. HKLM,"Software\Microsoft\Shared Tools\MSWord8\Clients","%ProgramFiles%\Windows NT\%Accessories%\wordpad.exe",2,""
  420. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWinWrite.wpc","Extensions",2,"wri"
  421. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWinWrite.wpc","Name",2,"Windows Write"
  422. HKLM,"Software\Microsoft\Shared Tools\Text Converters\Import\MSWinWrite.wpc","Path",0,"%ProgramFiles%\Common Files\Microsoft Shared\TextConv\write32.wpc"
  423. HKLM,"Software\Microsoft\Shared Tools\MSWinWrite.wpc\Clients","%ProgramFiles%\Windows NT\%Accessories%\wordpad.exe",2,""

  424. [AddReg.WSH]
  425. HKLM, "Software\Microsoft\Windows Script Host\Settings","DisplayLogo",,"1"
  426. HKLM, "Software\Microsoft\Windows Script Host\Settings","ActiveDebugging",,"1"
  427. HKLM, "Software\Microsoft\Windows Script Host\Settings","SilentTerminate",,"0"
  428. HKLM, "Software\Microsoft\Windows Script Host\Settings","UseWINSAFER",,"1"

  429. ; Shell Extension
  430. HKLM, "Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved","{60254CA5-953B-11CF-8C96-00AA00B8708C}",,"%DESC_WSHEXT%"

  431. ; .WSH
  432. HKCR, ".WSH","",,"WSHFile"
  433. HKCR, "WSHFile","",,"%DESC_DOTWSH%"
  434. HKCR, "WSHFile","FriendlyTypeName",0x00020000,"@%01%\%FILE_WSHEXT%,-4800"
  435. HKCR, "WSHFile","IsShortcut",,"Yes"
  436. HKCR, "WSHFile\DefaultIcon","",0x00020000,"%01%\WScript.exe,1"
  437. HKCR, "WSHFile\Shell\Open","",,"%MENU_OPEN%"
  438. HKCR, "WSHFile\Shell\Open\Command",,0x00020000,"%01%\WScript.exe ""%1"" %*"
  439. HKCR, "WSHFile\Shell\Open2","",,"%MENU_CONOPEN%"
  440. HKCR, "WSHFile\Shell\Open2\Command","",0x00020000,"%01%\CScript.exe ""%1"" %*"
  441. HKCR, "WSHFile\ShellEx\PropertySheetHandlers\WSHProps","",,"%CLSID_WSHEXT%"
  442. HKCR, "WSHFile\ShellEx\DropHandler","",,"%CLSID_WSHEXT%"

  443. ; .VBS
  444. HKCR, ".VBS","",,"VBSFile"
  445. HKCR, "VBSFile","",,"%DESC_DOTVBS%"
  446. HKCR, "VBSFile","FriendlyTypeName",0x00020000,"@%01%\%FILE_WSHEXT%,-4802"
  447. HKCR, "VBSFile\DefaultIcon","",0x00020000,"%01%\WScript.exe,2"
  448. HKCR, "VBSFile\ScriptEngine","",,"VBScript"
  449. HKCR, "VBSFile\Shell\Open","",,"%MENU_OPEN%"
  450. HKCR, "VBSFile\Shell\Open\Command","",0x00020000,"%01%\WScript.exe ""%1"" %*"
  451. HKCR, "VBSFile\Shell\Open2","",,"%MENU_CONOPEN%"
  452. HKCR, "VBSFile\Shell\Open2\Command","",0x00020000,"%01%\CScript.exe ""%1"" %*"
  453. HKCR, "VBSFile\Shell\Edit","",,"%MENU_EDIT%"
  454. HKCR, "VBSFile\Shell\Edit\Command","",0x00020000,"%WinDir%\System32\Notepad.exe %1"
  455. HKCR, "VBSFile\ShellEx\PropertySheetHandlers\WSHProps","",,"%CLSID_WSHEXT%"
  456. HKCR, "VBSFile\ShellEx\DropHandler","",,"%CLSID_WSHEXT%"
复制代码

作者: 1400700226    时间: 2017-1-17 16:30
ie.inf  太长,这是接下来的部分:

  1. ; .VBE
  2. HKCR, ".VBE","",,"VBEFile"
  3. HKCR, "VBEFile","",,"%DESC_DOTVBE%"
  4. HKCR, "VBEFile","FriendlyTypeName",0x00020000,"@%01%\%FILE_WSHEXT%,-4803"
  5. HKCR, "VBEFile\DefaultIcon","",0x00020000,"%01%\WScript.exe,2"
  6. HKCR, "VBEFile\ScriptEngine","",,"VBScript.Encode"
  7. HKCR, "VBEFile\Shell\Open","",,"%MENU_OPEN%"
  8. HKCR, "VBEFile\Shell\Open\Command","",0x00020000,"%01%\WScript.exe ""%1"" %*"
  9. HKCR, "VBEFile\Shell\Open2","",,"%MENU_CONOPEN%"
  10. HKCR, "VBEFile\Shell\Open2\Command","",0x00020000,"%01%\CScript.exe ""%1"" %*"
  11. HKCR, "VBEFile\Shell\Edit","",,"%MENU_EDIT%"
  12. HKCR, "VBEFile\Shell\Edit\Command","",0x00020000,"%WinDir%\System32\Notepad.exe %1"
  13. HKCR, "VBEFile\ShellEx\PropertySheetHandlers\WSHProps","",,"%CLSID_WSHEXT%"
  14. HKCR, "VBEFile\ShellEx\DropHandler","",,"%CLSID_WSHEXT%"

  15. ; .JS
  16. HKCR, ".JS","",,"JSFile"
  17. HKCR, "JSFile","",,"%DESC_DOTJS%"
  18. HKCR, "JSFile","FriendlyTypeName",0x00020000,"@%01%\%FILE_WSHEXT%,-4804"
  19. HKCR, "JSFile\DefaultIcon","",0x00020000,"%01%\WScript.exe,3"
  20. HKCR, "JSFile\ScriptEngine","",,"JScript"
  21. HKCR, "JSFile\Shell\Open","",,"%MENU_OPEN%"
  22. HKCR, "JSFile\Shell\Open\Command","",0x00020000,"%01%\WScript.exe ""%1"" %*"
  23. HKCR, "JSFile\Shell\Open2","",,"%MENU_CONOPEN%"
  24. HKCR, "JSFile\Shell\Open2\Command","",0x00020000,"%01%\CScript.exe ""%1"" %*"
  25. HKCR, "JSFile\Shell\Edit","",,"%MENU_EDIT%"
  26. HKCR, "JSFile\Shell\Edit\Command","",0x00020000,"%WinDir%\System32\Notepad.exe %1"
  27. HKCR, "JSFile\ShellEx\PropertySheetHandlers\WSHProps","",,"%CLSID_WSHEXT%"
  28. HKCR, "JSFile\ShellEx\DropHandler","",,"%CLSID_WSHEXT%"

  29. ; .JSE
  30. HKCR, ".JSE","",,"JSEFile"
  31. HKCR, "JSEFile","",,"%DESC_DOTJSE%"
  32. HKCR, "JSEFile","FriendlyTypeName",0x00020000,"@%01%\%FILE_WSHEXT%,-4805"
  33. HKCR, "JSEFile\DefaultIcon","",0x00020000,"%01%\WScript.exe,3"
  34. HKCR, "JSEFile\ScriptEngine","",,"JScript.Encode"
  35. HKCR, "JSEFile\Shell\Open","",,"%MENU_OPEN%"
  36. HKCR, "JSEFile\Shell\Open\Command","",0x00020000,"%01%\WScript.exe ""%1"" %*"
  37. HKCR, "JSEFile\Shell\Open2","",,"%MENU_CONOPEN%"
  38. HKCR, "JSEFile\Shell\Open2\Command","",0x00020000,"%01%\CScript.exe ""%1"" %*"
  39. HKCR, "JSEFile\Shell\Edit","",,"%MENU_EDIT%"
  40. HKCR, "JSEFile\Shell\Edit\Command","",0x00020000,"%WinDir%\System32\Notepad.exe %1"
  41. HKCR, "JSEFile\ShellEx\PropertySheetHandlers\WSHProps","",,"%CLSID_WSHEXT%"
  42. HKCR, "JSEFile\ShellEx\DropHandler","",,"%CLSID_WSHEXT%"

  43. ; .WSF
  44. HKCR, ".WSF","",,"WSFFile"
  45. HKCR, "WSFFile","",,"%DESC_DOTWS%"
  46. HKCR, "WSFFile","FriendlyTypeName",0x00020000,"@%01%\%FILE_WSHEXT%,-4801"
  47. HKCR, "WSFFile\DefaultIcon","",0x00020000,"%01%\WScript.exe,2"
  48. HKCR, "WSFFile\Shell\Open","",,"%MENU_OPEN%"
  49. HKCR, "WSFFile\Shell\Open\Command","",0x00020000,"%01%\WScript.exe ""%1"" %*"
  50. HKCR, "WSFFile\Shell\Open2","",,"%MENU_CONOPEN%"
  51. HKCR, "WSFFile\Shell\Open2\Command","",0x00020000,"%01%\CScript.exe ""%1"" %*"
  52. HKCR, "WSFFile\Shell\Edit","",,"%MENU_EDIT%"
  53. HKCR, "WSFFile\Shell\Edit\Command","",0x00020000,"%WinDir%\System32\Notepad.exe %1"
  54. HKCR, "WSFFile\ShellEx\PropertySheetHandlers\WSHProps","",,"%CLSID_WSHEXT%"
  55. HKCR, "WSFFile\ShellEx\DropHandler","",,"%CLSID_WSHEXT%"

  56. ; .WSC (Patch)
  57. HKCR, "scriptletfile","FriendlyTypeName",0x00020000,"@%WinDir%\System32\%FILE_SCROBJ%,-8192"

  58. [DelReg.WSH]
  59. HKLM, "Software\Microsoft\Windows\CurrentVersion\Setup\OC Manager\Subcomponents","wsh_core"
  60. [Channel]
  61. 0409=chlen_us.inf,chlen_us.cab
  62. [Base.DelReg]
  63. HKLM,"Software\Microsoft\Windows\CurrentVersion\explorer\Desktop\NameSpace\{FBF23B42-E3F0-101B-8488-00AA003E56F8}"
  64. HKLM,"Software\Microsoft\Windows\CurrentVersion\explorer\Desktop\NameSpace\FBF23B42-E3F0-101B-8488-00AA003E56F8"
  65. HKCR,Shell.Browser
  66. HKCR,Shell.Browser.1
  67. HKCR,"news\shell\open\ddeexec"
  68. HKCR,"CLSID\%CLSID_HLinkPSFactory%"
  69. HKCR,"Interface\%CLSID_HLinkPSFactory%"
  70. HKCR,"Interface\%CLSID_IBindStatusCallback%"
  71. HKCR,"Interface\%CLSID_IHlinkSite%"
  72. HKCR,"Interface\%CLSID_IHlink%"
  73. HKCR,"Interface\%CLSID_IHlinkSource%"
  74. HKCR,"Interface\%CLSID_IHlinkFrame%"
  75. HKCR,"Interface\%CLSID_IEnumHLINKITEM%"
  76. HKCR,"Interface\%CLSID_IHlinkBrowseContext%"
  77. HKCR,"Interface\%CLSID_IHlinkHistory%"
  78. HKCR,"Interface\%CLSID_IPersistMoniker%"
  79. HKCR,"Interface\%CLSID_IFile%"
  80. HKCR,"CLSID\{4B106874-DD36-11D0-8B44-00A024DD9EFF}"
  81. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\cache1"
  82. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\cache2"
  83. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\cache3"
  84. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\cache4"
  85. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path5"
  86. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path6"
  87. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path7"
  88. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Paths\path8"
  89. HKLM,"System\CurrentControlSet\control\SecurityProviders\Schannel\CertificationAuthorities\internetMCI Mall"
  90. HKLM,"Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\DockingWindows\Microsoft.Ticker"
  91. HKLM,"Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\DockingWindows\Microsoft.DesktopChannel"
  92. HKLM,"Software\Microsoft\Internet Explorer\Main","Default Channels"
  93. HKLM,"Software\Microsoft\Internet Explorer\Main","Additional Channels"
  94. HKLM,"Software\Microsoft\Internet Explorer\SecurityProtocols","Basic"
  95. HKLM,"Software\Microsoft\Internet Explorer\Styles"
  96. HKLM,"Software\Microsoft\Active Setup\JITInfo\5"
  97. HKLM,"Software\Microsoft\Internet Explorer\Help_Menu_URLs","3"
  98. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings","MinorVersion"
  99. HKLM,"Software\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4383}","QFEVersion"
  100. HKLM,"Software\Microsoft\Internet Explorer\MediaTypeClass\{00000000-0000-0000-0000-000000000000}","audio/wav"
  101. HKLM,"Software\Microsoft\Windows\CurrentVersion\Uninstall\IE3 SecurityLnkUpdate"
  102. HKLM,"Software\Microsoft\Windows\CurrentVersion\Uninstall\InternetExplorer"
  103. HKLM,"Software\Microsoft\Windows\CurrentVersion\Uninstall\IE40"
  104. HKLM,"Software\Microsoft\Windows\CurrentVersion\Uninstall\IE40RemovBak"
  105. HKLM,"Software\Microsoft\Windows\CurrentVersion\Uninstall\IE4Shell"
  106. HKLM,"Software\Microsoft\Windows\CurrentVersion\Uninstall\IEDW"
  107. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings","User Agent"
  108. HKLM,"Software\Microsoft\Windows\CurrentVersion\Run","UserDataUninstall"
  109. HKLM,"Software\Microsoft\Windows\CurrentVersion\Run","BrowserWebCheck"
  110. HKLM,"Software\Microsoft\Windows\CurrentVersion\Explorer\FindExtensions\{97E2C371-FDDD-11CF-807F-02608C8D98DF}"
  111. HKCR,"CLSID\{97E2C371-FDDD-11CF-807F-02608C8D98DF}"
  112. HKLM,"Software\Microsoft\Windows\CurrentVersion\Internet Settings\User Agent\Post Platform","DigExt"
  113. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chl99","StubPath"
  114. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-us","StubPath"
  115. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlja-jp","StubPath"
  116. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlcs-cz","StubPath"
  117. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlda-dk","StubPath"
  118. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlde-at","StubPath"
  119. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlde-ch","StubPath"
  120. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlde-de","StubPath"
  121. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlel-gr","StubPath"
  122. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-au","StubPath"
  123. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-bb","StubPath"
  124. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-bz","StubPath"
  125. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-ca","StubPath"
  126. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-gy","StubPath"
  127. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-ie","StubPath"
  128. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-jm","StubPath"
  129. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-me","StubPath"
  130. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-nz","StubPath"
  131. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-ph","StubPath"
  132. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-sr","StubPath"
  133. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-tt","StubPath"
  134. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-uk","StubPath"
  135. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlen-za","StubPath"
  136. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-ar","StubPath"
  137. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-cl","StubPath"
  138. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-co","StubPath"
  139. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-cr","StubPath"
  140. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-do","StubPath"
  141. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-es","StubPath"
  142. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-gt","StubPath"
  143. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-hn","StubPath"
  144. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-mx","StubPath"
  145. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-ni","StubPath"
  146. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-pa","StubPath"
  147. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-pe","StubPath"
  148. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-pr","StubPath"
  149. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-sv","StubPath"
  150. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-uy","StubPath"
  151. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chles-ve","StubPath"
  152. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlfi-fi","StubPath"
  153. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlfr-be","StubPath"
  154. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlfr-ch","StubPath"
  155. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlfr-fr","StubPath"
  156. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlhi-in","StubPath"
  157. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlhr-hr","StubPath"
  158. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlhu-hu","StubPath"
  159. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlin-id","StubPath"
  160. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlit-it","StubPath"
  161. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlko-kr","StubPath"
  162. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlml-my","StubPath"
  163. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlnl-be","StubPath"
  164. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlnl-nl","StubPath"
  165. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlno-no","StubPath"
  166. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlpl-pl","StubPath"
  167. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlpt-br","StubPath"
  168. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlpt-pt","StubPath"
  169. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlru-ru","StubPath"
  170. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlsl-si","StubPath"
  171. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlsv-se","StubPath"
  172. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlth-th","StubPath"
  173. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chltr-tr","StubPath"
  174. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlzh-cn","StubPath"
  175. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlzh-hk","StubPath"
  176. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlzh-sg","StubPath"
  177. HKLM,"Software\Microsoft\Active Setup\Installed Components\Chlzh-tw","StubPath"
  178. HKLM,"Software\Microsoft\Active Setup\Installed Components\ChlOEM","StubPath"
  179. HKLM,"SOFTWARE\Microsoft\Internet Explorer\Extensions\{9239E4EC-C9A6-11D2-A844-00C04F68D538}"
  180. HKCR,"CLSID\{864B4D50-3B9A-11D2-B8DB-00C04FA3471C}"
  181. HKLM,"Software\Clients\StartMenuInternet\Internet Explorer"
  182. [Base.StartMenu.UpdateIni]
  183. setup.ini,progman.groups,,"IE_INTERNET=%MSIEXPLORE_PROGGROUP%"
  184. setup.ini,IE_INTERNET,,""%MSINETWIZ_DESC%"",,,
  185. setup.ini,progman.groups,,"X_GROUP="
  186. setup.ini,X_GROUP,,""%MSIEXPLORE_DESC%""
  187. setup.ini,X_GROUP,,""Windows Explorer""
  188. setup.ini,progman.groups,,"IECOMPAT=%MSIEXPLORE_DESC%"
  189. setup.ini,IECOMPAT,,""%MSIEXPLORE_COMPAT%""
  190. [IEAccess.Reg]
  191. %01%,,rundll32.exe,,,"iesetup.dll,IEAccessSysInst 0"
  192. [Strings]
  193. ASETUP_LOCALE="cn"
  194. ASETUP_BASE_DESC="Internet Explorer 6"
  195. ASETUP_SHELL_DESC="Windows 桌面更新"
  196. ASETUP_ADVAUTH_DESC="高级制作"
  197. ASETUP_AOLSUPP_DESC="AOL 支持文件"
  198. ASETUP_DAJAVA_DESC="DirectAnimation Java 类"
  199. ASETUP_DDRAWEX_DESC="DirectDrawEx"
  200. ASETUP_EXTRAPK_DESC="浏览增强组件"
  201. ASETUP_FONTCORE_DESC="Internet Explorer 核心字体"
  202. ASETUP_GSETUP_DESC="Internet Explorer 安装工具"
  203. ASETUP_HELPCONT_DESC="Internet Explorer 帮助"
  204. ASETUP_HTMLHELP_DESC="HTML 帮助"
  205. ASETUP_MSNAUTH_DESC="MSN 站点访问"
  206. ASETUP_OFFLINE_DESC="脱机浏览软件包"
  207. ASETUP_TRIDATA_DESC="动态 HTML 数据捆绑"
  208. ASETUP_TRIJAVA_DESC="Java 的动态 HTML 数据捆绑"
  209. ASETUP_USP10_DESC="Uniscribe"
  210. ASETUP_VBSCRIPT_DESC="Visual Basic 脚本支持"
  211. ASETUP_DIRECTX_DESC="DirectX"
  212. ASETUP_IEJAVA_DESC="IEJAVA"
  213. ASETUP_BRANDING_DESC="浏览器自定义组件"
  214. TextCnv_Imp_Name="HTML 文档"
  215. TextCnv_Imp_Ext="htm html htx otm"
  216. TextCnv_Exp_Name="HTML 文档"
  217. TextCnv_Exp_Ext="htm html htx"
  218. ProgramF="Program Files"
  219. MSIE4="Internet Explorer"
  220. SharedTools="Common Files\Microsoft Shared"
  221. TextConverter="Common Files\Microsoft Shared\TextConv"
  222. Cursors="Cursors"
  223. Wallpaper="Wallpaper"
  224. Accessories="Accessories"
  225. LProgramF="Program Files"
  226. LMSIE4="Internet Explorer"
  227. LWallpaper="Wallpaper"
  228. Communications_GROUP="附件\通讯"
  229. OLDHOMENETWORK_DESC="家庭网络向导"
  230. HOMENETWORK_DESC="网络安装向导"
  231. CACHE_DIR="Temporary Internet Files"
  232. CLSID_IE_App="{0002DF01-0000-0000-C000-000000000046}"
  233. CLSID_IE_TypeLib="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
  234. CLSID_URLMON="{79eac9f1-baf9-11ce-8c82-00aa004ba90b}"
  235. CLSID_IPersistMoniker="{79eac9c9-baf9-11ce-8c82-00aa004ba90b}"
  236. CLSID_HLinkPSFactory="{79eac9c0-baf9-11ce-8c82-00aa004ba90b}"
  237. CLSID_IBindStatusCallback="{79eac9c1-baf9-11ce-8c82-00aa004ba90b}"
  238. CLSID_IHlinkSite="{79eac9c2-baf9-11ce-8c82-00aa004ba90b}"
  239. CLSID_IHlink="{79eac9c3-baf9-11ce-8c82-00aa004ba90b}"
  240. CLSID_IHlinkSource="{79eac9c4-baf9-11ce-8c82-00aa004ba90b}"
  241. CLSID_IHlinkFrame="{79eac9c5-baf9-11ce-8c82-00aa004ba90b}"
  242. CLSID_IEnumHLINKITEM="{79eac9c6-baf9-11ce-8c82-00aa004ba90b}"
  243. CLSID_IHlinkBrowseContext="{79eac9c7-baf9-11ce-8c82-00aa004ba90b}"
  244. CLSID_IHlinkHistory="{79eac9c8-baf9-11ce-8c82-00aa004ba90b}"
  245. CLSID_IFile="{79eac9ca-baf9-11ce-8c82-00aa004ba90b}"
  246. CLSID_DesktopIcon="{FBF23B42-E3F0-101B-8488-00AA003E56F8}"
  247. CLSID_NewsShortcut="{FBF23B40-E3F0-101B-8488-00AA003E56F8}"
  248. CLSID_URL_DLL="{FBF23B41-E3F0-101B-8488-00AA003E56F8}"
  249. CLSID_IESHELL="{89820200-ECBD-11cf-8B85-00AA005B4340}"
  250. CLSID_ADVAUTH="{4278c270-a269-11d1-b5bf-0000f8051515}"
  251. CLSID_AOLSUPP="{47f67d00-9e55-11d1-baef-00c04fc2d130}"
  252. CLSID_DAJAVA="{4f216970-c90c-11d1-b5c7-0000f8051515}"
  253. CLSID_DDRAWEX="{44BBA855-CC51-11CF-AAFA-00AA00B6015F}"
  254. CLSID_EXTRAPK="{630b1da0-b465-11d1-9948-00c04f98bbc9}"
  255. CLSID_FONTCORE="{C9E9A340-D1F1-11D0-821E-444553540600}"
  256. CLSID_GSETUP="{5fd399c0-a70a-11d1-9948-00c04f98bbc9}"
  257. CLSID_HELPCONT="{45ea75a0-a269-11d1-b5bf-0000f8051515}"
  258. CLSID_HTMLHELP="{de5aed00-a4bf-11d1-9948-00c04f98bbc9}"
  259. CLSID_MSNAUTH="{6fab99d0-bab8-11d1-994a-00c04f98bbc9}"
  260. CLSID_OFFLINE="{3af36230-a269-11d1-b5bf-0000f8051515}"
  261. CLSID_TRIDATA="{9381D8F2-0288-11D0-9501-00AA00B911A5}"
  262. CLSID_TRIJAVA="{36f8ec70-c29a-11d1-b5c7-0000f8051515}"
  263. CLSID_USP10="{3bf42070-b3b1-11d1-b5c5-0000f8051515}"
  264. CLSID_VBSCRIPT="{4f645220-306d-11d2-995d-00c04f98bbc9}"
  265. CLSID_DIRECTX="{44BBA855-CC51-11CF-AAFA-00AA00B6015D}"
  266. CLSID_IEJAVA="{08B0E5C0-4FCB-11CF-AAA5-00401C608555}"
  267. CLSID_IE_Prog="{871C5380-42A0-1069-A2EA-08002B30309D}";此 String 项目由老毛桃添加
  268. CLSID_BRANDING=">{60B49E34-C7CC-11D0-8953-00A0C90347FF}MICROS"
  269. START_PAGE="http://www.microsoft.com/isapi/redir.dll?prd=ie&pver=6&ar=msnhome"
  270. PLUGIN_PAGE="http://activex.microsoft.com/controls/find.asp?ext=%s&mime=%s"
  271. SEARCH_PAGE_URL="http://www.microsoft.com/isapi/redir.dll?prd=ie&ar=iesearch"
  272. MSIEXPLORE_PROGGROUP="Internet"
  273. MSIEXPLORE_DESC="Internet Explorer"
  274. MSIEXPLORE_COMPAT="以前的 Internet Explorer 版本 4"
  275. MSINETWIZ_DESC="Internet 安装向导"
  276. HISTORY_DIR="History"
  277. ACTIVEX_GALLERY="Microsoft ActiveX Gallery"
  278. THENET="Internet Explorer"
  279. CERT_DESC="Internet 安全证书"
  280. WORD_TYPES="Word 6.0/95 for Windows & Macintosh"

  281. ; Unlocalizable strings
  282. REG_WSH             = "Software\Microsoft\Windows Script Host"
  283. REG_APPROVE         = "Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved"
  284. REG_UNINSTALL       = "Software\Microsoft\Windows\CurrentVersion\Uninstall\WindowsScriptHost"
  285. CLSID_WSHEXT        = "{60254CA5-953B-11CF-8C96-00AA00B8708C}"

  286. ; Localizable strings
  287. DISP_WSH            = "Microsoft Windows Script Host"
  288. DESC_WSH            = "Windows Script Host"
  289. DESC_DISKS          = "Windows Script Host 文件"
  290. TIPS_WSH            = "编写脚本来实现在 Windows 中自动执行任务"

  291. DESC_DOTWSH         = "Windows Script Host 设置文件"
  292. DESC_DOTVBS         = "VBScript Script 文件"
  293. DESC_DOTVBE         = "VBScript 已编码的 Script 文件"
  294. DESC_DOTJS          = "JScript Script 文件"
  295. DESC_DOTJSE         = "JScript 已编码的 Script 文件"
  296. DESC_DOTWS          = "Windows Script 文件"
  297. DESC_WSHEXT         = "Windows Script Host 的 Shell extensions"

  298. DESC_WSHOMLIB       = "Microsoft Windows Script Host 对象模型(1.0版)"
  299. DESC_WSHSHELL       = "Windows Script Host Shell 对象"
  300. DESC_WSHNETWORK     = "Windows Script Host Network 对象"

  301. MENU_OPEN           = "打开(&O)"
  302. MENU_CONOPEN        = "在命令提示符中打开(&W)"
  303. MENU_DOSOPEN        = "在 MS-DOS 提示符中打开(&W)"
  304. MENU_EDIT           = "编辑(&E)"

  305. FILE_WSHEXT         = "wshext.dll"
  306. FILE_SCROBJ         = "scrobj.dll"
复制代码

作者: 1400700226    时间: 2017-1-18 02:02
邪恶海盗 发表于 2017-1-16 22:38
install_flash_player_11_plugin_32bit.exe
我装的这个,完全没问题...

不用装,在Qtweb.exe所在目录建立Plugin文件夹,然后把npswf32.dll放进去,就可以用flash player了

http://qtweb.net/KB/flash_plugin.html
作者: 邪恶海盗    时间: 2017-1-18 20:55
1400700226 发表于 2017-1-18 02:02
不用装,在Qtweb.exe所在目录建立Plugin文件夹,然后把npswf32.dll放进去,就可以用flash player了

ht ...

印象中看到过介绍,时间太长不记得了...
作者: hhh333    时间: 2017-1-19 15:49
经测试确实有你所说的问题
作者: 1400700226    时间: 2017-1-19 16:05
hhh333 发表于 2017-1-19 15:49
经测试确实有你所说的问题

感谢h3老师的测试,

有时间的话可否帮研究?

我想能不能查出正常系统中安装inf时的调用?
作者: 1400700226    时间: 2017-1-23 00:03
邪恶海盗 发表于 2017-1-16 22:38
install_flash_player_11_plugin_32bit.exe
我装的这个,完全没问题...

你有没有发现装了FlashPlayer后,QtWeb不能输入汉字?

具体是:安装你说的FlashPlayer_Plugin,然后打开QtWeb,立即点网页上的输入框并Ctrl+Shift切换输入法,这时并不能输入汉字(右下角笔图标是银色就好像你点了其他不能输入的地方一样);
必须将QtWeb窗口弄到非活动状态,然后再点击输入框才能激活输入法(右下角笔变成红色下面有纸),才能够输入汉字。

我测试在WinXP、Win10正常系统中也有这个问题。应该是QtWeb的bug。


不知道你有什么好办法?

我目前临时的解决办法是:

弄一个批处理:

  1. TITLE 使进入输入状态

  2. PUSHD %~dp0

  3. start QtWeb.exe
  4. nircmd.exe wait 1500

  5. nircmd.exe sendkey lwin press
  6. nircmd.exe wait 150
  7. nircmd.exe sendkey lwin press
复制代码


这样就可以使QtWeb在每次打开后自动切换一次活动窗口。

但是这个等待时间受处理器和网络速度的干扰,太长等起来没完,太短有些机子不够,。。。。

所以。。。




欢迎光临 无忧启动论坛 (http://bbs.wuyou.net/) Powered by Discuz! X3.3