PowerShellでEdgeを開く(起動オプション)
PowerShellでEdgeを開くときの起動オプションの紹介
基本形
#基本形
Start-Process -FilePath 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe' -ArgumentList 'https://google.com/'
最大化で開く
#最大化で開く
Start-Process -FilePath 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe' -ArgumentList '--start-maximized' , 'https://google.com/'
アプリケーションモードで開く
#アプリケーションモードで開く
Start-Process -FilePath 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe' -ArgumentList '--app=https://google.com/'
シークレットモードで開く
#シークレットモードで開く
Start-Process -FilePath 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe' -ArgumentList '--incognito' , 'https://google.com/'
新しいウインドウで開く
#新しいウインドウで開く
Start-Process -FilePath 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe' -ArgumentList '--new-window' , 'https://google.com/'
プロキシサーバーを指定する
#プロキシサーバーを指定する
Start-Process -FilePath 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe' -ArgumentList '--proxy-server"<アドレス>:<ポート>"' , 'https://google.com/'
プラグイン無効、拡張機能無効、デベロッパーツール無効にする
#プラグイン無効、拡張機能無効、デベロッパーツール無効にする
Start-Process -FilePath 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe' -ArgumentList '--disable-plugins' , '--disable-extensions' , '--disable-dev-tools' , '--new-window' , 'https://google.com/'
変数にしたり、複数指定も可能
#変数にしたり、複数指定も可能
#シークレットモード、新しいウインドウ、デベロッパーツール無効、アプリケーションモードで開く
$path = 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe'
$option = '--incognito --new-window --disable-dev-tools --app=https://google.com/'
Start-Process -FilePath $path -ArgumentList $option , $url