Windows OS Hub
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux

 Windows OS Hub / Windows 11 / How to Install RSAT (Remote Server Administration Tools) on Windows

March 24, 2026

How to Install RSAT (Remote Server Administration Tools) on Windows

The Remote Server Administration Tools (RSAT) enable IT administrators to remotely manage roles and features on Windows Server hosts from Windows workstations or other servers. The RSAT tools include management MMC snap-ins, command-line tools, and PowerShell modules. When installing RSAT tools, users can select the specific remote management and administration tools they need. RSAT can be installed on Windows in two ways: through the GUI or the command prompt using PowerShell or DISM commands. This article explains how to install the Remote Server Administration Tools (RSAT) on Windows 11/10 workstations, hosts running Windows Server 2025/2022/2019/2016, and offline computers in isolated networks.

Contents:
  • Install RSAT Tools on Windows 11/10
  • How to Install RSAT on Previous Versions of Windows (10, 8.1, or 7)
  • Installing RSAT Tools on Windows with PowerShell
  • How to Install Remote Server Administration Tools on Windows Server
  • Fix RSAT Tools Installation Error 0x800f0954 on Windows
  • Offline RSAT Installation Using the FoD Image
  • How to Remove RSAT Tools from Windows

Install RSAT Tools on Windows 11/10

In Windows 11 and recent Windows 10 builds, RSAT components are included in the Feature on Demand (FoD) component set. These features are missing from the Windows image, but they can be downloaded and installed on demand from the Windows Update servers.

RSAT can only be installed on Professional and Enterprise editions of Windows 11 and 10, but not on Windows Home.

On Windows 11, RSAT administrative tools can be installed via the Settings app. Go to Settings -> Apps -> Optional Features -> Add an optional feature.

Type RSAT into the search bar to view the available features.

ADD a specific rsat tool via optonal features in Windows 11

 The list of optional features includes components such as the OpenSSH server for Windows, the built-in SSH client, the SNMP service, etc. These are known as Feature on Demand (FoD) components.

The following RSAT administration tools can be installed on Windows (the set of RSAT options available on Windows 11/10 desktop editions is slightly smaller than the list of tools available on Windows Server):

  • RSAT: Active Directory Domain Services and Lightweight Directory Services Tools
  • RSAT: BitLocker Drive Encryption Administration Tools for AD
  • RSAT: Active Directory Certificate Services Tools
  • RSAT: DHCP Server Tools
  • RSAT: DNS Server Tools
  • RSAT: Failover Clustering Tools
  • RSAT: File Services Tools
  • RSAT: Group Policy Management Tools – GPO management console and the Group Policy module for PowerShell
  • RSAT: IP Address Management (IPAM) Client
  • RSAT: Data Center Bridging LLDP Tools
  • RSAT: Network Controller Management Tools
  • RSAT: Network Load Balancing Tools
  • RSAT: Remote Access Management Tools
  • RSAT: Remote Desktop Services Tools
  • RSAT: Server Manager
  • RSAT: Shielded VM Tools
  • RSAT: Storage Migration Service Management Tools
  • RSAT: Storage Replica Module for Windows PowerShell
  • RSAT: System Insights Module for Windows PowerShell
  • RSAT: Volume Activation Tools (KMS activation server console)
  • RSAT: Windows Server Update Services Tools.

Select the required RSAT components and click Install.

Online installing RSAT features on Windows 11

After installation, some RSAT components may require a reboot.

After installation, RSAT graphical MMC snap-ins are accessible in the Windows Tools (in Windows 11), the Administrative Tools section in Control Panel (Control Panel\System and Security\Administrative Tools) or under the folder %ProgramData%\Microsoft\Windows\Start Menu\Programs\Administrative Tools.

RSAT graphical snap-ins in Administrative tools of Control panel

How to Install RSAT on Previous Versions of Windows (10, 8.1, or 7)

