Disabling authenticode signature verification in .NET exe without app.config - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T08:36:41Z http://stackoverflow.com/feeds/question/297449 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/297449/disabling-authenticode-signature-verification-in-net-exe-without-app-config 3 Disabling authenticode signature verification in .NET exe without app.config Joe Albahari 2008-11-18T00:13:46Z 2009-01-17T19:01:30Z <p>Does anyone know how to disable authenticode signature verification in a .NET executable (to avoid slow startup) without using an application config file? In other words, do this:</p> <pre><code>&lt;configuration&gt; &lt;runtime&gt; &lt;generatePublisherEvidence enabled="false"/&gt; &lt;/runtime&gt; &lt;/configuration&gt; </code></pre> <p>without an app.config. Is it possible?</p> http://stackoverflow.com/questions/297449/disabling-authenticode-signature-verification-in-net-exe-without-app-config/327490#327490 0 Answer by divo for Disabling authenticode signature verification in .NET exe without app.config divo 2008-11-29T12:33:07Z 2008-11-29T12:33:07Z <p>Well, according to MSDN the element generatePublishersEvidence can only be used in a configuration file:</p> <blockquote> <p><strong>Configuration File</strong></p> <p>This element can be used only in the application configuration file.</p> </blockquote> <p>See <a href="http://msdn.microsoft.com/en-us/library/bb629393.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb629393.aspx</a>.</p> http://stackoverflow.com/questions/297449/disabling-authenticode-signature-verification-in-net-exe-without-app-config/453824#453824 1 Answer by earlNameless for Disabling authenticode signature verification in .NET exe without app.config earlNameless 2009-01-17T19:01:30Z 2009-01-17T19:01:30Z <p>If you are allowed to modify the Main() method, then what you could do is the following in your Main:</p> <ol> <li>Create an application config file in memory with generatePublisherEvidence</li> <li>Create a new application domain using the newly created application config file</li> <li>Run the original Main in the other application domain</li> </ol> <p>This will allow you not to have an application config file, but be able to have all the customization you would want to have in the application config file.</p>