Windows OS Hub
  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu
  • Home
  • About

Windows OS Hub

  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu

 Windows OS Hub / Windows 10 / How to Disable or Uninstall Internet Explorer (IE) in Windows

June 8, 2023 Group PoliciesPowerShellQuestions and AnswersWindows 10Windows 11Windows Server 2019

How to Disable or Uninstall Internet Explorer (IE) in Windows

Microsoft has officially ended support for Internet Explorer (IE) in all current builds of Windows 10 and 11 since June 15, 2022 (except LTSC editions and Windows Server). The classic Internet Explorer 11 app now redirects the user to the built-in Microsoft Edge browser. Microsoft promises to completely disable the IE in modern Windows builds in the upcoming updates. In this article, we will show you how to disable or uninstall Internet Explorer on Windows 11/10/8.1 and Windows Server.

Contents:
  • How to Uninstall Internet Explorer in Windows 10 and 11?
  • Removing Internet Explorer from Windows Server
  • Disable Internet Explorer 11 Using Group Policy

How to Uninstall Internet Explorer in Windows 10 and 11?

In Windows 10 and 11, Internet Explorer 11 comes as a separate feature available as a Feature on Demand/FoD (like RSAT or NetFx3). You can install or uninstall the IE through the Settings app.

  1. Go to Settings -> Apps -> Apps and Feature -> Optional Features or run the MS-Settings URL command: ms-settings:appsfeatures
  2. Find Internet Explorer 11 in the list and click Uninstall. Uninstall Internet Explorer 11 feature on Windows 10/11

You can also use PowerShell to verify that IE is installed on a computer:

Get-WindowsOptionalFeature -Online –FeatureName Internet-Explorer-Optional-amd64

Get-WindowsOptionalFeature Internet-Explorer-Optional-amd64

FeatureName : Internet-Explorer-Optional-amd64
DisplayName : Internet Explorer 11
Description : Finds and displays information and Web sites on the Internet.
RestartRequired : Required
State : Enabled
CustomProperties : \
SoftBlockLink : http://go.microsoft.com/fwlink/?LinkID=142507

In this example, the IE11 feature is installed. Uninstall IE11 by running the following command:

Disable-WindowsOptionalFeature -FeatureName Internet-Explorer-Optional-amd64 –Online

Restart your computer.

After you uninstall Internet Explorer, .html files are no longer associated with IE. Note that the Windows Store and other built-in apps will continue to work even if you don’t have a web browser installed on your computer.

After you remove the Internet Explorer 11 feature on Windows, you can no longer use Internet Explorer Compatibility Mode in the Microsoft Edge browser. If you need to use IE mode to view legacy sites, you can disable IE 11 using GPO (See the last section of this article to learn how to do this).

Use the following PowerShell script to uninstall IE from a computer:

RemoveIE.ps1

#PowerShell script to remove Internet Explorer
#Check If IE is Installed
$check = Get-WindowsOptionalFeature -Online | Where-Object {$_.FeatureName -eq "Internet-Explorer-Optional-amd64"}
If ($check.State -ne "Disabled")
{
#Remove Internet Explorer
Disable-WindowsOptionalFeature -FeatureName Internet-Explorer-Optional-amd64 -Online -NoRestart | Out-Null
}

You may use the Invoke-Command cmdlet to uninstall the Internet Explorer on remote computers (requires configured WinRM/PowerShell Remoting):

Invoke-Command -ComputerName PC01,PC02,PC03 -FilePath C:\PS\RemoveIE.ps1

Removing Internet Explorer from Windows Server

There is no IE in Windows in Windows Server 2022. You can use DISM to uninstall Internet Explorer 11 on previous versions of Windows Server (2019/2016/2012R2):

dism /online /disable-feature /featurename:Internet-Explorer-Optional-amd64

Remove IE11 with DISM on Windows Server 2019/2016

Start the Windows Server and verify that the iexplore.exe executable file has been successfully removed from the C:\Program Files\Internet Explorer folder.

iexplore.exe missing from program files

Disable Internet Explorer 11 Using Group Policy

If you don’t want to completely uninstall IE on Windows (for example, if you want to use the IE Mode in Microsoft Edge), you can use Group Policy to prevent Internet Explorer 11 from running on your computer:

  1. Create a new domain GPO and assign it to an OU with computers/servers using the GPMC.msc console or use the Local Group Policy Editor (gpedit.msc);
  2. Go to Computer Configuration -> Administrative Templates -> Windows Components -> Internet Explorer;
  3. Find the Disable Internet Explorer 11 as a standalone browser GPO option, enable it and choose how you want to notify users that IE is disabled: Never – users will not be notified about disabling IE 11;
    Always – each time IE starts, users will be notified that Internet Explorer 11 is disabled and redirected to the Microsoft Edge browser;
    Once per user – users will be notified only once (recommended).Disable Internet Explorer 11 as a standalone browser with GPO
  4. Update group policy settings on your computers.

This policy denies Internet Explorer 11 from running (using Windows file associations or by running the iexplore.exe app directly) and runs Microsoft Edge instead (with fully functional IE mode in Edge). IE icons are removed from the Start Menu and taskbar.

If you try to start IE manually, the following notification will appear:

Internet Explorer
This action is restricted. For more information, please contact your system administrator.

Can't run IE11 on Windows: this action is restricted

2 comments
0
Facebook Twitter Google + Pinterest
previous post
How to Delete Old User Profiles in Windows
next post
Finding Duplicate E-mail (SMTP) Addresses in Exchange

Related Reading

How to Connect VPN Before Windows Logon

November 14, 2023

Using WPAD (Web Proxy Auto-Discovery Protocol) on Windows

November 7, 2023

Send Emails with Microsoft Graph API and PowerShell

November 6, 2023

Zabbix: How to Get Data from PowerShell Scripts

October 27, 2023

Tracking Printer Usage with Windows Event Viewer Logs

October 19, 2023

2 comments

schwit February 8, 2023 - 10:24 pm

MS365 v2301 still uses IE11 components. How will this affect it?

Reply
admin February 10, 2023 - 10:09 am

How did you find this out and what are your concerns? If IE11 is disabled and not removed, does the problem still occur?

Reply

Leave a Comment Cancel Reply

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMWare
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • How to Connect VPN Before Windows Logon

    November 14, 2023
  • Removing Azure Arc Setup Feature on Windows Server 2022

    November 9, 2023
  • Using WPAD (Web Proxy Auto-Discovery Protocol) on Windows

    November 7, 2023
  • Send Emails with Microsoft Graph API and PowerShell

    November 6, 2023
  • Zabbix: How to Get Data from PowerShell Scripts

    October 27, 2023
  • Tracking Printer Usage with Windows Event Viewer Logs

    October 19, 2023
  • PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

    October 15, 2023
  • Reset Root Password in VMware ESXi

    October 12, 2023
  • How to Query and Change Teams User Presence Status with PowerShell

    October 8, 2023
  • How to Increase Size of Disk Partition in Ubuntu

    October 5, 2023

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Updating List of Trusted Root Certificates in Windows
  • Fix: Remote Desktop Licensing Mode is not Configured
  • Configure Google Chrome Settings with Group Policy
  • How to Delete Old User Profiles in Windows
  • Allow Non-admin Users RDP Access to Windows Server
  • How to Backup and Copy Local Group Policy Settings to Another Computer
  • How to Find the Source of Account Lockouts in Active Directory
Footer Logo

@2014 - 2023 - Windows OS Hub. All about operating systems for sysadmins


Back To Top