Please help with Fatal CLR Error 80004005 - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T13:02:48Zhttp://stackoverflow.com/feeds/question/256370http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/256370/please-help-with-fatal-clr-error-800040051Please help with Fatal CLR Error 80004005Nescio2008-11-02T01:29:36Z2009-07-27T19:50:21Z
<p>Today, everytime I try to open any .Net application I get:</p>
<blockquote>
<p>CLR error: 80004005 <br>
The program will now terminate.</p>
</blockquote>
<p>Any suggestions?!</p>
http://stackoverflow.com/questions/256370/please-help-with-fatal-clr-error-80004005/256373#2563735Answer by Jeff Donnici for Please help with Fatal CLR Error 80004005Jeff Donnici2008-11-02T01:32:42Z2008-11-02T01:32:42Z<p>I'd start with <a href="http://msdn.microsoft.com/en-us/netframework/aa569263.aspx" rel="nofollow">downloading</a> and re-installing the .NET framework.</p>
http://stackoverflow.com/questions/256370/please-help-with-fatal-clr-error-80004005/256381#2563811Answer by amdfan for Please help with Fatal CLR Error 80004005amdfan2008-11-02T01:44:13Z2008-11-07T17:01:26Z<p>A quick search suggests this:</p>
<blockquote>
<p>"If you get a Run-time error 80131522
"No Server registered or could not
load class for CLSID ...", it is
because you are trying to run the VB
executable from a directory other than
where the .NET assembly is located.
This also happens if you try to run
the vb code in interactive mode. This
can be solved by installing the .NET
assembly into the global application
cache"</p>
</blockquote>
<p>(<a href="http://bytes.com/forum/thread353655.html" rel="nofollow">http://bytes.com/forum/thread353655.html</a>)</p>
<p>In an ASP.NET context, it appears this is related to file permissions:</p>
<blockquote>
<p>The error code for the failure is
80004005. This error can be caused when the worker process account has
insufficient rights to read the .NET
Framework files. Please ensure</p>
</blockquote>
<p>(<a href="http://weblogs.asp.net/jambrose/archive/2004/09/01/224226.aspx" rel="nofollow">http://weblogs.asp.net/jambrose/archive/2004/09/01/224226.aspx</a>)</p>
http://stackoverflow.com/questions/256370/please-help-with-fatal-clr-error-80004005/256386#2563860Answer by Mark Brackett for Please help with Fatal CLR Error 80004005Mark Brackett2008-11-02T01:51:12Z2008-11-02T01:51:12Z<p>I believe 0x80004005 is (usually) an ACCESS DENIED error - so start with that in mind. If you're on Vista+, try running it as admin. Otherwise, <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">Process Monitor</a> should help you track it down.</p>
http://stackoverflow.com/questions/256370/please-help-with-fatal-clr-error-80004005/1190259#11902590Answer by SaguiItay for Please help with Fatal CLR Error 80004005SaguiItay2009-07-27T19:50:21Z2009-07-27T19:50:21Z<p>I'm experiencing something similiar on a client machine. a WinForm application in .Net 2.0.
The server has .NET Framework 2.0 w/ SP1 and WSE 2.0 installed. It's running Windows Server 2000 and has 2GB of RAM dedicated to it.</p>
<p>I've read about reinstalling the .Net Framework, which I really don't want to tell my client to do. Other than that, I've read about compatibility....</p>
<p>Any suggest?</p>