2

i need to enable Windows Autenthication for a specific website on IIS 7.5

If I open "Autenthication" I just see 3 options:

Anonymous

Based on Form

ASP.NET Representation

(3 above translated by me, I have italian IIS)

I've been told that I should see also "Windows AUtenthication" in that list.

In "modules" for the same website I see "Windows Authentication", with code "System.Web.Secuitiry.WindowsAuthenticationModule", Module type is "Managed",and Type is "Inherited".

I am totally stuck.

user193655
  • 253
  • 1
  • 5
  • 17
  • Try this help page from Microsoft https://docs.microsoft.com/en-us/iis/configuration/system.webserver/security/authentication/windowsauthentication/ – Sreejith K. Sep 29 '17 at 16:23

1 Answers1

3

Do you have the Windows Authentication feature installed for IIS?

In PowerShell:

Get-WindowsFeature Web-Windows-Auth

Is it installed? If not, then:

Add-WindowsFeature Web-Windows-Auth
Chris McKeown
  • 7,128
  • 1
  • 17
  • 25