bnieland
bnieland

Reputation: 6506

No Basic Authentication choice available in IIS7

I do not have the option for Basic Authentication in IIS Manager under IIS=>Authentication. I do have the following options:

Anonymous Authentication
ASP.NET Impersonation
Forms Authentication

I am using Windows 7 professional N, and according to this, Basic Authentication should be available to me.

Does anyone have any ideas?

Upvotes: 63

Views: 49174

Answers (3)

SLaks
SLaks

Reputation: 887777

Go to Control Panel\Programs -> Turn Windows features on or off, and enable Basic Authentication under IIS:

where

Upvotes: 97

sleetish
sleetish

Reputation: 691

I don't have enough rep to add a comment to the chosen answer, but I feel like it's important to add that you'll likely need to close and reopen IIS Manager before it will show up in the list of choices for Authentication.

Otherwise you could go mad trying to figure out why you did the above and the list didn't change.

Upvotes: 55

George Birbilis
George Birbilis

Reputation: 709

You might have to install the basic authentication module for IIS.

For Vista/Win7 it is: Control Panel -> Programs -> Turn Windows features on or off

For Server 2008: Server Manager -> Roles -> Web Server -> Add Role Services Then in the treeview it is: Internet Information Services -> World Wide Web Services -> Security - > Basic Authentication

Click the checkbox and install. Then you should be able to see the basic authentication option.

(source: https://serverfault.com/questions/29521/iis7-basic-authentication-module-missing)

Upvotes: 41

Related Questions