Configuration Manager Report Query for Server Name and Properties

sql2016

Table of Contents

Last updated on April 16th, 2023 at 11:27 pm

Read Time:1 Minute, 29 Second

If you want to report on the server names and properties of those servers 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 distinct
CS.name0 AS ‘Server Name’,
OS.Caption0 AS ‘OS’,
CU.Manufacturer0 AS ‘Manufacturer’,
CU.Model0 AS ‘Model’,
RAM.TotalPhysicalMemory0/1024 AS [RAM (MB)],
Processor.Name0 AS ‘Processor’,
BIOS.ReleaseDate0 AS ‘BIOS Manufacture Date’,
OS.InstallDate0 AS ‘OS Install Date’
FROM
v_R_System CS
FULL JOIN v_GS_PC_BIOS BIOS on BIOS.ResourceID = CS.ResourceID
FULL JOIN v_GS_OPERATING_SYSTEM OS on OS.ResourceID = CS.ResourceID
FULL JOIN V_GS_X86_PC_MEMORY RAM on RAM.ResourceID = CS.ResourceID
FULL JOIN v_GS_PROCESSOR Processor on Processor.ResourceID=CS.ResourceID
FULL JOIN v_GS_SYSTEM_ENCLOSURE SE on SE.ResourceID = CS.ResourceID
FULL JOIN v_GS_COMPUTER_SYSTEM CU on CU.ResourceID = CS.ResourceID
WHERE CS.Operating_System_Name_and0 LIKE ‘%nt%server%’ and CS.Client0 = 1
GROUP BY
CS.Name0,
OS.Caption0,
CU.Manufacturer0,
CU.Model0,
RAM.TotalPhysicalMemory0,
BIOS.ReleaseDate0,
OS.InstallDate0,
Processor.Name0,
BIOS.ReleaseDate0
ORDER BY CS.Name0<

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.


2 thoughts on “Configuration Manager Report Query for Server Name and Properties

Leave us a message...

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