2

以下行在 powershell 2.0 中运行良好。

servermanagercmd.exe -query | Select-String "Application Server" -Context 0,13

但是当我将它合并到我的批处理文件中时,它只会尝试运行第一部分,然后在到达 Select-String 时返回错误。有谁知道如何确保它读取整行?我在管道之前尝试了 ^,但它仍然无法识别整行。

4

1 回答 1

8

您正在尝试使用 cmd.exe 中的 PowerShell 内置命令之一,但这不起作用。但是,您可以从 .bat 文件执行 PowerShell,并传入您要执行的命令:

powershell.exe -command "& { servermanagercmd.exe -query | Select-String 'Application Server' -Context 0,13 }"
于 2013-01-23T18:15:54.933 回答