In earlier Windows 10 versions (prior to build 1809) and Windows 8.1, RSAT tools can be enabled after installing the separate KB2693643 update, which requires manually downloading the MSU file from the Microsoft website (https://www.microsoft.com/en-us/download/details.aspx?id=45520). Windows 7 requires update KB958830 to enable RSAT tools.

After installing the KB2693643 update, you can enable the necessary RSAT tools from the Control Panel -> Programs and Features -> Turn Windows features on or off (optionalfeatures.exe). Expand the Remote Server Administration Tools and select the admin tools that you want to enable.

Install RSAT features in old Windows versions

Installing RSAT Tools on Windows with PowerShell

The RSAT tools can be installed on Windows 10 and 11 using PowerShell or DISM commands.

Open a PowerShell console and list the available RSAT features on a computer:

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

In this example, the DHCP and DNS management tools are installed (Installed), while all other RSAT modules are missing (NotPresent).

get-windowscapability: list installed rsat items with powershell

To install a specific RSAT feature on Windows, use the PowerShell cmdlet Add-WindowsCapability. The RSAT component’s system name must be specified as an argument to the command. Use the following command to display a complete list of available RSAT tool names in Windows 11:

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

RSAT tool name
Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0
Rsat.AzureStack.HCI.Management.Tools~~~~0.0.1.0
Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0
Rsat.CertificateServices.Tools~~~~0.0.1.0
Rsat.DHCP.Tools~~~~0.0.1.0
Rsat.Dns.Tools~~~~0.0.1.0
Rsat.FailoverCluster.Management.Tools~~~~0.0.1.0
Rsat.FileServices.Tools~~~~0.0.1.0
Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0
Rsat.IPAM.Client.Tools~~~~0.0.1.0
Rsat.LLDP.Tools~~~~0.0.1.0
Rsat.NetworkController.Tools~~~~0.0.1.0
Rsat.NetworkLoadBalancing.Tools~~~~0.0.1.0
Rsat.RemoteAccess.Management.Tools~~~~0.0.1.0
Rsat.RemoteDesktop.Services.Tools~~~~0.0.1.0
Rsat.ServerManager.Tools~~~~0.0.1.0
Rsat.StorageMigrationService.Management.Tools~~~~0.0.1.0
Rsat.StorageReplica.Tools~~~~0.0.1.0
Rsat.SystemInsights.Management.Tools~~~~0.0.1.0
Rsat.VolumeActivation.Tools~~~~0.0.1.0
Rsat.WSUS.Tools~~~~0.0.1.0

To install a specific RSAT tool, for example, the AD management tools (which include the ADUC console and the Active Directory module for Windows PowerShell), run the command:

Add-WindowsCapability –online –Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0

To install the DNS management console and the PowerShell DNSServer module, run:

Add-WindowsCapability –online –Name Rsat.Dns.Tools~~~~0.0.1.0

To install all RSAT tools at once, run:

Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability –Online

Add-WindowsCapability install rsat using powershell

Now, check that the RSAT tools are installed (Installed state).

all rsat tools installed in windows 10 1809

The DISM.exe command can also be used to install RSAT tools on Windows:

DISM.exe /Online /add-capability /CapabilityName:Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 /CapabilityName:Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0 /CapabilityName:Rsat.WSUS.Tools~~~~0.0.1.0

How to Install Remote Server Administration Tools on Windows Server

RSAT tools can be installed on Windows Server 2025/2022/2019/2019 without an internet connection. The RSAT components are typically installed automatically when the corresponding Windows Server roles or features are installed. Or you can add them manually using the Server Manager (Add Roles and Features -> Features -> Remote Server Administration Tools). The RSAT components are available under both the Feature Administration Tools and Role Administration Tools sections. Select the tools you want to install and click Next -> Next.

windows server: install remote server administration tools

Use the Install-WindowsFeature cmdlet to install RSAT features on Windows Server. List the available RSAT tools on Windows Server:

Get-WindowsFeature -Name RSAT*

Specify the name of the required RSAT feature to install it. For example, let’s install the RDS Licensing Diagnosis console:

Install-WindowsFeature RSAT-RDS-Licensing-Diagnosis-UI

windows server 2022 and 2019: Install-WindowsFeature RSAT

Install the Hyper-V Manager remote management console and the Hyper-V PowerShell module:

Get-WindowsFeature | Where-Object {$_.Name -like "RSAT-Hyper-V-Tools"}| Install-WindowsFeature -IncludeAllSubFeature

You can access installed graphical RSAT consoles from Server Manager or via the Control Panel.

Fix RSAT Tools Installation Error 0x800f0954 on Windows

If your Windows computer is configured to receive updates from a local update server (WSUS) or SCCM (Configuration Manager) Software Update Point (SUP), you may receive error 0x800f0954 when attempting to add RSAT tools using the GUI, Add-WindowsCapability, or DISM:

DISM add-capability rsat error 0x800f0954

The problem in this case is that Windows attempts to download the RSAT package from your local update server, resulting in a 0x800f0954 error.

To bypass the local WSUS when installing optional Windows features and Features on Demand (including RSAT), you must enable the special Group Policy option

  1. Open the local GPO editorgpedit.mscor use the domain Group Policy Management Console (gpmc.msc)
  2. Go to the Computer Configuration -> Administrative Templates -> System
  3. Enable the policy Specify settings for optional component installation and component repair, and check the option Download repair content and optional features directly from Windows Updates instead of Windows Server Updates Services (WSUS)windows 10 1903 policy Specify settings for optional component installation and component repair, and check the option Download repair content and optional features directly from Windows Updates instead of Windows Server Updates Services (WSUS)
  4. Save the changes and update Group Policy settings (gpupdate /force);
  5. Restart the Windows Update service:
    net stop wuauserv
    net start wuauserv
  6. The installation of RSAT using PowerShell or DISM should now be completed without any errors

Alternatively, you can temporarily disable local WSUS usage via the UseWUServer registry parameter, install RSAT, and then restore the parameter to its original value.

Disable the Windows Update service and change the UseWUServer value to 0:

Stop-Service wuauserv
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "UseWUServer" -Value 0
Start-Service wuauserv

Start the installation of the required RSAT feature:

Add-WindowsCapability –online –Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0

Set the UseWUServer parameter to its original value:

Stop-Service wuauserv
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "UseWUServer" -Value 1
Start-Service wuauserv

Some registry settings may prevent a connection to Microsoft Update when obtaining RSAT components. If you receive error 0x8024002e when installing RSAT, change the values of the following registry parameters in the HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate:

  • DoNotConnectToWindowsUpdateInternetLocations = 0
  • DisableWindowsUpdateAccess = 0

Then restart the wuauserv service.

Offline RSAT Installation Using the FoD Image

If you cannot access the Microsoft Update servers directly from your workstation, you can use an offline RSAT installation. This is recommended for corporate networks that are disconnected from the internet.

For offline RSAT installation, download the Languages and Optional Features for Windows 11 ISO image containing the Feature on Demand (FoD) components matching your Windows 10/11 version from the Microsoft website (https://learn.microsoft.com/en-us/azure/virtual-desktop/windows-11-language-packs)

Windows11 download languages and-optional features ISO image

For example, for Windows 11 25H2, download the image W11-25H2-FoD-26100.1.240331-1435.ge_release_amd64fre_CLIENT_LOF_PACKAGES_OEM.iso. Mount this ISO image in Windows. To install the RSAT tools from a local source, use the -Source parameter to specify the path to the LanguagesAndOptionalFeatures folder in the offline FoD image:

Add-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 -Source D:\LanguagesAndOptionalFeatures -LimitAccess

Add-WindowsCapability RSAT offline from ISO FoD image

You can also use the above Group Policy option to specify the path to the directory containing the FoD image files. To do this, specify the UNC path to the directory containing the FoD files in the Alternative source file path parameter.

windows 10 1903 fod source path via gpo

Or, you can set this parameter via the registry with a Group Policy Preferences by specifying the path to the FoD directory in the LocalSourcePath parameter (REG_Expand_SZ) under the registry key HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Servicing.

Users will now be able to install the RSAT feature independently via the Optional Features graphical interface in Windows.

To install RSAT offline on previous builds of Windows 10 and Windows Server 2016, download the WindowsTH-RSAT_WS2016-x64.msu package, extract it, and then install the CAB file using this command:

DISM.exe /Online /Add-Package /PackagePath:WindowsTH-KB2693643-x64.cab  

Common Remote Server Administration Tools Installation Errors on Windows:

  • 0x8024402c, 0x80072f8f – Windows cannot access the Windows Update servers to download the RSAT binary files. Check that you have Internet access, or install the components from a local FoD image: Add-WindowsCapability -Online -Name Rsat.Dns.Tools~~~~0.0.1.0 -LimitAccess -Source D:\LanguagesAndOptionalFeatures
  • 0x800f081f – check the path to the directory containing the RSAT components specified in the  –Source parameter
  • 0x800f0950 – the error is similar to 0x800f0954
  • 0x80070490 – check and repair your Windows image using DISM: DISM /Online /Cleanup-Image /RestoreHealth

How to Remove RSAT Tools from Windows

To uninstall a specific RSAT feature on Windows, use the command:

Remove-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0

Remove-WindowsCapability RSAT tools

So, we looked at how to install the RSAT administration tools on Windows, which can be used to remotely manage various server roles on Windows Server hosts.

35 comments
36
Facebook Twitter Google + Pinterest
PowerShellWindows 10Windows 11Windows Server 2022Windows Server 2025
previous post
How to Reset the Group Policy Settings on Windows
next post
Find Inactive (Unused) Distribution Lists in Exchange/Microsoft 365

Related Reading

How to Restore Deleted EFI System Partition in...

March 11, 2024

How to Allow Multiple RDP Sessions on Windows...

March 15, 2024

How to Run Program without Admin Privileges and...

June 8, 2023

Wi-Fi (Internet) Disconnects After Sleep or Hibernation on...

March 15, 2024

Managing Windows Firewall Rules with PowerShell

March 11, 2024

Fix: Can’t Extend Volume in Windows

March 11, 2024

How to Delete Old User Profiles in Windows

March 15, 2024

Upgrading to Windows 11 on Unsupported Hardware

February 19, 2026

35 comments

Vandrey Trindade October 4, 2018 - 1:41 pm

What I did in my work computer was: Try to install all RSAT features using PowerShell, error 0x800f0954 showed up, then I wen to settings, Windows Update, search online for updates. Then it downloaded and installed all RSAT tools for me, without having to disable WSUS.

Reply
Xajuan October 16, 2019 - 5:10 pm

Get-WindowsCapability -Name RSAT* -Online | where State -EQ NotPresent |select name| Add-WindowsCapability -Online

Reply
Michael Patterson October 4, 2018 - 4:29 pm

just a few typos in there otherwise good work.
You have the following in a few spots
Add-WindowsCapacity

Should be
Add-WindowsCapability

Reply
admin October 5, 2018 - 1:09 pm

Thanks! I fixed the error

Reply
Daniel_Laixer February 28, 2022 - 11:14 am

You’re missing one, guys:

“You can use the Add-WindowsCapacity cmdlet to install RSAT features on Windows.”

Reply
admin February 28, 2022 - 11:37 am

Thanks!

Reply
Eduardo Chou October 10, 2018 - 3:08 pm

I can’t see BitLocker Recovery Key or BitLocker tab even tough it’s installed. I wondering if is it a bug?!

Reply
kevin January 3, 2019 - 6:39 pm

Love the article!

Reply
Henning C. Nielsen January 28, 2019 - 11:27 am

The command to install only disabled RSAT components can be made simpler. Like this:
Get-WindowsCapability -Name RSAT* -Online | where State -EQ NotPresent | Add-WindowsCapability -Online

Reply
Nathan April 22, 2019 - 2:00 am

[My New Blog Post]: Quick Start Guide RSAT Windows 10 1903 Offline Feature On Demand – SCCM-MDT OSD.

Use this quick guide to install RSAT tools for Windows 10 1903 (or 1809) without the need for an internet connection when using an SCCM or MDT OS Deployment task sequence.

Sure you can find ONLINE PowerShell scripts but that requires an internet connection. This blog post removes that need for customers. #Windows10 #MDT #WaaS #SCCM

Reply
Установка Remote Server Administration Tools (RSAT) в Windows 10 v1903 в Offline-режиме - Блог IT-KB May 31, 2019 - 10:50 am

[…] этой ситуации администраторы используют разные пути. Некоторые идут по пути наименьшего сопротивления, не заморачиваясь при этом вопросами удобства и […]

Reply
J June 9, 2019 - 7:59 am

“(…) starting from Windows 10 1809 (17763), it is no longer necessary to download the latest version of RSAT from Microsoft. Now, the Remote Server Administration Tools package is built into the Windows 10 image (…)”
It’s incorrect – you still have to download RSAT from Microsoft (if it were already in the Windows 10 image, why the need to connect to Windows Update?). If you are offline it seems that a iso from VLSC is needed to add this feature.

Reply
Graham July 11, 2019 - 10:24 am

Thanks for you post – it helped me to eventually get these tools installed. As a dinosaur not yet well-versed in using PowerShell, your script was very useful.

Reply
Mike C July 15, 2019 - 12:22 pm

This is the best write up/article i have come across for this topic!

Thanks for taking the time to share, its a very valuable reference.

Reply
yahol July 30, 2019 - 7:37 am

Finally a solution that works (without need to download iso image).
Thank you!

Reply
Jos August 26, 2019 - 1:09 pm

Very useful post! Thanks mate! I needed to read until the bottom. The WSUS regkey finally made my day.

Reply
Sabir April 2, 2020 - 8:50 pm

Getting the following error while installing RSAT for 1809 via PS:
Any suggestions?
=============
Add-WindowsCapability : Add-WindowsCapability failed. Error code = 0x8024402c
At line:1 char:1
+ Add-WindowsCapability –online –Name Rsat.ActiveDirectory.DS-LDS.Tools …
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Add-WindowsCapability], COMException
+ FullyQualifiedErrorId : Microsoft.Dism.Commands.AddWindowsCapabilityCommand
=========
Thanks,

Sabir

Reply
admin April 14, 2020 - 8:18 am

Open the Group Policy Editorr (gpedit.msc) -> Computer Configuration -> Admin. Templates -> Windows Components -> Windows Update -> Specify intranet Microsoft update service location -> Disabled
Reboot your computer and try to install RSAT components.

Reply
Brenton April 16, 2020 - 10:04 am

Thanks this was very useful and just what i needed

Reply
hasan September 8, 2020 - 6:00 pm

I get the installation completed successfully. But when I check the status its in “staged” and not “installed” status. How to get these in installed status? Since they are in “Staged” I cannot see any tools.

Reply
ksjdbfd October 25, 2020 - 6:33 am

Hi Hasan,

RSAT does not work for Windows 10 Home (I had this issue) It works only for Professional versions.
Ref: https://docs.microsoft.com/en-us/troubleshoot/windows-server/system-management-components/remote-server-administration-tools

Hope that helps.

Reply
Morten February 3, 2021 - 8:47 am

Great post! Really got around the subject – thanks!

Reply
Rodrigo Fuoco April 28, 2021 - 1:42 pm

Hi, Getting the following error while installing RSAT for 20H2 via PS:
Any suggestions?
Add-WindowsCapability -online -Name “Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0” Add-WindowsCapability : Error de Add-WindowsCapability. Código de error = 0x80240438
En línea: 1 Carácter: 1
+ Add-WindowsCapability –online –Name “Rsat.GroupPolicy.Management.Tool …
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Add-WindowsCapability], COMException
+ FullyQualifiedErrorId : Microsoft.Dism.Commands.AddWindowsCapabilityCommand

