从 BHO 激活 IE 加载项
我编写了两个对象,一个桌面工具栏和一个用于 IE 的 bho。 目标是 bho 在安装后显示工具栏。 微软的做法是使用 pBrowser->ShowBrowserBar(&vtBandGUID, &vtShow, 0);
此方法可以很好地显示和隐藏已通过插件管理器激活的工具栏,但不适用于已停用的插件。 有没有办法以编程方式执行与插件管理器完全相同的操作(启用/禁用特定插件)?
I've written two objects, a deskband toolbar and a bho for IE. The goal is that the bho shows up the toolbar after installation. Microsoft's approach is to use pBrowser->ShowBrowserBar(&vtBandGUID, &vtShow, 0);
This method is nice to show and hide toolbars which got already activated via the addon manager but does not work for deactivated addons. Is there a way to do exactly the same thing as the addon manager does (enabling / disabling specific addons) just programmatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你应该澄清你的问题。
编写代码来激活用户专门禁用的加载项可能会被视为恶意行为,并可能导致相关应用程序被标记为恶意软件。
You should clarify your question.
Writing code to activate add-ons that the user has specifically disabled could be considered malicious behavior and could result in the application in question being marked as malware.
您可以通过向此注册表项添加/删除名为“Flags”且值为 1 的 DWORD 注册表值来启用/禁用 BHO:
You can enable/disable BHOs by adding/removing a DWORD registry value called "Flags" with a value of 1 to this key:
另外,
Flags
的0
值表示已启用。1
表示禁用。有时会输入 1 以外的其他值(例如 256)。
Also, the
0
value ofFlags
means enabled.1
means disabled.Sometimes other values than 1 are entered (for example 256).