How to Get Windows Features using PowerShell on Server

In this article, I will demonstrate how to get windows features using PowerShell on servers. The Get-WindowsFeature cmdlet lists all the windows features installed on a server.

If you are asked to find the features installed on a specific server, you can use PowerShell to complete the task. Manually listing down the installed features will take time, and you cannot do this when you have multiple servers in the setup.

There are many ways to locate the installed features on the server, including Configuration Manager and third-party tools. But, PowerShell is the most straightforward and cost-free way to discover what features are installed on Windows servers.


http://mystrotain.free.fr/forum/showthread.php?tid=24036

https://www.revolutionmall.co.uk/forum/showthread.php?tid=18712

https://www.truecrimecollectors.com/showthread.php?tid=24

https://expectingtheunexpected.com/showthread.php?tid=1573

https://disforum.online/showthread.php?tid=20&pid=46

http://www.vfl.muellerluedenscheidt.de/phpBB3_forum/viewtopic.php?f=17&t=16942

http://www.vfl.muellerluedenscheidt.de/phpBB3_forum/viewtopic.php?f=4&t=1406

http://www.vfl.muellerluedenscheidt.de/phpBB3_forum/viewtopic.php?f=17&t=15889

http://www.vfl.muellerluedenscheidt.de/phpBB3_forum/viewtopic.php?f=17&t=15894

http://www.vfl.muellerluedenscheidt.de/phpBB3_forum/viewtopic.php?f=4&t=2513

https://gisforum.pp.ua/viewtopic.php?t=31152

http://heroicfantasygames.free.fr/Forum/viewtopic.php?p=58946

http://heroicfantasygames.free.fr/Forum/viewtopic.php?p=15533

http://heroicfantasygames.free.fr/Forum/viewtopic.php?p=20968

http://heroicfantasygames.free.fr/Forum/viewtopic.php?p=62720


About Get-WindowsFeature Cmdlet


The Get-WindowsFeature cmdlet gets information about features that are both available for installation and already installed on a computer that is running Windows Server or an offline virtual hard disk (VHD) that is running Windows Server.

Clearly, Windows features and roles are only available on server operating systems and not on client operating systems. Therefore, the Get-WindowsFeature cmdlet can only be executed on Server Operating systems.

You can specify the following parameters along with the Get-WindowsFeature cmdlet.


  • Name
  • Vhd
  • ComputerName
  • Credential
  • LogPath


How to Get Windows Features using PowerShell


Let’s go through some examples of using the Get-WindowsFeature cmdlet to get Windows roles and features using PowerShell.


http://www.iphoneforumz.com/forum/yahree-t63706.html

http://www.iphoneforumz.com/forum/viewtopic.php?t=78947

http://www.iphoneforumz.com/forum/mobileme-what-you-need-to-know-t43188.html

http://www.iphoneforumz.com/forum/viewtopic.php?t=41026

https://forum.e-can.co.uk/viewtopic.php?f=2&t=2080

https://forum.e-can.co.uk/viewtopic.php?f=2&t=916

https://forum.e-can.co.uk/viewtopic.php?f=2&t=921

https://forum.e-can.co.uk/viewtopic.php?f=2&t=913

https://www.pure-aion.net/viewtopic.php?t=46671

https://www.adflyforum.com/viewtopic.php?t=101471

https://www.adflyforum.com/viewtopic.php?f=21&t=17032

https://www.adflyforum.com/viewtopic.php?t=113643

https://www.adflyforum.com/viewtopic.php?t=113645

https://www.adflyforum.com/viewtopic.php?f=21&t=114003

http://forum.kirmash.biz/viewtopic.php?id=15497

http://forum.kirmash.biz/viewtopic.php?id=13947

http://forum.kirmash.biz/viewtopic.php?id=5

http://mmpulawy.sugester.pl/133219939-Privacy-Coins-List?order=popular&page=2

https://scort.vip/forum/viewtopic.php?t=2355

https://scort.vip/forum/viewtopic.php?t=71

https://scort.vip/forum/viewtopic.php?t=2372

https://scort.vip/forum/viewtopic.php?t=2482

http://amsofttechnologies.com/2022/05/18/sources-for-digital-marketing-5/

https://forum.jarisium.com/index.php?topic=37348.0


List all the Windows Features on Server


Run the below PowerShell command to list all the features that are available and installed on the Windows Server.

In the command output, a summary of all installed and available features for installation on the server is displayed. The display name column displays the Windows feature’s name, while the “Install State” column indicates whether a feature is installed or available.


Find All Installed Features on Windows Server


If you want to find out the features that are installed on a given Windows Server, run the following command in PowerShell window.

In the screenshot below, we see the PowerShell command output shows all the Windows features installed on the server.


List all Windows Features that are not Installed

To list the Windows features that are not installed on a server, you can use the below PowerShell command.


Get Installed Windows Features using Name or Wildcard

If you need to find a specific feature installed on the server, simply input the Name or Display Name. If you don’t know the whole name of the feature/role, you can use the wildcard character to find the features.

For example, on a Windows Server, if you want to find the installed features that begin with “Cert“, you can use the following command.


https://forum.jarisium.com/index.php?topic=74816.0

https://forum.jarisium.com/index.php?topic=34135.0

https://forum.jarisium.com/index.php?topic=18200.0

https://www.punterforum.it/viewtopic.php?id=160766

https://www.punterforum.it/viewtopic.php?id=170348

https://www.punterforum.it/viewtopic.php?id=172923

http://kick.gain.tw/viewthread.php?tid=194096&extra=

http://kick.gain.tw/viewthread.php?tid=163310&extra=

http://kick.gain.tw/viewthread.php?tid=574372&extra=

http://kick.gain.tw/viewthread.php?tid=181506&extra=

https://ncncs.com/bbs/board.php?bo_table=free&wr_id=2516

http://forumgobelin.free.fr/viewtopic.php?p=740

http://forumgobelin.free.fr/viewtopic.php?p=359


Find Installed Features on Remote Windows Server


If you want to list the Windows features installed on a remote Windows Server, it is possible using the PowerShell. This method is convenient because you don’t have to log in to the remote Windows Server to get the features.

Run the following command in the PowerShell window to get the list of Windows features installed on the remote server. The below command gets all the installed features on a remote server whose name begins with remote.

You can find the list of installed features on multiple remote Windows servers using the below PowerShell command. Before you run the command, substitute the computer names with the server names. 

Comments

Popular posts from this blog

Fix Intune Profile Installation Failed during macOS Enrollment

2 Best Solutions: Error Can’t Connect to Windows 365

2 Easy Ways to Remove Insider Preview Evaluation Copy Watermark