I have developed an ASP.NET MVC 5 with Visual Studio 2012 Premium, C# and .NET Framework 4.5.1.
When I enable Windows authentication on web.config:
<system.web>
<compilation debug="true" targetFramework="4.5.1" />
<httpRuntime targetFramework="4.5.1" />
<authentication mode="Windows" />
<authorization>
<deny users="?" />
</authorization>
</system.web>
And modify applicationhost.config file:
<authentication>
<anonymousAuthentication enabled="true" userName="" />
<basicAuthentication enabled="true" />
<clientCertificateMappingAuthentication enabled="false" />
<digestAuthentication enabled=" ...
Go to the complete details ...