Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

MBAM Supported Computers compliance reporting incorrectly includes unsupported products


View products that this article applies to.

Summary

The Microsoft BitLocker Administration and Monitoring (MBAM) Supported Computer collection includes Windows 7 Professional, Windows 7 computers without Trusted Platform Module (TPM), and non-Hyper-V virtual machines in Microsoft System Center 2012 Configuration Manager, Microsoft System Center 2012 R2 Configuration Manager, and Microsoft System Center Configuration Manager 2007. This causes incorrect information to be included in compliance reporting. 

↑ Back to the top


Resolution

To resolve this issue, follow these steps:
  1. Manually update the MBAM Supported Computers collection query.
    • For Microsoft System Center 2012 Configuration Manager or Microsoft System Center 2012 R2 Configuration Manager, replace the existing collection query with the following query:
      select SMS_R_System.ResourceId, 
      SMS_R_System.ResourceType,
      SMS_R_System.Name,
      SMS_R_System.SMSUniqueIdentifier,
      SMS_R_System.ResourceDomainORWorkgroup,
      SMS_R_System.Client
      from SMS_R_System
      inner join SMS_G_System_OPERATING_SYSTEM on SMS_G_System_OPERATING_SYSTEM.ResourceID = SMS_R_System.ResourceId
      inner join SMS_G_System_OPERATING_SYSTEM_EXT on SMS_G_System_OPERATING_SYSTEM_EXT.ResourceID = SMS_R_System.ResourceId
      inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId
      left outer join SMS_G_System_TPM on SMS_G_System_TPM.ResourceID = SMS_R_System.ResourceId
      where ((SMS_G_System_OPERATING_SYSTEM.Version like "6.1.%"
      and SMS_G_System_OPERATING_SYSTEM_EXT.SKU in (1,4,27,28,70,71)
      and SMS_G_System_TPM.SpecVersion >= "1.2")
      or NOT (SMS_G_System_OPERATING_SYSTEM.Version like "6.1.%"
      or SMS_G_System_OPERATING_SYSTEM.Version like "6.0.%"
      or SMS_G_System_OPERATING_SYSTEM.Version like "5.%"))
      and SMS_G_System_COMPUTER_SYSTEM.DomainRole = 1
      and (SMS_G_System_COMPUTER_SYSTEM.Model not in ("Virtual Machine", "VMware Virtual Platform", "VirtualBox")
      and SMS_G_System_COMPUTER_SYSTEM.Manufacturer not in ("Xen"))
    • For System Center Configuration Manager 2007 replace the existing collection query with the following query:
      select SMS_R_System.ResourceId,
      SMS_R_System.ResourceType,
      SMS_R_System.Name,
      SMS_R_System.SMSUniqueIdentifier,
      SMS_R_System.ResourceDomainORWorkgroup,
      SMS_R_System.Client
      from SMS_R_System
      inner join SMS_G_System_OPERATING_SYSTEM on SMS_G_System_OPERATING_SYSTEM.ResourceID = SMS_R_System.ResourceId
      inner join SMS_G_System_OPERATING_SYSTEM_EXT on SMS_G_System_OPERATING_SYSTEM_EXT.ResourceID = SMS_R_System.ResourceId
      inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId
      left outer join SMS_G_System_TPM on SMS_G_System_TPM.ResourceID = SMS_R_System.ResourceId
      where ((SMS_G_System_OPERATING_SYSTEM.Version like "6.1.%"
      and SMS_G_System_OPERATING_SYSTEM_EXT.SKU in (1,4,27,28,70,71)
      and SMS_G_System_TPM.SpecVersion >= "1.2")
      or NOT (SMS_G_System_OPERATING_SYSTEM.Version like "6.1.%"
      or SMS_G_System_OPERATING_SYSTEM.Version like "6.0.%"
      or SMS_G_System_OPERATING_SYSTEM.Version like "5.%"))
      and SMS_G_System_COMPUTER_SYSTEM.DomainRole = 1
      and SMS_G_System_COMPUTER_SYSTEM.Model not in ("Virtual Machine", "VMware Virtual Platform", "VirtualBox")
      and SMS_G_System_COMPUTER_SYSTEM.Manufacturer not in ("Xen"))
  2. Right-click and update the collection membership.

↑ Back to the top


Keywords: kbsurveynew, kbexpertiseinter, kbtshoot, kb

↑ Back to the top

Article Info
Article ID : 2935997
Revision : 1
Created on : 1/7/2017
Published on : 2/27/2015
Exists online : False
Views : 316