maciejrebisz.com

IT

How to manage Microsoft Internet Explorer browser on a modern desktop – Mobile-First Cloud-First

maximios June 28, 2022

When using Azure AD joined devices managed by Intune – often there is no reason for using Microsoft Internet Explorer any more – and like Chris Jackson from Microsoft has stated Internet Explorer is there for compatibility reason only, and you should move to a more modern and secure browser. Microsoft is not supporting new web standards for Internet Explorer.
Internet Explorer Enterprise Mode was introduced for Internet Explorer 11  back in 2014, in this blog post I will describe how to use Intune to setup Internet Explorer Enterprise Mode with Intune and ensure that only the site that we know having issue with Microsoft Edge Browser is showed in Internet Explorer, and if the end user is starting Internet Explorer they will automatic be redirected to Microsoft Edge.

A example of a site that does not work in Microsoft Edge or any other browser is the old silverlight portal for Intune management https://manage.microsoft.com this is just and example I recommend using Windows Analytics – Upgrade Readiness – Site discovery
to see what site that your organisation is using that requires a document mode or a plugin that is only supported in Internet Explorer

So we need to download Enterprise Mode Site List Manager enter the you have that need to be running in Internet Explorer and save the .xml file

In my case I upload the .xml file to a Azure Blob storage so it is available from the internet

Generate a blob SAS token and URL – save the Blob SAS URL – you need that in Intune

Now we are ready to create a policy in Intune that automatic redirect the user to Internet Explorer for the sites entered in the Site List Manager

Start the Microsoft 365 Device Management portal

  1. Click Device Configuration
  2. Click Profile
  3. Click Create Profile

  1. Click Configure
  2. Click Microsoft Edge Browser
  3. Click Start experience

  1. Enter the URL from where ever you are storing the .xml file in “Enterprise mode site list location”

Then you just deploy the profile to your user and they will get the new behavior for the sites in the site list.

You also what to restricted the use of Internet Explorer and guide the to Microsoft Edge when using Internet Explorer with a site not listed in the Site List Manager.

You need a couple of settings first the AllowEnterpriseModeSiteList

  1. Name : EnterpriseModeSiteList
  2. OMA_URI : ./Device/Vendor/MSFT/Policy/Config/InternetExplorer/AllowEnterpriseModeSiteList
  3. Data type : String
  4. Value :

It is also a good idea to the Internet Explore homepage so when the end user is starting Internet Explorer then it will just open Microsoft Edge with the default home page

  1. Name : DisableHomePageChange
  2. OMA_URI : ./Device/Vendor/MSFT/Policy/Config/InternetExplorer/DisableHomePageChange
  3. Data type : String
  4. Value :

The second part you need is RestrictInternetExplorer – I have not been able to create a Intune MDM setting for that one

So the solution is a powershell script that sets the value

  1. Name : IE EnterpriseMode RestrictIE
  2. Script Location : browse and upload

The script can be downloaded from my Github


##################################################################################################

.SYNOPSIS
Policy Definition template file for Intune to run with the Microsoft Intune custome profile
This policy setup OneDrive For Business with AutoConfigure and KFM 

.NOTES
    FileName:    IE EnterpriseMode RestrictIE.ps1
    Author:      Per Larsen
    Created:     14-02-2019
    Product:     Internet Explorer
    Version:     1.0

###################################################################################################
$registryPath = "HKLM:\SOFTWARE\Policies\Microsoft\Internet Explorer\Main\EnterpriseMode"

#Send all sites not included in the Enterprise Mode Site List to Microsoft Edge.
$Name = "RestrictIE"
$value = "1"
IF((Test-Path -LiteralPath $registryPath) -ne $true)
{  New-Item $registryPath -force -ea SilentlyContinue };
New-ItemProperty -LiteralPath $registryPath -Name $Name -Value $value -PropertyType DWord -Force -ea SilentlyContinue;

When you are not using Internet Explorer any more there is a way top remove it:

How to remove Internet Explorer from Windows 10 with Intune

The end user experience:

The end user starts Internet Explorer and are automatic redirected to Microsoft Edge

Read more:

Enterprise Mode Site List Manager (schema v.2)
The perils of using Internet Explorer as your default browser
Microsoft Edge deployment for IT Pros
How to deploy DoD Google Chrome STIG Computer Windows 10 policy with Intune

Related Posts

IT /

Intune – Windows device enrollment restrictions – Cloud First

IT /

How to add “hidden” Windows UWP to Windows Store for Business – Cloud First

IT /

Office 2016 Active Directory-Based activation – Cloud First

‹ How to use ADMX based Onedrive policy in Intune for Known Folder Move – Mobile-First Cloud-First › How to set UI language on Edge with Intune – Mobile-First Cloud-First

Recent Posts

  • Intune – Windows device enrollment restrictions – Cloud First
  • How to add “hidden” Windows UWP to Windows Store for Business – Cloud First
  • Office 2016 Active Directory-Based activation – Cloud First
  • How to deploy Windows Local Experience Packs with Intune – Cloud First
  • Conditional Access for Outlook Web Access (OWA) – Cloud First

Recent Comments

No comments to show.

Archives

  • November 2025
  • October 2025
  • August 2025
  • July 2025
  • June 2025
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • November 2024
  • September 2024
  • July 2024
  • June 2024
  • March 2024
  • December 2023
  • August 2023
  • June 2023
  • March 2023
  • February 2023
  • December 2022
  • September 2022
  • August 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • January 2022
  • December 2021
  • October 2021
  • September 2021
  • August 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • February 2021
  • January 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
  • August 2020
  • February 2020
  • January 2020
  • December 2019
  • October 2019
  • September 2019
  • June 2019
  • April 2019
  • March 2019
  • February 2019
  • March 2018
  • February 2018
  • December 2017
  • October 2017
  • August 2017

Categories

  • IT

Back to Top

© maciejrebisz.com 2026
Powered by WordPress • Themify WordPress Themes