我有一个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.
答案 0 :(得分:2)
您需要检查并可能调整Powershell的x86和x64版本的当前策略(如果适用)。
使用Get-ExecutionPolicy
检查当前政策,并使用Set-ExecutionPolicy
进行相应调整。
有关执行政策的说明,请参阅this。