EXECUTION POLICY

POWERSHELL EXECUTION POLICY

Check Execution Policy for the user in Powershell

Get-ExecutionPolicy

Bypass Execution Policy for the user in Powershell

powershell -ep bypass
$env:PSExecutionPolicyPreference="bypass"

Last updated