既定以外の特定のブラウザで指定のURLを開くコマンド【Windows】

指定したブラウザとURLを開くコマンド

コマンドプロンプトで以下のコマンドを使用すれば、既定のブラウザ以外のブラウザやURLを指定してページを開くことができます。バッチファイルにも使えます。Microsoft Edge以外はローカルのHTMLも開けます。

既定のブラウザで開く場合

start https://qwerty.work

Microsoft Edgeで開く場合

ローカルのHTMLを開く場合は、何らかの設定が要るようです。

start microsoft-edge:https://qwerty.work

Google Chromeで開く場合

start chrome.exe https://qwerty.work

FireFoxで開く場合

start firefox.exe https://qwerty.work

Operaで開く場合

start opera.exe https://qwerty.work

Internet Explorer開く場合

start iexplore.exe https://qwerty.work
"C:\Program Files\Internet Explorer\iexplore.exe" https://qwerty.work
オプション・引数の参考

Link

Iexplore.exeのコマンドラインスイッチ (オプション、引数の指定方法) – 各種パソコン技術情報

https://w3w.nnn2.com/?p=244

 

PowershellやVBSで行う方法

以下のページが参考になります。

Link

302 Found

http://tooljp.com/CommandBank/Windows/OS/IE_URL-start.html

PAGETOP