执行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 脚本无法运行
修改该策略方式:
- 以管理员身份运行PowerShell
- 执行Set-ExecutionPolicy -Scope CurrentUser 修改执行策略为Bypass
- Set-ExecutionPolicy -ExecutionPolicy Bypass 该方式也可设置执行策略,但执行是报错