我正在尝试运行从cmd.exe调用PowerShell脚本的cmd文件,但遇到以下错误:

无法加载Management_Install.ps1,因为在此系统上禁用了脚本的执行。

我运行了以下命令:

Set-ExecutionPolicy -ExecutionPolicy Unrestricted

当我从PowerShell运行Get-ExecutionPolicy时,它返回Unrestricted。

Get-ExecutionPolicy

输出:

Unrestricted

cd“C:\Projects\Microsoft.Practices.ESB\Source\Samples\Management Portal\Install\Scripts”powershell。\管理安装.ps1 1警告:正在运行x86 PowerShell。。。无法加载文件C:\Projects\Microsoft.Practices.ESB\Source\Samples\Management Portal\Install\Scripts\Management_Install.ps1,因为在此系统上禁用了脚本的执行。有关详细信息,请参阅“get-helpabout_signing”。第1行字符:25.\Management_Install.ps1<<<1类别信息:未指定:(:)[],PSSecurityExceptionFullyQualifiedErrorId:运行时异常C: \Projects\Microsoft.Practices.ESB\Source\Samples\Management Portal\Install\Scripts>PAUSE按任意键继续。


系统为Windows Server 2008 R2。

我做错了什么?


当前回答

尝试运行Set-ExecutionPolicy RemoteSigned时收到另一个警告

我用这个命令解决了

Set-ExecutionPolicy "RemoteSigned" -Scope Process -Confirm:$false

Set-ExecutionPolicy "RemoteSigned" -Scope CurrentUser -Confirm:$false

其他回答

在Windows 7中:

转到“开始”菜单并搜索“Windows PowerShell ISE”。

右键单击x86版本并选择“以管理员身份运行”。

在顶部,粘贴SetExecutionPolicy RemoteSigned;运行脚本。选择“是”。

对64位版本的Powershell ISE(非x86版本)也重复这些步骤。

我只是在澄清Chad Miller暗示的步骤。谢谢Chad!

您也可以使用以下命令绕过此问题:

powershell Get-Content .\test.ps1 | Invoke-Expression

您还可以阅读Scott Sutherland的这篇文章,其中介绍了如果您没有管理员权限,绕过PowerShell Set ExecutionPolicy的15种不同方法:

绕过PowerShell执行策略的15种方法

以管理员身份打开PowerShell并运行Set ExecutionPolicy-Scope CurrentUser提供RemoteSigned并按Enter键运行集执行策略-作用域CurrentUser提供无限制并按Enter键

您可以尝试此操作并选择“全部”选项

Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned

在PowerShell 2.0中,执行策略默认设置为禁用。

从那时起,PowerShell团队做了很多改进,他们相信用户在运行脚本时不会破坏很多东西。因此,从PowerShell 4.0开始,默认情况下会启用它。

在您的情况下,从PowerShell控制台键入Set-ExecutionPolicy RemoteSigned,然后说yes。