以下行在 powershell 2.0 中运行良好。
servermanagercmd.exe -query | Select-String "Application Server" -Context 0,13
但是当我将它合并到我的批处理文件中时,它只会尝试运行第一部分,然后在到达 Select-String 时返回错误。有谁知道如何确保它读取整行?我在管道之前尝试了 ^,但它仍然无法识别整行。
以下行在 powershell 2.0 中运行良好。
servermanagercmd.exe -query | Select-String "Application Server" -Context 0,13
但是当我将它合并到我的批处理文件中时,它只会尝试运行第一部分,然后在到达 Select-String 时返回错误。有谁知道如何确保它读取整行?我在管道之前尝试了 ^,但它仍然无法识别整行。