Pages

Tuesday, 17 February 2015

How to run unsigned powershell scripts

Open a Powershell terminal with administrative privilages and run the following command to allow the currently logged in user to run unsigned scripts:

set-executionpolicy unrestricted

When you have finished you should set the execution policy back to signed:

set-executionpolicy signed

No comments:

Post a Comment