gpt4 book ai didi

c# - 如何在 C# 中处理 Powershell 格式列表输出

转载 作者:行者123 更新时间:2023-12-02 23:04:51 27 4
gpt4 key购买 nike

PowerShell psh = PowerShell.Create();
//psh.AddScript("Get-Service | Format-List -Property Name, Status");
psh.AddScript("Get-Service");

Collection<PSObject> result = psh.Invoke();

foreach (PSObject msg in result)
{
Console.WriteLine(msg.Properties["Name"].Value);
}

在上面的例子中,如果我单独使用“Get-Service”,我可以得到系统上服务的名称和状态。但是,如果我对“Get-Service | Format-List -Property Name, Status”使用相同的方法,则会出现异常。

最佳答案

当您在 PowerShell 中运行命令时,结果通常作为 CLR 对象返回。因此,您的 Get-Service 命令返回类型为 ServiceController 的对象,这就是您可以查询名称和状态的原因。

当您将输出传递给 Format-List 时,该命令会将对象转换为旨在显示信息的对象列表:如果您检查 Format-List 的结果 您会看到它是一个主要包含 FormatEntryData 对象的混合数组。知道了这一点,很明显您无法在 Format-List 的输出中找到 Status 属性:您不再拥有服务对象!

您可以通过运行这两个代码片段来查看差异,这将在您的结果中显示对象的类型:

Get-Service | % { $_.GetType().FullName }

Get-Service | Format-List | % { $_.GetType().FullName }

关于c# - 如何在 C# 中处理 Powershell 格式列表输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16708433/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com