带有双 {} 和 BCDEDIT 的 invoke-command -scriptblock 的问题

Issues with invoke-command -scriptblock with double {} and BCDEDIT

我正在尝试使用 powershell 提交 Windows BCD 更改。如果来自常规命令行的 运行,则 BCDEDIT 更改行如下所示:

bcdedit /set {default} recoveryenabled No

BCDEDIT 需要 运行 作为管理员,所以我有一个从计划任务调用的 powershell 脚本,脚本本身非常简单,如下所示:

invoke-command -scriptblock {start-process -Verb RunAS bcdedit /set {default} recoveryenabled No}

但是,当我 运行 时,我得到以下信息:

Invoke-Command : Parameter set cannot be resolved using the specified named    
parameters. At line:1 char:1

+ invoke-command "bcdedit /set {default} recoveryenabled No"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo          : InvalidArgument: (:) [Invoke-Command],      ParameterBindingException
+ FullyQualifiedErrorId :     AmbiguousParameterSet,Microsoft.PowerShell.Commands.InvokeCommandCommand

我假设我需要以某种方式包装 {default} 命令,因为它已经通过 -scriptblock 部分在 { } 中 - 我将如何继续?

我可能只使用普通的 DOS cmd 脚本,但我想使用 PowerShell,因为我喜欢日志记录 features/etc 并且我正在使用相同的脚本执行其他功能。

欧文

我把代码改成了这些,它起作用了。

Invoke-Command -ScriptBlock {Start-Process bcdedit -Verb RunAS -ArgumentList "/set {default} recoveryenabled NO"}

bcdedit/set {default} recoveryenabled No后面的一堆东西其实就是bcdedit的参数。您必须启动 bcdedit 的过程并将其余的东西作为其参数传递。

您可以改用 Invoke-Expression cmdlet。

invoke-command -scriptblock {Invoke-Expression "RunAS bcdedit /set {default} recoveryenabled No"}

PS。确保您使用的是正确的 RunAs 参数。