Friday, January 3, 2014

Disable Loop-back Check Powershell

Run the following from PowerShell as administrator on each server:

$regKeyPath = "HKLM:\System\CurrentControlSet\Control\Lsa"
$key = "DisableLoopbackCheck"
New-ItemProperty -Path $regKeyPath -Name $key -Value "1" -PropertyType dword

No comments:

Post a Comment