Microsoft EDGE browser ignoring Enterprise Mode list

后端 未结 3 1206
鱼传尺愫
鱼传尺愫 2021-01-29 01:14

Since EDGE seems to be the \"default\" browser for Windows 10, we need a way to \"force\" EDGE to open our website in IE mode or at least direct the user to open the website in

相关标签:
3条回答
  • 2021-01-29 01:41

    So far the articles https://technet.microsoft.com/en-us/library/mt270205.aspx and https://msdn.microsoft.com/en-us/library/Dn872481.aspx are misleading and don't fully work on my machine.
    There are two options I was able to get to work.

    1. Group policy & XML site list
      The articles say to use "Administrative Templates > Windows Components > Internet Explorer > Use the Enterprise Mode IE website list. This did not work for me.
      BUT "Administrative Templates > Windows Components > Microsoft Edge > Allows you to configure the Enterprise Site List" did work for me.
    2. Group policy & Intranet Site
      The article said to use "Administrative Templates > Windows Components > Microsoft Edge > Send all intranet traffic over to Internet Explorer" which did not work
      UNLESS you also go into "Internet Explorer > Tools > Options > Security > Local intranet > Sites > Advanced" and then add the site to the list.
      The article is assuming that the user knew to do this step!

    Here is the registry keys just in case someone wants to do all this without opening group policy / IE options.

    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\MicrosoftEdge\Main]
    "SendIntranetTraffictoInternetExplorer"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\MicrosoftEdge\Main]
    "SendIntranetTraffictoInternetExplorer"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\google.com\www]
    "https"=dword:00000001
    
    0 讨论(0)
  • 2021-01-29 01:52

    Please, read this document updated about Enterprise Mode List for Edge: https://technet.microsoft.com/en-us/library/mt270205.aspx

    As you can see there, now you have to play with Group Policies

    0 讨论(0)
  • 2021-01-29 02:06

    Microsoft Edge doesn't have any other "document modes" besides its native one, so it ignores X-UA-Compatible.

    I can think of three options:

    1. Try to get your site added to Microsoft's compatibility list, so Edge asks visitors to open the site in IE. (I see you commented on Is there any method for opening specific web app by Internet Explorer from MS Edge browser? so you have probably already tried this.)

    2. Get your site working in Edge. This may or may not be possible depending on if it uses any IE-specific features. (Does it work in Firefox or Chrome?)

    3. Use user agent detection to display a warning message to users who aren't using Internet Explorer (look for the absence of the "Trident/" string.)

    0 讨论(0)
提交回复
热议问题