I want to rename Product :
to Motherboard :
My code:
Get-WmiObject win32_baseboard | Format-List Product,Manufacturer
Output:
Product : Nitro N50-600(DCH)
Manufacturer : Acer
You can rename the property in PowerShell with a calculated property expression:
Get-WmiObject win32_baseboard | Format-List @{Name='MotherBoard';Expression='Product'},Manufacturer
In this case, we're telling Format-List
to calculate a new property Motherboard
, the value of which it should take from the existing Product
property