Access denied error when building solution in Visual Studio 2005 - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T06:05:59Zhttp://stackoverflow.com/feeds/question/81071http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/81071/access-denied-error-when-building-solution-in-visual-studio-20052Access denied error when building solution in Visual Studio 2005sgrassie2008-09-17T08:18:41Z2009-03-22T21:56:53Z
<p>Hi, I get the following error in Visual Studio 2005 when doing a build:</p>
<blockquote>
<p>Error 9 Cannot register assembly
"E:\CSharp\project\Some.Assembly.dll"
- access denied. Access is denied. (Exception from HRESULT: 0x80070005
(E_ACCESSDENIED)) project</p>
</blockquote>
<p>It happens only intermittantly and does go away if I restart the IDE, however this is incredibly annoying and I would like to put a stop to it happening permanently, if I can. I've checked the assembly itself, and it is not set to read only, so I've no idea why Visul Studio is getting a lock on it. I am working in Debug mode.</p>
<p>I've had a look around google, but can't seem to find anything other than "restart VS". Does anyone have any suggestions as to how I can resolve this annoying problem?</p>
http://stackoverflow.com/questions/81071/access-denied-error-when-building-solution-in-visual-studio-2005/81080#810802Answer by Raithlin for Access denied error when building solution in Visual Studio 2005Raithlin2008-09-17T08:20:18Z2008-09-17T09:09:17Z<p>It sounds like you have a DLL that gets locked every now and then, preventing VS from overwriting/locking it. Have you tried using tools like Process Explorer (<a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx</a>), or Unlocker (<a href="http://ccollomb.free.fr/unlocker/" rel="nofollow">http://ccollomb.free.fr/unlocker/</a>) to see what is locking the DLL? Unlocker in particular has saved me many a time.</p>
<p>As noted in the comments below (Thanks <a href="http://stackoverflow.com/users/1/jeff-atwood">Jeff</a>), you can also kill an individual lock from within Process Explorer.</p>