共用方式為


查詢選擇性功能的狀態

在 Windows 7 中,WMI 實作 Win32_OptionalFeature 類別。 這個類別會擷取電腦上存在之選擇性功能的狀態。

您可以使用 Windows PowerShell Cmdlet 來查詢選擇性功能的狀態。 本主題中的所有範例都會使用 Get-WmiObject Cmdlet。 如需詳細資訊,請參閱 Get-WmiObject

擷取電腦上存在之選擇性功能的所有實例

PowerShell
Get-WmiObject Win32_OptionalFeature

若要藉由指定功能名稱來查詢選擇性功能

PowerShell
Get-WmiObject -query "select * from Win32_OptionalFeature where name = 'TelnetClient'"

注意

name屬性會區分大小寫。

若要藉由指定安裝狀態來查詢選用功能

PowerShell
Get-WmiObject -query "select * from win32_optionalfeature where installstate= 1"

如需 InstallState 屬性可能值的詳細資訊,請參閱 Win32_OptionalFeature

Win32_OptionalFeature