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

SQL Query App-V 5.0 Usage

$
0
0

You can use the following query on your App-V 5.0 reporting server database (AppVReporting) to get application usage information for which users ran which software on which systems and when.


select distinct username, host_name, app_name, start_time

from dbo.ApplicationUsage APPU

join dbo.ClientInformation CLIINFO on APPU.host_id=CLIINFO.host_id

order by start_time desc

appv_usage


Filed under: App-V 5.0

Viewing all articles
Browse latest Browse all 11

Trending Articles