当前位置: 代码迷 >> 综合 >> 关于 PowerShell 无法执行脚本(因为在此系统上禁止运行脚本)解决方法?
  详细解决方案

关于 PowerShell 无法执行脚本(因为在此系统上禁止运行脚本)解决方法?

热度:4   发布时间:2023-12-17 11:21:50.0

执行Powershell报错未为:
.\ps1.ps1 : 无法加载文件 C:\Users\Desktop\ps1.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
所在位置 行:1 字符: 1

+.\ps1.ps1
+~~~~~~~~~
+ CategoryInfo : SecurityError: (? [],PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess

在这里插入图片描述
执行命令 ``Get-ExecutionPolicy 查看执行策略
当执行策略设置为“Restricted”时,PowerShell 脚本无法运行

修改该策略方式:

  1. 以管理员身份运行PowerShell
  2. 执行Set-ExecutionPolicy -Scope CurrentUser 修改执行策略为Bypass
  3. Set-ExecutionPolicy -ExecutionPolicy Bypass 该方式也可设置执行策略,但执行是报错
    在这里插入图片描述
  相关解决方案