
close
close
Microsoft’s management consoles have been around since Windows 2000 and are the basis of most GUI configuration tools in Windows Server. If you are a Windows Server administrator, you will already be familiar with tools like Active Directory Users and Computers (ADUC) and Server Manager. The Remote Server Administration Tools (RSAT) package these familiar tools for Windows client operating systems. The tools have long been built-in to Windows Server and there is no need to download them. But until Windows 10 version 1809, you needed to download the right RSAT package for your version of Windows and then install the tools using the Control Panel.
advertisment
If you are wondering why I’m discussing RSAT now when Microsoft is pushing Windows Admin Center (WAC) as the future of graphical user interface administration in Windows Server, that is because there are still many tools not available as part of WAC. Most notably, for administering Active Directory. But in general, WAC is the way forward if you want to use GUI tools for Windows Server management. You can find more information on using WAC on Petri: Windows Admin Center — The Future of the Windows Server GUI and Getting Started with the Windows Admin Center.
RSAT is a Feature-On-Demand in Windows 10 version 1809 and later. But unlike in Windows Server and versions of Windows that require RSAT to be downloaded manually, RSAT is installed using the Settings app rather than the Control Panel.
After a few minutes, the RSAT tool you selected will be installed on your device.
How to Install the Remote Server Administration Tools in Windows 10 (Image Credit: Russell Smith)
You can also install and remove RSAT in Windows using PowerShell. Start by opening a PowerShell prompt with local administrator privileges. To see which RSAT tools you have installed, use the Get-WindowsCapability cmdlet:
advertisment
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property Name, State
To install all the available tools, pipe the results of Get-WindowsCapability to Add-WindowsCapability:
Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability –Online
To install individual tools, use the name of the tool you want to add. You can get the name from the Get-WindowsCapability cmdlet and add it to Add-WindowsCapability as shown here. In this example, I’m installing the Certificate Services tools.
Add-WindowsCapability -Name Rsat.CertificateServices.Tools~~~~0.0.1.0 –Online
To remove a tool, use Remove-WindowsCapability instead of Add-WindowsCapability:
Remove-WindowsCapability -Name Rsat.CertificateServices.Tools~~~~0.0.1.0 –Online
How to Install the Remote Server Administration Tools in Windows 10 (Image Credit: Russell Smith)
Note that Feature-On-Demand requires Microsoft Update. If Windows Update is configured to use an internal Windows Update server or System Center Configuration Manager (SCCM) Software Update Point (SUP), then you won’t be able to install RSAT without taking extra steps. Either you need to temporarily configure the device to use Microsoft Update or go to Windows Update and select Search for updates online.
advertisment
More from Russell Smith
advertisment
Petri Newsletters
Whether it’s Security or Cloud Computing, we have the know-how for you. Sign up for our newsletters here.
advertisment
More in Windows 10
IT Admins Report Issues With Microsoft Store Version of Quick Assist App
May 16, 2022 | Rabia Noureen
This Week in IT - Windows 10 Gets Search Highlights and Is Microsoft in Hot Water Over Windows Cloud Pricing?
Apr 15, 2022 | Russell Smith
Most popular on petri
Log in to save content to your profile.
Article saved!
Access saved content from your profile page. View Saved
Join The Conversation
Create a free account today to participate in forum conversations, comment on posts and more.
Copyright ©2019 BWW Media Group