.ps1 cannot be loaded because the execution of scripts is disabled on this system

 

We need to run the following command:

Set-ExecutionPolicy -scope CurrentUser Unrestricted
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Get the free space and total size of each drive in gigabytes using PowerShell

To accurately get the free space and total size of each drive in gigabytes using PowerShell, you...

Script to Calculate Folder Sizes PowerShell

$volumePath = "C:\" # Replace this with the path of the volume root you want to analyze # Get...

check for local userif that exists, reset the password and add it to the local administrators group if it does not exist. Create and enable it,

script to check for local user "ITAdmin" if that exists, reset the password and add it to the...