When I try to debug a web site in .NET 1.0, I get the following error "Error while trying to run project: Unable to start debugging on the web server. Could not read key from registry"

I was not able to find any documentation on this particular error for not not being able to read the key from registry.

I did look at Microsoft KB For This, but, it does not have anything for the registry read error.

EDIT: I found a work around for this. Add the username that aspnet_wp.exe is running under to the Administartors group on your PC. This is a very bad thing because it exposes a security hole on your machine. But, it is still not clear what "other" rights does this account need in order to "read key from registry."

link|improve this question
Does it say what registry key it is trying to read? If the registry key is trying to be read by your code, you have to make sure you are requesting read-only access to the key. With a default IIS setup your app runs with credentials that probably don't have write access to most reg keys, esp. HKLM – mjmarsh Mar 26 '09 at 19:47
No! It does not say which key it is trying to read. When I start the project without debugging (Ctrl + F5), it runs fine. This is in VS 2002 by the way. – Ralph Wiggum Mar 26 '09 at 19:54
Look in the security event log for any failure audit entires when you run the app in debug mode. – Michael Kniskern Mar 26 '09 at 19:57
I looked in there as you suggested. There are no failure entries in it. This is really wierd! – Ralph Wiggum Mar 27 '09 at 12:30
feedback

1 Answer

Consider running the RegMon from SysInternals. It should show your which registry keys get denied.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.