Disabling authenticode signature verification in .NET exe without app.config - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T08:36:41Zhttp://stackoverflow.com/feeds/question/297449http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/297449/disabling-authenticode-signature-verification-in-net-exe-without-app-config3Disabling authenticode signature verification in .NET exe without app.configJoe Albahari2008-11-18T00:13:46Z2009-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><configuration>
<runtime>
<generatePublisherEvidence enabled="false"/>
</runtime>
</configuration>
</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#3274900Answer by divo for Disabling authenticode signature verification in .NET exe without app.configdivo2008-11-29T12:33:07Z2008-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#4538241Answer by earlNameless for Disabling authenticode signature verification in .NET exe without app.configearlNameless2009-01-17T19:01:30Z2009-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>