SCCM - 检查可选 windows 功能状态的配置项
SCCM - Configuration Item to check optional windows feature status
我已经创建了一个配置项来检查可选功能 Internet Explorer 的状态。
CI 包含以下 powershell 脚本:
Get-WindowsOptionalFeature -FeatureName Internet-Explorer-Optional-amd64 -Online
CI 已添加到配置基线并部署到测试机器。
运行这个powershell代码在测试机上手动输出如下
PS C:\WINDOWS\system32> Get-WindowsOptionalFeature -FeatureName Internet-Explorer-Optional-amd64 -Online
FeatureName : Internet-Explorer-Optional-amd64
DisplayName : Internet Explorer 11
Description : Finds and displays information and Web sites on the Internet.
RestartRequired : Required
State : Disabled
CustomProperties :
\SoftBlockLink : http://go.microsoft.com/fwlink/?LinkID=142507
相关合规规则配置如下:
我认为这应该会导致合规 - 但实际上并非如此。
我是 SCCM 的新手,因此想知道我的规则是否配置错误。
非常感谢任何想法/意见。
提前致谢
调整 powershell 脚本以仅输出实际状态。
(Get-WindowsOptionalFeature -FeatureName Internet-Explorer-Optional-amd64 -Online).State
我已经创建了一个配置项来检查可选功能 Internet Explorer 的状态。
CI 包含以下 powershell 脚本:
Get-WindowsOptionalFeature -FeatureName Internet-Explorer-Optional-amd64 -Online
CI 已添加到配置基线并部署到测试机器。
运行这个powershell代码在测试机上手动输出如下
PS C:\WINDOWS\system32> Get-WindowsOptionalFeature -FeatureName Internet-Explorer-Optional-amd64 -Online
FeatureName : Internet-Explorer-Optional-amd64
DisplayName : Internet Explorer 11
Description : Finds and displays information and Web sites on the Internet.
RestartRequired : Required
State : Disabled
CustomProperties :
\SoftBlockLink : http://go.microsoft.com/fwlink/?LinkID=142507
相关合规规则配置如下:
我认为这应该会导致合规 - 但实际上并非如此。 我是 SCCM 的新手,因此想知道我的规则是否配置错误。
非常感谢任何想法/意见。
提前致谢
调整 powershell 脚本以仅输出实际状态。
(Get-WindowsOptionalFeature -FeatureName Internet-Explorer-Optional-amd64 -Online).State