PowerShell - Execution Policy

you can use a Several ways

powershell -ExecutionPolicy bypass

powershell -c <cmd>

powershell -encodedcommand

$env:PSExecutionPolicyPreference="bypass"

Last updated