4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PowershellからChromで任意のサイトを表示する

Last updated at Posted at 2019-07-16

したいこと

  1. PowershellからChromを起動
  2. Yahoo!Japanのトップページに飛ぶ

但し、実行ポリシーを一時的に変更して実行したい

使用するコマンド

コマンドレット 実行内容
Start アプリケーションを起動
ExecutionPolicy 実行ポリシーを設定

プロセス

  1. 実行プログラムをpowershellで作成する
  2. 1.のプログラムを指定して一時的に実行できるようにするためバッチを作ってPowershellを実行する

psサンプル


#Chromのパス
$path = "C:\Program Files\Google\Chrome\Application\chrome.exe"
#リンク先
$url = "https://yahoo.co.jp"

start $path $url

batサンプル

powershell -ExecutionPolicy Unrestricted C:\Users\xxx\Desktop\GoYahoo.ps1
4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?