Situatie
Solutie
For sysadmins who want advanced stuff, RSAT tools can also be installed using PowerShell. The beauty of using PowerShell is that you will be able to install RSAT tools even on remote computers.
To install all RSAT tools using PowerShell with Administrator privileges, run the following cmdlet in an elevated PowerShell instance:
Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online
To install a specific module, you’ll need to give the name of the module instead of the “*”.
First, list down all the available RSAT tools. Open PowerShell as an administrator and run the following command:
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property Name, State.
For example, here is the output when I run this command on my computer:

- Rsat.ActiveDirectory.DS-LDS.Tools Rsat.AzureStack.HCI.Management.Tools~~~~0.0.1.0
- Rsat.BitLocker.Recovery.Tools Rsat.CertificateServices.Tools Rsat.DHCP.Tools~~~~0.0.1.0
- Rsat.Dns.ToolsotPresent Rsat.FailoverCluster.Management.Tools Rsat.FileServices.Tools~~~~0.0.1.0
- Rsat.GroupPolicy.Management.Tools Rsat.IPAM.Client.Tools Rsat.LLDP.Tools~~~~0.0.1.0
- Rsat.NetworkController.Tools Rsat.NetworkLoadBalancing.Tools~~~~0.0.1.0
- Rsat.RemoteAccess.Management.Tools Rsat.RemoteDesktop.Services.Tools~~~~0.0.1.0
- Rsat.ServerManager.Tools Rsat.StorageMigrationService.Management.Tools~~~~0.0.1.0
- Rsat.StorageReplica.Tools Rsat.SystemInsights.Management.Tools~~~~0.0.1.0
- Rsat.VolumeActivation.Tools Rsat.WSUS.Tools~~~~0.0.1.0
Copy the name of the tool you want to install and run the command, such as follows:
Get-WindowsCapability -Name Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0 -Online | Add-
Leave A Comment?