以编程方式禁用除一个之外的所有 IE7 附加组件
有没有办法执行以下操作
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过调整注册表中的某些位来启用/禁用控件:
找到这个/这些键:
...其中 {CLSID} 是您要更改的控件的 ID。 每个键中将具有以下 DWORD 值:
如果该键存在并且设置了最低有效位,则扩展将被禁用。
因此,编写一个脚本来使用 REG 命令来执行此操作。
You can enable / disable controls by twiddling some bits in the registry:
Go find this/these keys:
...where {CLSID} is the id of the control you want to change. It will have the following DWORD value in each key:
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.