Click here to Skip to main content
Licence CPOL
First Posted 11 Nov 2009
Views 201,907
Downloads 13,543
Bookmarked 174 times

Remote Desktop using C#.NET

By | 11 Nov 2009 | Article
This article is about showing how to create a .NET application to perform remote desktop operation using Microsoft Terminal Services Client ActiveX control.

Introduction

Remote Desktop Services is one of Microsoft Windows components to access a remote computer through the network. Only the user interface of the application is presented at the client. Any input is redirected over to the remote computer over the network.

At work, we use Remote Desktop a great deal. It allows us to login to a remote server to perform health checks, deploy applications, troubleshoot problems, etc. We also use remote desktop often when we do WFH (work from home).

Why do you want to write a .NET application to do this when you have the MS Terminal Services client available from OS? Well, consider if you want to work on 3 different application servers at the same time and want to toggle between these 3 servers quite often. With the MSTSC, we will be running 3 different clients for the 3 servers and it is difficult to manage the working environment. In .NET, you can develop an application with tab control to load remote desktop sessions in different tabs in one window.

Background

We will be using AxMSTSCLib an ActiveX component in our program to connect to the remote computer. It’s not that hard to build a remote desktop application in .NET. Microsoft has a “Microsoft RDP client control” ActiveX control that we will be using in our application.

This is How We Do It

We will start by creating a Windows application in the Visual Studio IDE.

Add a reference to “Microsoft Terminal Services Control Type Library” from the COM tab. This will add MSTSCLib.dll to the project.

Sample Image - maximum width is 600 pixels

To add MSTSC to the toolbox, right click the toolbox and select “Choose Items…”. Now add “Microsoft Terminal Services control from the COM tab.

Sample Image - maximum width is 600 pixels

Drag the newly added control from toolbox to the form.

Add 3 textbox and 2 button controls to the form:

Sample Image - maximum width is 600 pixels

Connect Button - Click Event

Here is how we write the Connect button click event.

rdp.Server = txtServer.Text;
rdp.UserName = txtUserName.Text;
IMsTscNonScriptable secured = (IMsTscNonScriptable)rdp.GetOcx();
secured.ClearTextPassword = txtPassword.Text;
rdp.Connect();

Now assign the properties (Server, UserName) of RDP control with the textbox values.

Here’s how easy it is to login to remote machine. However there is one catch, there is no direct method in RDP control through which you can pass the username and password to login to the remote desktop.

Due to security reasons, you have to implement an interface (IMsTscNonScriptable) to cast it separately.

IMsTscNonScriptable secured = IMsTscNonScriptable)rdp.GetOcx();
secured.ClearTextPassword = txtPassword.Text; 

Disconnect Button – Click Event

To disconnect from the remote desktop session, we just need to call the Disconnect() method.

Before disconnecting, we want to ensure that the connection is still available. We don't want to disconnect if it is already disconnected (very clever, huh).

if (rdp.Connected.ToString() == "1")
 rdp.Disconnect();

That’s all folks!

History

  • 5th November, 2009: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Thiagarajan Alagarsamy

Web Developer

India India

Member

Thiagu is living in Bangalore, India. He has started coding when he was 12 years old. His native is Madurai, a historic city in south India. He loves to code in C#. He frequents code project when he is not coding. Thiagu loves reading Dan Brown and Michael Crichton novels. He is very much interested in Artificial Intelligence (AI). To view his blog - http://csharpnet.blogspot.com


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionRemote system is logging off Pinmemberdarvisunny18:32 10 Apr '12  
QuestionNot working over internet? PinmemberMember 87566691:16 24 Mar '12  
Questionhello, how do I connect my own computer? Pinmemberjeferson Medeiros2:57 14 Mar '12  
QuestionHow to start calc.exe on the remote computer? Pinmemberjkoorts22:05 25 Jan '12  
QuestionSo where's the tabs? PinmemberBill Doerfler3:12 5 Jan '12  
AnswerRe: So where's the tabs? PinmemberMember 80653886:26 28 Feb '12  
GeneralMy vote of 1 PinmemberMember 850269719:56 19 Dec '11  
QuestionResize Remote Desktop Connection? Pinmemberjlopez7885:19 10 Nov '11  
AnswerRe: Resize Remote Desktop Connection? PinmemberMatt Webb4:45 5 Jan '12  
QuestionRemote desktop Pinmemberkusum nayal2:55 20 Oct '11  
QuestionRemote Desktop accessbility on windows 7 Platform Pinmemberbveck23:13 22 Sep '11  
AnswerRe: Remote Desktop accessbility on windows 7 Platform PinmemberMember 83731364:11 10 Nov '11  
Questioncan i jst restrict user Pinmembermeeaaoon11:47 12 Aug '11  
Questionaccessing file in remote computer through code Pinmemberprasadkodamana0:42 21 Jul '11  
QuestionCheck out 2X Application Server Client Pinmemberpaulgafa22:52 14 Jul '11  
GeneralRemote controle Pinmemberyacov85946:11 16 May '11  
GeneralHi. How to connect local resources PinmemberGasanov9:26 23 Apr '11  
GeneralRe: Hi. How to connect local resources Pinmembertomcode20:10 14 Jun '11  
GeneralRe: Hi. How to connect local resources PinmemberGasanov2:40 18 Jun '11  
GeneralRe: Hi. How to connect local resources Pinmembermayakingka18:43 3 Apr '12  
GeneralMy vote of 3 Pinmemberqinghan198921:57 18 Apr '11  
QuestionResolution and colors PinmemberJackman7120:53 16 Apr '11  
GeneralNo output PinmemberHasly23:49 14 Mar '11  
GeneralMy vote of 5 Pinmemberjintao123416:34 13 Mar '11  
QuestionNeed to know how to logoff not just disconnect... PinmemberSukar8:19 10 Dec '10  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 11 Nov 2009
Article Copyright 2009 by Thiagarajan Alagarsamy
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid