How To Download And Install RSAT Tools On Windows 11
Remote Server Administration Tools (RSAT) allow system administrators to manage Windows servers from their own computers without having to log in to each one individually. This makes network management very easy, especially when you have a large network of servers.
Microsoft releases RSAT tools separately for each Windows version. In Windows 10 Version 1803 or earlier, users had to download RSAT tools and install them manually to enable it.
In Windows 10 Version 1809 and later, Microsoft simplified the installation of RSAT tools. RSAT tools were integrated into the optional features section. It was sufficient for the user to enable the RSAT components and Windows would automatically download, install, and enable them.
Now that Windows 11 has been released (at least the Insider Preview version), let’s check how we can download, install and enable RSAT tools in Windows 11.
How to install RSAT on Windows 11
Open Windows Settings from the Start Menu (or by pressing Windows key + i)
- Select Apps from the left hand menu in Settings app.
- In the right-hand pane, select Optional features
- Press View features button next to Add an optional feature
- Once another window appears, search for rsat.
- Select the features related to RSAT that you want to add and then click Next.
- Pressing the Install button will automatically trigger the download and installation process or the selected RSAT tools.
How to install RSAT using PowerShell in Windows 11
For sysadmins who want advanced stuff, RSAT tools can also be installed using PowerShell. The beauty of using PowerShell is that you will be able to install RSAT tools even on remote computers.
To install all RSAT tools using PowerShell with Administrator privileges, run the following command in PowerShell:
Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online
To install a specific module, you’ll need to give the name of the module instead of the *.
First, list down all the available RSAT tools. Open PowerShell as an administrator and run the following command:
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property Name, State.
Copy the name of the tool you want to install and run the command:
Get-WindowsCapability -Name Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0 -Online | Add-WindowsCapability -Online
In the above mentioned command, I’m installing the RSAT bitlocker module.
How to run the installed Remote Server Administration tools on Windows 11
While Microsoft is making installing RSAT tools easier, it is certainly not easy to find where they have been installed and how to run them. You can search in Windows Search or in the Start Menu if you know the name of the tool. Or you should go to the following folder:
Start Menu > All apps > Windows tools
This will open a folder where you will find all the RSAT tools installed on this computer. Double-click on any tool to run it.

Also see:
- How to Install RSAT Tools on Windows 10 (Version 1809 and Later)
- Download Remote Server Administrator Tools (RSAT) For Windows All Versions
- 4 Ways To View And Save List Of Updates Installed On Windows 10
- How To Run Windows Update From Command Line
- How To Enable Remote Desktop Connection RDC In Windows 11
There is also an incorrect space in one of the commands
It should be Add-WindowsCapability as per below
Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online
Not “Add-Windows Capability”
Hi Steve, thanks a lot for the correction. I have corrected the commands in the article.
The correction should be for example below :
Get-WindowsCapability -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 -Online | Add-WindowsCapability -Online
Effectively working for me
none of these worked, installing through setting fails out everytime, powershell doesn’t recognize the commands
What version of Windows 11 are you using? Make sure you are running Windows 11 Pro otherwise, the Home edition won’t install RSAT tools.
Add-WindowsCapability -Online -Name tool-name
use this
Did you ever resolve this issue Chris?