I launch the exe through ShellExecuteEx:
tstring sPath = _T("C:\\Test\\MyApp.exe");
tstring sArgs = _T("/S");
SHELLEXECUTEINFO lpExecInfo = {0,};
lpExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
lpExecInfo.lpFile = sPath.c_str();
lpExecInfo.fMask=SEE_MASK_NOASYNC ;
lpExecInfo.hwnd = NULL;
lpExecInfo.lpVerb = NULL;
lpExecInfo.lpParameters = sArgs.c_str();
lpExecInfo.lpDirectory = NULL;
lpExecInfo.nShow = SW_SHOWNORMAL;
if (!ShellExecuteEx(&lpExecInfo)) {
// handle the error
throw CException("Cannot launch an application");
}
int nRes = (int)lpExecInfo.hInstApp; // nRes = 42
DWORD dwErr = GetLastError(); // dwErr = 0
How can I detect if launching is cancelled by UAC? ShellExecuteEx succeeds in this case (hInstApp = 42, GetLastError returns 0).
Thanks
If
ShellExecuteEx()
is not returning an error, then there is nothing you can do to detect a UAC cancellation that is occuring outside ofShellExecuteEx's
control.What you should be doing is using
CreateProcess()
instead. That will return an error if UAC rejécts the new process. Don't useShellExecuteEx()
to launch an .exe file, unless you use the "runas" verb to force a UAC prompt.