Question How do i know the version and kind of my laptop screen/ monitor ?

ashtekaros

Reputable
Jan 29, 2019
147
0
4,580
Three questions :

1) how do i know the SPECIFIC version/kind of my screen/ monitor ?

2) is knowing the version of the notebook screen important or any notebook screen will work? i can see the that the current screen is a macbook pro. although the operational system i use is windows 10.

3) the problem the notebook screen is having is that it has white spots symilar to bubbles. is this problem fixable or s it a physical problem that will demand a screen change ?

thanks
 

Ralston18

Titan
Moderator
Perhaps Powershell.

Reference:

http://support.moonpoint.com/os/windows/PowerShell/monitor_mfg.php

I do not have a laptop but the script worked on my desktop:

= = Results = =


PS C:\WINDOWS\system32> function Decode {
> If ($args[0] -is [System.Array]) {
> [System.Text.Encoding]::ASCII.GetString($args[0])
> }
> Else {
> "Not Found"
> }
> }
>
> ForEach ($Monitor in Get-WmiObject WmiMonitorID -Namespace root\wmi) {
> $Manufacturer = Decode $Monitor.ManufacturerName -notmatch 0
> $Name = Decode $Monitor.UserFriendlyName -notmatch 0
> $Serial = Decode $Monitor.SerialNumberID -notmatch 0
> $ManufactureWeek = (Get-WmiObject WmiMonitorID -Namespace root\wmi).WeekofManufacture
> $ManufactureYear = (Get-WmiObject WmiMonitorID -Namespace root\wmi).YearOfManufacture
>
> echo "Manufacturer: $ManufacturernName: $NamenSerial Number: $Serial"
> echo "Week of Manufacture: $ManufactureWeek"
> echo "Year of Manufacture: $ManufactureYear"
> }
Manufacturer: VSC
Name: VX2452 Series
Serial Number: TVT143701022
Week of Manufacture: 37
Year of Manufacture: 2014
PS C:\WINDOWS\system32>
 

ashtekaros

Reputable
Jan 29, 2019
147
0
4,580
it did not work . when i place the command at powershell :

gwmi WiMonitorID -Namespace root\wmi at


--------------------------------------------------------------------
a message of error appears:

gwmi : Classe inválida "WiMonitorID"
No linha:1 caractere:2
  • gwmi WiMonitorID -Namespace root\wmi
  • ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidType: :)) [Get-WmiObject], ManagementException
+ FullyQualifiedErrorId : GetWMIManagementException,Microsoft.PowerShell.Commands.GetWmiObjectCommand