Install All RSAT Tools in One Single Cmdlet On Windows Server 2016

In this article, I’ll show you how to Install all the Remote Administration Management Tools (RSAT) In one single powerful PowerShell cmdlet.

With the popularity of Windows Server Core 2016 and the concept of no GUI, the need for Management Tools Is great and it’s always good to have a jump Server will tools Installed.

In my case, I have my Windows Server 2016 Management Server (jump box) and I’m going to Install all the RSAT tools on it.

By default, Windows Server 2016 with GUI comes with 22 management tools after Installation it goes to 55.

To get started, on my jump Server I run the cmdlet below with the -whatif switch to check first what will be Installed

Install-WindowsFeature -IncludeAllSubFeature RSAT -WhatIf

To install all the tools, I run the very powerful cmdlet below:

Install-WindowsFeature -IncludeAllSubFeature RSAT

done

Now, I have all 55 management tools Installed


Posted

in

by

Comments

One response to “Install All RSAT Tools in One Single Cmdlet On Windows Server 2016”

  1. Humberto Avatar
    Humberto

    Nice!