Hi Pavan,
You can get the monitor model from the UserFriendlyName property.
Get-WmiObject WmiMonitorID -Namespace root\wmi |
Select-Object @{l="Manufacturer";e={[System.Text.Encoding]::ASCII.GetString($_.ManufacturerName)}},
@{l="Model";e={[System.Text.Encoding]::ASCII.GetString($_.UserFriendlyName)}},
@{l="SerialNumber";e={[System.Text.Encoding]::ASCII.GetString($_.SerialNumberID)}}
Best Regards,
Ian Xue
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.