Skip to content

Instantly share code, notes, and snippets.

@zeph1rus
Last active July 25, 2018 13:52
Show Gist options
  • Save zeph1rus/a56620bc5f38f8641ed895dad98e7456 to your computer and use it in GitHub Desktop.
Save zeph1rus/a56620bc5f38f8641ed895dad98e7456 to your computer and use it in GitHub Desktop.
Search for disabled/slow start outlook addins
$searchScopes = "HKCU:\SOFTWARE\Microsoft\Office\Outlook\Addins","HKLM:\SOFTWARE\Wow6432Node\Microsoft\Office\Outlook\Addins"
$searchScopes | % {Get-ChildItem -Path $_ | % {Get-ItemProperty -Path $_.PSPath} | Select-Object @{n="Name";e={Split-Path $_.PSPath -leaf}},FriendlyName,LoadBehavior} | Where-Object {$_.LoadBehavior -ne 3}
@zeph1rus
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment