PowerShell 初期設定

管理者権限でPowerShellを起動

・実行ポリシー確認
Get-ExecutionPolicy

・実行ポリシー
Set-ExecutionPolicy RemoteSigned

Restricted:実行不可
AllSigned:署名付きスクリプトのみ実行可
RemoteSigned:ローカル+ダウンロードした署名付きスクリプトのみ実行可
Unrestricted:すべてのスクリプト実行可

次に、
New-Item registry::HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\shell\open\command -value ‘”C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe” “& ”%1””‘ -force
を実行。