This simple query will show the SCCM client version (works with SCCM 2007 and 2012):
select distinct SYS.Name0 as 'Machine Name', SYS.User_Name0 as 'Login ID', SYS.User_Domain0 as 'Domain', USR.Full_User_Name0 as 'Full Name', case when SYS.Client0 = 1 then 'Yes' when SYS.Client0 = 0 then 'No' else convert(varchar(2), SYS.Client0) end as 'Client Installed', SYS.Client_Version0 as 'Client Version' from v_R_System SYS join v_FullCollectionMembership FCM on SYS.ResourceID = FCM.ResourceID join v_Collection CN on FCM.CollectionID = CN.CollectionID join v_R_User USR on SYS.User_Name0 = USR.User_Name0 where CN.Name = 'All Systems'
SCCM Printer complete ReportSELECT distinct
A.Name0, A.UserName0, B.Name0, B.DriverName0, B.Location0, B.PortName0, B.ShareName0,Manufacturer0, Model0
FROM v_GS_COMPUTER_SYSTEM …Read More
SCCM Report Site System Status
Select Distinct
SiteCode,
Role,
'Status' = Case
When Status = 0 Then 'OK'
When Status = 1 Then 'Warning'
When Status = 2 Then 'Critical'
Else…Read More
Count Office Suite Versionsselect
DisplayName0,
Count (Distinct arp.ResourceID) as 'Client Count'
From
dbo.v_Add_Remove_Programs ARP
Where
DisplayName0 in ( 'Microsoft Office Pr…Read More
Visio/Project Version Countselect
DisplayName0,
Count (Distinct arp.ResourceID) as 'Client Count'
From
dbo.v_Add_Remove_Programs ARP
Where
DisplayName0 in ('Microsoft Visio Stan…Read More
Thanks for the post, but I found the query crashed the SCCM console (using version 5.00.8239.1302). The query starts to return each component (about 20) for every computer so results in tens of thousands of records in my case.
Thanks for the post, but I found the query crashed the SCCM console (using version 5.00.8239.1302). The query starts to return each component (about 20) for every computer so results in tens of thousands of records in my case.
ReplyDeleteHi Ian,
Deleteyou're right. I checked and correct it. In My SCCM is working fine.
Regards