Powershell “因为在此系统上禁止运行脚本”问题解决


参考:https://www.jianshu.com/p/4eaad2163567

安装 squoosh-cli 后在 cmd 里可以运行但是在 Powershell 里运行会报错:

squoosh-cli : 无法加载文件 C:\Users\Demo\AppData\Roaming\npm\squoosh-cli.ps1,因为在此系统上禁止运行脚本。有关详细信息
,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
所在位置 行:1 字符: 1
+ squoosh-cli
+ ~~~~~~~~~~~
    + CategoryInfo          : SecurityError: (:) [],PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess

经查是安全策略问题。

查看当前策略:打开 Powershell,输入`Get-ExecutionPolicy`(输入get-ex再按tab键会自动补全),回车,默认会显示 Restricted,即不允许任何脚本运行。

以管理员身份打开 Powershell,输入`Set-ExecutionPolicy remotesigned`(输入set-ex再按tab键会自动补全, 再输入re按tab键也会自动补全),回车,按Y,问题解决。