在PowerShell中直接脚本时会出现:
- 无法加载文件 **profile.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅http://go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
运行 get-help about_signing 提示了解执行策略输入
1 | get-executionpolicy |
显示Restricted即不允许执行任何脚本。
通过命令
1 | get-help set-executionpolicy 可知有以下执行策略:<Unrestricted> | <RemoteSigned> | <AllSigned> | <Restricted> | <Default> | <Bypass> | <Undefined> |
然后修改其策略:
1 | set-executionpolicy remotesigned |
即可执行脚本