Qt(在Windows上)将权限级别设置为“requireAdministrator”

时间:2012-09-05 09:52:31

标签: windows qt

我正在使用Qt Creator并且努力使.exe文件默认以管理员身份运行。

在线阅读所有解决方案后,我尝试将此行放在我的.pro文件中:

QMAKE_LFLAGS += /MANIFESTUAC:"level='requireAdministrator' uiAccess='false'"

但是当我检查.exe(使用记事本)时,它仍包含:

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

有人可以告诉我,如何添加requireAdministrator

临时解决方案: 直到现在我找不到解决方案所以我做了一个临时的黑客攻击。我打电话给.exe 'LaunchAnother.exe'将使用以下代码启动我的'main.exe':

SHELLEXECUTEINFO shExInfo = {0};
shExInfo.cbSize = sizeof(shExInfo);
shExInfo.fMask = SEE_MASK_NOCLOSEPROCESS;
shExInfo.hwnd = 0;
shExInfo.lpVerb = _T("runas");                // Operation to perform
shExInfo.lpFile = _T("main.exe");       // Application to start    
shExInfo.lpParameters = "";                  // Additional parameters
shExInfo.lpDirectory = 0;
shExInfo.nShow = SW_SHOW;
shExInfo.hInstApp = 0;  

if (ShellExecuteEx(&shExInfo))
{
    WaitForSingleObject(shExInfo.hProcess, INFINITE);
    CloseHandle(shExInfo.hProcess);
}

仍在等待更好的解决方案。

1 个答案:

答案 0 :(得分:2)

您可以在编译后使用mt.exe嵌入清单文件。

Create and Embed an Application Manifest (UAC)

How to: Embed a Manifest Inside a C/C++ Application

An example manifest file

另一种选择是创建.res文件并将其指向清单文件,如下所示:

How to embed a manifest into a dll with mingw tools only

希望有所帮助。