Link to home
Start Free TrialLog in
Avatar of RhoSysAdmin
RhoSysAdminFlag for United States of America

asked on

SCCM 2012 "All Desktops and Laptop Client" collection is NOT finding Windows 10 client

We about to migrate to SCCM 2012 R2 SP1. While we're kicking the tires, we added a Windows 10 client to it. This client is not showing up in my custom "All Desktop and Laptop Clients" collection. However it DOES show up in the builtin "All Desktop and Server Clients" collection. The trick is I cannot compare my query against the one for the builtin collection.

Below is my query (I found on the internet of course). Can someone tell me where I'm going wrong?

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_SYSTEM on SMS_G_System_SYSTEM.ResourceId = SMS_R_System.ResourceId 
where SMS_G_System_SYSTEM.SystemRole = "Workstation"

Open in new window


Could it be that my test win 10 system is a vm, and the above query doesn't pick vm's but the "All Desktop and Server Clients" builtin collection query does pickup vm's?
ASKER CERTIFIED SOLUTION
Avatar of RhoSysAdmin
RhoSysAdmin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of RhoSysAdmin

ASKER

Answered my own question.