在sharepoint 2013 服务器上,如果修改了AAM (alternate access mappings),

在服务器上访问本地的sharepoint就会一直弹出登陆窗口,无法访问。

于是必须禁用loop back check

(Powershell)

New-ItemProperty HKLM:\System\CurrentControlSet\Control\Lsa -Name "DisableLoopbackCheck" -value "1" -PropertyType dword
 
05-11 16:26