问题描述
我想为 IE 安装 gwt 开发者插件(我已经在 chrome 和 firefox 上安装了它,没有任何问题).当我想为 IE7 安装它时(在带有 sp2 的 vista 和带有 sp2 的 windows server 2008 上),它说插件安装成功,但它不起作用&在附加组件部分没有添加任何内容.
我将我的 ie 升级到最新的 8 版本 &甚至安装了谷歌优化版的 IE8,但它无法帮助我.
有什么想法吗?
我在 IE8 windows XP 上遇到了完全相同的问题,它说安装成功.但它仍然在浏览器中显示安装消息(而不是实际应用程序).
我想出了为什么这对我不起作用,根本原因是网络管理登录例程显然为我创建了两个配置文件:
C:Documents and Settingsg43899
(过时的配置文件位置)和
C:Documents and Settingsg43899.ND60A600
(新的配置文件位置)
在我进一步解释之前,先看看关于GWT 缺陷列表,问题 4358:
- 是否安装了以下注册表项:HKEY_CLASSES_ROOTCLSID{1D6156B6-002B-49E7-B5CA-C138FB843B4E}?如果是,它的子键是什么?价值观?
- 运行regsvr32.exe oophm.dll"时会发生什么?你能试一下吗运行regsvr32.exe/u oophm.dll"然后是regsvr32.exe oophm.dll"?
在我的机器上,注册表项不存在.此外,我在运行命令 regsvr32.exe oophm.dll
时收到警告框错误:
LoadLibrary("oophm.dll") 失败 - 找不到指定的模块.
我能够将 DLL 文件定位到第一个文件夹
C:Documents and Settingsg43899Application DataGoogleDeveloper PluginIEoophm.dll
但由于此位置与过时的配置文件有关,我做了以下操作
- 将文件夹从
Application DataGoogleDeveloper Plugin
移动到新的配置文件位置. - 运行
regsvr32.exe "%APPDATA%GoogleDeveloper PluginIEoophm.dll"
执行该命令后,我实际上可以看到注册表项HKEY_CLASSES_ROOTCLSID{1D6156B6-002B-49E7-B5CA-C138FB843B4E}
.现在一切都突然奏效了.希望这可以帮到你.
我正在添加 'HKEY_CLASSES_ROOTCLSID{1D6156B6-002B-49E7-B5CA-C138FB843B4E}`的全部内容 以防万一.
I want to install gwt developer plugin for IE (I already installed it on chrome and firefox without any problem).When i want to install it for IE7 (on both vista with sp2 & windows server 2008 with sp2), it says that plugin installed sucessfully, but it does not work & nothing adds under add-ons section.
I upgraded my ie to latest 8 version & even installed google optimized version of IE8, but it couldn't help me.
Any idea ?
I had the exact same problem on IE8 windows XP, where it said it installed successfully. But it still showed the install message in the browser (and not the actual application).
I figured out why this was not working for me, and the root cause was that the network administration login routine apparently had created two profiles for me:
C:Documents and Settingsg43899
(outdated profile location) and
C:Documents and Settingsg43899.ND60A600
(new profile location)
Before I explain further, have a look at the suggestions on the GWT defect list, issue 4358:
On my machine, the registry key did not exist. Furthermore, I got an alertbox error when running command regsvr32.exe oophm.dll
:
LoadLibrary("oophm.dll") failed - The specified module could not be found.
I was able to locate the DLL file to the first folder at
C:Documents and Settingsg43899Application DataGoogleDeveloper PluginIEoophm.dll
But as this location was related to the outdated profile, I did the following
- Moved folder from
Application DataGoogleDeveloper Plugin
into the new profile location. - Ran
regsvr32.exe "%APPDATA%GoogleDeveloper PluginIEoophm.dll"
After that command, I could actually see the registry key HKEY_CLASSES_ROOTCLSID{1D6156B6-002B-49E7-B5CA-C138FB843B4E}
. Now everything suddently worked. Hope this can help you.
I am adding the full contents of ´HKEY_CLASSES_ROOTCLSID{1D6156B6-002B-49E7-B5CA-C138FB843B4E}` in case you need it.
这篇关于无法为 IE 7 或 8 安装 gwt 开发者插件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!