Month: December 2013
App-V 5.0 – count most used packages
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
App-V 5.0 – users of apps by date
If using standalone AppV 5.0 infrastructure, use the following SQL query against your AppVReporting database to retrieve a list of apps run by users on by date.
select distinct app_name, package_name, COUNT(*) as 'Use Count' from dbo.PackageInformation pkg inner join dbo.ApplicationUsage apu on pkg.host_id=apu.host_id where app_name like '% the app name %' and pkg.version_guid=apu.version_guid group by app_name, package_name
App-V 5.0 – count most used apps
If using standalone AppV 5.0 infrastructure, use the following SQL query against your AppVReporting database to retrieve a count of most used applications.
select distinct app_name, 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 app_name, package_name order by 'use count' desc
App-V 5.0 – count app usage
If using standalone AppV 5.0 infrastructure, use the following SQL query against your AppVReporting database to retrieve a count of application usage.
select distinct app_name, package_name, COUNT(*) as 'Use Count' from dbo.PackageInformation pkg inner join dbo.ApplicationUsage apu on pkg.host_id=apu.host_id where app_name like '% the app name %' and pkg.version_guid=apu.version_guid group by app_name, package_name
App-V 5.0 reporting – count app usage by user
If using standalone AppV 5.0 infrastructure, use the following SQL query against your AppVReporting database to retrieve a count of application usage by user.
select distinct username, app_name, package_name, COUNT(*) as 'Use Count' from dbo.PackageInformation pkg inner join dbo.ApplicationUsage apu on pkg.host_id=apu.host_id where app_name like '% the app name %' and pkg.version_guid=apu.version_guid group by username, app_name, package_name