tags:

views:

776

answers:

2

I want to be able to access some device specific data while running an application on a remote machine. The problem is that if the RDP window is minimized this data is not available. One solution I'm examining is writing my own RDP client so that the server machine always thinks that it has an active display (even when the client machine is locked).

Does anyone know of a reference on how to develop an RDP client (preferably in .NET)?

+2  A: 

Check out Terminals at Codeplex. Open source multiple RDP client; browse the code for some hints.

Will
A: 

There is some .NET library for RDP protocol, but I don't remember the details. Please google something like 'C# rdp client', there should be existing implementations. There you'll be able to grab the .NET binaries that deal with RDP, assuming they are not proprietary. HTH, Valve.

Valentin Vasiliev