Install the Remote Server Administration Tools
Install-WindowsFeature -IncludeAllSubFeature RSAT -WhatIf
Install-WindowsFeature -IncludeAllSubFeature RSAT
Verify if the Remote Server Administration Tools is already installed.
Get-WindowsFeature -Name rsat
Windows 10
Get-WindowsCapability -name rsat* -online
Optionally, filter the output of the Powershell command to a simpler version.
Get-WindowsCapability -Name rsat* -online | Select-Object -Property Name, State
Get-WindowsCapability -name rsat* -online | Add-WindowsCapability –Online
single module of the RSAT
Add-WindowsCapability -Name Rsat.WSUS.Tools~~~~0.0.1.0 –online
Remove-WindowsCapability -Name Rsat.WSUS.Tools~~~~0.0.1.0 –online