Chrome ブラウザは、コマンドラインと実行ウィンドウから開くことをサポートしています。
Open chrome from command line
Chrome を CMD から起動するには、以下のコマンドを実行します。
start chrome
Run command for Chrome
実行ウィンドウから chrome
コマンドを実行すると Chrome を開くことができます。
CMD コマンドが start chrome
C:\>chrome'chrome' is not recognized as an internal or external command,operable program or batch file.
ただし、クロームのインストールフォルダを環境変数 PATH に追加すれば、CLI からも動作させることは可能です。 インストールパスは "c:\Program Files (x86)\Google\Chrome\Application"
です。 コマンドプロンプトからパスを設定する方法
Chrome を別のユーザーとして開く方法
別のユーザーの認証情報でクロームを起動するには runas
コマンドを使用します。
C:\Users\user1>runas /user:user2 "C:\Program Files (x86)\Google\Chrome\Application\Chrome.exe"
クロームをシステムの管理者として起動するには
Chrome ブラウザでコマンドプロンプトからウェブサイトを開く
WebサイトのURLを指定してコマンドラインから開くことが可能です。
start chrome www.windows-commandline.com
Run command for Chrome to open a website
Run the command chrome websiteUrl
to open a website in chrome.
Open chrome in incognito mode from command prompt
Chrome has command line switch to open with incognito mode.コマンドラインからChromeでウェブサイトを開くことができる。 これはコマンド プロンプトと実行コマンドからサポートされています。
CMD
start chrome /incognito
Command to open incognito mode from Run
chrome /incognito
からクロームをシークレット モードで開くコマンド