Everytime I try to debug my asp.net website I get this error:
Unable to launch the IIS Express Web server.
Failed to register URL "http://localhost:50010/" for site "SociopackWebAPI" application "/". Error description: The process cannot access the file because it is being used by another process. (0x80070020)
In eventviewer I noticed this error in the log:
The worker process for app pool 'Clr4IntegratedAppPool', PID='13248', failed to initialize the http.sys communication when asked to start processing http requests and therefore will be considered ill by W3SVC and terminated. The data field contains the error number.
I assume this means my Clr4IntegratedAppPool does not have enough rights? How can I fix thi?

