13

When I doubleclick to install a VSTO plugin for Excel 2010 I get a message "unable to install this application because an application with the same identity is already installed. To install this application, either modify the manifest version for this application or uninstall the preexisting application.". This plugin was previously uninstalled using "uninstall program" window in control panel. So how do I reinstall the plugin?

I've also deleted the previous plugin from directory that is specified at HKCU\Software\Microsoft\Fusion\DownloadCacheLocation registry key.

All exceptions: System.Deployment.Application.DeploymentException: Unable to install this application because an application with the same identity is already installed. To install this application, either modify the manifest version for this application or uninstall the preexisting application.

at Microsoft.VisualStudio.Tools.Applications.Deployment.ClickOnceAddInDeploymentManager.DownloadAddIn(TimeSpan timeout)

at Microsoft.VisualStudio.Tools.Applications.Deployment.ClickOnceAddInDeploymentManager.InstallAddIn()

Bogdan Verbenets
  • 25,686
  • 13
  • 66
  • 119

4 Answers4

22

If you need to do this on a computer without the SDK installed you can run the following command:

rundll32 dfshim CleanOnlineAppCache

Source: http://www.nerdfurio.us/blog/post.aspx?id=004f104e-da73-df11-949e-001143eed2d5

Matthew Steeples
  • 7,858
  • 4
  • 34
  • 49
2

Another thing you can try: Find the app folder in

C:\Users\%USERNAME%\AppData\Local\Apps\2.0

and delete it.

Source: https://stackoverflow.com/a/11921554/15154

SeanKilleen
  • 8,809
  • 17
  • 80
  • 133
John Fouhy
  • 41,203
  • 19
  • 62
  • 77
1

I've used the mage tool to clear application cache and that helped me.

Bogdan Verbenets
  • 25,686
  • 13
  • 66
  • 119
0

I've met simple app to remove them:

enter image description here http://jake.ginnivan.net/vsto/addin-uninstaller/

T.Todua
  • 53,146
  • 19
  • 236
  • 237