Automating Logon to TSWeb

  • Thread starter Thread starter Paul Alexandre
  • Start date Start date
P

Paul Alexandre

Any way to create a simple Web form for users to enter in
Username, Domain and Password that can be passed to the
Active X control to automatically logon to the TS session?

I am able to Pass the Username and Domain but not the
password. Using a Win2k Server with an XP PRo client.

Here is the code I am using from the TechNet resources:

'set user name, password and domain
MsRdpClient.UserName = "The User"
MsRdpClient.Domain = "The Domain"
MsRdpClient.AdvancedSettings.ClearTextPassword = "The
Password"
 
Back
Top