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 Server PowerShell
Windows Server PowerShell
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.PowerShell: A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
5,600 questions
{count} votes

Accepted answer
  1. Ian Xue 38,851 Reputation points Microsoft Vendor
    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.

    3 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.