-1

I am successfully sending mail with my PowerShell script through Outlook. The only problem I am facing is that I need to set the classification in TITUS (add-on) whenever I am sending mail. I need to disable the TITUS add-on in Outlook. Does anyone know how to disable the TITUS add-on with PowerShell?

Tony Hinkle
  • 4,706
  • 7
  • 23
  • 35

1 Answers1

0

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. So, you can find the required one and set the Loaded property to false to get it unloaded programmatically at runtime.

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