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

我做错了什么?


当前回答

如果您安装了Git,只需使用GitBash。

其他回答

在Windows中打开命令提示符。如果问题仅与PowerShell有关,请使用以下命令:

powershell Set-ExecutionPolicy -Scope "CurrentUser" -ExecutionPolicy "RemoteSigned"

“无法加载,因为在此系统上禁用了运行脚本”的解决方案:如何启用此系统错误时禁用运行脚本?要解决此问题,我们必须设置执行策略,以便PowerShell脚本在特定计算机上运行。此处允许执行PowerShell脚本:

通过选择“以管理员身份运行”打开PowerShell控制台,并使用以下命令获取执行策略:GetExecutionPolicy以获取应用的当前策略,例如“受限”。使用以下命令设置执行策略:Set ExecutionPolicy RemoteSigned当提示继续时,键入“Y”。

我遇到了类似的问题,并注意到Windows Server 2012上的默认cmd运行的是x64版本。

对于Windows 11、Windows 10、Windows 7、Windows 8、Windows Server 2008 R2或Windows Server 2012,请以管理员身份运行以下命令:

x86(32位)打开C:\Windows\SysWOW64\cmd.exe运行命令powershell Set ExecutionPolicy RemoteSigned

x64(64位)打开C:\Windows\system32\cmd.exe运行命令powershell Set ExecutionPolicy RemoteSigned

您可以使用检查模式

在CMD中:echo%PROCESSOR_ARCHITECURE%在Powershell中:[Environment]::Is64BitProcess

参考文献:MSDN-Windows PowerShell执行策略Windows-32位vs 64位目录说明

如果您在这里是因为使用Ruby或Chef运行它并使用“”系统执行,请执行如下操作:

`powershell.exe -ExecutionPolicy Unrestricted -command [Environment]::GetFolderPath(\'mydocuments\')`

该命令用于获取“MyDocuments”文件夹。

-ExecutionPolicy Unrestricted就是这样。

我希望这对其他人有帮助。

打开Windows PowerShell命令窗口并运行以下查询以更改ExecutionPolicy:

设置ExecutionPolicy-ExecutionPolicy RemoteSigned-作用域CurrentUser

如果要求确认更改,请按Y键并按Enter键。