Edge Enterprise Site List

Hi everyone

With the end of Internet Explorer this month, if you update your computer, I wanted to talk a bit the enterprise site list manager of Microsoft.

It’s a nice tool to create a list of site that need IE mode inside Edge.

Keep in mind that if you hardcode a shortcut, ie; “iexplorer.exe https://link_to_go” the redirection no longer work, as the update make Edge display the EOL of Internet Explorer and Edge open with tip for Enterprise mode, thus not catching the link that was trying to open.

For enterprise site list it’s in basic a simple .XML file with entry inside it.

You can put the file inside a fileshare, locally into a desktop or on a website centrally.

The file format look like that;

That way it’s empty;

<site-list version="1">
  <created-by>
    <tool>EMIESiteListManager</tool>
    <version>12.0.0.0</version>
    <date-created>02/06/2023 18:34:29</date-created>
  </created-by>
</site-list>

Inside the file we can add site now;

<site-list version="1">
  <created-by>
    <tool>EMIESiteListManager</tool>
    <version>12.0.0.0</version>
    <date-created>02/06/2023 18:34:29</date-created>
  </created-by>

<site url="127.0.0.1">
    <compat-mode>IE11</compat-mode>
    <open-in>IE11</open-in>
  </site>
</site-list>

If you manage multiple site you can note;

<site-list version="1">
  <created-by>
    <tool>EMIESiteListManager</tool>
    <version>12.0.0.0</version>
    <date-created>02/06/2023 18:34:29</date-created>
  </created-by>
<!-- Dev website  -->
<site url="127.0.0.1">
    <compat-mode>IE11</compat-mode>
    <open-in>IE11</open-in>
  </site>
</site-list>

If your website need special rule for authentication to work with cookie, some command like that can be used;

<site-list version="1">
  <created-by>
    <tool>EMIESiteListManager</tool>
    <version>12.0.0.0</version>
    <date-created>02/06/2023 18:34:29</date-created>
  </created-by>
<!-- Authentification  -->
<shared-cookie domain=".localhost" name="AUTH" source-engine="Both"/>
<!-- Dev website  -->
<site url="127.0.0.1">
    <compat-mode>IE11</compat-mode>
    <open-in>IE11</open-in>
  </site>
</site-list>

The magic here is after that, if you need help to write the file Microsoft did a tool for that purpose;

Enterprise Mode Site List Manager (schema v.2)

After the file is created and deployed, be sure to check in edge://compat to see if the list is ok 🙂

Advertisement