简体   繁体   English

两个SCCM报告之间的差异

[英]Difference between two sccm reports

I can't seem to get my mind wrapped around these two reports: 我似乎无法全神贯注于这两个报告:

  1. List of assets by compliance state for a configuration baseline 配置基准的合规性状态资产列表
  2. List of assets by compliance state for a configuration item in a configuration baseline 配置基准中配置项目的按合规性状态列出的资产

Can someone please enlighten me and possibly give some examples? 有人可以启发我,并举例说明吗?

I'm trying to find out which assets are compliant with our Screen Saver Timeout. 我正在尝试找出哪些资产符合我们的屏幕保护程序超时。 We have a gpo (user config) that sets the timeout at 900secs. 我们有一个gpo(用户配置),可将超时时间设置为900秒。 I then created a CI that has a script to query the value of a registry key under HKCU. 然后,我创建了一个具有脚本的配置项,以查询HKCU下的注册表项的值。 I then created a CB and added the CI. 然后,我创建了一个CB并添加了CI。 But I'm getting different compliance/noncompliance count when I run the two reports. 但是,当我运行两个报告时,我得到的合规/不合规计数有所不同。 The first report says that I have 1700 compliant but when I run the second report, I only have 7 compliant. 第一个报告说我符合1700,但是运行第二个报告时,我只有7。

Please please help!! 请帮忙!

Thank you in advance! 先感谢您!

A baseline can have multiple configuration items in it, so the first report would show you the overall compliance for all of the CIs in that baseline. 一个基准中可以包含多个配置项,因此第一个报告将向您显示该基准中所有配置项的总体合规性。 The second report is for a single CI. 第二份报告是针对单个配置项的。

Difficult to say what may be causing the difference that you're seeing, but it's likely to do with either having multiple CIs in the baseline, or the first report may be showing Compliant for machines that haven't run the CI yet, whereas the second may only be reporting those that have actually run it? 很难说出是什么原因导致了您所看到的差异,但可能与基线中有多个配置项有关,或者第一个报告可能显示了对于尚未运行配置项的计算机的合规性,而第二可能只是报告那些实际运行过的报告吗?

List of assets by compliance state for a configuration baseline 配置基准的合规性状态资产列表

Lists the devices or users in a specified compliance state following the evaluation of a specified configuration baseline. 在评估指定的配置基准之后,列出处于指定合规性状态的设备或用户。

List of assets by compliance state for a configuration item in a configuration baseline 配置基准中配置项目的按合规性状态列出的资产

Lists the devices or users in a specified compliance state following the evaluation of a specified configuration item. 在评估指定的配置项目之后,列出处于指定合规性状态的设备或用户。

You can use Report Builder to review the query. 您可以使用报表生成器查看查询。 If you are interested, you can find more information from database. 如果您有兴趣,可以从数据库中找到更多信息。

Here is relevant snippet of the difference between the two reports: enter image description here 这是两个报告之间差异的相关摘要: 在此处输入图片描述

Based on the following query, we can find the meaning of the CIType. 根据以下查询,我们可以找到CIType的含义。

select * from v_ConfigurationItems where CIType_ID in (2,50) 从v_ConfigurationItems中选择*,其中CIType_ID在(2,50)中

2= Baseline 2 =基准

50=Configuration Policy 50 =配置策略

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM