tsweb client drive availability

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Using the default tsweb page for clients to connect to Terminal server 2003,
will not give the option for clients to make available their local drives. I
know this can be done from the Remote Desktop Connection app, but is there a
way to include it as part of the Remote Web Connection?
 
HopeitHelped said:
Using the default tsweb page for clients to connect to Terminal
server 2003, will not give the option for clients to make available
their local drives. I know this can be done from the Remote Desktop
Connection app, but is there a way to include it as part of the
Remote Web Connection?

There are lots of settings you can make within your Connect button
subroutine (default is sub BtnConnect), including:

MsRdpClient.AdvancedSettings2.RedirectDrives = FALSE
MsRdpClient.AdvancedSettings2.RedirectPrinters = TRUE
MsRdpClient.AdvancedSettings2.RedirectPorts = FALSE
MsRdpClient.AdvancedSettings2.RedirectSmartCards = FALSE
MsRdpClient.AdvancedSettings2.RDPPort = "xxxx"

HTH

Dan
 
Great, Thank you.

-=D@n=- said:
There are lots of settings you can make within your Connect button
subroutine (default is sub BtnConnect), including:

MsRdpClient.AdvancedSettings2.RedirectDrives = FALSE
MsRdpClient.AdvancedSettings2.RedirectPrinters = TRUE
MsRdpClient.AdvancedSettings2.RedirectPorts = FALSE
MsRdpClient.AdvancedSettings2.RedirectSmartCards = FALSE
MsRdpClient.AdvancedSettings2.RDPPort = "xxxx"

HTH

Dan
 
Back
Top