To get all administrative tools installed easily on a Windows 2016 Server one simple cmdlet is available.
Install-WindowsFeature -IncludeAllSubFeature RSAT
To see what gets installed, use the -whatif switch:
Install-WindowsFeature -IncludeAllSubFeature RSAT -WhatIf
Then run the command to install:
Install-WindowsFeature -IncludeAllSubFeature RSAT
Enter administrative tools and there they are.
No comments:
Post a Comment