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

Now launch your script and enjoy not seeing that annoying message come up.
Pingback: Run only scripts that you trust. Disable Powershell Message - Blog.BrianLeeJackson.com
Great, now how do you this in group policy? Let’s say you manage 100 workstations. Would not be practical to do this on each one.