PowerShell Execution Policy

Restricted: Individual cmdlets can run, but not saved Powershell scripts. This is the default setting.
AllSigned: Scripts can run, but must have a digital signature even if written on the local computer. Prompts you before running scripts from trusted publishers.
RemoteSigned: Scripts written on the local computer do not need a digital signature, but any script downloaded from outside (email, IM, Internet) must have a signature to execute.
Unrestricted:: Any script can run, but scripts downloaded from outside will run with a warning.

[code]
Set-ExecutionPolicy Unrestricted
[/code]

Tags for tips: