Open Internet Explorer from Chrome using a protocol handler (ie:url)

MENTAL picture MENTAL · Nov 10, 2016 · Viewed 11.5k times · Source

I've followed these steps and it doesn't work correctly for me. Custom protocol handler in chrome

Basically, I don't have a custom app. I just want to create an handler to open IE with a specific URL.

Here are my reg:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Classes\ie]
"URL Protocol"="\"\""
@="\"URL:IE Protocol\""

[HKEY_CURRENT_USER\Software\Classes\ie\DefaultIcon]
@="\"explorer.exe,1\""

[HKEY_CURRENT_USER\Software\Classes\ie\shell]

[HKEY_CURRENT_USER\Software\Classes\ie\shell\open]

[HKEY_CURRENT_USER\Software\Classes\ie\shell\open\command]
@="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" \"%1\""

It's working but... when I'm opening ie:www.google.com from Chrome, it ask to open IE but it keeps the "ie:" in the opened URL... which generate a endless loop.

How can I fix that?

Thanks

Screenshot

Answer

Jeremy Danyow picture Jeremy Danyow · Jan 19, 2017

Create a Protocol Handler

save this script as internet-explorer-protocol-handler.reg:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Classes\ie]
"URL Protocol"="\"\""
@="\"URL:IE Protocol\""

[HKEY_CURRENT_USER\Software\Classes\ie\DefaultIcon]
@="\"explorer.exe,1\""

[HKEY_CURRENT_USER\Software\Classes\ie\shell]

[HKEY_CURRENT_USER\Software\Classes\ie\shell\open]

[HKEY_CURRENT_USER\Software\Classes\ie\shell\open\command]
@="cmd /k set myvar=%1 & call set myvar=%%myvar:ie:=%% & call \"C:\\Program Files (x86)\\Internet Explorer\\iexplore.exe\" %%myvar%% & exit /B"

Then run the script to install the keys in your registry. It will look like this:

registry

Now links that use the ie: protocol will open in Internet Explorer.

<a href="ie:https://www.google.com/">Google</a>

Demo Page