Configure hosting server and terminal server aliases - kimmknight/raweb GitHub Wiki
If you want to customize the name of the hosting server that appears in RAWeb or any of the remote desktop clients, or you want to customize the names of the terminal servers for your remote apps and desktops, follow the instructions after the example section.
Example (before and after)
Using <add key="TerminalServerAliases" value="WIN-SGPBICA0161=Win-RemoteApp;" />
Before | After |
---|---|
Method 1: IIS Manager
- Once RAWeb is installed, open IIS Manager and expand the tree in the Connections pane on the left side until you can see the RAWeb application. The default name is RAWeb, but it may have a different name if you performed a manual installation to a different folder. Click on the RAWeb application.
- In the Features View, double click Configuration Editor
- Change the Section to appSettings.
- In the Actions pane, click Edit Items to open the Collection Editor. A new window will appear.
- In the Collection Editor window, click Add.
- Specify the properties. For key, use TerminalServerAliases. For value, specify the aliases with the format ServerName1=Alias 1;. You can specify multiple aliases separated by semicolons. When you are finished, close the Collection Editor window.
- In the Actions pane, click Apply to save your changes.
Web.config
.
Method 2. Directly edit - Open File Explorer and navigate to the RAWeb directory. The default installation directory is
C:\inetpub\RAWeb
. - Open
Web.config
in a text editor. - If there is no
appSettings
element inside theconfiguration
element, add<appSettings></appSettings>
inside of theconfiguration
element. - Inside the
appSettings
element, add:<add key="TerminalServerAliases" value="" />
- Edit the value attribute to specify the aliases. You can specify aliases with the format ServerName1=Alias 1;ServerName2=Alias 2;.
- Save the file.