Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 powershell 以表格形式格式化非 powershell 命令的输出。
我正在使用“集群资源”远程检索集群资源的状态,但无法在此服务器上加载 Powershell 集群模块。
当然 - 您应该能够在 PowerShell 中运行可执行文件,并将命令的输出发送到管道,像使用任何其他对象一样使用它。 .\poorlyformatted.exe | % {$_ | .. do some formatting per line...}
.\poorlyformatted.exe | % {$_ | .. do some formatting per line...}
如果命令的输出不使用标准输出,你就会遇到麻烦。