以编程方式禁用除一个之外的所有 IE7 附加组件

发布于 2024-07-25 16:43:19 字数 146 浏览 9 评论 0原文

有没有办法执行以下操作

1) 禁用 IE 会话的所有加载项(如 -extoff 选项) 2) 然后仅启用 1 个(或某些)附加组件

我想从 .cmd 文件执行此操作

其他关闭但不完全是欢迎的选项。

谢谢!

Is there a way to do the following

1) disable all add-ons for an IE session (like the -extoff option)
2) then enable 1 (or some) add-ons only

I want to do this from a .cmd file

Other close but not quite options welcomed.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡水深流 2024-08-01 16:43:19

您可以通过调整注册表中的某些位来启用/禁用控件:

找到这个/这些键:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Ext\Settings\{CLSID}

...其中 {CLSID} 是您要更改的控件的 ID。 每个键中将具有以下 DWORD 值:

Flags

如果该键存在并且设置了最低有效位,则扩展将被禁用。

因此,编写一个脚本来使用 REG 命令来执行此操作。

You can enable / disable controls by twiddling some bits in the registry:

Go find this/these keys:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Ext\Settings\{CLSID}

...where {CLSID} is the id of the control you want to change. It will have the following DWORD value in each key:

Flags

If the key exists and the least significant bit is set then the extension is disabled.

So, write a script to go do that using the REG command.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文