RDS
RDS Setup ( Remote desktop services )
Add roles to the servers for session host, connection broker and web access. This is required for a basic deployment:
| |
Add an RD Gateway server to the deployment:
| |
Add other roles using the same command:
- RDS-VIRTUALIZATION. Remote Desktop Virtualization Host (RD Virtualization Host).
- RDS-RD-SERVER. Remote Desktop Session Host (RD Session Host).
- RDS-CONNECTION-BROKER. RD Connection Broker.
- RDS-WEB-ACCESS. Remote Desktop Web Access (RD Web Access).
- RDS-GATEWAY. RD Gateway.
- RDS-LICENSING. Remote Desktop Licensing (RD Licensing).
Other commands available here: MS Learn Documentation
To remove an RDS server from the deployment you can use the following command with the same parameters as the add command:
| |
Certificates for RDS
Add certificate already imported to the server roles:
| |
The acceptable values for this parameter are:
- RDGateway
- RDWebAccess
- RDRedirector
- RDPublishing
RDS certificates for host authentication
Use following guide to setup rds host certificates with internal ca certificates through group policy and certificate templates:
https://woshub.com/securing-rdp-connections-trusted-ssl-tls-certificates/
Get Assigned RDS CAL from User objects
powershell to get assigned user cals from the user objects in AD:
| |
RDS licencing error
If you are getting an error with a session host not finding a licence server make sure the following settings are enabled in local group policy:
Computer Configuration\ Administrative Templates\ Windows Components\ Remote Desktop Services\ Remote Desktop Session Host\ Licensing
Use the specified Remote Desktop license servers Enabled
Set the Remote Desktop licensing mode Enabled
RDS Lockdown for end users
See this post for details:
http://www.it.ltsoy.com/windows/lock-down-remote-desktop-services-server-2012/
RDS Licencing for citrix error
Citrix sessions require RDS licences and if the RDS licence server is not online then an error will occur on user login
Use this to find the location of all RDS licence servers in the domain, run on domain controller:
- Get-ADObject -Filter {objectClass -eq ‘serviceConnectionPoint’ -and Name -eq ‘TermServLicensing’} | fl
Customize RDS deployment
Rename the Workspace:
| |
to change the look of the login page you can change the images in the following location:
c:\windows\web\rdweb\pages\images
Change the following images for a simple change to the theme:
Banner_01 (banner at the top)
Bg_globe_01 (background)
Desktop logo logo_02 (logo next to workspace name)
To get the background image to tile and repeat edit the twsa.css file in “C:\Windows\Web\RDWeb\Pages\en-US\tswa.css”. In the body section set the background-repeat option to “repeat” from “no-repeat”
Add Self Service Password Reset:
Follow this guide to add password reset to remote desktop services:
Remote desktop licencing issues
Check licencing server being used:
| |
check time left on grace period:
| |
Reset Grace period (violates MS terms of service)
Delete the following reg key. To do this you will need to take ownership of the key as its owner is the network service.
| |
check reg key for licencing type:
| |
Set licencing mode to per user:
| |
Check Licensing keypacks:
| |
Remove license pack:
| |
Details on License usage:
Per user CAL not being applied to AD user objects:
After server 2019 you may need to allow SELF permissions to terminal server attributes on the user objects. In AD on the OU that contains the users delegate the permissions to SELF to read and write terminal server license server.
Integrate Remote Desktop Gateway with network policy server NPS and Entra ID
https://learn.microsoft.com/en-us/entra/identity/authentication/howto-mfa-nps-extension-rdg
Set RDP file Defaults
To set the templates for the RDP files distributed by the rdweb page you need to set the values in the registry:
| |
If you do not want to edit the string in the registry directly you can copy the string and then edit it. After editing it you will need to enter the value in once again but ensure that you put a new line in between the values
| |
Customise RDP file to remove multi monitor:
Use set-rdscollectionconfiguration to customise the rdp file settings, this is better than using the registry key change
Find values that can be added: RDP file Configuration Options
Add in setting with ; delimiting them, eg: -CustomRdpProperty “selectedmonitors:s:0,1;desktopwidth:i:1920;desktopheight:i:1080;gatewayhostname:s:my.gateway.com”
| |