PC Review
Forums
Newsgroups
Windows 2000
Microsoft Windows 2000 Terminal Server Clients
VBScript Error.Terminal Services
Forums
Newsgroups
Windows 2000
Microsoft Windows 2000 Terminal Server Clients
VBScript Error.Terminal Services
![]() |
VBScript Error.Terminal Services |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
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 |
|
|
|
#2 |
|
Guest
Posts: n/a
|
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? >-----Original Message----- >thanks . I'll have to test it again =) > > >>-----Original Message----- >>You will need 3389 open to get to the TS box. To test run >the following from >>a command line. >>telnet 10.0.0.1 3389 where 10.0.0.1 is the IP of your >terminal server. If >>it connects you should be able to use a TS client. >> >>-- >>Regards, >> >>Michael Holzemer >> >>Please reply in newsgroup >>************************************************* >> >> >>"Mark" <m.salazar@weserv.com.ph> wrote in message >>news:4b3301c34125$309878c0$a401280a@phx.gbl... >>> Thanks for the reply =) >>> This is going through firewall . The error I'm Receiving >>> doesnt have a number/code.. it simple states >>> >>> "VbScript Error: Remote Desktop Disconnected " >>> "The client could not connect to the remote computer. >>> Remote connections might not be enabled or the computer >>> might be too busy to accept new connections. It is also >>> pssible that network problems are preventing your >>> connections. Please try connecting later." >>> >>> Questions: >>> 1. How do I check is the ports required by TSAC are >open? >>> do I only need 3389 open? >>> >>> 2.What Services are required by TSAC to run? >>> >>> Thank You =) >>> >>> >-----Original Message----- >>> >Check the event log on the server. Is this on a LAN or >>> are you going across >>> >a firewall? You could also open the TSAC web page in >note >>> pad and find the >>> >error number from the message you are getting. >>> > >>> >-- >>> >Regards, >>> > >>> >Michael Holzemer >>> >No email replies please - reply in newsgroup >>> > >>> > >>> >"Mark" <m.salazar@weserv.com.ph> wrote in message >>> >news:074c01c34101$d2e806a0$a101280a@phx.gbl... >>> >> 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 >>> >> >>> >> >>> > >>> > >>> >. >>> > >> >> >>. >> >. > |
|
|
|
#3 |
|
Guest
Posts: n/a
|
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 -- Regards, Michael Holzemer No email replies please - reply in newsgroup "Mark" <mark@yahoo.com> wrote in message news:012501c341ec$309c68f0$a001280a@phx.gbl... > 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? > > > >-----Original Message----- > >thanks . I'll have to test it again =) > > > > > >>-----Original Message----- > >>You will need 3389 open to get to the TS box. To test > run > >the following from > >>a command line. > >>telnet 10.0.0.1 3389 where 10.0.0.1 is the IP of your > >terminal server. If > >>it connects you should be able to use a TS client. > >> > >>-- > >>Regards, > >> > >>Michael Holzemer > >> > >>Please reply in newsgroup > >>************************************************* > >> > >> > >>"Mark" <m.salazar@weserv.com.ph> wrote in message > >>news:4b3301c34125$309878c0$a401280a@phx.gbl... > >>> Thanks for the reply =) > >>> This is going through firewall . The error I'm > Receiving > >>> doesnt have a number/code.. it simple states > >>> > >>> "VbScript Error: Remote Desktop Disconnected " > >>> "The client could not connect to the remote computer. > >>> Remote connections might not be enabled or the computer > >>> might be too busy to accept new connections. It is also > >>> pssible that network problems are preventing your > >>> connections. Please try connecting later." > >>> > >>> Questions: > >>> 1. How do I check is the ports required by TSAC are > >open? > >>> do I only need 3389 open? > >>> > >>> 2.What Services are required by TSAC to run? > >>> > >>> Thank You =) > >>> > >>> >-----Original Message----- > >>> >Check the event log on the server. Is this on a LAN or > >>> are you going across > >>> >a firewall? You could also open the TSAC web page in > >note > >>> pad and find the > >>> >error number from the message you are getting. > >>> > > >>> >-- > >>> >Regards, > >>> > > >>> >Michael Holzemer > >>> >No email replies please - reply in newsgroup > >>> > > >>> > > >>> >"Mark" <m.salazar@weserv.com.ph> wrote in message > >>> >news:074c01c34101$d2e806a0$a101280a@phx.gbl... > >>> >> 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 > >>> >> > >>> >> > >>> > > >>> > > >>> >. > >>> > > >> > >> > >>. > >> > >. > > |
|
|
|
#4 |
|
Guest
Posts: n/a
|
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 =) >-----Original Message----- >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 >-- >Regards, > >Michael Holzemer >No email replies please - reply in newsgroup > > >"Mark" <mark@yahoo.com> wrote in message >news:012501c341ec$309c68f0$a001280a@phx.gbl... >> 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? >> >> >> >-----Original Message----- >> >thanks . I'll have to test it again =) >> > >> > >> >>-----Original Message----- >> >>You will need 3389 open to get to the TS box. To test >> run >> >the following from >> >>a command line. >> >>telnet 10.0.0.1 3389 where 10.0.0.1 is the IP of your >> >terminal server. If >> >>it connects you should be able to use a TS client. >> >> >> >>-- >> >>Regards, >> >> >> >>Michael Holzemer >> >> >> >>Please reply in newsgroup >> >>************************************************* >> >> >> >> >> >>"Mark" <m.salazar@weserv.com.ph> wrote in message >> >>news:4b3301c34125$309878c0$a401280a@phx.gbl... >> >>> Thanks for the reply =) >> >>> This is going through firewall . The error I'm >> Receiving >> >>> doesnt have a number/code.. it simple states >> >>> >> >>> "VbScript Error: Remote Desktop Disconnected " >> >>> "The client could not connect to the remote computer. >> >>> Remote connections might not be enabled or the computer >> >>> might be too busy to accept new connections. It is also >> >>> pssible that network problems are preventing your >> >>> connections. Please try connecting later." >> >>> >> >>> Questions: >> >>> 1. How do I check is the ports required by TSAC are >> >open? >> >>> do I only need 3389 open? >> >>> >> >>> 2.What Services are required by TSAC to run? >> >>> >> >>> Thank You =) >> >>> >> >>> >-----Original Message----- >> >>> >Check the event log on the server. Is this on a LAN or >> >>> are you going across >> >>> >a firewall? You could also open the TSAC web page in >> >note >> >>> pad and find the >> >>> >error number from the message you are getting. >> >>> > >> >>> >-- >> >>> >Regards, >> >>> > >> >>> >Michael Holzemer >> >>> >No email replies please - reply in newsgroup >> >>> > >> >>> > >> >>> >"Mark" <m.salazar@weserv.com.ph> wrote in message >> >>> >news:074c01c34101$d2e806a0$a101280a@phx.gbl... >> >>> >> 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 >> >>> >> >> >>> >> >> >>> > >> >>> > >> >>> >. >> >>> > >> >> >> >> >> >>. >> >> >> >. >> > > > >. > |
|
|
|
#5 |
|
Guest
Posts: n/a
|
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. -- Regards, Michael Holzemer No email replies please - reply in newsgroup "Mark" <mark@yahoo.com> wrote in message news:6ff601c34433$df67d290$a401280a@phx.gbl... > 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 =) > > > >-----Original Message----- > >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 > >-- > >Regards, > > > >Michael Holzemer > >No email replies please - reply in newsgroup > > > > > >"Mark" <mark@yahoo.com> wrote in message > >news:012501c341ec$309c68f0$a001280a@phx.gbl... > >> 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? > >> > >> > >> >-----Original Message----- > >> >thanks . I'll have to test it again =) > >> > > >> > > >> >>-----Original Message----- > >> >>You will need 3389 open to get to the TS box. To test > >> run > >> >the following from > >> >>a command line. > >> >>telnet 10.0.0.1 3389 where 10.0.0.1 is the IP of your > >> >terminal server. If > >> >>it connects you should be able to use a TS client. > >> >> > >> >>-- > >> >>Regards, > >> >> > >> >>Michael Holzemer > >> >> > >> >>Please reply in newsgroup > >> >>************************************************* > >> >> > >> >> > >> >>"Mark" <m.salazar@weserv.com.ph> wrote in message > >> >>news:4b3301c34125$309878c0$a401280a@phx.gbl... > >> >>> Thanks for the reply =) > >> >>> This is going through firewall . The error I'm > >> Receiving > >> >>> doesnt have a number/code.. it simple states > >> >>> > >> >>> "VbScript Error: Remote Desktop Disconnected " > >> >>> "The client could not connect to the remote > computer. > >> >>> Remote connections might not be enabled or the > computer > >> >>> might be too busy to accept new connections. It is > also > >> >>> pssible that network problems are preventing your > >> >>> connections. Please try connecting later." > >> >>> > >> >>> Questions: > >> >>> 1. How do I check is the ports required by TSAC are > >> >open? > >> >>> do I only need 3389 open? > >> >>> > >> >>> 2.What Services are required by TSAC to run? > >> >>> > >> >>> Thank You =) > >> >>> > >> >>> >-----Original Message----- > >> >>> >Check the event log on the server. Is this on a > LAN or > >> >>> are you going across > >> >>> >a firewall? You could also open the TSAC web page > in > >> >note > >> >>> pad and find the > >> >>> >error number from the message you are getting. > >> >>> > > >> >>> >-- > >> >>> >Regards, > >> >>> > > >> >>> >Michael Holzemer > >> >>> >No email replies please - reply in newsgroup > >> >>> > > >> >>> > > >> >>> >"Mark" <m.salazar@weserv.com.ph> wrote in message > >> >>> >news:074c01c34101$d2e806a0$a101280a@phx.gbl... > >> >>> >> 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 > >> >>> >> > >> >>> >> > >> >>> > > >> >>> > > >> >>> >. > >> >>> > > >> >> > >> >> > >> >>. > >> >> > >> >. > >> > > > > > > >. > > |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 

