How To Install or Uninstall RSAT in Windows 11 - Microsoft Community Hub

Download as pdf or txt
Download as pdf or txt
You are on page 1of 9

20/4/23, 10:10 How to Install or Uninstall RSAT in Windows 11 - Microsoft Community Hub


 Home   Windows   Windows 11   How to Install or Uninstall RSAT in Windows 11

How to Install or Uninstall RSAT in Windows 11


Discussion Options 

ammarjaved CONTRIBUTOR 

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


1. Open the Command Prompt App with Administrative Privileges.
Skip
2. Type the below command and Skip
Skip
Skip
toto
press to
primary
toEnter
sidebar
Topic
footer
main Message
navigation
content
content
content
key.
https://techcommunity.microsoft.com/t5/windows-11/how-to-install-or-uninstall-rsat-in-windows-11/m-p/3273590 1/9
20/4/23, 10:10 How to Install or Uninstall RSAT in Windows 11 - Microsoft Community Hub

3. Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State

4. You'll get a list of all RSAT features and their current state whether installed or not
present.

Related: How to Lock Windows 11 PC (4 Ways)

Installing Remote Server Administration Tools in Windows 11


1. Launch the Windows 11 Settings app.
2. Select Apps from the left pane.
3. Choose Optional features.

Read More At: How to Install or Uninstall RSAT in Windows 11

Labels: configuration Features Update management

 215K Views  2 Likes  15 Replies  Reply

All Discussions  Previous Discussion Next Discussion 


15 Replies

EdieE1835
replied to ammarjaved

What if it doesnt show under Optional features?

 2 Likes
 Reply

Heather Poulsen
replied to EdieE1835

What edition are you running? RSAT is available on Pro and Enterprise editions of Windows
11.

 1 Like
 Reply

SomeGui
replied to ammarjaved Skip
Skip
Skip
Skip
toto
to
primary
tosidebar
Topic
footer
main Message
navigation
content
content
content 
https://techcommunity.microsoft.com/t5/windows-11/how-to-install-or-uninstall-rsat-in-windows-11/m-p/3273590 2/9
20/4/23, 10:10 How to Install or Uninstall RSAT in Windows 11 - Microsoft Community Hub

Step 2 should say to open POWERSHELL with admin privs.

 5 Likes
 Reply

masterkyle79
replied to ammarjaved

I am getting this message "'Get-WindowsCapability' is not recognized as an internal or


external command, operable program or batch file." can you say what I am doing wrong

 1 Like
 Reply

JackBenson
replied to ammarjaved

Here is the missing piece.


After Clicking Optional Features, Click the View features at the top then you can scroll down
to the RSAT options. Click the check box and then Next to install.

Hope that helps.

 1 Like
 Reply

MENostrom
replied to EdieE1835

@EdieE1835 RSAT is located under 'add an optional feature' - View Features.

You will have to click on each RSAT tool.

 1 Like
 Reply

MENostrom
replied to masterkyle79

Skip
Skip
Skip
Skip
toto
to
primary
tosidebar
Topic
footer
main Message
navigation
content
content
content

https://techcommunity.microsoft.com/t5/windows-11/how-to-install-or-uninstall-rsat-in-windows-11/m-p/3273590 3/9
20/4/23, 10:10 How to Install or Uninstall RSAT in Windows 11 - Microsoft Community Hub

Open elevated POWERSHELL window.

The directions are wrong

 4 Likes
 Reply

romariormr
replied to ammarjaved

@ammarjaved agora como faz para instalar os recursos ?


--
now how do you install the resources?

 0 Likes
 Reply

_jorel
replied to romariormr

@romariormr

I am including both steps here.


Run PowerShell as admin, then:

1 # Get RSAT items that are not currently installed:


2 $install = Get-WindowsCapability -Online |
3 Where-Object {$_.Name -like "RSAT*" -AND $_.State -eq "NotPresent"}
4
5 # Install the RSAT items that meet the filter:
6 foreach ($item in $install) {
7 try {
8 Add-WindowsCapability -Online -Name $item.name
9 }
10 catch [System.Exception] {
11 Write-Warning -Message $_.Exception.Message
12 }
13 }

Skip
Skip
Skip
Skip
toto
to
primary
tosidebar
Topic
footer
main Message
navigation
content
content
content

https://techcommunity.microsoft.com/t5/windows-11/how-to-install-or-uninstall-rsat-in-windows-11/m-p/3273590 4/9
20/4/23, 10:10 How to Install or Uninstall RSAT in Windows 11 - Microsoft Community Hub

 2 Likes
 Reply

AldoSan666
replied to ammarjaved

I managed to install RSAT in W11 by following the registry fix, remember to backup your
registry before attempting this.
1.-If you have a corporate computer or domain joined, most probably is you have WSUS, this
has to be not present for RSAT to install, make sure the user is admin of the W11 machine
temporaly or wont show up in Additional features.
2.-Install RSAT KB from Microsoft page.
3.-Stop Windows Update Service
4.-Navigate your Regedit.exe -
"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" , set
UseWUServer key to 0.
5.-Start Windows Update Service
6.-Install now RSAT either using GUI or Powershell or CMD, will work.

