我已经坚持了几个小时,直到我终于成功了。已有链接指向我正确的方向:
但我认为对问题的简单概述可以帮助某人:)。
答案 0 :(得分:29)
真正的问题:(来自维基百科:http://en.wikipedia.org/wiki/User_Account_Control)
标记为" requireAdministrator"的可执行文件。在其清单中无法使用CreateProcess()从非提升的进程启动。而是返回ERROR_ELEVATION_REQUIRED。不得使用ShellExecute()或ShellExecuteEx()。
(BTW,ERROR_ELEVATION_REQUIRED错误== 740)
解决方案:(同一网站)
在原生Win32应用程序中,相同的" runas"可以将动词添加到ShellExecute()或ShellExecuteEx()调用中。
ShellExecute(hwnd, "runas", "C:\\Windows\\Notepad.exe", 0, 0, SW_SHOWNORMAL);
2 - 基本UAC流程
好的,所以在深入研究之前,我认为解释UAC感知应用程序的基本流程以及所有内容如何组合起来可能会有所帮助。通常,您的应用程序以非特权用户身份运行。但是,有时它需要成为管理员(做任何事情)。所以,这里的基本思想是伪代码:
int main (int argc, char **argv) {
HRESULT operation = tryToDoSomethingPrivileged();
if (operation == ACCESS_DENIED && !alreadyElevated) {
// Spawn a copy of ourselves, via ShellExecuteEx().
// The "runas" verb is important because that's what
// internally triggers Windows to open up a UAC prompt.
HANDLE child = ShellExecuteEx(argc, argv, "runas");
if (child) {
// User accepted UAC prompt (gave permission).
// The unprivileged parent should wait for
// the privileged child to finish.
WaitForSingleObject(child, INFINITE);
CloseHandle(pid);
}
else {
// User rejected UAC prompt.
return FAILURE;
}
return SUCCESS;
}
return SUCCESS;
}
最后,我就是这样做的:
if(0 == CreateProcess(argv[2], params, NULL, NULL, false, 0, NULL, NULL, &si, &pi)) {
//runas word is a hack to require UAC elevation
ShellExecute(NULL, "runas", argv[2], params, NULL, SW_SHOWNORMAL);
}
只是出于完整性的考虑 - MSDN链接到ShellExecute和CreateProcess:
http://msdn.microsoft.com/en-us/library/bb762153%28v=vs.85%29.aspx
http://msdn.microsoft.com/en-us/library/ms682425%28VS.85%29.aspx