-
-
Save tstolswo/c74f435e923e2e7bdb475c5ecdff552f to your computer and use it in GitHub Desktop.
SQL Query for the ConfigMgr Database which provides a summary of servers built in the last 31 days.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT Distinct | |
GSSYS.Domain0 as 'Domain Name', | |
SYS.Name0 as 'Machine Name', | |
OS.Caption0 as 'OS', | |
OS.Description0 as 'Description', | |
GSSYS.SystemRole0 as 'Role', | |
OS.InstallDate0 as 'OS Install Date', | |
OS.TotalVisibleMemorySize0 as 'Allocated Memory', | |
CS.NumberOfProcessors0 as 'Allocated CPU' | |
FROM | |
v_R_System as SYS inner join v_GS_COMPUTER_SYSTEM as CS on CS.ResourceID = SYS.ResourceID | |
inner join v_GS_OPERATING_SYSTEM as OS on OS.ResourceID = SYS.ResourceID | |
inner join v_GS_SYSTEM as GSSYS on GSSYS.ResourceID = SYS.ResourceID | |
WHERE | |
DATEDIFF(day,OS.InstallDate0,getdate()) < 31 | |
and | |
GSSYS.SystemRole0 = 'Server' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment