如何以管理员权限运行任何exe?
我正在使用 makecert 创建证书,但我需要通过 C# 程序来执行此操作,但该命令不会执行,因为它需要管理员权限。
请建议我如何在 Windows 7 中使用管理员权限运行任何 exe? 如果可能的话,不仅仅是建议我示例代码。
这对我来说真的很重要吗?
I am using makecert to create certificate i need to do it though c# program the command doesnot execute as it requires administrator privileges.
Please suggest me how to run any exe using administrator privileges in windows 7?
If possible than just suggest me the sample code.
Does th o.s. really matters in my case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
另一个提示是在代码中使用 UAC(用户帐户控制)。非常有趣的来源恕我直言,这是一个 http://victorhurdugaci.com/using-uac -with-c-part-1/
Another hint again is using UAC( User Account Control) from the code. Very interestimg source IMHO is this one http://victorhurdugaci.com/using-uac-with-c-part-1/
您可以使用运行方式:
http://www .microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/runas.mspx?mfr=true 并选择具有所需权限的帐户。
You can use the RunAs:
http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/runas.mspx?mfr=true and select an account with the required permissions.
启动进程时使用
runas
动词:这假设您以管理员组中的用户身份运行。在这种情况下,进程启动时将显示 UAC 对话框。
Use the
runas
verb when starting the process:This assumes that you are running as a user in the administrator group. In that case the UAC dialog will be shown when the process starts.
更改 C# 应用程序的清单,使其需要管理员权限。 UAC 应该做剩下的事情来提示用户并提升进程。
Change the manifest of the C# application so that it requires adminstrator privileges. UAC should do the rest to prompt the user and elevate the process.