How do you fix error ps1 Cannot be loaded because running scripts is disabled?

While trying to run a PowerShell script (.ps1 file), sometimes you can get the cannot be loaded because running scripts is disabled on this system message.

It is not an error but a security feature to prevent you from running any potentially harmful scripts. You can easily fix this issue by changing the execution policy for PowerShell scripts. Entering a single command should be enough.

  • Cannot Be Loaded Because Running Scripts Is Disabled
  • How to Fix Cannot Be Loaded Error
  • Related Questions
    • Group Policy or Registry level policy configuration, which has more priority?

The only reason this issue occurs is because of the PowerShell execution policy. It usually happens due to following reasons:

  • You are running an unsigned PowerShell script.
  • Execution policy is set to restrict all PowerShell scripts.

How to Fix Cannot Be Loaded Error

Here’s how you can make it possible to run the PowerShell script:

  1. Open the admin level terminal for Windows PowerShell or the IDE you are currently using.
  2. Enter Get-ExecutionPolicy. It shows the policy for the current PowerShell session. You can also enter Get-ExecutionPolicy -List to list out the policies for all scopes.
    get-execution-policy
  3. Change the execution policy for the scope you want. 
  4. The command you need for this purpose is: Set-ExecutionPolicy -ExecutionPolicy <policy name> -Scope <scope>. See below to know the possible values for the policy name and scope.
  5. In general, we recommend using Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned, as it is more secure. 
    set-execution-policy
  6. If it doesn’t solve the issue, enter:
    Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted

If you have both 64-bit and 32-bit PowerShell, you must enter this command for both terminals. Their locations are:

  • C:\Windows\System32\WindowsPowerShell\v1.0\Powershell.exe
  • C:\Windows\SysWOW64\WindowsPowerShell\v1.0\Powershell.exe

Note: You can also set the RemoteSigned policy for the Current User by checking the option in Settings Update & Security For Developers PowerShell.

Possible values for <policy name>:

  • Restricted: Disallows running scripts.
  • All Signed: Permits running signed scripts only
  • RemoteSigned: Allows running all scripts from the local computer but only signed ones for scripts you download.
  • Unrestricted: Permits running all scripts but warns before running external scripts
  • Default/Undefined: Restricted for clients and RemoteSigned for servers.
  • Bypass: Permits all scripts, and you get no warning.

Possible <scope> values:

  • MachinePolicy: Group-level policy for all users
  • UserPolicy: Group-level policy for the current user
  • Process: Temporary policy for current PowerShell session
  • CurrentUser: Registry policy configuration for the current user
  • LocalMachine: Registry policy configuration for all users

Group Policy or Registry level policy configuration, which has more priority?

Your system applies the Group Policy settings to the registry periodically or during a sign-in. However, the system checks for the relevant configuration in the registry, not in the group policy.

So, group policy has more priority if you reboot your computer after setting the policy. Otherwise, the registry takes precedence.

I'm an electronics engineer, avid writer, and tech-enthusiast specializing in troubleshooting computer-related issues. I enjoy reading both fiction and non-fiction in diverse genres. Apart from that, I also have a habit of trying out most new games but never completing them.

How solve problem of running scripts is disabled on this system?

Go to Start Menu and search for "Windows PowerShell ISE". Right click the x86 version and choose "Run as administrator". In the top part, paste Set-ExecutionPolicy RemoteSigned ; run the script. Choose "Yes".

Why is running scripts disabled on this system?

While running PowerShell script, if you get running scripts is disabled on this system, it is because the PowerShell execution policy is set up by default as Restricted and doesn't allow to run script. PowerShell has built-in security features implemented.

How do I enable ps1 scripts in Windows 10?

How to run PowerShell script file on Windows 10.
Open Start..
Search for PowerShell, right-click the top result, and select the Run as administrator option..
Type the following command to allow scripts to run and press Enter: Set-ExecutionPolicy RemoteSigned..
Type A and press Enter (if applicable)..

How do I enable running scripts on my system?

* Note: If you still receive the error "Scripts are disabled on this system", give one of the following commands and try again to run your script: Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned. set-executionpolicy remotesigned.