Custom Client Health Monitoring, Part 3
This is part 3 of 3 on my custom client health monitoring reports, which I created way back in SMS 2003 and I still use today. Part 1 outlines a custom report that I call “Computers that belong to X...
View ArticleCustom query of ACT data for apps with issues
The application compatibility toolkit (ACT) is a great tool for analyzing compatibility of apps when doing a migration of Windows. However, the available “reports” are limited in what they display...
View ArticleSQL Query App-V 5.0 Usage
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...
View ArticleAutomating SQL 2008 R2 Express for ConfigMgr
There are many guides online on automating the installation of SQL 2008 R2 Express. Although each was missing a small detail, a concatenation of them led me to create a successful deployment. Use the...
View ArticleApp-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,...
View ArticleApp-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(*)...
View ArticleApp-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,...
View ArticleApp-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,...
View ArticleApp-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...
View ArticleConfigMgr Report for Antimalware Policies
Let’s say for a moment that your organization uses SCCM for management of Windows Defender Antivirus (WDAV in Windows 10, Server 2016) or System Center Endpoint Protection (SCEP for legacy platforms)....
View Article