Tuesday, January 27, 2015

SCCM collection query for all workstations

The following WQL query for SCCM will populate all the workstations into one collection.

**********************************************************************
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.OperatingSystemNameandVersion like "Microsoft Windows NT Workstation%"
**********************************************************************
More SCCM collection (WQL) queries can be found here

No comments:

Post a Comment