VBScript Error.Terminal Services

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

Client is WindowsXP, Server is Windows 2000
Client is able to see the log-in page.. but keeps getting
the VBScript Error(REMOTE DESKTOP DISCONNECTED)... could
anyone give me a list of the required services I need to
check in order for TSAC to work?.. thanks
 
By the way, if port 3389 is blocked, is there a means of
changing the port number Terminal Services uses and make
TSAC work?.. I've already seen instructions on changing
the setting port numbers for Terminal Clients and Servers,
but will simply changing the Terminal Server's port number
enable web users to use TSAC?
 
No you will have to set the port in the web page code.
'// Add this line
MsRdpClient.AdvancedSettings2.RDPPort = 80 '//This sets the TS port to 80

'// I included this so you could see where to put the line of code
MsRdpClient.AdvancedSettings2.RedirectDrives = FALSE
MsRdpClient.AdvancedSettings2.RedirectPrinters = TRUE
MsRdpClient.AdvancedSettings2.RedirectPorts = FALSE
MsRdpClient.AdvancedSettings2.RedirectSmartCards = FALSE
 
tnx for the reply.. will this changes allow TSAC users to
access the Terminal Server? from some articles I found on
the Microsoft Site about changing the listening port of
Terminal Services, it mentions that the TSAC (Active X
Control) will still use port 3389 and this cannot be
changed.. are the directions you posted allow the ActiveX
control to access the Terminal Server through another port?

Regards
Mark =)
 
If you change the Terminal services port to something other than 3389 you
will need to guide the clients to the same port. The edit I gave you is for
the *NEW* (read XP/2000 version 5.1) TSAC not the original.
 
Back
Top