vote up 2 vote down star

Windows API ::FindWindow function fails when called from Service application. GetLastError() also returns 0 (success?). Is this some privilege\access right problem? Do you think it's design problem and I should use another IPC method?

flag

63% accept rate
Yes, it is a design problem. You definately need to use an IPC mechanism and not operate on windows. – Remy Lebeau - TeamB Jun 17 at 1:47

5 Answers

vote up 3 vote down check

Have you enabled 'Desktop Integration' with your service?

link|flag
1  
That feature is no longer available starting with Vista. – Remy Lebeau - TeamB Jun 17 at 1:45
vote up 0 vote down

I too got impacted by the same problem. Earlier one of my service use to do a FindWindow. Now to get the FindWindow functionality in Service should i write a separate helper EXE and invoke it with CreateProcessAsUser?

link|flag
vote up 1 vote down

Services run in Session 0. On XP and earlier, the first user to log in also runs in Session 0, and subsequent users run in Sessions 1 and higher. If the service is set to "Interact with the Desktop", then it can access any user windows running in Session 0. However, starting with Vista, users never run in Session 0 anymore. FindWindow() only works in the context of the Session it is called in, as windows cannot be accessed across Session boundaries.

link|flag
vote up 4 vote down

leppie's right, Windows services are usually denied in interaction with desktop. You can bypass that in XP and earlier versions but won't be able to do in Vista and above. You'd better delegate desktop and user interactions to a GUI application. See this document for details.

link|flag
vote up 0 vote down

No. How can I do it?

link|flag
AFAIK, this not available on Vista, but previous OS versions it lives in the properties of the service in the Services control panel. – leppie Dec 4 '08 at 10:38

Your Answer

Get an OpenID
or

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