Sep 26 2017
07:45 AM
- last edited on
Apr 04 2022
10:36 AM
by
TechCommunityAP
Sep 26 2017
07:45 AM
- last edited on
Apr 04 2022
10:36 AM
by
TechCommunityAP
Today a new report was released to the GitHub community site that allows you to collect and view an inventory of the Office Add-ins that are in use by the clients that you manage with System Center Configuration Manager (2012 R2 or later).
This report gathers the inventory of each Office add-in that is installed as well as the device that has it installed and the status (enabled, disabled) allowing you to determine which add-ins are in use as well as the impact based on the number of installations. This report also provides a link to Microsoft's Office ProPlus Add-in Readiness report which you can view from http://aka.ms/addinreadiness.
To get this new report, download it directly from GitHub at https://github.com/OfficeDev/Office-IT-Pro-Deployment-Scripts/tree/master/Office-ProPlus-Management/...
Oct 21 2020 02:20 PM
Had to adjust the report files with report builder as they had a hard coded database name of CM_S01, but this works great!
Oct 22 2020 11:38 AM
found a slight problem here... It does not record addins that come from the microsoft store. This appears to only capture COM addins that are installed on the machine.
This makes it useless for me, because we had the setting turned on that people could install applications from the microsoft store and the end goal here is for me to figure out who has done that and what they are using. This does not appear to work for this purpose.
Oct 23 2020 10:10 AM
found this article now, and it shows you with one power shell command, how to extract this information from exchange and dump it into a CSV. even goes over how to create a nice pivot table chart!
https://www.howto-outlook.com/howto/report-office-store-app-usage.htm
Here is the command incase that page goes defunct:
Get-Mailbox -ResultSize Unlimited | ForEach-Object {Get-App -Mailbox $_.identity | Select-Object -Property DisplayName, Enabled, AppVersion | Export-Csv applist-export.csv -NoTypeInformation -Append}
you could easily tweak that to find which user has what plugin too.
Aug 25 2021 01:31 PM