查询可选功能的状态

在 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