How To Remove An Outlook Add-in

J

JRomeo

Hi:

I'm about to deploy an Outlook 2003 add-in, developed using VSTO SE, and I'm
currently developing a rollback plan. Are there any resources available that
show how to cleanly remove an add-in? The add-in adds a control to the
standard toolbar of selected Inspectors along with an event handler used for
when the control is clicked. Thanks.

Jerry
 
K

Ken Slovak - [MVP - Outlook]

Rollback from what, the installation? Deleting the toolbar you create when
the Inspector or Explorer closes plus declaring it as temporary when you
create it is the usual best practice. The usual setting of all objects to
null (Nothing) when the procedure where they are used should be done, as
should removing any event handler in the Close event. Beyond that I usually
get rid of my global or connect class Outlook objects in my Teardown()
method, called from Shutdown() or Explorer.Close() when the last Explorer
closes and there are no Inspectors, by calling Marshal.ReleaseComObject() on
each and then calling GC.Collect() followed by GC.WaitForPendingFinalizers.

Any files added during installation or registry entries added during
installation will be removed by uninstalling. Anything added on the fly
should be removed using custom actions.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top