![Microsoft Windows Logo](https://www.stephenwagner.com/wp-content/uploads/2018/09/WindowsLogo-150x150.png)
In this blog post I’ll explain how to install RSAT (Remote Server Administration Tools) on Windows 10. Previously, this was handled via an MSI installer, however with Microsoft Windows 10 version 1809 (October Update) and later, you must install RSAT using Features on Demand (or DISM) as the installer no long works. This will apply to all future Windows 10 releases.
Some of you may not be familiar with using the “Features on Demand” or “DISM” tool on Windows, so I decided to write up this little post to assist you in installing RSAT on the latest version of Windows 10.
Install RSAT on Windows 10 (1809 and higher)
To install RSAT on Windows 10 (version 1809 or later), open an elevated command and run the following command (as a single line):
DISM.exe /Online /add-capability /CapabilityName:Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 /CapabilityName:Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0 /CapabilityName:Rsat.CertificateServices.Tools~~~~0.0.1.0 /CapabilityName:Rsat.DHCP.Tools~~~~0.0.1.0 /CapabilityName:Rsat.Dns.Tools~~~~0.0.1.0 /CapabilityName:Rsat.FailoverCluster.Management.Tools~~~~0.0.1.0 /CapabilityName:Rsat.FileServices.Tools~~~~0.0.1.0 /CapabilityName:Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0 /CapabilityName:Rsat.IPAM.Client.Tools~~~~0.0.1.0 /CapabilityName:Rsat.LLDP.Tools~~~~0.0.1.0 /CapabilityName:Rsat.NetworkController.Tools~~~~0.0.1.0 /CapabilityName:Rsat.NetworkLoadBalancing.Tools~~~~0.0.1.0 /CapabilityName:Rsat.RemoteAccess.Management.Tools~~~~0.0.1.0 /CapabilityName:Rsat.RemoteDesktop.Services.Tools~~~~0.0.1.0 /CapabilityName:Rsat.ServerManager.Tools~~~~0.0.1.0 /CapabilityName:Rsat.Shielded.VM.Tools~~~~0.0.1.0 /CapabilityName:Rsat.StorageReplica.Tools~~~~0.0.1.0 /CapabilityName:Rsat.VolumeActivation.Tools~~~~0.0.1.0 /CapabilityName:Rsat.WSUS.Tools~~~~0.0.1.0 /CapabilityName:Rsat.StorageMigrationService.Management.Tools~~~~0.0.1.0 /CapabilityName:Rsat.SystemInsights.Management.Tools~~~~0.0.1.0
*Please Note: If you are using WSUS, you may not be configured to download “optional features” from Windows Update (resulting in “cannot download”, or error “0x800F0954”). To resolve this, please follow the instructions at: https://www.stephenwagner.com/2018/10/08/enable-windows-update-features-on-demand-and-turn-windows-features-on-or-off-in-wsus-environments/
Additional Notes
You’ll notice that by using the command above, we are installing multiple “capabilities”. Below is a list of the capabilities that we install to include the full RSAT feature set:
- Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0
- Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0
- Rsat.CertificateServices.Tools~~~~0.0.1.0
- Rsat.DHCP.Tools~~~~0.0.1.0
- Rsat.Dns.Tools~~~~0.0.1.0
- Rsat.FailoverCluster.Management.Tools~~~~0.0.1.0
- Rsat.FileServices.Tools~~~~0.0.1.0
- Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0
- Rsat.IPAM.Client.Tools~~~~0.0.1.0
- Rsat.LLDP.Tools~~~~0.0.1.0
- Rsat.NetworkController.Tools~~~~0.0.1.0
- Rsat.NetworkLoadBalancing.Tools~~~~0.0.1.0
- Rsat.RemoteAccess.Management.Tools~~~~0.0.1.0
- Rsat.RemoteDesktop.Services.Tools~~~~0.0.1.0
- Rsat.ServerManager.Tools~~~~0.0.1.0
- Rsat.Shielded.VM.Tools~~~~0.0.1.0
- Rsat.StorageReplica.Tools~~~~0.0.1.0
- Rsat.VolumeActivation.Tools~~~~0.0.1.0
- Rsat.WSUS.Tools~~~~0.0.1.0
- Rsat.StorageMigrationService.Management.Tools~~~~0.0.1.0
- Rsat.SystemInsights.Management.Tools~~~~0.0.1.0
For more information on this change, you can visit the following URLS:
https://www.microsoft.com/en-ca/download/details.aspx?id=45520