1

I have downloaded the redemption.dll and it needs to be added with regsvr32.exe, however lacking the admin rights to do so, I'm wondering if there's any other way to access Redemption in Outlook's VBA?

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45
user3258911
  • 159
  • 5
  • 13

2 Answers2

0

Redemption is a COM based library which requires to be registered on the system to be able to consume it from the VBA code.

You may consider using the Registry-free COM technology in case of using the Redemption library from .Net based applications or VB, but not VBA.

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45
0

Yes, Redemption can be installed without admin right using regsvr32.exe. By default, it tries to install itself in HKCR/HKLM, if it can't - it installs in HKCU.

Dmitry Streblechenko
  • 62,942
  • 4
  • 53
  • 78