tùy chọn-1 :
chỉnh sửa \My Documents\IISExpress\config\applicationhost.config
tập tin và kích hoạt windowsAuthentication, tức là:
<system.webServer>
...
<security>
...
<authentication>
<windowsAuthentication enabled="true" />
</authentication>
...
</security>
...
</system.webServer>
tùy chọn-2 :
Mở khóa cửa sổ Phần xác thực trong \ My Documents \ IISExpress \ config \ applicationationhost.config như sau
<add name="WindowsAuthenticationModule" lockItem="false" />
Thay đổi cài đặt ghi đè cho các loại xác thực được yêu cầu thành 'Cho phép'
<sectionGroup name="security">
...
<sectionGroup name="system.webServer">
...
<sectionGroup name="authentication">
<section name="anonymousAuthentication" overrideModeDefault="Allow" />
...
<section name="windowsAuthentication" overrideModeDefault="Allow" />
</sectionGroup>
</sectionGroup>
Thêm vào sau trong web.config của ứng dụng
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<authentication>
<windowsAuthentication enabled="true" />
</authentication>
</security>
</system.webServer>
</configuration>
Liên kết dưới đây có thể giúp:
http://learn.iis.net/page.aspx/376/delegating-configuration-to-webconfig-files/
Sau khi cài đặt VS 2010 SP1, tùy chọn áp dụng 1 + 2 có thể được yêu cầu để xác thực windows hoạt động. Ngoài ra, bạn có thể cần đặt xác thực ẩn danh thành false trong IIS Express applicationationhost.config:
<authentication>
<anonymousAuthentication enabled="false" userName="" />
đối với VS2015, tệp cấu hình ứng dụng IIS Express có thể được đặt ở đây:
$(solutionDir)\.vs\config\applicationhost.config
và <UseGlobalApplicationHostFile>
tùy chọn trong tệp dự án chọn tệp cấu hình mặc định hoặc giải pháp cụ thể.