Using PowerShell to Install RSAT
- 1. Install all RSAT tools run the below command.
PowerShell
Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability –Online
- 2. Install Specific RSAT Tool using PowerShell
PowerShell
Add-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0
Use the names below to install other RSAT tools via PowerShell.
- Active Directory Domain Servers and Lightweight Directory Services Tools: Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0
- BitLock Drive Encryption Administration Tools: Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0
- Active Directory Certificate Services:
- Rsat.CertificateServices.Tools~~~~0.0.1.0
- DHCP Server Tools:
- Rsat.DHCP.Tools~~~~0.0.1.0
- DNS Server Tools:
- Rsat.Dns.Tools~~~~0.0.1.0
- Failover Clustering Tools:
- Rsat.FailoverCluster.Management.Tools~~~~0.0.1.0
- File Services Tools:
- Rsat.FileServices.Tools~~~~0.0.1.0
- Group Policy Management Tools:
- Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0
- IP Address Management (IPAM) Client:
- Rsat.IPAM.Client.Tools~~~~0.0.1.0
- Data Center Bridging LLDP Tools:
- Rsat.LLDP.Tools~~~~0.0.1.0
- Network Controller Management Tools:
- Rsat.NetworkController.Tools~~~~0.0.1.0
- Network Load Balancing Tools:
- Rsat.NetworkLoadBalancing.Tools~~~~0.0.1.0
- Remote Access Management Tools:
- Rsat.RemoteAccess.Management.Tools~~~~0.0.1.0
- Remote Desktop Services Tools:
- Rsat.RemoteDesktop.Services.Tools~~~~0.0.1.0
- Server Manager:
- Rsat.ServerManager.Tools~~~~0.0.1.0
- Shielded VM Tools:
- Rsat.Shielded.VM.Tools~~~~0.0.1.0
- Storage Migration Service Management Tools:
- Rsat.StorageMigrationService.Management.Tools~~~~0.0.1.0
- Storage Replica Module for Windows PowerShell:
- Rsat.StorageReplica.Tools~~~~0.0.1.0
- System Insights Module for Windows PowerShell:
- Rsat.SystemInsights.Management.Tools~~~~0.0.1.0
- Volume Activation Tools:
- Rsat.VolumeActivation.Tools~~~~0.0.1.0
- Windows Server Update Services Tools:
- Rsat.WSUS.Tools~~~~0.0.1.0
You can use PowerShell to view which RSAT tools are installed with the following command.
PowerShell
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State