我正在尝试运行从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。
我做错了什么?
如果您所处的环境不是管理员,则可以仅为您(当前用户)设置执行策略,而不需要管理员。
您可以将其设置为RemoteSigned:
Set-ExecutionPolicy -Scope "CurrentUser" -ExecutionPolicy "RemoteSigned"
或不受限制:
Set-ExecutionPolicy -Scope "CurrentUser" -ExecutionPolicy "Unrestricted"
您可以在帮助条目中阅读有关获取和设置执行策略的所有信息:
Help Get-ExecutionPolicy -Full
Help Set-ExecutionPolicy -Full
我们可以通过以下命令获取当前ExecutionPolicy的状态:
Get-ExecutionPolicy
默认情况下,它是受限的。为了允许执行PowerShell脚本,我们需要将此ExecutionPolicy设置为Unrestricted或Bypass。
我们可以使用以下任何PowerShell命令将当前用户的策略设置为绕过:
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted -Force
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Bypass -Force
无限制策略加载所有配置文件并运行所有脚本。如果您运行的是从Internet下载的未签名脚本,则会在运行前提示您获得许可。
而在Bypass策略中,在脚本执行过程中不会阻止任何内容,也不会出现任何警告或提示。BypassExecutionPolicy比Unrestricted更宽松。
如果您使用的是Windows Server 2008 R2,则存在x64和x86版本的PowerShell,这两个版本都必须设置执行策略。您是否在两台主机上都设置了执行策略?
作为管理员,您可以通过在PowerShell窗口中键入以下内容来设置执行策略:
Set-ExecutionPolicy RemoteSigned
有关详细信息,请参阅使用Set ExecutionPolicy Cmdlet。
完成后,可以使用以下方法将策略设置回其默认值:
Set-ExecutionPolicy Restricted
您可能会看到一个错误:
Access to the registry key
'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell' is denied.
To change the execution policy for the default (LocalMachine) scope,
start Windows PowerShell with the "Run as administrator" option.
To change the execution policy for the current user,
run "Set-ExecutionPolicy -Scope CurrentUser".
因此,您可能需要运行如下命令(如注释所示):
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser