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)
100 Replies
- JohnnelyIron ContributorHi, content update Needs to be updated.
- PatTheITGuyCopper Contributor
ammarjaved When you said,
Viewing Remote Server Administration Tools List in Windows 11
- Open the Command Prompt App with Administrative Privileges.
...
Some readers might not know that you are calling the Windows PowerShell a "Command Prompt". The two are not interchangeable...
- gandalftgCopper Contributor
this is an official Microsoft explanation ? you only list from the power shell and you go to settings ?
you cannot install it using PowerShell ?from PowerShell
Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online
this will install it also, no need mouse and spend time searching menus
- MarekFOLOCopper Contributor
- Anonymous
The correct path for Win11 is after running the install for RSAT, restart the system, then navigate to Settings/system/optional features. Pick the one you need and install them. Then, restart one more time. ammarjaved
- BoxOfFrogsBrass ContributorOnce installed, where do I find them? Nothing in the start menu..
- MN_Brett315Copper Contributor
Once installed, from the start menu, go to the "all apps" button and look for the menu item called "Windows Tools".
- Arun4444Copper Contributor
ammarjaved In Win11 pro, 'Optional Features' is found by going to:
Settings>SYSTEM,
then in the LEFT pane, scroll down until you see 'Optional Features'.
then at the top of the right pane you will see: 'Add an optional feature, there is a Blue Button top right corner [View Features]
Click the Blue Button.
Dialog that opens, scroll down to the feature you need and place a tick in the check box, click [Next]
- MN_Brett315Copper Contributor
I am running Windows 11 Pro 23H2, and I found that optional features are now located at SETTINGS | SYSTEM | OPTIONAL FEATURES, and then click the "View Features" button at the top of the window. You can just check the boxes of each of the RSAT tool features you want installed, no powershell scripts required.
- FGiffoneCopper Contributor
MN_Brett315 your reply was exactly what " I " was seeking on this issue. All of the other replies would have sent me off on tangents I do not have time to apply to the situation. Glad I read through ALL of the replies & stumbled upon yours. THANK YOU!
- FGiffoneCopper Contributor
MN_Brett315 MN_Brett315 your reply was exactly what " I " was seeking on this issue. All of the other replies would have sent me off on tangents I do not have time to apply to the situation. Glad I read through ALL of the replies & stumbled upon yours. THANK YOU!
- AndrejsSobolevsBrass Contributor
Hi,
If that is some home pc, then no problems. Problem appears, when you have company computer, where WSUS is used. Then this update does not work, because of Registry settings, which are pointing to WSUS. If you manually remove WSUS parameter (change 1 to 0) then it works, but you spend almost 8 hours, to install all RSAT* features. It is nightmare, trust me.
Imagine, if you need to install RSAT on 10 computers, what you will do? 🙂
Regards,
Andrejs
- abdul695Copper Contributor
ammarjaved i followed the instructions , i copied and paste this
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State
but it keeps saying parse not allowed i dont know why is that
- ChrisMorrisBrothIntCopper Contributor
- _jorelBrass ContributorUse PowerShell as Administrator.
Do not use Command Prompt.