Use Google instead of Bing with Windows 10 search

Use EdgeAndBingDeflector

This tiny programs diverts all your Cortana searches to your default browser and converts them (optionally) to Google or DuckDuckGo.

You can directly download it here

Tested on the newest Creator's Update

(P.S. I've forked this project from the original project "EdgeDeflector" and modified to divert Bing to other search engines)


1. Use Google Chrome (instead of Edge)

Per How to Make Cortana Search with Google and Chrome Instead of Bing and Edge, you can download the Original EdgeDeflector (use Instead of PulseJet's fork above). Next time you search, select EdgeDeflector as the default app.

Cortana / Start Menu Search redirects links by using the protocol URL:microsoft-edge. EdgeDeflector works by also registering that protocol and allowing you to select the default browser to handle the web request

2. Use Google Search (instead of Bing)

The second problem is when chrome opens, the URL is still pointed to a bing search

Next, you can use Requestly chrome extension to redirect urls. While you can redirect all URLs against Bing, that will also prevent you from any searches you make yourself. Cortana adds some extra query params (form=WNSGPH) and we can opt to redirect only when those are present and forward along the search terms.

So redirect this request based on this regex:

/https:\/\/www\.bing\.com\/search\?q=(.*)&form=WNSGPH.*/

To this URL:

https://www.google.com/search?q=$1

Tags:

Windows 10