Remote Server Administration Tools (RSAT) is one of those things you don’t think about until the moment you really need it. You’re trying to fix a Windows Server 2019 or 2022 box from your desk, and then realize the tools just… aren’t there.
This guide walks through, step by step, how to install Remote Server Administration Tools on Windows Server 2019 and 2022 using both the GUI and PowerShell. By the end, you’ll have a clean, repeatable way to set up remote server management with less guesswork and more stability.
Let’s keep it simple.
Remote Server Administration Tools is a bundle of management tools from Microsoft. With RSAT installed, you can:
Use Server Manager
Open Microsoft Management Console (MMC) snap-ins
Run Windows PowerShell cmdlets
Use command-line tools for various Windows Server roles and features
The idea is: you manage servers remotely, instead of logging on to every single box all the time.
A quick but important detail:
RSAT is not supported on Windows “Home” editions.
You need Professional or Enterprise editions if you’re working from a client OS.
On Windows Server 2019/2022, RSAT is built in as optional features, so you don’t need a separate RSAT download.
So we’re basically just turning on what’s already there.
Picture this: it’s late, something broke, and the server is in a data center across the city (or across the world). You don’t want to RDP into ten different servers and click around randomly.
With RSAT on Windows Server 2019 or 2022, you can:
Manage roles and features from one place
Use familiar GUI tools like Server Manager and MMC
Automate things with PowerShell instead of manual clicking
Keep your remote server management life a bit more organized
Whether you’re in a small IT shop or handling a bigger Windows infrastructure, having RSAT properly installed is one of those “do it once, thank yourself later” tasks.
If you’re more comfortable clicking through wizards, this way feels very natural. You just walk through the “Add Roles and Features” wizard in Server Manager.
Log on to your Windows Server 2019/2022
Use an account with local administrator rights.
Open Server Manager
Click the Start button.
Find and open Server Manager.
It usually opens automatically on login, but if not, this is where you find it.
Start the “Add Roles and Features” wizard
In Server Manager, click Add roles and features from the Dashboard or from the Manage menu.
The wizard will pop up.
Choose the installation type
On the “Before you begin” screen, click Next.
On “Installation Type”, choose Role-based or feature-based installation.
Click Next.
Select the target server
On “Server Selection”, choose Select a server from the server pool.
Pick the server you want to install RSAT on (usually the local server).
Click Next.
Skip the Server Roles page
On “Server Roles”, you don’t need to change anything for RSAT.
Just click Next.
Enable Remote Server Administration Tools
On the “Features” page, scroll through the list.
Find and check Remote Server Administration Tools.
This may expand into several sub-features; you can choose the ones you need, or select them all if you’re not sure yet.
Accept required supporting features
If the system asks to add related features (for example, parts of Web Server (IIS)), click Add Features.
These are just dependencies RSAT needs.
Click through the Web Server (IIS) pages
You might see a “Web Server Role (IIS)” information page. Click Next.
On “Role Services”, you can usually accept the defaults and click Next.
Confirm and install
On the “Confirmation” page, double-check that Remote Server Administration Tools is listed.
Click Install.
Go grab a coffee while it runs.
Wait for the installation to complete
When the progress bar finishes, the wizard will tell you the result.
If it says the installation succeeded, you’re done with this part.
Click Close.
Verify RSAT is available
Back in Server Manager, look at the top menu and click Tools.
You should now see RSAT consoles (like Active Directory tools, DNS, etc.) in the list.
That’s it. No separate RSAT installer file, no hunting for downloads. Windows Server 2019 and 2022 already had the tools; you just turned them on.
If you prefer to type instead of click, or you need to script this for multiple servers, PowerShell is faster and more consistent.
Open an elevated PowerShell session
Click Start and search for Windows PowerShell.
Right-click it and choose Run as administrator.
Confirm the UAC prompt if needed.
Install every RSAT tool
Run this command:
powershell
Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online
What this does:
Finds all Windows capabilities that start with RSAT.
Pipes them into Add-WindowsCapability, which installs them.
Wait for installation to finish
PowerShell will show progress as it installs each capability.
Depending on your server and network, this may take a few minutes.
Sometimes you don’t want the whole toolbox—just one wrench.
For example, if you only want the Group Policy Management Console, run:
powershell
Get-WindowsCapability -Name RSAT.GroupPolicy* -Online | Add-WindowsCapability -Online
Just replace GroupPolicy with whatever RSAT component you need.
To confirm which RSAT features are installed, you can run a similar query and look for the Installed state. For example:
powershell
Get-WindowsCapability -Name RSAT* -Online | Where-Object State -eq 'Installed'
If you see the tools you care about listed as Installed, you’re good.
Once RSAT is set up, remote server management becomes a lot more comfortable. You can:
Connect from your admin machine to multiple Windows Server 2019/2022 systems
Use the same tools across different servers
Automate tasks with PowerShell instead of logging into each server manually
But there’s another angle here: sometimes your Windows Server isn’t in your office at all. Maybe it’s a dedicated machine in a data center that you access over the internet.
In that case, you usually want:
Servers you can bring online quickly
Stable, low-latency network routes
The ability to rebuild or move servers without physical work
That’s where a dedicated hosting provider that actually understands remote administration becomes really useful.
You get a place to run Windows Server 2019 or 2022, install RSAT, and practice or operate your remote management routines from anywhere, without worrying about the hardware side.
Installing Remote Server Administration Tools on Windows Server 2019/2022 is basically two choices: click through Server Manager, or let PowerShell do the heavy lifting. Once RSAT is in place, managing roles, features, and day-to-day server tasks remotely becomes a lot faster and more predictable.
If you prefer to run your Windows servers on ready-made dedicated hardware instead of maintaining physical boxes yourself, 👉 why GTHost is suitable for remote Windows Server administration scenarios comes down to quick deployment, solid network performance, and flexibility when you need to scale or rebuild. Combine RSAT with that kind of hosting setup, and you end up with a simple, stable way to manage your Windows infrastructure from wherever you happen to be sitting.