Configuration Manager Report Query for Machines without Client Installed
If you want to report on the machines that do not have the ConfigMgr client installed within your Configuration Manager environment then you can run this query directly on your SQL database or you can use it to create a report within SSRS.

How to create a Configuration Manager Report using SSRS

The query is below and can be altered to fit your own needs by adding columns and tables if or where required.

 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.Client is null

COMMENTS

If you have any questions, query requests for Configuration Manager or general comments, please leave them below using our Disqus system.

Labels: , , ,