What is the error message that you receive? 

The problem that you describe should not occur with Office 2007. However, it is a known problem for so-called Shared Add-ins (.NET add-ins based on the Extensibility.IDTExtensibility2 interface using COM interoperability) in Office 2003. 

Microsoft has a released a patch, which should be installed for every user using the add-in. You can obtain the patch here:

>[http://support.microsoft.com/kb/908002][1]

The solution using the config file is a non-standard solution but should also fix the problem as stated in the following article: 

> [http://nielsvanvliet.com/excel.html#Patch][2]

If want to deploy your add-in using an MSI installer you should check the **Shared Add-in Support Update for the Microsoft .NET Framework 2.0 (KB908002)** as a pre-requisite in the properties of the setup project. Please note that this fix can only be installed for the current user, i.e. an ALLUSERS setup should be disabled.

UPDATE: The installation with VS 2008 is a little more complicated. See here:

>[http://stackoverflow.com/questions/553794/can-a-net-word-2003-add-in-be-installed-outside-of-the-gac/553886#553886][3]


  [1]: http://support.microsoft.com/kb/908002
  [2]: http://nielsvanvliet.com/excel.html#Patch
  [3]: http://stackoverflow.com/questions/553794/can-a-net-word-2003-add-in-be-installed-outside-of-the-gac/553886#553886