Launch IE from a link in Chrome

前端 未结 7 872
小蘑菇
小蘑菇 2020-12-03 08:29

I want to have a link in Chrome e.g.

Open Link

that when you click on it in the Chrome Browser that it launches the link in an IE window.

Can anyone

7条回答
  •  Happy的楠姐
    2020-12-03 09:14

    Building on the responses from @topcat3 and @danieln above, I tweaked the solution to get rid of the annoying lingering DOS window. Here's what works nicely for me:

    HKEY_CLASSES_ROOT
        alert
        (Default) = "URL:Alert Protocol"
        URL Protocol = ""
        DefaultIcon
            (Default) = "iexplore.exe,1"
        shell
            open
                command
                    (Default) = cmd /v /k set "myvar=%1" & set myvar=!myvar:alert:=! & start "" /B "!ProgramFiles!\Internet Explorer\iexplore.exe" !myvar! & exit
    

提交回复
热议问题