问题描述
任何想法,我应该怎么做以下用C#?
- 将
工具 - > Internet选项 - >安全
- 选择
安全
标签 - 点击
自定义级别
按钮 - 在
其他
部分变化显示混合内容
到启用
骗的方式来做到这一点是要改变值
在哪里0-4区标识符和值是0到允许,1为提示,以及3座。请记住,如果你的code做到这一点对任何人的机器,但你自己的,你可能会发现你的code阻止恶意软件。
正确的方式做到这一点是使用API来创建一个IInternetZoneManager并调用的调整中要调整的区域为URLACTION_HTML_MIXED_CONTENT的设置。
Any idea how do I do the following using C#?
- Going to
Tools -> Internet Options -> Security
- Select the
Security
tab - Click the
Custom Level
button - In the
Miscellaneous
section changeDisplay mixed content
toEnable
The "cheat" way to do this is to change the value
Where 0-4 are Zone identifiers and the value is 0 to Allow, 1 to Prompt, and 3 to Block. Keep in mind that if your code does this on anyone's machine but your own, you're likely to find your code blocked as malware.
The "proper" way to do this is to use the APIs to create an IInternetZoneManager and call SetZoneActionPolicy to adjust the settings for URLACTION_HTML_MIXED_CONTENT in the zones you want to adjust.
这篇关于更改Internet Explorer设置编程?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!