How to visit an IE5-only website with IE mode in Edge without opening IE to setting the compatibility view?

證壹 王 1 Reputation point
2022-06-02T07:59:34.277+00:00

Here is the current situation:

  1. I am maintaining a large IE5-only system.
  2. I must open this system on the localhost during development.
  3. Our network administrators are planning to force all employees to use EDGE, all IE operations will be redirected to Edge.
  4. Our network administrators won't configure IE mode policies for individual developers' localhost URLs, but the localhost URLs format of different developers may be different.

Any workaround to visit IE5-only websites with IE mode in Edge without opening IE to set Compatibility View?

Microsoft Edge
Microsoft Edge
A Microsoft cross-platform web browser that provides privacy, learning, and accessibility tools.
2,211 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Yu Zhou-MSFT 12,781 Reputation points Microsoft Vendor
    2022-06-03T02:59:18.59+00:00

    Hi @證壹 王

    Can you use group policy? If yes, you can refer to this doc to configure IE mode Compatibility mode to IE5. The steps are like below:

    1. Enable Internet Explorer integration using Group Policy
    2. Configure the Enterprise Mode Site List

    For how to create the Enterprise Mode Site List, you can refer to this doc. To load the site in IE5 Compatibility mode in Edge IE mode, the sample sites list file is like below:

    <site-list version="4">  
      <created-by>  
        <tool>EMIESiteListManager</tool>  
        <version>12.0.0.0</version>  
        <date-created>04/12/2022 06:53:26</date-created>  
      </created-by>  
      <site url="localhost:44364/test.html">  
        <compat-mode>IE5</compat-mode>  
        <open-in>IE11</open-in>  
      </site>  
    </site-list>  
    

    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. 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.

    Regards,
    Yu Zhou


  2. 證壹 王 1 Reputation point
    2022-06-07T06:49:03.46+00:00

    I found an option that could enable the compatibility view without IE.
    208918-compatibility-view-setting-of-ie-mode-in-edge.png

    Now the problem has been solved.

    0 comments No comments