.net – ClickOnce app not working with Office 2007

clickonceexceptionnetoffice-2007

I am a developer for a .net application that uses ClickOnce for deployment. I have deployed it over 60 times and computers have not had any issues downloading the latest release. However, when I deployed this morning, the following error occurs when computers with Office 2007 installed tries to start the application:

Unable to install or run the application. The application requires that assembly stdole Version 7.0.3300.0 be installed in the Global Assembly Cache (GAC) first. Please contact your system administrator.

However, computers with Office 2003 can start the application with no problem.

Does anyone have any recommendations on resolving this issue?

Best Answer

As far as I know this version of stdole is removed when Office2k7 is installed. You could install it individually via gacutil on all target machines or somehow include it via the ClickOnce package bootstrapper. On a mac right now so I can't test.

Related Topic