Launch native RDP client

Launch native RDP client

How can I have an RDP webapp launch the native client instead of the web client?



RDP User Select option: 

Selects the type of remote client that will be loaded at the workstation. 

Web Client will load the ActiveX (for IE) or Java WebRDP (Firefox, Opera, or Safari) control within the browser. 
Web Client - Java will load the Java WebRDP control within the browser for all browsers. 
Native Client will attempt to start the workstation’s native RDP client. This client is different depending on the workstation’s operating system (Windows - Microsoft’s Remote Desktop Connection, Mac - Microsoft’s Remote Desktop Connection, or Linux - RDesktop client). 
The User Select option will look at either a Directory or Workstation cookie to determine the proper client. If no cookie is set it will default to the Web Client. 

With the User Select option, we can’t be as granular with the two web clients. We can only specify if it will be a web client or the native client. If you have ActiveX (IE) then you will launch the ActiveX client, if you do not (Firefox, Chrome, or Safari) then you will get the Java client). 


To use the User Select option, you will need to add some logic to your profile’s login script, to set which type of client should be loaded for your supported operating systems. 


Sample loginscript: 

if clientos = Windows then 
useClient( NativeRDP ) 
end 
if clientos = MacOSX then 
useClient( NativeRDP ) 
end 
if clientos = Linux then 
useClient( WebRDP ) 
end 


The Sample login script above will load the native client on Windows and OS X, while loading the web client on Linux. 


On your RDP webapp choose, choose User Select for the Client Type, which will then read the cookie set by the login script to determine which client should be used for the specific OS. 


Note - When using the Mac OSX NativeRDP option, you need to have RDC client 2.0.0.1 installed on your Mac. 

Also, We can only pass username and domain when using the native client, we can not pass the users password. That is the one caveat of using the native client versus the web client.

    Can't find the KB

    Unable to find the KB to address your issue ?  

      • Recent Articles

      • Lenovo Unified Workspace End-of-Life Questions and Answers

        Will the shutdown of LUW servers and access to downloads affect my server licensing? No, the shutdown of the customer servers and access to the product and licensing downloads will not affect your server licensing. This license is downloaded and ...
      • How do I determine my Unified Workspace license expiration date?

        The best method for determining the licensing information including the expiration date of your Unified Workspace license: Login to your 8090 management console on each server This may take remoting into each LUW server and relay, opening a browser, ...
      • Lenovo Unified Workspace 7.0.2.13 Released

        Highlights of Unified Workspace 7.0.2.13 Before you install: Please view the installation notes here. 7.0.2.13 requires a 7.0 license file. Below is a list of enhancements and fixes released in Unified Workspace 7.0.2.13 Fixed external storage ...
      • LanSchool Documentation Guides

        LanSchool Classic Teacher Console The LanSchool Teacher Console is the interface teachers will use to manage their classroom and students. It contains all the tools necessary for a teacher to effectively interact with students and create a ...
      • Lenovo Unified Workspace 7.0.1.41 Released

        Highlights of Unified Workspace 7.0.1.41 Before you install: Please view the installation notes here. 7.0.1.41 requires a 7.0 license file. Below is a list of enhancements and fixes for Unified Workspace 7.0.1.41 Updated Log4j Updated Java Updated ...
      • Related Articles

      • Microsoft native client RDP parameters

        What are the common RDP parameters for the Microsoft Native Client. Here is a sample of some RDP parameters, found in an .RDP file. An explanation of these parameters can be found at: ...
      • How to SSO into Microsoft MSTSC Native Client

        A few years ago Microsoft changed the RDP client to not allow that native client ( mstsc.exe ) to accept command line parameters for authentication along with removing the same feature from the saved .RDP file. This means that when you use the native ...
      • FireFox on Mac does not launch app

        When an RDP webapp is configured and has an application assigned to launch upon login to term server, it fails to load the app and gives the user a desktop login. This happens if the user has Microsofts RDP client for the mac installed, it picks up ...
      • RDP Issues after upgrade

        Customer upgraded from Stoneware WN 5.3 SP3 to WN 5.4. After the upgrade, we found that RDP applications no longer worked from Mac OSX Clients. They would get a Java Null Pointer Exception. In the past, we had to place ...
      • Full screen Web Client

        How do I get the Microsoft ActiveX RDP client to go full screen? Add the parameters FullScreen = True  **Requires the webapp's link to be set to open with "Native Window Override".