我正在尝试运行从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。

我做错了什么?


当前回答

您可以使用特殊方式绕过它:

Get-Content "PS1scriptfullpath.ps1" | Powershell -NoProfile -

它将PowerShell脚本的内容通过管道传输到PowerShell.exe,并绕过执行策略执行它。

其他回答

设置执行策略是特定于环境的。如果您试图从正在运行的x86 ISE执行脚本,则必须使用x86 PowerShell设置执行策略。同样,如果您正在运行64位ISE,则必须使用64位PowerShell设置策略。

在Windows 7中:

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

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

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

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

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

您可以使用特殊方式绕过它:

Get-Content "PS1scriptfullpath.ps1" | Powershell -NoProfile -

它将PowerShell脚本的内容通过管道传输到PowerShell.exe,并绕过执行策略执行它。

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

Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned

在PowerShell ISE编辑器中,我发现运行以下第一行允许的脚本。

Set-ExecutionPolicy RemoteSigned -Scope Process