Launch IE from a link in Chrome

前端 未结 7 868
小蘑菇
小蘑菇 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 08:59

    Ok so I did the following which works :

    HKEY_CLASSES_ROOT
       alert
          (Default) = "URL:Alert Protocol"
          URL Protocol = ""
          DefaultIcon
             (Default) = "iexplore.exe,1"
          shell
             open
                command
                   (Default) = cmd /k set myvar=%1 & call set myvar=%%myvar:alert:=%% & call "C:\Program Files (x86)\Internet Explorer\iexplore.exe" %%myvar%% & exit /B
    

    Then have your link

    link
    

提交回复
热议问题