如何使用c#检测IE保护模式
我正在构建 IE 扩展,并且需要将 Access 数据库文件保存在 Appdata 文件夹中。运行良好。但是在很多IE保护模式打开的系统中,它会崩溃,我猜这是因为IE保护模式不允许扩展访问Appdata。 我试图找到一种出路,以便我可以通过我的扩展检测 IE 是否处于保护模式。 请提供一些代码片段和一些链接来帮助我解决这个问题。
。
我还附上了错误的屏幕截图
I am building an IE Extension, and I need to keep my Access Database file in the Appdata folder. It's working fine. But in many systems where IE IE Protected Mode is ON, it crashes, I guess this is because IE Protected Mode doesn't allow Extensions to access Appdata.
I was trying to find a way out so that I can detect if IE is in Protected Mode through my extension.
Please give some code snippets and some links to get me out of this issue.
Regards
I am attaching a screenshot of error as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会使用 IEIsProtectedModeProcess(),但是你需要您自己进行互操作。
I would use IEIsProtectedModeProcess(), but you're on your own for interop.
您正在寻找 IE 进程“完整性级别”。请参阅此处的官方文档:确定进程完整性级别包含 C++ 示例,您将在此处找到用 C# 编写的示例:使用 Pinvoke 获取 Vista 中的进程完整性级别
You're looking for the IE process "Integrity Level". See the official doc here: Determining Process Integrity Levels with a sample in C++, and you will find a sample written in C# here: Getting Process Integrity Level in Vista using Pinvoke