vote up 0 vote down star

Hi, I want to build similar experience as google desktop search is giving while opening the file. Suppose the user is searching for a particular file and he clicks on it in the browser, google desktop is opening it in foreground, i tried to do this in my app but it some times opens in background.

I used ShellExecuteEx and then AllowSetForegroundWindow using the process handle returned. I know there are situations where processhandle will return NULL, but in my case even if I got valid process handle, AllowSetForegroundWindow returned with Access Denied error.

I think here the issue is my application is running as a service and the foreground application is the browser.

Can anyone help me here? i want to give the same experience as google desktop while clicking the file.

Thanks in advance.

flag

Have you tried executing the same set of win32 calls from a test app that isn't running as a service? – jon hanson Nov 5 at 14:47
yes, it is working as expected. – Manoj Nov 6 at 5:16
sample program for non service app is uploaded here. yousendit.com/download/TzY1TXRYcHYzeUxIRGc9PQ/… – Manoj Nov 6 at 5:21

1 Answer

vote up 0 vote down check

Please use CreateProcessAsUser and pass explorer.exe user token. Thanks.

link|flag
And if explorer is not running? – Anders Nov 19 at 21:01

Your Answer

Get an OpenID
or

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