vote up 2 vote down star

We have to run a process from a windows service and get a screenshot from it.

We tried the BitBlt and PrintWindow Win32 calls, but both give blank (black) bitmaps.

If we run our code from a normal user process, it works just fine.

Is this something that is even possible? Or could there be another method to try?

Things we tried:

  1. Windows service running as Local System, runs process as Local System -> screenshot fails
  2. Windows service running as Administrator, runs process as Administrator -> screenshot fails.
  3. Windows application running as user XYZ, runs a process as XYZ -> screenshot works with both BitBlt or PrintWindow.
  4. Tried checking "Allow service to interact with desktop" from Local System

We also noticed that PrintWindow works better for our case, it works if the window is behind another window.

For other requirements, both the parent and child processes must be under the same user. We can't really use impersonation from one process to another.

flag

1  
Did you try allowing the service to interact with the desktop? – Jon Seigel Sep 18 at 17:14
Very good idea, but it did not work either. I also think when I ran it as Administrator user, it was the equivalent to doing this. You can't a user and check "allow service to interact with desktop" from the management console--it's disabled. – Jonathan.Peppers Sep 18 at 17:18

2 Answers

vote up 3 vote down

Have you tried to run as Local System with the "Allow service to interact with desktop" checked?

link|flag
+1 - This is a good idea if it works. It's certainly the only solution I can think of that might. – David Stratton Sep 18 at 17:18
See above comment. – Jonathan.Peppers Sep 18 at 17:19
vote up 1 vote down check

I don't think this is possible.

We had to change our scenario where our application wasn't started from a service, but was a standard windows program that has a NotifyIcon in the corner.

If someone still finds a real answer, let me know.

link|flag

Your Answer

Get an OpenID
or

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