Powershell – Install RAST (Remote Server Administration Tools)

These tools can be install on any workstation to administrate servers remotely. Command below will install all Window Server tools

Get-WindowsCapability -Online |? {$_.Name -like "*RSAT*" -and $_.State -eq "NotPresent"} | Add-WindowsCapability -Online

Leave a Reply