脚本执行政策

时间:2014-04-05 19:44:02

标签: powershell signing executionpolicy

我有一个powershell执行策略问题。起初我以为这只是因为我试图从Github项目运行脚本,但我甚至无法运行自己的脚本。我过去没有遇到这个问题,我不知道当时和现在之间会发生什么变化。

> script.ps1 cannot be loaded because the exe
cution of scripts is disabled on this system. Please see "get-help about_signing"
 for more details.

1 个答案:

答案 0 :(得分:2)

您需要检查并可能调整Powershell的x86和x64版本的当前策略(如果适用)。

使用Get-ExecutionPolicy检查当前政策,并使用Set-ExecutionPolicy进行相应调整。

有关执行政策的说明,请参阅this