Forum Discussion
New add-in inventory report for Configuration Manager
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.
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.