Here is a little script on how to Disable IE Enhanced Security Using PowerShell #Vlad Catrinescu www.vladcatrinescu.comWrite-Host -ForegroundColor White ” – Disabling IE Enhanced Security…”Set-ItemProperty -Path “HKLM:SOFTWAREMicrosoftActive SetupInstalled Components{A509B1A7-37EF-4b3f-8CFC-4F3A74704073}” -Name isinstalled -Value 0Set-ItemProperty -Path “HKLM:SOFTWAREMicrosoftActive SetupInstalled Components{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}” -Name isinstalled -Value 0Rundll32 iesetup.dll, IEHardenLMSettings,1,TrueRundll32 iesetup.dll, IEHardenUser,1,TrueRundll32 iesetup.dll, IEHardenAdmin,1,True If (Test-Path “HKCU:SOFTWAREMicrosoftActive SetupInstalled Components{A509B1A7-37EF-4b3f-8CFC-4F3A74704073}”) { Remove-Item -Path...
Read More