How can I create a special URI scheme to open a link in Internet Explorer from Google Chrome?
For example, if I execute ie:google.com
in Chrome, a new window would open in IE with Google's homepage. I've followed the steps in "Registering an Application to a URI Scheme", however it literally passes the string ie:google.com
to IE, which IE has no idea what do with.
Essentially I need to remove the the ie:
protocol once passed to IE, or setup some sort of protocol redirect to http:
in the registry. Is either even possible?