How to collect info which Outlook add-ins are installed for all users

PH_CAN 41 Reputation points
2022-10-15T16:25:42.847+00:00

Hi there,
I need to find out which Add-in each user has installed in Outlook.
Does anyone has an answer?
Thanks

Outlook | Windows | Classic Outlook for Windows | For business
0 comments No comments
{count} votes

Accepted answer
  1. KyleXu-MSFT 26,396 Reputation points
    2022-10-17T01:59:16.56+00:00

    @PH_CAN

    As VictorIvanidze-0112 said, you could find the add-ins list from registry.

    Here is a script which could help you read the registry (Run it on the computer that you want to check):

    $searchScopes = "HKCU:\SOFTWARE\Microsoft\Office\Outlook\Addins"  
    $searchScopes | % {Get-ChildItem -Path $_ | % {Get-ItemProperty -Path $_.PSPath} | Select-Object @{n="Name";e={Split-Path $_.PSPath -leaf}},FriendlyName,Description} | Sort-Object -Unique -Property name  
    

    If you want to check for all users, you could try to run this script with a GPO.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.



1 additional answer

Sort by: Most helpful
  1. Victor Ivanidze 101 Reputation points
    2022-10-15T18:32:02.6+00:00

    Hi,

    to do that you have to be able to read the registry of each machine where Outlook is installed.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.