Skip to main content
Powershell

Managing Windows Server Roles & Features with PowerShell

By October 14, 2020October 16th, 2020No Comments

In Windows Server 2012R2/2016/2019, you can use the graphical Server Manager console to install and remove server roles and features. However, in most cases you can do the same from the PowerShell console much faster. In this post we’ll cover how to manage roles and features in the modern Windows Server versions with PowerShell.

List all Installed Windows Server Roles & Feature via PowerShell

User the Get-WindowsFeature cmdlet to display the list of all available Windows Server roles and features. If you run it without parameters, you will see the information about all Windows Server components.

The name of a component (Display Name), its system name (Name) and state (Install State: Installed, Available or Removed) are displayed. The list of roles and features looks like a tree with the nested roles similar to the one you see when you install the roles in the Server Manager GUI. To install and remove any roles or features using PowerShell, you must know their system names listed in the Name column.

Get-WindowsFeature get all available roles and features on windows server via powershell

If a role or a feature is Removed, it means that its installation files are removed from the system component store and you won’t be able to install the role without direct Internet access or Windows Server installation ISO (see the example with the .Net 3.5 installation).

You can remove roles or components from your image online like this:

Uninstall-WindowsFeature –Name DHCP –Remove

To install a removed role, use this cmdlet:

Install-WindowsFeature DHCP (you will need the direct Internet access)

Or you can restore the component binary files from your Windows Server ISO image:

Install-WindowsFeature DHCP -Source E:\sources\sxs

You can list the installed server features:

Get-WindowsFeature | Where-Object {$_. installstate -eq "installed"} | ft Name,Installstate

Based upon the screenshot below, this server is used as a file server (FileAndStorage-Services, Storage-Services roles installed). Most of other components are used to manage or monitor the server.

Get-WindowsFeature installed

If you do not know the role name exactly, you can use wildcards. For example, to check what web components of the IIS role are installed, run this command (the syntax is a bit shortened):

Get-WindowsFeature -Name web-* | Where installed

Get-WindowsFeature Name like web

You can get the list of installed components on a remote Windows Server:

Get-WindowsFeature -ComputerName ny-spool1 | Where installed | ft Name,Installstate

Judging by the installed Print-Services and Print-Server roles, this server is used as a print server.

Get-WindowsFeature installed on remote Windows Server

You can use the Get-WindowsFeature cmdlet to find servers in your domain, on which the specific role is installed. You can search your servers in a particular Active Directory OU using the Get-ADComputer cmdlet from the PowerShell ActiveDirectory module or by the provided list of servers ($servers = ('server1', 'server2')).

For example, you want to find all file servers with the FileAndStorage-Services role in the specified AD organizational unit (I am using Visual Studio Code as a PoweShell editor). Use the following script:

import-module activedirectory
$Servers=get-adcomputer -properties * -Filter {Operatingsystem -notlike "*2008 R2*" -and enabled -eq "true" -and Operatingsystem -like "*Windows Server*"} -SearchBase ‘OU=Servers,OU=UK,DC=contoso,DC=com’ |select name
Foreach ($server in $Servers)
{
Get-WindowsFeature -name FileAndStorage-Services -ComputerName $server.Name | Where installed | ft $server.name, Name, Installstate
}

In the output, you will get the list of servers, on which the specific role is installed.
find windows server in ad domain with specific role installed

How to Install Windows Server Roles & Features using PowerShell

In order to install roles and features on Windows Server, the Install-WindowsFeature cmdlet is used.

To install the DNS server role and the management tools (including the Powershell DNSServer module) on the current server, run this command:

Install-WindowsFeature DNS -IncludeManagementTools

By default, the cmdlet installs all dependent roles and features. To display the list of dependencies prior to the installation, use the option WhatIf:
Install-WindowsFeature -Name UpdateServices -WhatIf

For example, to install the WSUS role, you will have to install some IIS components as well.

What if: Continue with installation?
What if: Performing installation for "[Windows Server Update Services] Windows Server Update
What if: Performing installation for "[Windows Server Update Services] WID Database".
What if: Performing installation for "[Windows Server Update Services] WSUS Services".
What if: Performing installation for "[Web Server (IIS)] Windows Authentication".
What if: Performing installation for "[Web Server (IIS)] Dynamic Content Compression".
What if: Performing installation for "[Web Server (IIS)] Performance".
What if: Performing installation for "[Web Server (IIS)] Static Content".
What if: Performing installation for "[Windows Internal Database] Windows Internal Database".
What if: The target server may need to be restarted after the installation completes.

To install the Remote Desktop Session Host role, the RDS licensing role and RDS remote management tools, use the following command:

Install-WindowsFeature -ComputerName lon-rds3 RDS-RD-Server, RDS-Licensing –IncludeAllSubFeature –IncludeManagementTools –Restart

Install-WindowsFeature on multiple servers

If you add the –Restart parameter, your server will be automatically restarted if required.

You can also install a component with the following command. For example, to install the SMTP server role:

Get-WindowsFeature -Name SMTP-Server | Install-WindowsFeature

How to Deploy Roles on Multiple Remote Windows Servers

There is another interesting option when you deploy typical servers. You can install the features you want on a reference Windows Server and export the list of the installed roles to a CSV file:

Get-WindowsFeature | where{$_.Installed -eq $True} | select name | Export-Csv C:\PS\InstalledRoles.csv -NoTypeInformation –Verbose

Exporting all Windows Features installed to csv file

Then you will be able to use this CSV file to install the same set of roles on other typical servers:

Import-Csv C:\PS\Roles.csv | foreach{ Install-WindowsFeature $_.name }

import csv file with roles and features on windows server

If a role or a feature is already installed, the command will return NoChangeNeeded and continue with the installation of the next role.

Or to install the same role set on multiple remote servers, you can use this command:

$servers = ('ny-rds1', 'ny-rds2',’ny-rds3’,’ny-rds4’)
foreach ($server in $servers) {Install-WindowsFeature RDS-RD-Server -ComputerName $server}

How to Uninstall a Role or Feature on Windows Server with PowerShell?

To remove Windows Server roles or feture, the Remove-WindowsFeature cmdlet is used.

For example, to remove a print server role, run the command:

Remove-WindowsFeature Print-Server -Restart

Leave a Reply