Launch IE from a link in Chrome

前端 未结 7 867
小蘑菇
小蘑菇 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条回答
  • 2020-12-03 09:18

    Simplified solution above from @topcat3 and made it work on Win10.

    HKEY_CLASSES_ROOT
        alert
        (Default) = "URL:Alert Protocol"
        URL Protocol = ""
        DefaultIcon
            (Default) = "iexplore.exe,1"
        shell
            open
                command
                    (Default) = cmd /V /C set "arg1=%1" & set arg1=!arg1:alert:=! & "!ProgramFiles(x86)!\Internet Explorer\iexplore.exe" !arg1!
    
    0 讨论(0)
提交回复
热议问题