使用QT Creator如何将执行级别设置为requireAdministrator

发布于 2024-11-01 14:55:00 字数 77 浏览 2 评论 0 原文

基本上我需要能够编辑需要管理员权限才能编辑的文件。我知道在 Visual Studio 中为此使用了清单文件 - 但我知道 QT 没有这些。

Basically I need to be able to edit files that require administrator privileges to edit. I know that in Visual Studio a manifest file is used for this - but I understand QT does not have these.

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

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

发布评论

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

评论(3

明媚殇 2024-11-08 14:55:00

您可以将清单与 Qt 应用程序一起使用,但您必须半手动执行此操作。这篇博文使用 QtCreator 嵌入应用程序清单和版本信息展示了一种方法它(调整清单以满足您的需要)。

You can use a manifest with Qt applications, but you'll have to do it semi-manually. This blog post Embedding Application Manifest and Version Information using QtCreator shows one way of doing it (adapt the manifest to suit your needs).

从此见与不见 2024-11-08 14:55:00

Gimble 2012 年 6 月 29 日上午 8:59
只是为了使用 VS2010 和 Qt4.8+ 添加另一种侵入性较小的方式,来自 http://www.qtcentre.org/threads/29107-win32-how-to-modify-the-manifest-with-qmake

win32 {
CONFIG += embed_manifest_exe
QMAKE_LFLAGS_WINDOWS += /MANIFESTUAC:level=\'requireAdministrator\'
}

这适用于最小的情况(只需要管理权限)

仍然适用于 Qt 5.6 和 MSVC 2015。

GimbleJune 29, 2012 at 8:59 AM
Just to add another less-intrusive way with VS2010 and Qt4.8+, from http://www.qtcentre.org/threads/29107-win32-how-to-modify-the-manifest-with-qmake

win32 {
CONFIG += embed_manifest_exe
QMAKE_LFLAGS_WINDOWS += /MANIFESTUAC:level=\'requireAdministrator\'
}

That works for a minimal case (just requiring administrative rights)

Still works on Qt 5.6 and MSVC 2015.

递刀给你 2024-11-08 14:55:00

此代码与 QtVisual Studio 2015 IDE 兼容。

QMAKE_LFLAGS += /MANIFESTUAC:$quote(\"level=\'requireAdministrator\' uiAccess=\'false\'\")

This code compatible with Qt and Visual Studio 2015 IDE.

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