How To Change IE10’s Default Search Engine

Update 4th August 2018

Hopefully most people are on IE11 now – it’s pretty much the same process as below, but here’s an official Microsoft blog telling you how to do it.

Original Post

Automating the change of Internet Explorer 10’s default search engine from Bing to Google shouldn’t be a difficult task, but it is. I’ll first cover what we’re trying to automate, then the possible options on how to do it.

I found a lot of misinformation online when doing this too which was surprising, I’ll add notes in around what I found on that too.

Brief instructions are down the bottom if you just want to know what to do!

 

To do this manually on an individual PC, you need to do two things. Install the Search Provider addon, and then set it as the default.

The first part can be done by going to the iegallery website and finding an Add-on, for Google Search you can go here: http://www.iegallery.com/en-us/Addons/Details/813 and click the big ‘Add to Internet Explorer’ button.

Setting it as the default is possible from the popup when clicking the button, or going into your Add-ons and ticking the right search engine as your default.

Google provides some very basic instructions here https://support.google.com/websearch/answer/464?hl=en which are:

Internet Explorer 10

  1. Click the Gear icon in the top right corner of the browser window. 
  2. Select Manage add-ons.
  3. Select Search Providers.
  4. In the bottom left corner of your screen, click Find more search providers
  5. Select Google.
  6. Click the Add to Internet Explorer button.
  7. When the window appears, check the box next to Make this my default search provider.
  8. Click Add

So far this is incredibly simple!

If you were starting from scratch, you can package up IE10 using the Internet Explorer Administration Kit (IEAK) and add in extra search engines as well as specify the default. There’s a good guide at 4syops here http://4sysops.com/archives/internet-explorer-10-administration-part-4-ieak-10/ which covers this, but doesn’t help you if PCs already have IE10, or will get it via other means (e.g. WSUS or manual installs).

Group Policy is the obvious choice, but there is no inbuilt way to configure search engines natively via normal Group Policy Preferences. Preferences can be used to deploy registry settings though, which can configure pretty much everything IE does.

There are a lot of sites that have ADM files that claim they will configure IE’s search engine. They will, but there are a lot of caveats. One commonly found blog is http://blogofanitadmin.blogspot.com.es/2011/05/group-policy-changing-default-search.html which is a neat solution, but not ideal and here’s why.

