如何以管理员权限运行任何exe?

发布于 2024-12-07 19:30:49 字数 187 浏览 0 评论 0原文

我正在使用 ma​​kecert 创建证书,但我需要通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

梨涡 2024-12-14 19:30:49

另一个提示是在代码中使用 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/

心在旅行 2024-12-14 19:30:49

您可以使用运行方式:
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.

清君侧 2024-12-14 19:30:49

启动进程时使用 runas 动词:

ProcessStartInfo info = new ProcessStartInfo(path) { Verb = "runas" };
Process p = Process.Start(info);

这假设您以管理员组中的用户身份运行。在这种情况下,进程启动时将显示 UAC 对话框。

Use the runas verb when starting the process:

ProcessStartInfo info = new ProcessStartInfo(path) { Verb = "runas" };
Process p = Process.Start(info);

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.

轻许诺言 2024-12-14 19:30:49

更改 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文