为 Windows 中的一个进程提供完全控制文件夹访问权限
我有一个重要的资源文件夹(无法嵌入 exe 文件),并且我想限制除管理员组用户之外的所有 Windows 用户的访问。我的程序以普通(非管理员)用户运行,我只想向此进程授予资源文件夹访问权限。我可以询问一次管理员用户的密码,但我不知道是否可以?
I've got an important resource folder (that can not be embeded in exe file) and I want to limit access of all Windows users except Admin Group ones. My program runs in normal (not Admin) user and I want give resource folder access only to this process. I can ask Admin user's password once, but I don't know is it possible or not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从应用程序启动提升权限的进程,使用管理员权限执行所需的操作,然后结束它。
看看这里:http://victorhurdugaci.com/using-uac-with -c-部分-1/
You can start an elevated rights process from you application, do whatever is needed with admin rights and end it after.
Take a look here: http://victorhurdugaci.com/using-uac-with-c-part-1/