如何将清单(用于 UAC 支持)添加到我的 VB.NET 应用程序?

发布于 2024-08-04 17:06:29 字数 48 浏览 3 评论 0原文

如何在 VB.NET 中添加和嵌入清单文件,以便向我的应用程序添加 UAC 支持?

How can I add and embed a manifest file in VB.NET, in order to add UAC support to my application?

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

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

发布评论

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

评论(2

土豪 2024-08-11 17:06:29

在 VB.NET 2010 中,转到项目 → 我的项目 → 应用程序 → 查看 Windows 设置。

您将看到默认清单。从这里,您可以根据需要更改它。

例如,在本例中,要在应用程序启动时要求提升 UAC,请将:更改

requestedExecutionLevel level="asInvoker" uiAccess="false"  

requestedExecutionLevel level="requireAdministrator" uiAccess="false"   

In VB.NET 2010, go to Project → My Project → Application→ View Windows Settings.

You'll see the default manifest. From here, you can change it as you desire.

For example, in this case, to require UAC elevation when the application launches, change:

requestedExecutionLevel level="asInvoker" uiAccess="false"  

to

requestedExecutionLevel level="requireAdministrator" uiAccess="false"   
醉酒的小男人 2024-08-11 17:06:29

您必须添加一个清单来指定您所需的权限。

选择项目->添加新项...,然后选择应用程序清单文件

将创建一个示例清单文件,其中包含 条目以及如何处理它的说明。

这仅适用于 Visual Studio 2008(可能更高版本)。

要将清单添加到 2005,此博客条目可能有帮助。看起来比较复杂。

You have to add a manifest specifying the privileges you require.

Choose Project->Add New Item..., and select Application Manifest File.

A sample manifest file will be created containing a <requestedExecutionLevel> entry and an explanation what to do with it.

This only works with Visual Studio 2008 (and probably later).

To add the manifest to 2005, this blog entry might help. It looks rather complicated.

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