Recently I was attempting to log into an extended SharePoint web application that had been configured for Claims Based Authentication. The problem being that I was unable to login when prompted for credentials.
Turns out it was a loop back problem. This can be fixed through a change to the registry. Which can be done manually or through some PowerShell.
New-ItemProperty HKLM:\System\CurrentControlSet\Control\Lsa -Name "DisableLoopbackCheck" -value "1" -PropertyType dword
No comments:
Post a Comment