Reputation: 3924
I need to view the remote desktop ( not need to control ) using C# in an application. Remote Desktop allows only one session by default at a time to connect through.
I made a search and got this link1 and all other materials i got in initial searches are similar to that
But by using that code remote session is locked.
How to achieve it without the remote system is getting locked. Please help on this regard.
Upvotes: 0
Views: 1493
Reputation: 172220
You could run a VNC server on the PC and access the desktop through a VNC client.
There are C# libraries available for the VNC protocol, this is the first one that came up on my Google search: VncSharp.
Upvotes: 2