Cant believe just yet this is the only way to get through , also, that new error message
"couldn't install" Is the most frustrating thing I had ever seen. It does not helps at all! Hope
Microsoft does changes that!

Cheers!

 2 Likes
 Reply

AldoSan666
replied to EdieE1835

Is because the user is not having the KB installed of it, I was using my admin account to install
, but must be the user account in order for them to apper to that session.

 0 Likes
Skip
Skip
Skip
Skip
toto
to
primary
tosidebar
Topic
footer
main Message
navigation
content
content
content  Reply

https://techcommunity.microsoft.com/t5/windows-11/how-to-install-or-uninstall-rsat-in-windows-11/m-p/3273590 5/9
20/4/23, 10:10 How to Install or Uninstall RSAT in Windows 11 - Microsoft Community Hub

RichGodson
replied to _jorel

Thanks for posting this.


Just moved to Win11 on my work laptop and was finding it a real pita to get the AD Users
and Computers tool installed which I occasionally need to quickly & easily check AD objects.
Like many others, I found the Apps>Optional Features method suggested on most sites just
doesn't show anything when you search for "rsat" but this powershell method works nicely.

For the benefit of anyone (like me) who just wants to install a specific tool from the RSAT -
e.g. DSA.msc - the $_.Name attribute is different to $_.DisplayName shown in ammarjaved's
example: Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property
DisplayName, State

To see the $_.Name attribute needed when calling the Add-WindowsCapability cmdlet, just
use:
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property Name, State

 1 Like
 Reply

_jorel
replied to RichGodson

You're welcome. I was in a similar situation as you, upgrading to Windows 11 22H2 from
21H2 and forgot that I would lose all of these features in the upgrade. I had to dig through all
of my PowerShell scripts to find the one I use for this. I stripped out a bunch of extra stuff to
make it a bit simpler, though it does take a long time to install all of the features.

 2 Likes
 Reply

IrritatedPotato
replied to masterkyle79

@masterkyle79

Skip
Skip
Skip
Skip
toto
to
primary
tosidebar
Topic
footer
main Message
navigation
content
content
content

https://techcommunity.microsoft.com/t5/windows-11/how-to-install-or-uninstall-rsat-in-windows-11/m-p/3273590 6/9
20/4/23, 10:10 How to Install or Uninstall RSAT in Windows 11 - Microsoft Community Hub

Opening it in Powershell, not Command Prompt should work.

 1 Like
 Reply

Scottsmitha360
replied to AldoSan666

@AldoSan666
I don't see a link to a KB page. Can you provide one?
Thanks

 0 Likes
 Reply

Share

What's new
Surface Pro 9

Surface Laptop 5

Surface Studio 2+

Surface Laptop Go 2

Surface Laptop Studio

Surface Duo 2

Microsoft 365

Windows 11 apps

Microsoft Store
Account profile

Download Center
Skip
Skip
Skip
Skip
toto
to
primary
tosidebar
Topic
footer
main Message
navigation
content
content
content

https://techcommunity.microsoft.com/t5/windows-11/how-to-install-or-uninstall-rsat-in-windows-11/m-p/3273590 7/9
20/4/23, 10:10 How to Install or Uninstall RSAT in Windows 11 - Microsoft Community Hub

Microsoft Store support

Returns

Order tracking

Virtual workshops and training

Microsoft Store Promise

Flexible Payments

Education
Microsoft in education

Devices for education

Microsoft Teams for Education

Microsoft 365 Education

Education consultation appointment

Educator training and development

Deals for students and parents

Azure for students

Business
Microsoft Cloud

Microsoft Security

Dynamics 365

Microsoft 365

Microsoft Power Platform

Microsoft Teams

Microsoft Industry

Small Business

Developer & IT
Azure

Developer Center

Documentation Skip
Skip
Skip
Skip
toto
to
primary
tosidebar
Topic
footer
main Message
navigation
content
content
content

https://techcommunity.microsoft.com/t5/windows-11/how-to-install-or-uninstall-rsat-in-windows-11/m-p/3273590 8/9
20/4/23, 10:10 How to Install or Uninstall RSAT in Windows 11 - Microsoft Community Hub

Microsoft Learn

Microsoft Tech Community

Azure Marketplace

AppSource

Visual Studio

Company
Careers

About Microsoft

Company news

Privacy at Microsoft

Investors

Diversity and inclusion

Accessibility

Sustainability

Sitemap Contact Microsoft Privacy Manage cookies Terms of use Trademarks Safety & eco
About our ads © Microsoft 2023

https://techcommunity.microsoft.com/t5/windows-11/how-to-install-or-uninstall-rsat-in-windows-11/m-p/3273590 9/9

You might also like