Symptoms
You have an IIS 7.5 server hosted on Windows Server 2008 R2/Windows 7 and when you try to browse to the site over Windows Integrated authentication it fails with 401.1 like below:

Module WindowsAuthenticationModule
Notification AuthenticateRequest
Handler StaticFile
Error Code 0x80090305
Resolution
To resolve this issue we need to restart W3SVC service as below from the command prompt:
> net stop w3svc
> net start w3svc
Or simply run IISRESET.
*Remember recycling application pool won’t resolve the issue. It’s the WWW service that has to be restarted.