How-To Geek
How to Allow the Execution of PowerShell Scripts on Windows 7

When you download a script off the internet and try to run it, if you have not previously configured PowerShell, it will throw a nasty error in red font. This is enough to scare most users off, but there is an easy fix.
PowerShell has a number of execution modes that define what type of code it is permitted to run, this is governed by a registry key that lives in the HKLM hive. There are 4 different execution modes, they are:
- Restricted: Default execution policy, does not run scripts, interactive commands only.
- All Signed: Runs scripts; all scripts and configuration files must be signed by a publisher that you trust; opens you to the risk of running signed (but malicious) scripts, after confirming that you trust the publisher.
- Remote Signed: Local scripts run without signature. Any downloaded scripts need a digital signature, even a UNC path.
- Unrestricted:Runs scripts; all scripts and configuration files downloaded from communication applications such as Microsoft Outlook, Internet Explorer, Outlook Express and Windows Messenger run after confirming that you understand the file originated from the Internet; no digital signature is required; opens you to the risk of running unsigned, malicious scripts downloaded from these applications
The default execution policy of PowerShell is called Restricted. In this mode, PowerShell operates as an interactive shell only. It does not run scripts, and loads only configuration files signed by a publisher that you trust. If you are getting the nasty red error the most probable cause is that you are trying to run an unsigned script. The safest thing to do is to change the Execution Policy to unrestricted, run your script and then change it back to restricted.
To change it to unrestricted run the following command from an administrative PowerShell:
Set-ExecutionPolicy Unrestricted
You will be asked if you are sure that you want to change the Execution Policy hit the enter button again.


You can now run your downloaded scripts without a problem. However, it’s a serious security risk if you forget to set the Execution Policy back to Restricted mode. You could probably guess how to set it back to Restricted, but incase you don’t:
Set-ExecutionPolicy Restricted
Again you will be asked if you are sure that you want to change the execution mode, go ahead and hit enter.


Got Feedback? Join the discussion at discuss.howtogeek.com
Comments (4)
Taylor Gibb is a Microsoft MVP and all round geek, he loves everything from Windows 8 to Windows Server 2012 and even C# and PowerShell. You can also follow him on Google+
- Published 03/6/12




Thanks for giving the more information about the How to Allow the Execution of PowerShell Scripts on Windows 7.
Any way to allow another script to set it for me ?
like maby a vbs script
Set-ExecutionPolicy Unrestricted
run powershell script
Set-ExecutionPolicy restricted
Most folks in the PowerShell community have come to a consensus that ‘RemoteSigned’ is a decent middle ground. With ‘RemoteSigned’ PowerShell will look for a digital signature on any script it believes you downloaded from the Internet, unless you unblock it.
Set-ExecutionPolicy RemoteSigned
Good to know about the How to Allow the Execution of PowerShell Scripts on Windows 7