Monday 4 March 2013

Disable Loop Back Check in SharePoint 2013



When you access SharePoint web apps from the SP sever, it keeps on prompting for authentication. I wish the installation of SharePoint could have taken care off. 

Anyways, you can run this to apply the change on the SharePoint servers.

Run this power shell command


New-ItemProperty HKLM:\System\CurrentControlSet\Control\Lsa -Name "DisableLoopbackCheck" -value "1" -PropertyType dword
 
You may have to restart the servers and will have run this from all of your SharePoint servers.

You can also navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa in registry and create the dword32 for DisableLoopbackCheck, modify the value to 1.

I would prefer to use Power Shell any given day.

11 comments:

  1. Stupid question but on the SharePoint server or the app server?

    ReplyDelete
  2. It should be on your web frontend servers.

    ReplyDelete
  3. That powershell command worked perfectly. Didn't even need to restart. Thanks very much!

    ReplyDelete
  4. This solved errors I was seeing when doing a crawl on a new 2013 farm. Thanks for posting this!

    ReplyDelete
  5. Worked for me too on a new SP2013 where Search was not running.

    ReplyDelete
  6. me too on a new SP2013 where Search was not running.

    ReplyDelete
  7. This method should only be run on your test and dev servers. It is a security risk to do so on your production servers. The way to do this on production is to specify the host names which are able to access the app. This is detailed in KB896861

    ReplyDelete
  8. this was helpful also for SP 13 !
    Thanks

    ReplyDelete