Remote Server Administration Tools (RSAT) allow administrators to manage Windows Server roles and features directly from a Windows 11 workstation. RSAT is not available as a standalone download for Windows 11; instead, it is integrated as a set of optional features within the operating system. This shift means that installation methods differ from previous versions, and certain prerequisites must be met for a successful setup. Below are the most effective methods for installing RSAT on Windows 11, with troubleshooting tips for common issues, such as missing features or installation failures due to network policies.
Installing RSAT via Windows 11 Settings
RSAT is available only on Windows 11 Professional, Enterprise, and Education editions. The process involves enabling features already present in the OS package. This approach is recommended for most users, as it provides a graphical interface and allows selective installation of tools.


RSAT. A range of RSAT tools will appear, such as “RSAT: Active Directory Domain Services and Lightweight Directory Services Tools,” “RSAT: DNS Server Tools,” and others.
Join readers who trust AllThings.How
Add us as a preferred source on Google so our practical guides show up first next time you search.
Add to Google Preferences →Installing RSAT Using PowerShell
Power users or those deploying RSAT across multiple systems may prefer PowerShell for automation and precision. This method is also helpful when the graphical interface is unavailable or unresponsive.

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

This command displays which RSAT tools are available and whether they are already installed.
Add-WindowsCapability -Online -Name "Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0"

Replace the capability name with the corresponding RSAT tool you need. For a full list of capability names.
Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online

This command queues every available RSAT component for installation. Progress can be monitored in the Optional features section or by checking the output in PowerShell.
Alternative: Installing RSAT Offline Using Features on Demand (FoD) Media
Organizations using Windows Server Update Services (WSUS), disconnected environments, or those unable to access Microsoft’s update servers may encounter errors such as “Couldn’t install” or 0x800f0950. In these cases, RSAT installation requires the Windows 11 Features on Demand ISO, available through the Volume Licensing Service Center (VLSC) or Microsoft’s language pack and features download page.

Dism.exe /online /add-capability /source:D: /capabilityname:Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0

This approach installs the specified RSAT tool directly from the ISO, bypassing WSUS or internet-based update restrictions. If you need to install multiple RSAT tools, repeat the command with the appropriate capability names or script the process for all RSAT components.
Troubleshooting RSAT Installation Issues
Several factors can prevent RSAT from installing successfully on Windows 11:
- Edition Restrictions: RSAT is not supported on Windows 11 Home. Only Professional, Enterprise, and Education editions are eligible.
- Missing “Optional Features” Menu: If “Optional features” does not appear, ensure you are logged in as a local administrator. On some builds, searching for “Optional Features” in the Settings search bar will reveal the correct menu.
- WSUS or Group Policy Blocking: Environments managed by WSUS or with restrictive Group Policy settings may block optional features from installing. Temporarily setting the
UseWUServerregistry key to0and restarting the Windows Update service can allow installation, but this change may be reverted by Group Policy. For persistent solutions, install RSAT using FoD media as described above. - Domain Membership: Occasionally, removing a system from the domain, installing RSAT, and then rejoining the domain resolves stubborn installation errors.
- SCCM/MECM Conflicts: Devices managed by Microsoft Endpoint Configuration Manager (MECM/SCCM) may experience failures. Removing the agent, installing RSAT, and then reinstalling the agent can resolve the issue.
Adding RSAT to Windows 11 improves administrative efficiency by allowing direct management of server roles from your workstation. If you encounter installation barriers, using PowerShell or offline FoD media provides reliable alternatives.




