我想用 powershell 显示主板信息但更改参数名称输出

I want to show motherboard information with powershell but change a parameter name output

我想将 Product : 重命名为 Motherboard :

我的代码:

Get-WmiObject win32_baseboard | Format-List Product,Manufacturer

输出:

Product      : Nitro N50-600(DCH)
Manufacturer : Acer

您可以使用 计算的 属性 表达式 :

在 PowerShell 中重命名 属性
Get-WmiObject win32_baseboard | Format-List @{Name='MotherBoard';Expression='Product'},Manufacturer

在这种情况下,我们告诉 Format-List 计算一个新的 属性 Motherboard,它的值应该从现有的 Product 属性