作成 2010.03.18
更新 2017.05.19
PowerShell で PS1 スクリプトを実行出来るようにする
スクリプト実行許可
マシン全体で実行を許可する場合は、以下のコマンドを管理者権限で実行する。
PS C:\> Set-ExecutionPolicy RemoteSigned
ユーザーのみ、または、現在のプロセスのみに限定する場合、管理者権限は不要。
PS C:\> Set-ExecutionPolicy RemoteSigned CurrentUser
PS C:\> Set-ExecutionPolicy RemoteSigned Process
PowerShell 起動時に指定する場合、Process を指定した場合と同様になる
C:\>powershell -ExecutionPolicy RemoteSigned -File test.ps1
参考
Get-Help about_signing
Introduction to Code Signing
タグ: PowerShell

©2004-2017 UPKEN IPv4