55
47

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スクリプトを簡単実行

Last updated at Posted at 2017-10-05

PowerShellスクリプト(.ps1ファイル)の実行はちょっと手間。
一般的な実行方法は、

  1. Windows PowerShellを起動
  2. Set-ExecutionPolicyコマンドで実行ポリシーを変更
  3. ps1ファイルを実行
  4. Set-ExecutionPolicyコマンドで実行ポリシーを戻す

と少々面倒くさい。

バッチファイル(.batファイル)を使えば、
Windows PowerShellの起動も実行ポリシーの変更もすることなく
PowerShellスクリプトを実行できる。

powershell.bat
powershell -ExecutionPolicy RemoteSigned -File D:\temp\powershell.ps1
pause
powershell.ps1
Write-Host "PowerShell実行"

上記のようなバッチファイルを管理者として実行すればよい。

【補足】

  • -ExecutionPolicyの設定は当該セッションのみで有効なので、設定を戻す必要なし。

【参考】
Windows PowerShell: PowerShell.exe
Windows PowerShell スクリプトを実行する

55
47
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
55
47

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?