如何将清单(用于 UAC 支持)添加到我的 VB.NET 应用程序?
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 VB.NET 2010 中,转到项目 → 我的项目 → 应用程序 → 查看 Windows 设置。
您将看到默认清单。从这里,您可以根据需要更改它。
例如,在本例中,要在应用程序启动时要求提升 UAC,请将:更改
为
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:
to
您必须添加一个清单来指定您所需的权限。
选择项目->添加新项...,然后选择应用程序清单文件。
将创建一个示例清单文件,其中包含
条目以及如何处理它的说明。这仅适用于 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.