Suppose you have a process which run as as service as the System Account, is it possible to view the content of the windows created by the processes created by the service.

Suppose for example, that you have a service running as a kind of wrapper which starts Excel.

link|improve this question
This site is for programming questions. You may be able to find help with this issue at one of the sites listed here: stackoverflow.com/questions/321618/… – EBGreen Jan 16 '09 at 16:19
If a service starts Excel it should only be for use with automation (and even then its a bit iffy), you shouldn't need to see or retrieve the window contents since you can use automation to read and manipulate the contents. – Stephen Martin Jan 16 '09 at 17:42
feedback

3 Answers

Microsoft Spy++

Select Spy/Processes and find your process there

If some of it's threads had created any windows, you'll see them as subtrees.

link|improve this answer
feedback

A process that creates and fills windows should never be run as a service. That being said, if this is on Win2K3 or earlier set the service to interact with the desktop and you can see the contents yourself. If it is on Vista or later there is no way to examine the contents of an arbitrary window.

If it is a specific type of window (i.e. EDIT control) that supports retrieving its contents you may be able to run another service that sends a windows message to the first service to get what you want.

link|improve this answer
feedback

Services will (under normal circumstances) be associated with a different window station to the interactive desktop, and they cannot interact -- you can read up more on Window Stations on MSDN

link|improve this answer
feedback

Your Answer

 
or
required, but never shown