zoukankan      html  css  js  c++  java
  • PowerShell: 如何解决File **.ps1 cannot be loaded because the execution of scripts is disabled on this system. Please see "get help about_sig" for more de

    PowerShell 默认不允许执行*.ps1脚本文件。运行ps1文件会得到下面的错误:

    File C:\Temp\Test.ps1 cannot be loaded because the execution of scripts is disabled on this system. Please see "get- help about_signing" for more details.

    At line:1 char:19
    + c:\Temp\Test.ps1 <<<<

     

    可以通过Get-ExecutionPolicy,来取得当前策略。

    用Set-ExecutionPolicy设置当前策略。

    下面的命令可以解决上面的错误

    PS C:\Windows\system32> Set-ExecutionPolicy RemoteSigned  <按回车>

    Execution Policy Change

    The execution policy helps protect you from scripts that you do not trust. Changing the execution policy might expose 

    you to the security risks described in the about_Execution_Policies help topic. Do you want to change the execution

    policy?

    [Y] Yes  [N] No  [S] Suspend  [?] Help (default is "Y"):<按Y>

     

     在PowerShell中的执行

     

     

    Policy的有效参数:

    -- Restricted:  不载入任何配置文件,不运行任何脚本。 "Restricted" 是默认的。

    -- AllSigned: 只有被Trusted publisher签名的脚本或者配置文件才能使用,包括你自己再本地写的脚本

    -- RemoteSigned:  对于从Internet上下载的脚本或者配置文件,只有被Trusted publisher签名的才能使用。

    -- Unrestricted: 可以载入所有配置文件,可以运行所有脚本文件. 如果你运行一个从internet下载并且没有签名的脚本,在运行之前,你会被提示需要一定的权限。

    -- Bypass: 所有东西都可以使用,并且没有提示和警告.

    -- Undefined: 删除当前scope被赋予的Execution Policy.  但是Group Policy scope的Execution Policy不会被删除.

  • 相关阅读:
    多个ROS工作空间常见的问题
    ROS tf(现在都使用tf2了)
    ERROR: cannot launch node of type [teleop/teleop_key]: can't locate node [teleop_key] in package [teleop]
    Linux上静态库和动态库的编译和使用
    【C++】类中this指针的理解
    fatal error: No such file or directory
    g2o使用教程
    如何理解二次型
    <ROS> message_filters 对齐多种传感器数据的时间戳
    linux与C内存管理机制
  • 原文地址:https://www.cnblogs.com/findcaiyzh/p/2696282.html
Copyright © 2011-2022 走看看