オプション1:
\My Documents\IISExpress\config\applicationhost.config
ファイルを編集して、windowsAuthenticationを有効にします。
<system.webServer>
...
<security>
...
<authentication>
<windowsAuthentication enabled="true" />
</authentication>
...
</security>
...
</system.webServer>
オプション2:
\ My Documents \ IISExpress \ config \ applicationhost.configのwindowsAuthenticationセクションを次のようにロック解除します。
<add name="WindowsAuthenticationModule" lockItem="false" />
必要な認証タイプのオーバーライド設定を「許可」に変更します
<sectionGroup name="security">
...
<sectionGroup name="system.webServer">
...
<sectionGroup name="authentication">
<section name="anonymousAuthentication" overrideModeDefault="Allow" />
...
<section name="windowsAuthentication" overrideModeDefault="Allow" />
</sectionGroup>
</sectionGroup>
アプリケーションのweb.configに以下を追加します
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<authentication>
<windowsAuthentication enabled="true" />
</authentication>
</security>
</system.webServer>
</configuration>
以下のリンクが役立つ場合があります:http :
//learn.iis.net/page.aspx/376/delegating-configuration-to-webconfig-files/
VS 2010 SP1をインストールした後、Windows認証を機能させるためにオプション1 + 2を適用する必要がある場合があります。さらに、IIS Express applicationhost.configで匿名認証をfalseに設定する必要がある場合があります。
<authentication>
<anonymousAuthentication enabled="false" userName="" />
VS2015の場合、IIS Express applicationhost構成ファイルは次の場所にあります。
$(solutionDir)\.vs\config\applicationhost.config
そして、<UseGlobalApplicationHostFile>
プロジェクトファイル内のオプションは、デフォルトまたはソリューション固有の設定ファイルを選択します。