Reply
Artur May 7, 2021 - 8:33 am

I get this after when I try to install AD components. ALready did trick with regkey and gpedit.msc

Add-WindowsCapability : Add-WindowsCapability failed. Error code = 0x80072f8f
At line:1 char:1
+ Add-WindowsCapability –online –Name “Rsat.ActiveDirectory.DS-LDS.Tool …
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Add-WindowsCapability], COMException
+ FullyQualifiedErrorId : Microsoft.Dism.Commands.AddWindowsCapabilityCommand

Any suggestions ? Need AD directory ASAP but cant add it :/

Reply
Artur May 10, 2021 - 10:08 am

Ok, problem solved.
Problem was in domain policy / LAN blocking installation. Connecting workstation to hotspot solved the issue. RSAT finally installed 🙂

Reply
Allen Suski October 4, 2021 - 10:30 pm

Thank you for the very clear and useful information. Using the PS option to disable WSUS helped me through the installation of these tools in an enterprise environment where I do not manage the WSUS server.

Reply
ITGUY March 28, 2022 - 7:57 pm

For people with gpo set wsus servers and a local computer admin account, you can do the following form an elevated powershell prompt.

Open up the registry editor by typing regedit, navigate to the following path.

HKLM/Software/Policies/Microsoft/Windows/WindowsUpdate/AU/

