.NET app.config question - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T23:36:24Zhttp://stackoverflow.com/feeds/question/436958http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/436958/net-app-config-question1.NET app.config questiongary.rosales2009-01-12T20:47:49Z2009-04-26T23:37:02Z
<p>I have created an Excel 2003 add-in that uses the CLR 2.0 and this add-in is to be installed in hundreds of machines at my customer's site. The issue is that some of the machines where the add-in is installed have .NET 1.1 and .NET 2.0 running side by side, and the plugin throws an error when it's trying to load. </p>
<p>The solution I have come across that works is to create an excel.exe.config file in the same folder where excel.exe is that sets the supportedRuntime version to v2.0.50727. </p>
<p>Because this solution does not scale well in my case (since the add-in is to be used in hundreds of machines where the users might not even have access to create a config file), I was wondering if I could add the same supportedRuntime parameter in my plugin app.config file and it would work. </p>
<p>If this will not work, do you guys know of anything else I could try?</p>
http://stackoverflow.com/questions/436958/net-app-config-question/436982#4369820Answer by JD Conley for .NET app.config questionJD Conley2009-01-12T20:56:37Z2009-01-12T20:56:37Z<p>Well, if there are hundreds of machines I assume there is Group Policy in place or some other method of running admin scripts or setup files. Maybe you can create a small MSI package to push out this config file or get it added to a startup script?</p>
http://stackoverflow.com/questions/436958/net-app-config-question/437112#4371121Answer by divo for .NET app.config questiondivo2009-01-12T21:38:57Z2009-04-26T23:37:02Z<p>What is the error message that you receive? </p>
<p>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. </p>
<p>Microsoft has a released a patch, which should be installed for every user using the add-in. You can obtain the patch here:</p>
<blockquote>
<p><a href="http://support.microsoft.com/kb/908002" rel="nofollow">http://support.microsoft.com/kb/908002</a></p>
</blockquote>
<p>The solution using the config file is a non-standard solution but should also fix the problem as stated in the following article: </p>
<blockquote>
<p><a href="http://nielsvanvliet.com/excel.html#Patch" rel="nofollow">http://nielsvanvliet.com/excel.html#Patch</a></p>
</blockquote>
<p>If want to deploy your add-in using an MSI installer you should check the <strong>Shared Add-in Support Update for the Microsoft .NET Framework 2.0 (KB908002)</strong> 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.</p>
<p>UPDATE: The installation with VS 2008 is a little more complicated. See here:</p>
<blockquote>
<p><a href="http://stackoverflow.com/questions/553794/can-a-net-word-2003-add-in-be-installed-outside-of-the-gac/553886#553886">http://stackoverflow.com/questions/553794/can-a-net-word-2003-add-in-be-installed-outside-of-the-gac/553886#553886</a></p>
</blockquote>