.NET - 较低的应用程序权限
我想知道如何以编程方式降低应用程序的权限。因此,假设具有管理员权限的人运行我的程序,我希望我的程序仍然在普通用户环境下运行,或者以我不需要的较少权限运行。另外,您能解释一下在较低信任环境中受到什么限制吗?
编辑: Curtisk 建议使用 permview.exe 工具来查看应用程序的权限,这引导我走向较新的 permcalc.exe 工具的正确方向 - http://msdn.microsoft.com/en-us/library/ms165077(VS .80).aspx。再次感谢。
I would like to know how to programmatically lower my application's privileges. So, let's say someone with admin privileges runs my program, I would like my program to still run under a normal user's environment or with less privileges that I don't need. Also, could you explain what is restricted in the lower trust environment?
Edit: Curtisk suggested the permview.exe tool to view an application's permissions, which lead me in the right direction to the newer permcalc.exe tool - http://msdn.microsoft.com/en-us/library/ms165077(VS.80).aspx. Thanks again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RequestMinimum 标志 可能接近您所需要的,尽管它是基于区域/PermissionSet,更多详细信息请参见链接的 MSDN 操作方法。
这个想法是,它将以最少的权限运行应用程序,无论谁调用它...
在下面的评论中跟进问题:查看 权限查看工具
The RequestMinimum Flag may be close to what you need, although it is zone/PermissionSet based, more details in the linked MSDN How-to.
The idea is it will run the application with the least set of privileges to function, regardless of who calls it...
Follow up on question in comments below: check out the Permissions View Tool