Home > database >  Internet Explorer: Set Compatibility Level to IE 7
Internet Explorer: Set Compatibility Level to IE 7

Time:08-08

in a laptop with Windows 10 and Internet Explorer 11, is possible to set permamentely Internet Explorer in compatibility mode to IE 7? I didn't find a way.

Thanks in advance.

Luis

CodePudding user response:

You can use Enterprise Mode sites list to load sites in IE7 compatibility mode. For the detailed steps, you can refer to this doc.

To be short, you need to enable the group policy Use the Enterprise Mode IE website list, and type the location to your site list in the policy's Options area. For how to create the sites list, you can refer to this doc.

To load the site in IE7, the sample sites list file is like below:

<site-list version="3">
  <created-by>
    <tool>EMIESiteListManager</tool>
    <version>12.0.0.0</version>
    <date-created>04/11/2022 09:26:32</date-created>
  </created-by>
  <site url="www.somesite.com">
    <compat-mode>IE7</compat-mode>
    <open-in app="true">IE11</open-in>
  </site>
</site-list>
  • Related