설치된 Windows Feature(기능) 및 Role(역할) 확인하기


Powershell을 사용하면 쉽게 확인할 수 있다. 그리고 Powershell 버전에 따라 조금 다르게 사용할 수도 있다.

Import-Module -Name ServerManager ; Get-WindowsFeature | Where-Object {$_.Installed -eq $true}  –Powershell v 2.0 / 3.0 모두 가능

Import-Module -Name ServerManager ; Get-WindowsFeature | Where-Object {$_.InstallState -eq “Installed”}  –Powershell v3.0만 가능

 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s