PowerShell script cannot be loaded because the execution of scripts is disabled on this system
Getting this error? and dont know what to do?
Simple. This is to protect your computer from potential bad scripts.
Fire up PowerShell as an Administrator and run
Set-ExecutionPolicy RemoteSigned
or when opening a script from powershell or shortcut
powershell -ExecutionPolicy ByPass -File Script.ps1
Keeping this one simple and easy
Hope this helps