Change the value from 1 to 0 for the UseWUServer key.

Restart the WSUS Service with the following command.

restart-service “windows update”

Open up a administrative powershell prompt and run the following command.

Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online

In the open registry editor, navigate to the following path.

HKLM/Software/Policies/Microsoft/Windows/WindowsUpdate/AU/

Change the value from 0 to 1 for the UseWUServer key.

Restart the WSUS Service with the following command.

restart-service “windows update”

This changes the setting back to original.

Reply
cheers May 17, 2022 - 3:24 pm

no such key in my registry

Reply
Daylon April 6, 2022 - 8:07 pm

Installation Error 0x800f0954 on Windows 10, Saving with the same steps for windows 11.
Thx!!

Reply
Sonia Singh June 8, 2022 - 6:33 am

Error 0x800f0954 usually occurs at the time of installing the .NET Framework or sub-components on Windows 10.

Reply
Tchoupi September 28, 2022 - 6:56 am

Thanks you very mutch for this post.
It’s a very good memento for PowerShell CLI.

Reply
Nalin March 13, 2023 - 12:18 pm

I was getting a 0x8024002E error trying to install this DSA and GPMC. Had to set a a regkey HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\WindowsUpdate –DisableWindowsUpdateAccess key to 0 and then run the powershell commands on administrative powershell window. That got them installed.

