25

我已经坚持了几个小时,直到我终于设法做到了。已经有一些链接为我指明了正确的方向:

但我认为对问题的简单概述可以帮助某人:)。

4

1 回答 1

31

真正的问题:(来自维基百科:http ://en.wikipedia.org/wiki/User_Account_Control )

在其清单中标记为“requireAdministrator”的可执行文件无法使用 CreateProcess() 从非提升进程启动。相反,将返回 ERROR_ELEVATION_REQUIRED。必须改用 ShellExecute() 或 ShellExecuteEx()。

(顺便说一句,ERROR_ELEVATION_REQUIRED 错误 == 740)

解决方案:(同一站点)

在本机 Win32 应用程序中,可以将相同的“runas”动词添加到 ShellExecute() 或 ShellExecuteEx() 调用中。

ShellExecute(hwnd, "runas", "C:\\Windows\\Notepad.exe", 0, 0, SW_SHOWNORMAL);

这可能也有帮助:(来源: http: //mark.koli.ch/2009/12/uac-prompt-from-java-createprocess-error740-the-requested-operation-requires-elevation.html

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

于 2012-07-20T19:55:02.117 回答