「PowerShell」FullyQualifiedErrorId : UnauthorizedAccessスクリプトが実行できないの解決方法

環境
Windows 10 64bit

エラー現象

PS C:\study\powershell> .\test.ps1
.\test.ps1 : このシステムではスクリプトの実行が無効になっているため、ファイル C:\study\powershell\test.ps1 を読み込むこ
とができません。詳細については、「about_Execution_Policies」(https://go.microsoft.com/fwlink/?LinkID=135170) を参照して
ください。
発生場所 行:1 文字:1
+ .\test.ps1
+ ~~~~~~~~~~
    + CategoryInfo          : セキュリティ エラー: (: ) []、PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess

エラーの原因
Windows の初期設定では PowerShell のスクリプトの実行が実行ポリシーによって許可されていないことが原因です。

解決方法
PS C:\study\powershell> PowerShell Set-ExecutionPolicy RemoteSigned

PowerShell

Posted by arkgame