option-1 :
modifier le \My Documents\IISExpress\config\applicationhost.config
fichier et activer windowsAuthentication, c'est-à-dire:
<system.webServer>
...
<security>
...
<authentication>
<windowsAuthentication enabled="true" />
</authentication>
...
</security>
...
</system.webServer>
option-2 :
Déverrouillez la section windowsAuthentication dans \ Mes documents \ IISExpress \ config \ applicationhost.config comme suit
<add name="WindowsAuthenticationModule" lockItem="false" />
Modifier les paramètres de remplacement pour les types d'authentification requis sur «Autoriser»
<sectionGroup name="security">
...
<sectionGroup name="system.webServer">
...
<sectionGroup name="authentication">
<section name="anonymousAuthentication" overrideModeDefault="Allow" />
...
<section name="windowsAuthentication" overrideModeDefault="Allow" />
</sectionGroup>
</sectionGroup>
Ajouter le suivant dans le web.config de l'application
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<authentication>
<windowsAuthentication enabled="true" />
</authentication>
</security>
</system.webServer>
</configuration>
Le lien ci-dessous peut être utile:
http://learn.iis.net/page.aspx/376/delegating-configuration-to-webconfig-files/
Après l'installation de VS 2010 SP1, l'application de l'option 1 + 2 peut être nécessaire pour que l'authentification Windows fonctionne. En outre, vous devrez peut-être définir l'authentification anonyme sur false dans IIS Express applicationhost.config:
<authentication>
<anonymousAuthentication enabled="false" userName="" />
pour VS2015, le fichier de configuration de l'hôte d'application IIS Express peut être localisé ici:
$(solutionDir)\.vs\config\applicationhost.config
et l' <UseGlobalApplicationHostFile>
option dans le fichier de projet sélectionne le fichier de configuration par défaut ou spécifique à la solution.