The ADM file is just setting a few registry settings. Search providers are added into the registry under HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\ which lets the user change or configure it themselves, or under [HKEY_CURRENT_USER\Software\Policies\\Microsoft\Internet Explorer\SearchScopes\ which forces the settings upon the user.

If you’re using Policies path, you also probably want to set the Group Policy ‘Restrict search providers to a specific list of providers’ Group Policy under User Configuration > Policies > Administrative Templates > Windows Components > Internet Explorer. This will mean users can’t add their own search engines. If you don’t enable it, users can’t change settings on the search engines you’re pushing out, but can add others. Edit: Check Tim’s comment here for the registry setting on this one

Each added search provider has it’s own GUID randomly generated under the SearchScopes Key. One of Bing’s default GUIDs is {0633EE93-D776-472f-A0FF-E1416B8B2E3A} but this may differ based on OS etc. The full key path is HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\{0633EE93-D776-472f-A0FF-E1416B8B2E3A} in that example, and under that key lives all the settings for that search provider.

The standard settings for a search provider (Google in this example) there are:

“URL”=”http://www.google.com.au/search?q={searchTerms}&sourceid=ie7&rls=com.microsoft:{language}:{referrer:source}&ie={inputEncoding?}&oe={outputEncoding?}”

URL is the address used when you type a non-http formatted address into the URL address bar. It will put what you type into the {searchTerms} part, and pass that onto the full URL.

“SuggestionsURL”=”http://clients5.google.com.au/complete/search?q={searchTerms}&client=ie8&mw={ie:maxWidth}&sh={ie:sectionHeight}&rh={ie:rowHeight}&inputencoding={inputEncoding}&outputencoding={outputEncoding}”
SuggestionsURL is just where the search engine will get it’s suggestions from.

“ShowSearchSuggestions”=dword:00000001
ShowSearchSuggestions is an on or off option (0 off, 1 on) to configure if you’ll be shown the search suggestions or not.

“FaviconURL”=”http://www.google.com/favicon.ico”
FaviconURL is the little icon that appears in a few different spots in IE when doing searches.

“DisplayName”=”Google”
DisplayName just shows the name of the search provider in a few areas, this can be anything you want.

“OSDFileURL”=”http://www.iegallery.com/en-us/AddOns/DownloadAddOn?resourceId=813”
OSDFileURL is where the addon was obtained from, I’m not sure of the importance on this.

“FaviconPath”=”C:\\Users\\username\\AppData\\LocalLow\\Microsoft\\Internet Explorer\\Services\\search_{0533EE93-D776-472f-A0FF-E1416B8B2E3A}.ico”
This will point to a local icon, it’s just a local copy of the FaviconURL ico file.

Getting back to GUIDs, they are randomly generated and don’t matter, as long as they’re unique. A lot of blogs seem to indicate there are particular ones for particular search engines, as well as amazingly saying:
the Bing key is {9F4BEE75-5E51-4568-87AF-67C35184D4B5} and Google is {9F4BEE75-5E51-4568-87AF-67C35184D4B5}.
Several people have decided to copy and paste this (just like I have), but failed to realise they’re the exact same key!

So far this is fine, but will not set the default search engine. The registry key that stores the default is located back in HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\ under ‘DefaultScope’ and will match the GUID of the search engine.

If you do this though via Group Policy Preferences, the user will be prompted saying “An unknown program would like to change your default search provider to Google” which isn’t ideal at all. If your settings are being continually pushed then they’ll keep getting the popup, or if it’s a once off it’s still intrusive. You can push out the registry key once based on a version match of iexplore.exe to try and get it happening at the same time as the IE10 rollout, but that’s hardly clean (and still annoys all your users).

You can use the Policies registry path of HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\SearchScopes\ to force Google as the default, but remember this isn’t user configurable. Fine if you’re forcing Google as the default for everyone, but it doesn’t let people change their default search provider.

I’ve seen a few other suggestions on how to suppress the popup, but from my research it’s not possible without forcing the option. “Turn Off the Security Settings Check Feature” in Group Policy was a suggestion, but that just suppresses the message “Your current security settings put your computer at risk” and has nothing to do with the search provider popup.

There’s also the “Prevent programs from suggesting changes to my default search provider” option but that just toggles between absolutely blocking changes, or prompting.

Also I found that having some conflicting registry settings would make IE just go back to Bing after doing a search, even though it would do the first search with the new default Google – so make sure you’re taking a minimalist approach and have done proper testing of your settings.

There’s also a difference between IE8 and IE10 – IE10 doesn’t have a dedicated search bar, it just uses the URL bar. So when you’re doing a search it will use the settings of the current default search engine’s URL registry value which IE8 may not use.

Another catch is that the HKEY_LOCAL_MACHINE setting for the default search provider may be set, and that will override any user setting. That can be deleted.

If no search providers exist under the current user’s SearchScopes then IE10 will still use Bing, but use the URL string under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\SearchScopes\{0633EE93-D776-472f-A0FF-E1416B8B2E3A}.

If you’d rather just have Google do a search based on anything you type in the URL field, you can either modify the Bing URL key under the current user, or delete all search providers and change the HKLM URL.

Again, all the ADMs I could find were just based on the few above registry keys – do the keys yourself and give yourself the flexibility to adjust them if required, rather than copying and pasting someone else’s. If Google or Bing changed a URL they used you want to be able to adjust this quickly.

So what this all comes down to is there’s no way I could find to do both a silent install of a search engine and default it, without either the user knowing or not having the option to change it.

The above will hopefully give you an idea of what you want to do – for the record I’ve decided to just push out Google as an option, but let users choose to change their default search engine if they choose to.

If you’ve found any different to the above or have any other information, I’d be very happy to hear it.

 

Brief Instructions:

You came here to be told what to do? OK, follow these steps:

1. Add your chosen search provider manually via IE10 and set as default. Different regions have slightly different settings, so don’t just get it off the net.

2. Export settings to .reg or Group Policy Preferences Wizard from HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\ – Default Scope key as well as everything in the key that matches the name.

3a. Push those settings out to other PCs. Users will get prompted next time they open IE asking if they want to change their default search engine.

OR

3b. Adjust all the key paths by adding the “Policies” part – path HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\SearchScopes\ – this will force the settings but be silent to the user.

Also to set the policy “Restrict search providers to a specific list of providers”.

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Infodelivery\Restrictions]
“UsePolicySearchProvidersOnly”=dword:00000001

4. That’s it. Don’t bother trying to get tricky as IE has several failsafes which will revert it back to Bing because it doesn’t know what’s going on anymore.

