News
3 new Serverspace GPT API Language Models available now!
JH
Joe Harris
February 27 2025
Updated July 18 2025

How to Disable Internet Explorer Enhanced Security Configuration on Windows Server 2019 - Step-by-Step Guide

Security Windows

By default, Internet Explorer on Windows Server editions operates with Enhanced Security Configuration (ESC) enabled. This feature significantly restricts browser functionality to protect the server from potential web-based threats, resulting in frequent content blocking warnings and limited browsing capabilities. While this security measure is important, it can also hinder productivity when you need to access trusted websites freely.

In this comprehensive tutorial, we will guide you step-by-step on how to disable Internet Explorer Enhanced Security Configuration on Windows Server 2019, allowing for smoother and unrestricted web browsing while maintaining server safety through alternative precautions.

Method 1 - Disable via Server Manager

Start Server Manager.

Start Server Manager
Screenshot 1. Start Server Manager.

Click Local Server in the left menu.

Click Local Server
Screenshot 2. Click Local Server.

On the right side you will see the IE Enhanced Security Configuration parameter. Click On next to it.

Open Internet Explorer Enhanced Security Configuration
Screenshot 3. Open Internet Explorer Enhanced Security Configuration.

In the window that appears, disable this option for administrators and users and click OK.

Disable Internet Explorer Enhanced Security Configuration
Screenshot 4. Disable Internet Explorer Enhanced Security Configuration.

Server Manager will show Off for IE Enhanced Security Configuration after a few seconds. If it doesn't, try updating the window contents.

IE Enhanced Security Configuration is turned off
Screenshot 5. IE Enhanced Security Configuration is turned off.

You can now fully use Internet Explorer on Windows Server 2019.

Method 2 - Disable via PowerShell

Open PowerShell.

Open PowerShell
Screenshot 6. Open PowerShell.

Paste the following script there and press Enter. Sometimes a double tap is required.

function Disable-IEESC {
$AdminKey = "HKLM:SOFTWAREMicrosoftActive SetupInstalled Components{A509B1A7-37EF-4b3f-8CFC-4F3A74704073}"
$UserKey = "HKLM:SOFTWAREMicrosoftActive SetupInstalled 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
Paste the script in PowerShell
Screenshot 7. Paste the script in PowerShell.

Internet Explorer now works in normal mode.

Conclusion

Disabling Internet Explorer Enhanced Security Configuration (ESC) on Windows Server 2019 allows for a smoother browsing experience by removing restrictive content blocking and warning prompts. While ESC provides an important security layer to protect your server, turning it off can be necessary for trusted environments where you need unrestricted access to websites. By following the methods outlined in this guide — either via Server Manager or PowerShell — you can safely disable ESC and enhance your productivity. Always ensure alternative security measures are in place to maintain your server’s protection when disabling this feature.

FAQ: Disabling Internet Explorer Enhanced Security Configuration (ESC)

  • What is Internet Explorer Enhanced Security Configuration (ESC)?
    ESC is a security feature in Windows Server that restricts browser functionality to reduce exposure to web-based threats. It limits browsing capabilities and frequently blocks content to protect the system.
  • Why would I want to disable ESC on Windows Server 2019?
    Disabling ESC can improve usability by allowing full web browsing without constant security warnings or content blocks, which is helpful when accessing trusted sites for administrative tasks or downloads.
  • Is it safe to disable ESC?
    Disabling ESC reduces a layer of browser security, so it should only be done in trusted environments or when other security controls are in place. Always ensure antivirus, firewalls, and user policies are active to compensate.
  • How can I disable ESC on Windows Server 2019?
    You can disable ESC either through the Server Manager interface by toggling the setting under Local Server, or via PowerShell by running a script that modifies the registry keys related to ESC.
  • Will disabling ESC affect other users on the server?
    Yes. You can choose to disable ESC for administrators, standard users, or both, depending on your configuration steps.
  • How do I re-enable ESC if needed?
    To re-enable ESC, reverse the steps in Server Manager or modify the registry keys back to their original values using PowerShell.
Vote:
5 out of 5
Аverage rating : 5
Rated by: 2
33145 North Miami, FL 2520 Coral Way apt 2-135
+1 302 425-97-76
700 300
ITGLOBAL.COM CORP
700 300

You might also like...

We use cookies to make your experience on the Serverspace better. By continuing to browse our website, you agree to our
Use of Cookies and Privacy Policy.