how to enable running scripts in powershell code example
Example 1: powershell enable scripts
Set-ExecutionPolicy unrestricted
Example 2: how to enable running scripts on windows 10
set-executionpolicy remotesigned
Example 3: cannot be loaded because running scripts is disabled on this system
Set-ExecutionPolicy -ExecutionPolicy Unrestricted
Example 4: cannot be loaded because running scripts is disabled on this system.
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted
Example 5: \Activate.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser