Introduction
Imagine managing multiple servers from a single computer without physically accessing them!
Sounds convenient, right?
That’s exactly what Remote Server Administration Tools (RSAT) allow you to do!
RSAT is a set of tools developed by Microsoft that helps IT administrators manage Windows Servers remotely. Whether you are handling Active Directory, DNS, Group Policy, or other server roles, RSAT makes it easy to configure and monitor everything from your local machine.
But how can you install RSAT on Windows 10?
Don’t worry!
In this guide, we will take you through the process step by step, ensuring you get everything set up properly.
Also Read: A Guide To Locating & Editing a Host File in Windows 10
How to Install Remote Server Administration Tools on Windows 10
➢ Method 1: Installing RSAT on Windows 10 (Version 1809 and Later)
➔ First, you have to click on the Start Menu.

➔ Once the menu opens, select ‘Settings’ (gear icon).

➔ In the Settings window, you need to click on ‘Apps.’

➔ Under the ‘Apps & Features’ section, click ‘Manage Optional features.’

➔ You have to scroll down and click on ‘Add a feature.’

In the search box, you just type ‘RSAT.’
After that, you will see a list of RSAT tools. You select the ones you require, such as:
- RSAT: Active Directory Domain Services and Lightweight Directory Tools
- RSAT: DNS Server Tools
- RSAT: Group Policy Management Tools
- RSAT: DHCP Server Tools
➔ Once you select the required ones, Click ‘Install.’
The installation process may take a few minutes. Once it is completed, you have to restart your computer to ensure everything works properly.
➔ For verification, open the Start Menu and type the name of the RSAT tool you installed (e.g., Active Directory Users and Computers).
If it opens successfully, RSAT has been installed correctly!
Also Read: How Can You Find The Location of the Windows Log Files?
➢ Method 2: Installing RSAT on Windows 10 (Version 1803 and Earlier)
RSAT isn’t built-in for older versions, so you need to download and install it manually.
➔ To download it, you need to visit the official Microsoft Download Center.

➔ In that, you have to select the correct version based on your system:
- 64-bit (x64) RSAT package for most modern PCs.
- 32-bit (x86) RSAT package for older PCs.

➔ Once you select the proper version, click ‘Download’ and save the file.

➔ You have to locate the downloaded file (It will usually be in the Downloads folder).
➔ Once you find the file, double-click it to start the installation.
➔ To complete the installation, follow the on-screen instructions!
➔ Once the installation is complete, you will see the following message.

➔ After that, open ‘Control Panel.’

➔ In that, click on ‘Programs’

➔ In the ‘Programs and Features’ section, click ‘Turn Windows features on or off.’

➔ You have to scroll down and check the boxes for your needed RSAT tools.

➔ Once checking the box, click ‘OK’, then restart your computer.

Like the previous method mentioned above, search for the installed tools in the Start Menu to confirm they are working correctly.
Also Read: How to Launch Windows Internet Information (IIS) Manager?
➢ Method 3: Installing RSAT Using PowerShell
If you prefer installation using PowerShell, follow the below-given steps:
➔ Firstly, you have to click on the Start Menu.

➔ In that, you need to type ‘PowerShell.’

➔ In that, Right-click on Windows PowerShell and select ‘Run as administrator.’

➔ You need to check the list of available RSAT features by running the following command:
Get-WindowsCapability -Online | Where-Object Name -like “RSAT*” |
This command will display all RSAT tools that can be installed.
➔ For installing a specific RSAT tool, you have to use the following command:
Add-WindowsCapability -Online -Name <FeatureName> |
*Note: You need to replace <FeatureName> with the exact name from the previous command output. For example, to install the Active Directory module, run:
Add-WindowsCapability -Online -Name RSAT:ActiveDirectory-Tools~~~~0.0.1.0 |
➔ After installation, you need to verify if the tool is available using:
Get-WindowsCapability -Online | Where-Object Name -like “RSAT*” | Select-Object Name,State |
➔ If the State is Installed, then the tool has been successfully installed.
The installation process may take a few minutes. Once it is completed, you have to restart your computer to ensure everything works properly.
For Installation of Other Features, below are given commands:
➢ DNS Server Tools:
Add-WindowsCapability -Online -Name RSAT:DNS-Server-Tools~~~~0.0.1.0 |
➢ Group Policy Management Tools:
Add-WindowsCapability -Online -Name RSAT:GroupPolicy-Management~~~~0.0.1.0 |
➢ DHCP Server Tools:
Add-WindowsCapability -Online -Name RSAT:DHCP-Tools~~~~0.0.1.0 |
➢ File Services Tools:
Add-WindowsCapability -Online -Name RSAT:File-Services~~~~0.0.1.0 |
➢ Hyper-V Tools:
Add-WindowsCapability -Online -Name RSAT:Hyper-V-Tools~~~~0.0.1.0 |
➢ Remote Desktop Services Tools:
Add-WindowsCapability -Online -Name RSAT:RDS-Tools~~~~0.0.1.0 |
➢ Storage Migration Service Tools:
Add-WindowsCapability -Online -Name RSAT:Storage-Migration-Service~~~~0.0.1.0 |
➢ Windows Server Update Services (WSUS) Tools:
Add-WindowsCapability -Online -Name RSAT:Windows-Server-Update-Services~~~~0.0.1.0 |
➢ RSAT: IP Address Management (IPAM) Client:
Add-WindowsCapability -Online -Name RSAT:IPAM-Client~~~~0.0.1.0 |
➢ RSAT: Network Controller Tools
Add-WindowsCapability -Online -Name RSAT:NetworkController-Tools~~~~0.0.1.0 |
➢ RSAT: BitLocker Drive Encryption Administration Utilities
Add-WindowsCapability -Online -Name RSAT:BitLocker-Tools~~~~0.0.1.0 |
➢ RSAT: Certificate Services Tools
Add-WindowsCapability -Online -Name RSAT:CertificateServices-Tools~~~~0.0.1.0 |
➢ RSAT: Storage Replica Module
Add-WindowsCapability -Online -Name RSAT:Storage-Replica~~~~0.0.1.0 |
➢ RSAT: Volume Activation Tools
Add-WindowsCapability -Online -Name RSAT:VolumeActivation-Tools~~~~0.0.1.0 |
➢ RSAT: Failover Clustering Tools
Add-WindowsCapability -Online -Name RSAT:FailoverCluster-Tools~~~~0.0.1.0 |
➢ RSAT: System Insights
Add-WindowsCapability -Online -Name RSAT:System-Insights~~~~0.0.1.0 |
Also Read: What is Telnet Command in Windows & How to Use it?
Troubleshooting Tips
- RSAT not showing in optional features? You need to ensure your Windows is updated to the latest version.
- Installation failed? In this case, you need to try restarting your computer and installing it again.
- Tools missing after installation? Some RSAT features require additional configuration. You have to check your Windows Features settings.
Conclusion
RSAT is an essential toolset for IT professionals managing remote servers. Whether you’re using Windows 10 (version 1809+) with built-in features, manually downloading for older versions, or using PowerShell for a quicker setup, following the steps above will help you easily set up RSAT.
Once RSAT is installed, you can efficiently manage servers without leaving your desk.
Happy server administration!

Get Windows VPS hosting with top-notch 24/7 support