IIS - Missing Windows Authentication Feature [closed]

℡╲_俬逩灬. 提交于 2019-12-11 02:19:22

问题


There's anyway to install/enable IIS Windows Authentication when it's missing in "Turn Windows Features On or Off" menu?

I'm running an Win8 machine in a Local Workgroup.


回答1:


I guess you need Pro or Enterprise edition




回答2:


I ran into the same problem, so far tried these, you should also take a look at these settings

  • check the module if you have WindowsAuthentication managed module
  • enable appcmd set config /section:windowsAuthentication /enabled:true
  • enable it in the app's web.config

`

<security>
  <authentication>
    <windowsAuthentication enabled="true"></windowsAuthentication>
  </authentication>
</security>

`

I've tried these on my Windows 8 desktop which is not part of the domain, but it doesn't work, the response header is just 401 without any www auth headers. I wonder what will happen in your case when the machine is part of the domain.



来源:https://stackoverflow.com/questions/12691197/iis-missing-windows-authentication-feature

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!