The simplest way to enable Windows Authentication inside an ASP.NET MVC application is by executing one of the following options:
Option 1 - Configure the web.config.
Set the authentication mode to Windows and disable anonymous access inside the web.config:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system.web> | |
<compilation debug="true" targetFramework="4.5" /> | |
<httpRuntime targetFramework="4.5" /> | |
<authentication mode="Windows" /> | |
<authorization> | |
<deny users="?" /> | |
</authorization> | |
</system.web> |
Option 2 – Configure IIS Express.
Enable Windows Authentication Enabled in IIS Express. (If you want you can also disable Anonymous authentication).