How to Disable excel Vba add ins.
Blue highlight copy for using code
--------------------------------------------------------------------------
Private Sub Workbook_Open()
Dim addIn As addIn
' Loop through each add-in and disable it
For Each addIn In Application.AddIns
addIn.Installed = False
Next addIn
End Sub
------------------------------------------------------------------------------