Hi All,
We're running MECM 2010.
Have created a device collection with the below query which is basically populating the members from an AD Group.
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 where SMS_R_System.SystemGroupName = "Domain_Name\My_Testing"
The above query is giving different results (lesser members) than what we observe when directly checking the AD Group members in Users and Computers. Basically the SMS_R_System WMI class doesn't seem to have correct information pertaining to the AD group, as we have some machines not showing up in the query results. But the same machine shows up in the AD group membership under Users and computers.
And this seems to be a repetitive cycle. i.e. machine A doesn't show up in the collection today.. and then it shows up subsequently.. but then goes missing again.
I'm basically checking the SCCM Console as well as running AD Users and Computers on the Site Server itself, so I believe the same domain controller is being used. So my question is, what exactly populates the SMS_R_System WMI class and what could be the possible reasons for this inconsistent results?
Thank You