Registry setting for Internet Explorer's "Compatibility View settings" to add a site?

We've got one single site (intranet site) that doesn't play well with Internet Explorer 10 unless we add it to Internet Explorer's "Compatibility View Settings". So if you open Internet Explorer and go to the menu Tools -> Compatibility View settings you get a pop up menu like so:

Enter image description here

If I add the intranet site all is well. However, we need to add this site to everyone's machine in the company. What is the registry key / value I can use so I can add it to our startup script? If you can point me to the registry key then this would save so much time rather than going to each end user PC and doing this.


Solution 1:

URL’s can be added to Compatibility View List in IE 10 by using the following group policy,

User Configuration->Administrative Templates->Windows Components->Internet Explorer->Compatibility View->Use Policy List of Internet Explorer 7 sites.

If you want to enter this information directly in the registry,

  1. Navigate to HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\BrowserEmulation\PolicyList (You may create registry folders manually if not present, or a .REG file will create everything for you)

  2. Right Click PolicyList ->New->String Value->Enter the name of the website both under ‘Name’ and ‘Data’ (e.g. superuser.com)

Example REG file:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\BrowserEmulation\PolicyList]
"superuser.com"="superuser.com"

Solution 2:

This didn't work with my system. I did find what it did, but not easy to create. One would have to add it to a Compatibility View list and export it from the below area.

Mine created a binary key named "UserFilter" in the following path:
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\BrowserEmulation\ClearableListData

For the example of superuser.com it create the below entry:

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\BrowserEmulation\ClearableListData]
"UserFilter"=hex:41,1f,00,00,53,08,ad,ba,01,00,00,00,38,00,00,00,01,00,00,00,\
  01,00,00,00,0c,00,00,00,b4,74,d2,47,55,3a,cf,01,01,00,00,00,0d,00,73,00,75,\
  00,70,00,65,00,72,00,75,00,73,00,65,00,72,00,2e,00,63,00,6f,00,6d,00

NOTE: This replaces any existing entries. It would delete them and replace all entries with ONLY this example.