Outlook Add-ins Analysis HKEY_CURRENT_USERS

hi
how can I find outlook add-ins in “LoadBehavior” value all computers

HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins\KeepnetLabs Outlook Add-in
file:LoadBehavior
value:3

thanks for your help

You could parse the current logged in user key. This would probably result as False for systems with no logged in user.

Q: exists values "LoadBehavior" whose (it as string = "3") of keys "Software\Microsoft\Office\Outlook\Addins\KeepnetLabs Outlook Add-in" of (current user keys (logged on users) of registry)
E: False

If you need to parse the data even without a logged in user you would need to look at key of the HKEY_USER hive, one possible approach being

Q: exists keys "Software\Microsoft\Office\Outlook\Addins\KeepnetLabs Outlook Add-ins" whose (exists value "LoadBehavior" whose (it as string = "3") of it) of keys of key "HKEY_USERS" of registry
A: True
1 Like