20 thoughts on “How To Change IE10’s Default Search Engine

  1. Posting a question and answer for Dave, which is a good question:

    Comment: Hi Adam,

    Very nice article. Only one i have found so far that provides a solution for this issue.
    I have one question though. I am trying to go with this option as i want it to be totally silent:

    3b. Adjust all the key paths by adding the “Policies” part – path HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\SearchScopes\ – this will force the settings but be silent to the user.

    If you have tried to do it this way, how are you populating the reg settings into the “Policies” key? although it is in HKCU, it is still read only for locked down users. Hence, wont work if i try using active setup to populate this. Im now going to try using GPP to populate this, and hope IE wont clobber the settings when it gets started for the first time.

    Thanks, Dave.

    Applying registry keys using Group Policy Preferences by default will use the system account for access. You can change this to ‘Run in logged-on user’s security context’ under the Properties > Common area of a GPP item. This is a bit different to my other post http://www.adamfowlerit.com/2014/04/10/how-to-apply-hklm-settings-per-user/ “How to apply HKLM settings per user’ but it helps describe what’s going on.

    As long as the policy is applied under User Settings and not Computer settings, it will run at time of user login. This means it can apply the settings to the HKCU key of the user logging in, where as HKLM runs at computer startup, nothing to do with any user.

    So, creating a HKCU GPP and not using the logged-on user’s security context will make the system account apply the registry setting at the time of user login, and at 90 minute intervals as per usual GPP.

    The Policies area of the registry even under HKCU is locked down to admins only, which includes system.

    Thanks
    Adam

  2. In manage addons I have only google as my search engine and it is configured as default. My home page is Google. Why do I get a blue bar: “Get to Google faster. Update your default search engine” with the options: Sure or No Thanks. It doesn’t matter which option I choose because every time I launch IE I get this popping up. Any suggestions as to why this is happening and how to stop it?

    1. It might be trying to read a cookie to remember what you chose as an option. Do you have cookies turned off, or in some sort of private browsing mode?

  3. To force the default via the HKCU\Software\Policies\… key, you do need (as was suggested) to also set the policy “Restrict search providers to a specific list of providers”.

    This can be done by adding this registry key:
    [HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Infodelivery\Restrictions]
    “UsePolicySearchProvidersOnly”=dword:00000001

    1. HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\SearchScopes\ needs to contain everything you extracted, which is several different keys.

  4. I’m deleting all and creating new keys under ‘HKCU\Software\Microsoft\Internet Explorer\SearchScopes’ and I’ve found that if I also replace the keys under ‘HKCU\Software\Microsoft\Internet Explorer\User Preferences’ I don’t get the “An unknown program would like to change your default search provider to Google” message. I can’t see any other preferences that are changed in my setup using this method. I’ve successfully deployed this to IE 11 on Win7 SP1, Win8.1 and have deployed it on Win10 preview but have a search suggestion issue.

    1. Hi Steve, that’s great info. The only gotcha with User Preferences is that (I’m guessing) you aren’t locking it down, you’re just setting it and the user can change it?

      1. When ‘Computer Configuration\Policies\Administrative Templates\Windows Components\Internet Explorer\Prevent changing the default search provider’ is enabled the users can’t change the setting via ‘Manage add-ons’ but they are set correctly by group policy. The users can edit their HKCU settings and will be presented with the ‘An unknown program …’ prompt but they get put back on the next policy refresh. It may be possible to use the ‘Policies’ keys or even a combination of the ‘Policies’ keys and the ‘HKCU\Software\Microsoft\Internet Explorer\User Preferences’ key. If I get time to try it I’ll let you know the results.
        I would rather use the HKLM keys but I didn’t get the results I wanted, maybe it too is a combination.

    2. Steve_N, could you give us some details about the keys to place when you say “replace the keys under ‘HKCU\Software\Microsoft\Internet Explorer\User Preferences’” ?

      Thanks a lot !

  5. Hi, Lantivirus.
    I will have captured the keys under ‘HKCU\Software\Microsoft\Internet Explorer\User Preferences’ on the reference machine that I used where I manually set google.co.uk (for me) as the default search provider with bing as a second, these will have been identified as being changed using procmon.exe, the keys I currently push out are;
    2D53CFFC5C1A3DD2E97B7979AC2A92BD59BC839E81
    and
    88D7D0879DAB32E14DE5B3A805A34F98AFF34F5977

    I’m now on Windows 10 anniversary edition and my search is still set to google.co.uk in IE without any unwanted prompts.

    Let me know if you need more.

    Good luck.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.