The add feature operation didn’t work. Thanks for this page. really helpful.

Reply
Hotshot March 24, 2023 - 3:19 pm

Thanks a lot, it worked.

Reply
Erik February 5, 2025 - 10:36 pm

do you know where I get the Feature on Demand (FOD) Disk 1, do I need to install rsat offline or will the Windows 11 edition ISO also work?

Reply
admin February 10, 2025 - 4:16 am

RSAT can be installed either online or from an offline FoD image, but not from the Windows 11 install ISO.

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • Load and Initialize Network Drivers in Windows PE or Recovery Environment

    February 25, 2026
  • How to Set a Custom Drive Icon in Windows

    February 17, 2026
  • Managing Per-User Services in Windows

    February 11, 2026
  • Change Default OU for New Computers and Users in AD

    February 2, 2026
  • Where Windows Stores Certificates and Private Keys

    January 22, 2026
  • How to Remove Old (Unused) PowerShell Modules

    January 12, 2026
  • How to Move (Migrate) Windows Shares to a New File Server

    December 24, 2025
  • Using KDC (Kerberos) Proxy in AD for Remote Access

    December 23, 2025
  • Windows: Create (Install) a Service Manually

    December 16, 2025
  • Windows: Auto Switch to Strongest Wi-Fi Network

    December 10, 2025

Follow us

  • Facebook
  • Twitter
  • Youtube
  • Telegram
Popular Posts
  • Install and Manage Windows Updates with PowerShell (PSWindowsUpdate)
  • How to Update Trusted Root Certificates in Windows: Manual and Automatic Methods Explained
  • Fix: Remote Desktop Licensing Mode is not Configured
  • How to Delete Old User Profiles in Windows
  • Configuring Port Forwarding in Windows
  • Start Menu or Taskbar Search Not Working in Windows 10/11
  • Adding Drivers into VMWare ESXi Installation Image
Footer Logo

@2014 - 2026 - Windows OS Hub. All about operating systems for sysadmins


Back To Top