美文网首页
PowerShell禁止运行脚本方案

PowerShell禁止运行脚本方案

作者: 明训 | 来源:发表于2021-04-24 00:21 被阅读0次

    背景说明

    vscode默认打开powershell在运行node发现出现错误

    set-ExecutionPolicy : 对注册表项“HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell”的
    访问被拒绝。 要更改默认(LocalMachine)作用域的执行策略,请使用“以管理员身份运行”选项启动 Windows PowerShell。要更改当
    前用户的执行策略,请运行 "Set-ExecutionPolicy -Scope CurrentUser"。
    

    解决方案

    以管理员身份打开powershell执行如下命令

    PS C:\Users\86183> set-ExecutionPolicy RemoteSigned
    PS C:\Users\86183> get-ExecutionPolicy
    RemoteSigned
    

    再次执行相关脚本即可。

    相关文章

      网友评论

          本文标题:PowerShell禁止运行脚本方案

          本文链接:https://www.haomeiwen.com/subject/lxwhrltx.html