Forum Discussion

ammarjaved's avatar
ammarjaved
Iron Contributor
Apr 01, 2022

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.
  2. Type the below command and press Enter key.
  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: (external link removed by moderator)

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: (external link removed by moderator)

100 Replies

  • AldoSan666's avatar
    AldoSan666
    Copper Contributor
    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!
    • Tsouth106's avatar
      Tsouth106
      Copper Contributor
      You must have SCCM or some other service that is modifying the 'UseWUServer' key, otherwise you would not have to go through those steps. I have a PS script that does all of that and installs RSAT, then reverts the key, so our CM WSUS still manages updates. You can also download the FOD ISO for W11, grab the RSAT tools cab files, and create a package/program in SCCM to deploy it. if you use powersehell or dism to install it, make sure to use the -LimitAccess on the command line when referencing the cab files, otherwise it will try to default to Microsoft Windows Update for the source files.
      • WD1954's avatar
        WD1954
        Copper Contributor

        A much easier solution is to simply download the Windows 10 file (works for Windows 11 Pro) from this site.... 

        https://www.microsoft.com/en-us/download/details.aspx?id=45520&sid=9iad8N

         

        I searched everywhere and tried the suggested solutions to activate the RSAT file options on my PC but unfortunately nothing worked. My PC is running the latest version (23H2) of Windows 11 Pro and the optional features simply are not showing up under the Apps selection.  As I was able to get the RSAT I abandoned attempting to get the optional features to work but if someone has a different solution it will be most welcome and appreciated.

         Tsouth106 

    • _jorel's avatar
      _jorel
      Brass Contributor

      romariormr 

       

      I am including both steps here.

      Run PowerShell as admin, then:

       

      # Get RSAT items that are not currently installed:
      $install = Get-WindowsCapability -Online |
        Where-Object {$_.Name -like "RSAT*" -AND $_.State -eq "NotPresent"}
      
      # Install the RSAT items that meet the filter:
      foreach ($item in $install) {
        try {
          Add-WindowsCapability -Online -Name $item.name
        }
        catch [System.Exception] {
          Write-Warning -Message $_.Exception.Message
        }
      }

       

       

      • e313905's avatar
        e313905
        Copper Contributor
        A great help. Thank you for providing your input.
  • JackBenson's avatar
    JackBenson
    Copper Contributor

    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.

  • masterkyle79's avatar
    masterkyle79
    Copper Contributor

    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

  • SomeGui's avatar
    SomeGui
    Brass Contributor
    Step 2 should say to open POWERSHELL with admin privs.
    • JoeR1972's avatar
      JoeR1972
      Copper Contributor

      SomeGui Can't believe I fell for this one. I've been in IT for 25 years and I tried to run a ps cmdlet in a cmd LOL

      • ESGWill2020's avatar
        ESGWill2020
        Copper Contributor
        Happens to the best of us, luckily you can launch PS from inside the CMD and roll on with your life 😉
      • Sonya_S's avatar
        Sonya_S
        Copper Contributor

        It doesn't run in cmd it runs in PowerShell in an elevated session

    • deleoa5's avatar
      deleoa5
      Copper Contributor

      EdieE1835 got to Settings > System > Optional Features. Click on View features on the tab "Add an optional feature". Once you click on View Features, you'll find RSAT there. 

      • ESGWill2020's avatar
        ESGWill2020
        Copper Contributor
        Then most likely, you have a home or school version. RSAT is only for Pro and Enterprise.

Resources