
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.
[highlight_red]”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”):[/highlight_red]
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.
The post Run only scripts that you trust. (Powershell) appeared first on TheITBros.