How to Install RSAT on Windows 11: A Complete Guide

Remote Server Administration Tools — RSAT — is a suite of tools that lets IT professionals manage Windows Server roles and features directly from a Windows 11 machine, without physically sitting at the server. If you work in a domain environment and need to manage Active Directory, DNS, DHCP, Group Policy, or similar services from your desktop, RSAT is the package you need.

What RSAT Actually Is (and Isn't)

RSAT is not a standalone download in the traditional sense on Windows 11. Unlike earlier Windows versions where you grabbed an installer from Microsoft's download page, RSAT on Windows 11 is delivered as a set of Optional Features built directly into the operating system. That means no .exe file to hunt down — you enable what you need from within Windows itself.

The suite includes tools like:

  • Active Directory Users and Computers (ADUC)
  • DNS Manager
  • DHCP Console
  • Group Policy Management Console (GPMC)
  • Hyper-V Manager
  • Windows Server Update Services (WSUS) tools

You can install all of them at once or pick only what your role requires.

Windows 11 Edition Requirements 🖥️

This is where setup matters. RSAT is only available on Windows 11 Pro, Enterprise, and Education editions. It is not available on Windows 11 Home. If you're running Home, the Optional Features menu will not list RSAT components.

Before going further, confirm your edition:

  1. Press Windows + I to open Settings
  2. Go to System → About
  3. Check the Windows specifications section for your edition

If you're on Home and need RSAT functionality, upgrading to Pro is the path forward — there's no workaround that installs legitimate RSAT tools on Home.

Method 1: Installing RSAT via Windows Settings (Recommended)

This is the straightforward route for most users and requires no command line.

  1. Open Settings (Windows + I)
  2. Navigate to System → Optional features
  3. Click View features next to "Add an optional feature"
  4. In the search box, type RSAT
  5. Check the boxes next to the tools you want to install
  6. Click Next, then Install

Windows will download and install the selected components. Your machine needs an active internet connection during this process, as the files are pulled from Windows Update servers.

Tip: If you want everything at once, search for "RSAT" and select all results. This gives you the full toolkit, though it adds several hundred megabytes to your installation.

Method 2: Installing RSAT via PowerShell

For IT professionals managing multiple machines, scripting the install is often more efficient. PowerShell gives you precise control.

To list all available RSAT features:

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

To install a specific tool (Active Directory, in this example):

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

To install all RSAT tools at once:

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

Run PowerShell as Administrator for these commands to work. The version string (~~~~0.0.1.0) is standard across current Windows 11 builds, but if a command returns an error, running the list command first confirms the exact capability name on your system.

Method 3: Using DISM (Deployment Image Servicing and Management)

DISM is another command-line option, typically used in enterprise or deployment scenarios:

DISM /Online /Add-Capability /CapabilityName:Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 

Like PowerShell, this requires an elevated command prompt and an internet connection unless you're pointing to a local Windows image source.

Common Installation Problems and What Causes Them 🔧

ProblemLikely Cause
RSAT not appearing in Optional FeaturesRunning Windows 11 Home edition
Installation fails or stallsNo internet connection or Windows Update blocked
PowerShell command returns "not found"Capability name mismatch — run the list command first
Tools install but don't appear in StartRestart required after installation
Access denied when running toolsTools require domain connectivity and appropriate AD permissions

One frequently missed point: installing RSAT tools doesn't grant you administrative rights on the server. The tools themselves are just the management interface. Your domain account needs the appropriate delegated permissions on the server side before you can actually use them to make changes.

Offline Environments and Air-Gapped Networks

Standard RSAT installation pulls files from Windows Update. In environments where machines don't have internet access or Windows Update is restricted by Group Policy, the installation process needs a different source. In those cases, RSAT components can be served from a Windows Server Update Services (WSUS) server, a SCCM/MECM deployment, or by pointing DISM at a mounted Windows image.

If your install attempts consistently fail in a managed corporate environment, the block is almost certainly a Windows Update policy — something your system administrator controls, not something fixable from the local machine.

After Installation: Where to Find the Tools

Once installed, RSAT tools appear in the Windows Administrative Tools folder, accessible via:

  • Start menu — search for the specific tool name (e.g., "Active Directory Users and Computers")
  • Control Panel → Administrative Tools
  • Windows Tools folder in the Start menu (Windows 11 groups these under Windows Tools)

Some tools, like Hyper-V Manager, also appear in their own dedicated sections depending on how they're launched.

What Shapes Your Experience

How smoothly RSAT works day-to-day depends on factors beyond the installation itself. Your domain connectivity, the Windows Server version you're administering, your account's delegated permissions, and whether your organization's firewall allows the necessary management ports all determine how functional the tools are in practice. Two people with identical RSAT installations can have meaningfully different experiences based entirely on their network and permissions configuration — which means the installation is just the starting point.