SCCM Report Query for Machine Make and Model Count

sql2016

Last updated on July 10th, 2023 at 04:16 pm

Read Time:48 Second

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

SQL Query

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

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.

Click to rate this post!
[Total: 0 Average: 0]

Free Subscription

If you want to be notified when we post more quality guides like this one, sign up to our free subscription service and you will receive an email when a new post is live.

Join 441 other subscribers.

No need to worry, we will not be filling your inbox with spam and you can unsubscribe anytime you like.


One thought on “SCCM Report Query for Machine Make and Model Count

Leave us a message...

This site uses Akismet to reduce spam. Learn how your comment data is processed.