User Account Control and Add-in install
As a COM library it creates entries in HKLM
When I install ANY Outlook Add-in, Outlook registers Add-in in AddIns key:
HKEY_CURRENT_USER\Software\Microsoft\Office\Outloo k\AddIns\
If this is what causes my problem, every Add-in will have the same problem
Am I right?
"Dmitry Streblechenko" wrote in message
...
Might very well be if your dll tries to install itself into HKLM or HKCR.
You need to implement your own version of DllRegisterServer that uses
RegOverridePredefKey to redirect the registry output ot HKCU before the
default implementation of DllRegisterServer is called.
|