Quantcast
Channel: SQL – t3chn1ck
Viewing all articles
Browse latest Browse all 11

App-V 5.0 – count most used packages

$
0
0

If using standalone AppV 5.0 infrastructure, use the following SQL query against your AppVReporting database to retrieve a count the most used AppV packages.

select distinct package_name, COUNT(*) as 'Use Count'
from dbo.PackageInformation pkg
inner join dbo.ApplicationUsage apu on pkg.host_id=apu.host_id
where pkg.version_guid=apu.version_guid
group by package_name
order by 'use count' desc

count_most_used_pkgs


Filed under: App-V 5.0

Viewing all articles
Browse latest Browse all 11

Trending Articles