How do I stop Edge from removing pages from IE mode?

CBachran@ccslasvegas.com 25 Reputation points
2023-07-17T15:00:33.8733333+00:00

I have a slew of websites that must run in internet explorer mode to work. I have Edge set up correctly to run them, but after about a week or two it automatically removes the pages from Edge and I have to re-enable IE mode.

How to I stop Edge from removing pages from IE mode permanently? These pages will NOT run in Edge. They require Internet Explorer to function.

Microsoft Edge | Microsoft Edge development
0 comments No comments
{count} vote

Accepted answer
  1. Anonymous
    2023-07-18T02:51:26.8633333+00:00

    Hi @******@ccslasvegas.com,

    How to I stop Edge from removing pages from IE mode permanently?

    You can implement your requirement by configuring group policies. Follow the steps below:

    1. Download and install the Microsoft Edge administrative template

    Navigate to https://aka.ms/EdgeEnterprise and download the policy files, and then follow this doc to install it correctly: Add the administrative template to an individual computer.

    1. Prepare the configuration file sitelist.xml

    Create an xml type file and copy these in file :

    <site-list version="1">   
      <site url="https://www.google.com.hk/">     
        <compat-mode>IE11</compat-mode>     
        <open-in>IE11</open-in>   
      </site>   
      <site url="<your site address>">     
        <compat-mode>IE11</compat-mode>     
        <open-in>IE11</open-in>   
      </site> 
      <site>
        ...
      </site>
    </site-list>
    
    1. Configure the following two group policies:
      1. Internet Explorer integration Localtion at User Configuration/Computer Configuration > Administrative Templates > Microsoft Edge. Double-click Configure Internet Explorer integration. And select Enabled.
      2. Configure the Enterprise Mode Site List Localtion at User Configuration/Computer Configuration > Administrative Templates > Microsoft Edge. Double-click Configure the Enterprise Mode Site List. And select Enabled.

    Something like this:

    User's image

    If you are not sure how to configure the xml file, you can also use this tool: Enterprise Mode Site List Manager (schema v.2).

    Best regards,

    Xudong Peng


    If the answer is the right solution, please click "Accept Answer" and kindly upvote. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.