How to enable execution of PowerShell scripts?

305

96

When I try to execute my PowerShell script I get this error:

File C:\Common\Scripts\hello.ps1 cannot be loaded because the execution of scripts is disabled on this system. Please see "get-help about_signing" for more details.
At line:1 char:13
+ .\hello.ps1 <<<<
+ CategoryInfo : NotSpecified: (:) [], PSSecurityException
+ FullyQualifiedErrorId : RuntimeException

Pavel Chuchuva

Posted 2010-02-08T18:41:03.163

Reputation: 8 135

Answers

451

  1. Start Windows PowerShell with the "Run as Administrator" option. Only members of the Administrators group on the computer can change the execution policy.

  2. Enable running unsigned scripts by entering:

    set-executionpolicy remotesigned
    

This will allow running unsigned scripts that you write on your local computer and signed scripts from Internet.

See also Running Scripts at Microsoft TechNet Library.

Pavel Chuchuva

Posted 2010-02-08T18:41:03.163

Reputation: 8 135

3Will this change the policy permanently or do I have to do this every time I restart my computer? – Ray – 2017-01-14T18:11:37.930

3@Ray This will change the policy permanently. – Pavel Chuchuva – 2017-01-14T22:15:09.507

1

@Ray See the documentation. By default, it sets it for the LocalMachine. To set for other scopes (CurrentUser or Process), pass -Scope explicitly.

– jpmc26 – 2018-07-17T18:38:32.443

@PavelChuchuva should I add this line on top of my script you meant – FabioSpaghetti – 2019-07-16T10:14:26.447

@FabioSpaghetti No need to add anything to your scripts. Just execute that command once by following the steps. – Pavel Chuchuva – 2019-07-17T03:21:48.380

@Pavel where? In cmd prompt? – FabioSpaghetti – 2019-07-17T04:37:20.983

@FabioSpaghetti Yes or in a PowerShell console – TylerH – 2019-09-24T19:42:50.530

1I would mention you need to do that two times, in normal power shell, and once more in Windows PowerShell (x86) It’s very unexpected but the 2 have different set of policies. – Soonts – 2019-10-29T23:30:08.617

91

The Default Execution Policy is set to restricted, you can see it by typing:

Get-ExecutionPolicy

You should type the following to make it go to unrestricted mode:

Set-ExecutionPolicy unrestricted

Hope this helps

William Hilsum

Posted 2010-02-08T18:41:03.163

Reputation: 111 572

1@Guss: On testing this I found that RemoteSigned no longer requires locally generated .ps1 files to be signed, and it treats git source control as a local source. – Joshua – 2019-06-11T21:14:59.147

@Joshua - yes, my point exactly. If RemoteSigned doesn't block copy & paste, doesn't block git or other non-IE download methods, then what is it good for? Say it with me: "absolutely nothing!". I think requiring scripts to be signed with $100 code signing certificate is useless, stupid and negates all the good that a decent scripting language can do for Windows. That being said, if the way forward is to get users to understand what they're doing in order to use PS scripts, then we may be on too sth... Nahhhh, that will never work ;-) – Guss – 2019-06-11T23:23:53.090

@Guss: I already got a good scripting language on Windows. Cygwin works great on Windows 10; like literally so much better than it's been on any prior version of Windows. I only ever want to run scrips somebody else already wrote. – Joshua – 2019-06-11T23:36:17.470

15The requiring signing make sense if you expect the user to copy&paste malicious scripts from the internet. If you assume the user isn't stupid, then "remotesigned" doesn't add any security and makes life difficult. – Guss – 2012-11-11T10:41:11.643

66

On my machine that I use to dev scripts, I will use -unrestricted as above. When deploying my scripts however, to an end user machine, I will just call powershell with the -executionpolicy switch:

powershell.exe -noprofile -executionpolicy bypass -file .\script.ps1

MDMoore313

Posted 2010-02-08T18:41:03.163

Reputation: 4 874

2

You may want to combine this trick with a polyglot trick in a .CMD file. See http://stackoverflow.com/a/8597794/5314

– Jay Bazuzi – 2013-01-14T20:30:24.623

Nice! I've been deploying sfx's made by winrar http://rarlabs.com

– MDMoore313 – 2013-01-15T16:09:58.303

1That trick allowed me to run powershell script from Git Bash (MINGW32 bash) – Kamil Szot – 2014-04-19T21:10:57.293

21

We can get the status of current ExecutionPolicy by the command below:

Get-ExecutionPolicy;

By default it is Restricted. To allow the execution of PowerShell Scripts we need to set this ExecutionPolicy either as Bypass or Unrestricted.

We can set the policy for Current User as Bypass or Unrestricted by using any of the below PowerShell command:

Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Bypass -Force;

Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted -Force;

Unrestricted policy loads all configuration files and runs all scripts. If you run an unsigned script that was downloaded from the Internet, you are prompted for permission before it runs.

