
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:
- 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.
- 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>
- Configure the following two group policies:
- Internet Explorer integration Localtion at
User Configuration/Computer Configuration > Administrative Templates > Microsoft Edge
. Double-click Configure Internet Explorer integration. And select Enabled. - 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.
- Internet Explorer integration Localtion at
Something like this:
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.