Skip to content

Instantly share code, notes, and snippets.

@danielscholl
Created March 20, 2017 14:19
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save danielscholl/bbc18540418e17c39a4292ffcdcc95f0 to your computer and use it in GitHub Desktop.
Save danielscholl/bbc18540418e17c39a4292ffcdcc95f0 to your computer and use it in GitHub Desktop.
Disable IE Enhance Security PowerShell
function Disable-ieESC {
$AdminKey = "HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A7-37EF-4b3f-8CFC-4F3A74704073}"
$UserKey = "HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}"
Set-ItemProperty -Path $AdminKey -Name "IsInstalled" -Value 0
Set-ItemProperty -Path $UserKey -Name "IsInstalled" -Value 0
Stop-Process -Name Explorer
Write-Host "IE Enhanced Security Configuration (ESC) has been disabled." -ForegroundColor Green
}
Disable-ieESC
@mvanholsteijn
Copy link

The stop-process should be conditional, as it now gives an error if explorer is not running.

@nickpainter
Copy link

Word of warning to anyone using this script: Stop-Process -Name Explorer will terminate explorer without restarting it. Be sure that you only run that line if you know what you are doing.

@nicolastalvasson
Copy link

Thanks a lot !!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment