Forum Discussion
Jeff Harlow
Jun 14, 2019Iron Contributor
User Addin Report
Is there a way to get a report on what addins (store addins) are installed on a users Outlook? I know I can see what addins I have made available to users but we do not lock down the Office Store and need a way to see what users are installing, if doing so. Thanks,
Depends on the type of add-in. You can report on some via PowerShell cmdlets (Get-App), but that mostly covers Exchange. Others might be visible as a service principal object (so Get-MsolServicePrincipal). Desktop ones can be covered by Office telemetry: https://docs.microsoft.com/en-us/deployoffice/compat/manage-add-ins-by-using-telemetry-dashboard-in-office
Depends on the type of add-in. You can report on some via PowerShell cmdlets (Get-App), but that mostly covers Exchange. Others might be visible as a service principal object (so Get-MsolServicePrincipal). Desktop ones can be covered by Office telemetry: https://docs.microsoft.com/en-us/deployoffice/compat/manage-add-ins-by-using-telemetry-dashboard-in-office
- Jeff HarlowIron Contributor
VasilMichev Excellent! The Get-App ( get-app -mailbox [username] ) did the trick. Thanks