scripts
-
Blog
How to change execution policy to run scripts on PowerShell
To change the PowerShell execution policy, open PowerShell (admin) and run the “Set-ExecutionPolicy RemoteSigned” command to set execution to allow scripts. The “Set-ExecutionPolicy AllSigned” command allows scripts from trusted publishers. Or the “Set-ExecutionPolicy Unrestricted” command allows scripts without restrictions. You can also run the “Set-ExecutionPolicy Restricted” to undo the changes and prevent scripts from running. Finally, you can allow PowerShell…
Read More »