Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make IE10 default run in IE8 mode every time?

As title, We can change the IE Mode after opening IE by F12 (developer mode) but I want to run in IE8 mode every time without change it manually, is there anyway, thanks

like image 682
newBike Avatar asked Sep 10 '13 06:09

newBike


People also ask

How do I make IE document mode default?

From the Settings dropdown, select F12 Developer Tools. Select the Emulation tab. Select Edge (Default) from the Document mode drop down. Select Default from the User agent string drop down.


1 Answers

Go to the following path in your registry (run Registry Editor with the command regedit.exe from the Start Menu's Run command):

HKEY_CURRENT_USER\
  Software\
    Microsoft\
      Internet Explorer\
        Main\
          FeatureControl\
            FEATURE_BROWSER_EMULATION

Then...

  1. Right-click on or in the folder and select New, then select DWORD (32-bit) Value.
  2. Enter "iexplore.exe" (without quotes) for the Name and press Enter.
  3. Double-click on the key (or press Enter). The Edit dialog opens.
  4. Ensure the Base is set as Decimal.
  5. Enter "9999" (without quotes) and click the OK button. Close Registry Editor.
  6. Close all Internet Explorer windows.

IE will open by default as IE9.

like image 135
user3222778 Avatar answered Nov 03 '22 01:11

user3222778