Forum Discussion
How to Install or Uninstall RSAT in Windows 11
How to Install or Uninstall RSAT in Windows 11
Remote Server Administration Tools (RSAT) is an essential tool for Windows administrators. This tool is designed to help administrators manage and maintain the servers from a remote location. Remote Server Administration Tools (RSAT) are used by IT administrators to handle Windows Server roles and features. It was introduced in Windows Server 2008 R2.
Viewing Remote Server Administration Tools List in Windows 11
- Open the Command Prompt App with Administrative Privileges.
- Type the below command and press Enter key.
-
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State
- You'll get a list of all RSAT features and their current state whether installed or not present.
Related: (external link removed by moderator)
Installing Remote Server Administration Tools in Windows 11
- Launch the Windows 11 Settings app.
- Select Apps from the left pane.
- Choose Optional features.
Read More At: (external link removed by moderator)
98 Replies
- CynthiaamIron ContributorThis is a great tutorial, thank you
- DosDosIron ContributorTHANKS!!!! It is working perfectly
- szgrucaCopper Contributor
After going through all the solutions without success I finally found the working one as described here:
https://answers.microsoft.com/en-us/windowserver/forum/all/windows-11-23h2-rsat-install-failing-error-code/b6f3a83e-9f31-4800-9c79-37b09a49a106
## ********************************************************* ##
FIX
Download Windows 11 languages and optional features x64 dvd
https://learn.microsoft.com/en-us/azure/virtual-desktop/windows-11-language-packs
# mul_windows_11_languages_and_optional_features_x64_dvd_dbe9044b.iso
Get-WindowsCapability -Name RSAT* -Online -Source "E:\LanguagesAndOptionalFeatures" | Select-Object -Property DisplayName, State
Get-WindowsCapability -Name RSAT* -Online -Source "E:\LanguagesAndOptionalFeatures" | Add-WindowsCapability -Online -Source "E:\LanguagesAndOptionalFeatures" -ErrorAction SilentlyContinue
Note: Previous answer does not work on 23H2 and question locked
- MilovinCopper ContributorThis worked great, much appreciated!
- NguyenaisBronze Contributorgreat tutorial, thanks
- ESGWill2020Copper Contributor
ammarjaved Thanks for the Powershell Commands! FYI Via the GUI on W11 23H2, i"Optional Features are not under Add Remove Apps, anymore. It's under Settings| System > Optional Features
- RacinDaveCopper Contributor
Thank you for this. After searching I found 10 wrong methods before I found this. I was looking in the old places.
- JasonmoddCopper ContributorAny negative impact after install RSAT on Windows 11?
- ProvDCopper Contributor
Jasonmodd "Any negative impact after install RSAT on Windows 11?"
We updated from Windows 10 to Windows 11.
I used a package downloaded from Microsoft to install the RSAT that was intended for use on Windows 10.
That caused some obscure app to crash repeatedly. I removed RSAT.RSAT wasn't listed under my Optional Packages.
The Powershell
Add-WindowsCapability -Online -Name "Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0"
worked for me, but like all of these Add-WindowsCapability commands, it took way too long, around twenty minutes.
I use it at least a few times each week and I have noticed no ill effects.
- Nobel_BaynesIron ContributorIs RSAT available on Windows 11 Home?
- Arun4444Copper Contributor
Not available in Win-Home. Only Win-Pro, & Enterprise versions.
- Afsaneh1855Copper Contributor
I'm facing this issue in Windows 11. and I almost tried whatever you think of. Does anybody know any solution? It keeps saying staged.
- dudexyCopper ContributorDoesnt work on windows 11:
C:\Windows\System32>Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State
'Get-WindowsCapability' is not recognized as an internal or external command,
operable program or batch file.
C:\Windows\System32>- oguggCopper Contributor
Hi dudexy , With "cmd" it's not working, it's working with an admin "powershell" :
PS C:\> Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State
DisplayName State
----------- -----
RSAT : outils Services de domaine Active Directory et Lightweight Directory Services Installed
RSAT : Module PowerShell pour Azure Stack HCI Installed
RSAT : utilitaires d'administration de chiffrement de lecteur BitLocker Installed
RSAT : Outils des services de certificats Active Directory Installed
RSAT : outils du serveur DHCP Installed
RSAT : outils du serveur DNS Installed
RSAT : outils de mise en grappe de basculement Installed
RSAT : outils de services de fichiers Installed
RSAT : Outils de gestion des stratégies de groupe Installed
RSAT : client Gestion des adresses IP (IPAM) Installed
RSAT : outils LLDP Data Center Bridging Installed
RSAT : outils de gestion du contrôleur de réseau Installed
RSAT : outils d'équilibrage de charge réseau Installed
RSAT : outils de gestion de l'accès à distance Installed
RSAT : Outils des services Bureau à distance Installed
RSAT : gestionnaire de serveur Installed
RSAT : Outils de gestion des services de migration du stockage Installed
Outils d'administration de serveur distant : module de réplica de stockage pour Windows PowerShell Installed
RSAT : Module Informations système pour Windows PowerShell Installed
RSAT : Outils d'activation en volume Installed
RSAT : outils Windows Server Update Services Installed
PS C:\>- SoCR24Copper ContributorDial-in tab is not available in the Active Directory Users and Computers MMC snap-in after you install Remote Server Administration Tools.
Does anyone know to install / register the relative dll or any other way to enable it?
Thank you in advance
- JohnnelyIron ContributorHi, content update Needs to be updated.