Showing posts with label AD Management tools. Show all posts
Showing posts with label AD Management tools. Show all posts

Wednesday, January 5, 2022

Install RSAT on Windows 11

Maybe this will help you. After kicking around Windows 11 for a bit, I decided to get some work done and perform some Windows administration. I needed to install RSAT (remote server administration tools). In earlier versions of Windows 10, RSAT was a download.

link here: https://www.microsoft.com/en-us/download/details.aspx?id=45520

I couldn't find RSAT for Win11 anywhere. I realized it is now a FOD (feature on demand).

To install RSAT on Windows 11

Click Start > Settings > Apps > Add an Optional Feature > View Features

Matthew Forchette 

IMO, The nice part about RSAT on Win11 is that you can cherry-pick the features you need/want.

Robert Forchette

 

 

In my case, I wanted AD, DHCP, DNS, and Group Policy management tools. Check the RSAT tools you need, click NEXT > Install. After a brief moment to download and install the tools, you're done.

If you're gung ho about powershell and/or which to automate the process, all of the RSAT tools can be installed via Powershell. 

Launch Powershell as admin, execute commands below


Add-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.FileServices.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.IPAM.Client.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.LLDP.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.NetworkController.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.NetworkLoadBalancing.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.CertificateServices.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.DHCP.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.FailoverCluster.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.RemoteAccess.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.RemoteDesktop.Services.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.ServerManager.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.Shielded.VM.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.StorageMigrationService.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.StorageReplica.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.SystemInsights.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.VolumeActivation.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.WSUS.Tools~~~~0.0.1.0