I launch 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 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? SheelExecuteEx succeeds in this case, hInstApp = 42, GetLastError returns 0.

Thanks

link|improve this question

0% accept rate
Vitaly, when having follow up questions post them as comment (as this one) or edit your original post. Don't post it as an answer if it is still a question. – RedX Oct 19 '11 at 6:51
feedback

2 Answers

If ShellExecuteEx() is not returning an error, then there is nothing you can do to detect a UAC cancellation that is occuring outside of ShellExecuteEx'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 use ShellExecuteEx() to launch an .exe file, unless you use the "runas" verb to force a UAC prompt.

link|improve this answer
2  
CreateProcess() simply fails (with ERROR_ELEVATION_REQUIRED) if the child process requires elevation. You have to use another API (e.g. ShellExecute()) in order to get the prompt. – Luke Oct 18 '11 at 16:10
Then the short answer is - there is no way to detect the cancellation if the API does not directly report it to you. – Remy Lebeau Oct 21 '11 at 1:20
You might be able to do it by setting the SEE_MASK_NOCLOSEPROCESS flag in the fMask field, but I'm not sure if it returns you a handle for an elevated process. Worth taking a look at, though. – Luke Oct 21 '11 at 14:27
If you do get a handle to the process, see if GetExitCodeProcess() tells you anything useful when the spawned process ends. – Remy Lebeau Oct 21 '11 at 20:02
feedback

Now the problem is that CreateProcess succeeds in both cases, when launching is cancelled and is not cancelled. The question is that how to detect when it is cancelled?

Probably not being able to detect whether elevated launch succeeded or failed is a security feature. Else you could probe the system for installed software you should not know about.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.