set execution policy powershell unrestricted code example

Example 1: Windows ExecutionPolicy

Set-ExecutionPolicy RemoteSigned

Example 2: set execution policy powershell

Set-ExecutionPolicy RemoteSigned  # to set the policy to RemoteSigned.
 Set-ExecutionPolicy Unrestricted  # to set the policy to Unrestricted.
 Get-ExecutionPolicy # to verify the current settings for the execution policy.

Example 3: how to change execution policy powershell

Set-ExecutionPolicy -ExecutionPolicy  # general syntax
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned # for example

Example 4: powershell allow execution

Select Start > All Programs > Windows PowerShell version > Windows PowerShell.
Type Set-ExecutionPolicy RemoteSigned to set the policy to RemoteSigned.
Type Set-ExecutionPolicy Unrestricted to set the policy to Unrestricted.
Type Get-ExecutionPolicy to verify the current settings for the execution policy.

Tags:

Misc Example