If you manage Windows servers from a client machine, you’ll likely need Remote Server Administration Tools (RSAT). With Windows 11, RSAT isn’t a separate download anymore—it’s built into the system and just needs to be enabled. Here’s how to do it step by step.
What Is RSAT?
RSAT is a set of tools that let IT admins manage Windows Server roles and features from a Windows PC. This includes tools like Active Directory Users and Computers, DNS Manager, DHCP Manager, Group Policy Management Console (GPMC), and more.
Requirements
- You must be running Windows 11 Pro, Enterprise, or Education.
RSAT is not available on Windows 11 Home. - You need an internet connection to download RSAT components.
How to Install RSAT on Windows 11
Option 1: Using Settings
- Open Settings
PressWindows + I
. - Go to Apps > Optional Features
- Click “View features” next to Add an optional feature.
- In the search bar, type RSAT. You’ll see a list of tools like:
- RSAT: Active Directory Domain Services and Lightweight Directory Services
- RSAT: DHCP Server Tools
- RSAT: DNS Server Tools
- RSAT: Group Policy Management Tools
- …and many more.
- Select the tools you want and click Next > Install.
- Wait for the installation to finish. You can track progress under “Installed features.”
Option 2: Using PowerShell
If you prefer the command line, you can use PowerShell to install RSAT tools.
- Run PowerShell as Administrator
- Use the following command to see available RSAT tools:
Get-WindowsCapability -Name RSAT* -Online
- Install a specific RSAT tool like this:
Add-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0
- Repeat for each tool you need.
Where to Find the Tools After Installation
Once installed, you’ll find most RSAT tools in the Start Menu under Windows Tools, or you can search directly (e.g., type Active Directory Users and Computers in the Start menu).
Common Tools to Consider
Here are some of the most commonly used RSAT features:
Tool Name | Purpose |
---|---|
Active Directory Tools | Manage users, groups, domains |
Group Policy Management | Manage GPOs and domain policies |
DNS Server Tools | Manage DNS zones and records |
DHCP Server Tools | Manage DHCP scopes and leases |
File Services Tools | Share and manage folders remotely |
Final Tips
- Only install what you need to keep your system clean.
- These tools are updated with Windows, so no manual downloads are needed anymore.
- RSAT tools integrate smoothly with domain environments, making remote server management much easier.
Need More Help?
If you run into issues or need a full list of RSAT tools, check Microsoft’s official RSAT documentation or drop a question in the comments.
Leave a Reply