Last Update: Sep 04, 2024 | Published: Mar 28, 2019
The Remote Server Administration Tools (RSAT) package familiar server tools, like Active Directory Users and Computers (ADUC) and Server Manager, for Windows client operating systems. The tools have long been built-in to Windows Server and there is no need to download them. But until Windows 10 version 1809, you needed to download the right RSAT package for your version of Windows and then install the tools using the Control Panel.
If you are wondering why I’m discussing RSAT now when Microsoft is pushing Windows Admin Center (WAC) as the future of graphical user interface administration in Windows Server, that is because there are still many tools not available as part of WAC. Most notably, for administering Active Directory. But in general, WAC is the way forward if you want to use GUI tools for Windows Server management. You can find more information on using WAC on Petri: Windows Admin Center — The Future of the Windows Server GUI and Getting Started with the Windows Admin Center.
RSAT is a Feature-On-Demand in Windows 10 version 1809 and later. But unlike in Windows Server and versions of Windows that require RSAT to be downloaded manually, RSAT is installed using the Settings app rather than the Control Panel.
After a few minutes, the RSAT tool you selected will be installed on your device.
You can also install and remove RSAT in Windows using PowerShell. Start by opening a PowerShell prompt with local administrator privileges. To see which RSAT tools you have installed, use the Get-WindowsCapability cmdlet:
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property Name, State
To install all the available tools, pipe the results of Get-WindowsCapability to Add-WindowsCapability:
Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability –Online
To install individual tools, use the name of the tool you want to add. You can get the name from the Get-WindowsCapability cmdlet and add it to Add-WindowsCapability as shown here. In this example, I’m installing the Certificate Services tools.
Add-WindowsCapability -Name Rsat.CertificateServices.Tools~~~~0.0.1.0 –Online
To remove a tool, use Remove-WindowsCapability instead of Add-WindowsCapability:
Remove-WindowsCapability -Name Rsat.CertificateServices.Tools~~~~0.0.1.0 –Online
Note that Feature-On-Demand requires Microsoft Update. If Windows Update is configured to use an internal Windows Update server or System Center Configuration Manager (SCCM) Software Update Point (SUP), then you won’t be able to install RSAT without taking extra steps. Either you need to temporarily configure the device to use Microsoft Update or go to Windows Update and select Search for updates online.