Command to get monitor model number and serial number

Pavan 20 Reputation points
2024-02-06T00:41:39.5633333+00:00

simple Command to get monitor model number and serial number just like below User's image

Windows for business Windows Server User experience PowerShell
{count} votes

Accepted answer
  1. Anonymous
    2024-02-06T04:47:11.31+00:00

    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.

    4 people found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.