Whereas in Bypass policy, nothing is blocked and there are no warnings or prompts during script execution. Bypass ExecutionPolicy is more relaxed than Unrestricted.

Pratik Patil

Posted 2010-02-08T18:41:03.163

Reputation: 309

5

Depending on the Windows version and configuration, you may have the following warning, even in Unrestricted mode:

Security warning
Run only scripts that you trust. While scripts from the internet can be useful, this
script can potentially harm your computer. If you trust this script, use the 
Unblock-File cmdlet to allow the script to run without this warning message. 
Do you want to run?
[D] Do not run  [R] Run once  [S] Suspend  [?] Help (default is "D")

The solution is to use the "bypass" policy, enabled with the following command:

Set-ExecutionPolicy Bypass

From the documentation:

Bypass: Nothing is blocked and there are no warnings or prompts.

This is obviously insecure, please understand the risks involved.

Benoit Blanchon

Posted 2010-02-08T18:41:03.163

Reputation: 196

this was the only way I was able to get my script to run in a WINE environment with powershell 2.0. Thank you. – Wyatt8740 – 2016-10-25T01:39:10.910

@Wyatt8740: Because wine presents all drives as network drives. – Joshua – 2019-06-11T23:37:03.380

@Joshua I had no idea. can you give me a source for that statement? i tried a casual google, but I obviously am looking wrong. – Wyatt8740 – 2019-06-12T08:25:48.680

@Wyatt8740: Source: Wine OpenFileName common dialog box. Look a the drive icons. – Joshua – 2019-06-12T14:59:43.350

@Joshua I meant a source code source; icons are possibly arbitrary. But I'd not thought of that; I guess that's a good place to start (edit: doesn't look like they are here.)

– Wyatt8740 – 2019-06-12T18:38:51.713

@Wyatt8740: It's actually configurable with network being the default (or at least at one time), to minimize compatibility problems. Software that actually checks drive type behaves the best when it gets network back. I had to look it up once to tell it the CD drive was another type. – Joshua – 2019-06-12T18:42:29.757

@Joshua everything except for one drive that I explicitly set to CD-ROM is set to autodetect. Still not seeing anything suggesting network.

– Wyatt8740 – 2019-06-12T18:46:32.183

3

A reg key with:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\PowerShell] "EnableScripts"=dword:00000001 "ExecutionPolicy"="Bypass"

and:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\PowerShell]
"EnableScripts"=dword:00000001 "ExecutionPolicy"="Unrestricted"

works indeed too.

Giesbert Schipper

Posted 2010-02-08T18:41:03.163

Reputation: 31

1

For some reason the PowerShell cmdlet did not enable local execution globally, just for the local user context. If I tried to start a Powershell script from inside CygWin's bash prompt, for example, which runs under its own user context, it would not run, giving the "is not digitally signed" error. The answer was to go into the Local Group Policy Editor -> Local Computer Policy -> Administrative Templates -> Windows Components -> Windows PowerShell and double-click on 'Turn on Script Execution'. This then let me change it to 'Enabled' and then execution policy of "Allow local scripts and remote signed scripts" and have it work globally regardless of user context.

Eric Green

Posted 2010-02-08T18:41:03.163

Reputation: 11

1

The accepted answer is right, but the policy modification is only available for the currently running instance of the Powershell, meaning once the instance of the Powershell is shut down. The policy will be reset. If a user reopens another instance of Powershell, the default policy will be applied which is Restricted

For me, I need to use the VisualStudio Code console and g++ from cygwin to build things. The console is using Powershell, with the default policy, nothing can be done. One solution is changing the policy everytime the console is fired in VisualStudio Code console, maybe a script of changing the policy.

I am lazy, so another solution is when I run the Powershell in admin mode, similar to what the accepted answer does. but with an extra parameter which changes values in the Registry table. Once it been done. Other instances of Powershell will use the RemoteSigned policy by default.

set-executionpolicy remotesigned -Scope CurrentUser

r0ng

Posted 2010-02-08T18:41:03.163

Reputation: 111

1

Setting the policy (correctly) is the best choice but on my managed systems I do not have the ability to change that policy.

For me, the simplest work-around to changing the policy is to open the script in the "PowerShell ISE", highlight the code (or part of the code) to execute and then click the "Run Selection" button (or use the F8 shortcut).

This is not the best solution & does little for automating tasks, but it does allow me the use & utility of PowerShell while not running afoul of my IS department.

DBADon

Posted 2010-02-08T18:41:03.163

Reputation: 259

-2

The reason that the reg key works, is because it is doing exactly what the PS commands do. The commands write the changes to the reg keys. Commands are much quicker and easier than creating a reg key or digging into the registry.

keith

Posted 2010-02-08T18:41:03.163

Reputation: 1

1That is just wrong: the keys that were mentioned in other answers change the powershells execution policy, which then enables the powershell script to run. – Patrick R. – 2018-04-05T14:04:39.917