C#.NET:获取管理员权限?

发布于 2024-09-16 09:18:49 字数 117 浏览 3 评论 0原文

C#.NET 应用程序是否可以请求 Windows 7 PC 上的管理权限?

我希望能够通过 Click Once 部署应用程序,并让用户使用它来执行管理任务(在本例中,它正在为主应用程序写入注册表项)。

Is it possible in a C#.NET application to request administrative rights on a Windows 7 PC?

I want to be able to deploy the application via Click Once and have users use it to perform administrative tasks (in this case it is writing registry entries for the main application).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

触ぅ动初心 2024-09-23 09:18:49

您只需添加清单应用程序文件即可
到您的项目

简单:右键单击项目,添加,新项目,清单文件


并将其更改

 <requestedExecutionLevel  level="asInvoker" uiAccess="false" />

 <requestedExecutionLevel level="highestAvailable" uiAccess="false" />

simply all what you need to do is to add manifest application file
to your project

simple : right click on the project , add , new item , manifest file


and Change the

 <requestedExecutionLevel  level="asInvoker" uiAccess="false" />

to

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