opção-1 :
edite o \My Documents\IISExpress\config\applicationhost.config
arquivo e ative o windowsAuthentication, ou seja:
<system.webServer>
...
<security>
...
<authentication>
<windowsAuthentication enabled="true" />
</authentication>
...
</security>
...
</system.webServer>
opção-2 :
Desbloqueie a seção windowsAuthentication em \ Meus Documentos \ IISExpress \ config \ applicationhost.config da seguinte maneira
<add name="WindowsAuthenticationModule" lockItem="false" />
Altere as configurações de substituição dos tipos de autenticação necessários para 'Permitir'
<sectionGroup name="security">
...
<sectionGroup name="system.webServer">
...
<sectionGroup name="authentication">
<section name="anonymousAuthentication" overrideModeDefault="Allow" />
...
<section name="windowsAuthentication" overrideModeDefault="Allow" />
</sectionGroup>
</sectionGroup>
Adicione o seguinte no web.config do aplicativo
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<authentication>
<windowsAuthentication enabled="true" />
</authentication>
</security>
</system.webServer>
</configuration>
O link abaixo pode ajudar:
http://learn.iis.net/page.aspx/376/delegating-configuration-to-webconfig-files/
Após a instalação do VS 2010 SP1, a aplicação das opções 1 + 2 pode ser necessária para que a autenticação do Windows funcione. Além disso, pode ser necessário definir a autenticação anônima como false no IIS Express applicationhost.config:
<authentication>
<anonymousAuthentication enabled="false" userName="" />
para o VS2015, o arquivo de configuração do IIS Express applicationhost pode estar localizado aqui:
$(solutionDir)\.vs\config\applicationhost.config
e a <UseGlobalApplicationHostFile>
opção no arquivo do projeto seleciona o arquivo de configuração padrão ou específico da solução.