Is is possible to access an outlook add-in via redemption, rather than me adding the add-in to my application, I am not sure if this is possible.
Asked
Active
Viewed 46 times
0

Eugene Astafiev
- 47,483
- 3
- 24
- 45

Tom Gibson
- 1
- 1
-
1What is your end goal? – Eugene Astafiev Aug 25 '22 at 15:13
-
1Are you trying to do something with a a third-party addin? – Dmitry Streblechenko Aug 25 '22 at 15:46
1 Answers
0
Redemption is a wrapper around Extended MAPI, not Outlook. So, it doesn't provide anything for dealing with Outlook features like add-ins.
You can get the Outlook running instance or create a new one of none exists and then access the COM add-ins list. The COMAddIns property of the Application
class returns a COMAddIns
collection that represents all the Component Object Model (COM) add-ins currently loaded in Microsoft Outlook.
Private Sub CountCOMAddins()
MsgBox "There are " & Application.COMAddIns.Count & " COM add-ins."
End Sub

Eugene Astafiev
- 47,483
- 3
- 24
- 45