hzinfo-cli : 无法加载文件 C:\Users\32746\AppData\Roaming\npm\hzinfo-cli.ps1,因为在此系统上禁止运行脚本。有关详细信息, 请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。 所在位置 行:1 字符: 1 + hzinfo-cli init hzinfo-bpmn + ~~~~~~~~~~ + CategoryInfo : SecurityError: (:) [],PSSecurityException + FullyQualifiedErrorId : UnauthorizedAccess
时间: 2024-04-06 20:30:10 浏览: 108
这个错误是因为你的系统设置禁止运行 PowerShell 脚本。你可以尝试打开 PowerShell 并输入以下命令:
```powershell
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted
```
这会将当前用户的执行策略设置为无限制。完成后,再次尝试运行 hzinfo-cli。如果你想了解更多关于 PowerShell 执行策略的信息,可以在浏览器中打开链接 https://go.microsoft.com/fwlink/?LinkID=135170。
阅读全文