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)
107 Replies
- nkadelCopper Contributor
ammarjaved The command is not for "Command Prompt". It is for "Powershell", run as Administrator.
- CamilanyCopper ContributorYou can also access some RSAT tools directly from the Start menu after installation. Just search for the tool name (like "Active Directory Users and Computers") in the Start search bar.
- AwenamCopper ContributorThanks for the tip. It is reapply helpful!
- e313905Copper Contributor
ammarjaved Older versions than (23H2) are running into errors with the installation through optional features using Windows 11. There is no fix that I have found for the moment.
- Elevated privileges used
- Difference admin accounts
- Domain/Off domain has been tried
- CMD and PS tried with their commands and scripts
- Updates pushed and rolled back
Nothing
- BenwingsIron ContributorHow many free space should be allocated for WSL Linux distro?
- 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.