2

当“打开或关闭 Windows 功能”菜单中缺少 IIS Windows 身份验证时,无论如何安装/启用它?

我在本地工作组中运行 Win8 机器。

4

2 回答 2

6

我猜你需要专业版或企业版

于 2012-12-19T08:36:48.750 回答
0

我遇到了同样的问题,到目前为止尝试了这些,你也应该看看这些设置

  • 如果您有 WindowsAuthentication 托管模块,请检查该模块
  • 启用 appcmd 设置配置 /section:windowsAuthentication /enabled:true
  • 在应用程序的 web.config 中启用它

`

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

`

我已经在不属于域的 Windows 8 桌面上尝试过这些,但它不起作用,响应标头只是 401,没有任何 www auth 标头。我想知道当机器是域的一部分时,你的情况会发生什么。

于 2012-10-03T04:00:06.157 回答