How to Install RSAT Tools on Windows 11

article
How to Install RSAT Tools on Windows 11

Remote Server Administration Tools, known as RSAT, are a collection of utilities that let IT administrators manage Windows Server roles and features from a Windows 11 workstation. Instead of logging directly into each server, you can manage Active Directory, DNS, DHCP, Group Policy, and other server roles remotely from your desktop.

RSAT is built into Windows 11 as Optional Features. There is no separate download required. You install only the specific tools you need.

Before You Start

RSAT is available only on Windows 11 Pro and Enterprise editions. It is not available on Windows 11 Home. You also need an active internet connection to download the components during installation, and the account you use must have local administrator privileges.

This is the most straightforward method and suits most users.

Step 1: Open Optional Features

Press Windows and I to open Settings. Click System in the left sidebar. Scroll down and click Optional features.

Step 2: View Available Features

On the Optional features page, click View features next to the Add an optional feature heading.

Step 3: Search for RSAT

Type RSAT in the search field. A list of available RSAT tools appears. The list includes tools for Active Directory, DNS, DHCP, Group Policy, Hyper-V, BitLocker, and many others.

Step 4: Select the Tools You Need

Tick the checkbox next to each tool you want to install. Common selections include:

RSAT: Active Directory Domain Services and Lightweight Directory Services Tools for managing Active Directory users, computers, groups, and policies.

RSAT: DNS Server Tools for managing DNS zones and records.

RSAT: DHCP Server Tools for managing IP address assignment.

RSAT: Group Policy Management Tools for managing Group Policy Objects.

Select only what you need. Installing everything adds unnecessary components and uses more disk space.

Step 5: Install

Click Next, then click Install. Windows downloads and installs the selected tools. The process takes a few minutes depending on your connection speed. Progress appears on the Optional features page under Recent actions.

Step 6: Access the Tools

After installation, find the tools by opening the Start menu and searching for Windows Tools. Open the Windows Tools folder. All installed RSAT components appear there. Tools like Active Directory Users and Computers, DNS Manager, and Group Policy Management Console are accessible directly from this folder.

Method 2: Install All RSAT Tools at Once Using PowerShell

If you need the full set of RSAT tools installed quickly, PowerShell handles this in a single command.

Open PowerShell as administrator by pressing Windows and X and selecting Terminal (Admin) or PowerShell (Admin).

Run the following command:

powershell

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

This downloads and installs every available RSAT component automatically. It takes several minutes to complete. When finished, all tools are available in the Windows Tools folder.

To install a single specific tool rather than everything, use this command format and replace the capability name with the specific tool you need:

powershell

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

To check which RSAT tools are currently installed on your machine at any time:

powershell

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

Tools with a State of Installed are active. Tools with NotPresent are available but not installed.

Uninstalling RSAT Tools

If you no longer need a specific tool, go back to Settings, System, Optional features, and click on the installed RSAT component from the Installed features list. Click Uninstall. The component is removed without affecting other RSAT tools.

To uninstall a specific tool via PowerShell:

powershell

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

Troubleshooting Installation Failures

If RSAT tools fail to install through Settings, the most common cause on managed enterprise machines is that Windows Update is redirected to an internal WSUS server that does not have Optional Features available.

A temporary fix is to open Registry Editor by pressing Windows and R, typing regedit, and navigating to:

HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU

Set the UseWUServer value to 0. Attempt the RSAT installation again. Set the value back to 1 after installation completes to restore your update configuration.

If you work in an air-gapped environment without internet access, RSAT can be installed offline using the Windows 11 Languages and Optional Features ISO file, available through Microsoft's Volume Licensing centre or the Visual Studio subscription portal.

Frequently Asked Questions

Is RSAT free to install on Windows 11?

Yes. RSAT is included with Windows 11 Pro and Enterprise at no additional cost. It does not require a separate licence or purchase. You install it as an Optional Feature directly from Windows Settings.

Do I need to restart after installing RSAT?

Most RSAT tools do not require a restart and are available immediately after the installation completes. A small number of components prompt for a restart. Windows notifies you if a restart is needed.

Can I use RSAT to manage Windows Server 2019 and 2022?

Yes. RSAT on Windows 11 supports managing Windows Server 2016, 2019, and 2022 remotely. You need administrator credentials on the remote server and network access to it. Some tools have version-specific limitations, but the core management tools work across these server versions.

Discover: Uncategorized

Discussion (0)

Be the first to comment.