Quantcast
Channel: All about Microsoft Endpoint Manager
Viewing all articles
Browse latest Browse all 444

SCCM Configmgr 2012 SSRS Report:Count of Client Versions

$
0
0

With the recent Cumulative Update releases CU1,CU2 and now CU3 for Configuration Manager 2012 SP1,as Configmgr admin,you will have make sure to get the Configmgr clients on to the latest version.

Each cumulative update will have its new Version with its previous Cumulative Update. so if you are upgrading from previous CU’s to Newly Released Cumulative Update,you may have to look at the client versions in your environment if they are all on same boat or not.

Use this below SQL query to count the Client Versions from Configmgr environment.You can create list of PC’s with the specific client version to drill down.

select "Client Version"=
case sys.Client_Version0
when ’5.00.7804.1000′ then ‘SP1′
when ’5.00.7804.1202′ then ‘SP1 CU1′
when ’5.00.7804.1300′ then ‘SP1 CU2′
when ’5.00.7804.1400′ then ‘SP1 CU3′
else ‘Non clients’
End,count(*) [Total]
from v_R_System sys
where sys.Name0 not like ‘unknown’
group by sys.Client_Version0
order by 2 desc

SSRS Report:

 

image thumb15 SCCM Configmgr 2012 SSRS Report:Count of Client Versions

SCCM Configmgr 2012 SSRS Report:Count of Client Versions is a post from: Eswar Koneti's Blog


Viewing all articles
Browse latest Browse all 444

Trending Articles