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

我做错了什么?


当前回答

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

其他回答

对于Windows 11。。。

这确实很容易。只需打开设置应用程序。导航到隐私和安全:

单击For Developers并滚动到底部,找到PowerShell选项,在该选项下选中“Change the execution policy…remote scripts”(更改执行策略…远程脚本)复选框。

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

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

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

我正在使用Windows 10,无法运行任何命令。唯一能给我一些线索的命令是:

〔x64〕

以管理员身份打开C:\Windows\SysWOW64\cmd.exe运行命令>powershell Set ExecutionPolicy Unrestricted

但这并不奏效。这是有限的。可能是Windows10的新安全策略。我出现了以下错误:

Set ExecutionPolicy:Windows PowerShell已成功更新您的执行策略,但该设置被在更特定范围内定义的策略覆盖。由于重写,您的shell将保留其当前有效的执行策略。。。

所以我找到了另一种方法(解决方案):

打开运行命令/控制台(Win+R)类型:gpedit.msc(组策略编辑器)浏览到本地计算机策略->计算机配置->管理模板->Windows组件->Windows Powershell。启用“启用脚本执行”根据需要设置策略。我将我的设置为“允许所有脚本”。

现在打开PowerShell并享受;)

在窗口10中:

如果您不是管理员,可以使用此选项:

powershell Set-ExecutionPolicy -Scope CurrentUser

cmdlet Set-ExecutionPolicy at command pipeline position 1
Supply values for the following parameters:
ExecutionPolicy: `RemoteSigned`

它像符咒一样解决了我的问题!

我发现这一行最适合我的一台Windows Server 2008 R2服务器。其他一些人在我的PowerShell脚本中没有这行代码时没有问题:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Force -Scope Process