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
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
Copyright © 2021 Jogjafile Inc.
You can rename the property in PowerShell with a calculated property expression:
In this case, we're telling
Format-List
to calculate a new propertyMotherboard
, the value of which it should take from the existingProduct
property