my question is about capturing screen on a remote server with windows vista or later installed from all desktops (default, UAC screen, Winlogon, screensaver). How to achieve this without an user logined locally or via RDP. The problem is that changes in Vista brought isolation of Windows services from desktops. I've found some information here and there that address the issue:
- http://www.brianbondy.com/blog/id/100/
- https://serverfault.com/questions/482352/take-screenshot-from-server-screen-while-disconnected-from-rdp
- Why does print screen in a Windows Service return a black image?
- Capture screen on server desktop session
- https://msdn.microsoft.com/en-us/library/windows/desktop/hh404487(v=vs.85).aspx
but unfortunately I do not see any good solution. I want to get something like Windows remote desktop connection clone. In other words Windows machine with some kind of a server that I can connect remotely to and get screenshots from it.
There is a piece of software called TightVNC that does what I need but its source is in C++ so it's hard for me to find the main idea of how to overcome Windows limitations. Maybe someone can tell?
Thanks in advance for any help.
TightVNC Server implements the RFB protocol. It is a service much like Microsoft's RDP (Remote Desktop Protocol), albeit, much simpler.
The TightVNC server additionally has it's own encoding (called tight), and clients that support the encoding allow you to specify image compression and quality.
Understand that "remote screenshots" aren't supplied to you by either protocol quite like you imagine. Graphic updates are sent and you're supposed to manage an image framebuffer and keep updating it (though you could ask a remote VNC server to send you a full update every time, but even then, the server will break up the "image" into various rects before sending them). RDP clients are quite a bit more complicated (see the FreeRDP project).
Your goal however appears to be remote access without Microsoft RDP available to you. Given this case, you simply need a VNC service (like TightVNC) on the remote desktop, and a VNC client (like TightVNC's client) on the system you'll be connecting from. Barring network configuration, you should be good to go.