If you are like me you have probably run into the following error when trying to run powershell scripts. This becomes very annoying and tedious if you are running different scripts on a regular basis.
“Security Warning – Run only scripts that you trust. While scripts from the Internet can be useful, this script can potentially harm your computer. Do you want to run –.ps1? [D] Do not run [R] Run once [S] Suspend [?] Help (default is “D”):
Step #1
The first thing you need to do is launch Windows Powershell.
Step #2
Then enter the following commands:
get-executionpolicy
set-executionpolicy bypass

Powershell Trust Scripts
Now launch your script and enjoy not seeing that annoying message come up.
Tags: Batch Script, Microsoft, Powershell, Software, Windows 7, Windows 7 Beta, Windows Vista



That’s valid for PowerShell 2.0 but is not a valid parameter for PowerShell 1.0.