Estimated reading time: 1 minutes
We have another WQL query here for you today to enable you to create a Configuration Manager collection based on whether a device is used as a domain controller.
Go ahead and create a new device collection and then use this query:
select
*
from
SMS_R_System
inner join SMS_G_System_COMPUTER_SYSTEM
on SMS_G_System_COMPUTER_SYSTEM.ResourceId = SMS_R_System.ResourceId
where SMS_G_System_COMPUTER_SYSTEM.Roles like "%Domain_Controller%"
Save the query and you should now see a collection of all your domain controllers.
Just be careful with copying and pasting in case the formatting of the symbols comes out incorrectly. Check these first if your collection fails to import and devices.
More Queries
Our full range of SQL AND WQL Collection queries are available here.
Feedback
If you have any questions or feedback about this post, or if you would like us to create any queries for you, please go ahead and leave us a message below in the comments section and we will get back to you as quick as we can.
Share this content:
https://docs.microsoft.com/en-us/windows/desktop/cimwin32prov/win32-computersystem:
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_COMPUTER_SYSTEM as cs on cs.ResourceID = SMS_R_System.ResourceId where cs.DomainRole = 4 or cs.DomainRole = 5