Configuration Manager Report Query for Machine Make & Model Count
If you want to report on the number of certain makes and models of machines that you have 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
     Manufacturer0 AS Make,
     Model0 AS Model,
     COUNT (Model0) AS Quantity
 FROM v_GS_COMPUTER_SYSTEM
     GROUP BY Model0,
     Manufacturer0

COMMENTS

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

Labels: , , ,