Powershell中禁止执行脚本解决办法 - 张善友 - 博客园  http://www.cnblogs.com/shanyou/archive/2011/09/03/2165371.html






Powershell中禁止执行脚本解决办法(about_Execution_Policies)

刚开始使用Powershell,导入管理模块或者其他操作的时候会出现因为在此系统中禁止执行脚本的报错,报错内容如下:

Windows PowerShell
版权所有 (C) 2009 Microsoft Corporation。保留所有权利。

PS C:\Windows\system32> D:\Workshop\Powershell\Sprinkler\src\Scripts\SPRINKLE.ps1
无法加载文件 D:\Workshop\Powershell\Sprinkler\src\Scripts\SPRINKLE.ps1,因为在此系统中禁止执行脚本。有关详细信息,请参
阅 "get-help about_signing"。
所在位置 行:1 字符: 58
+ D:\Workshop\Powershell\Sprinkler\src\Scripts\SPRINKLE.ps1 <<<<
    + CategoryInfo          : NotSpecified: (:) [], PSSecurityException
    + FullyQualifiedErrorId : RuntimeException

PS C:\Windows\system32> get-ExecutionPolicy  (查询当前策略设置)
Restricted (guyue: 受限制的)

果然,是被限制。还是在"get-help about_signing"里面可以查到设置命令"set-executionpolicy
再在帮助中找到"set-executionpolicy"的说明。。似乎是比较建议设置为,至少是被标记为可信任的

-- RemoteSigned: Requires that all scripts and configuration files downloaded from the Internet be signed by a trusted publisher. 
在PowerShell执行以下: 
PS C:\Windows\system32> set-ExecutionPolicy RemoteSigned (修改策略以执行prowershell脚本)

执行策略更改 
执行策略可以防止您执行不信任的脚本。更改执行策略可能会使您面临 about_Execution_Policies 
帮助主题中所述的安全风险。是否要更改执行策略? 
[Y] 是(Y)  [N] 否(N)  [S] 挂起(S)  [?] 帮助 (默认值为“Y”): y 


之后即可执行prowershell脚本, 例如

PS C:\Windows\system32>./1.ps1 (执行脚本)


GitHub 加速计划 / po / PowerShell
44.28 K
7.17 K
下载
PowerShell/PowerShell: PowerShell 是由微软开发的命令行外壳程序和脚本环境,支持任务自动化和配置管理。它包含了丰富的.NET框架功能,适用于Windows和多个非Windows平台,提供了一种强大而灵活的方式来控制和自动执行系统管理任务。
最近提交(Master分支:3 个月前 )
a1774fd9 3 个月前
5ad1f1d2 3 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