I tried the tool, however it doesn't give me the s/n for the monitor. It does display some of the monitor information, but I don't see a way in it to view the s/n or the EDID of the remote system.
Main Topics
Browse All TopicsDoes anyone know of a way or a tool that will allow me to pull all of the display information from all of the computers in my domain? I want to pull the EDID for the monitor so that I can search for the S/N in that data. However I haven't been able to find a tool yet that would allow me to pull all of the information from the computers in my domain.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
http://www.majorgeeks.com/
http://winventory.sourcefo
we use the 1st, aida, its a great tool.
Try this vbscript below from Michael Baird:
Here is the output from my machine:
Monitor A)
..........VESA Manufacturer ID= DEL
..........Device ID= 708A
..........Manufacture Date= 6/2000
..........Serial Number= 4512R068B0PG
..........Model Name= DELL M990
..........EDID Version= 1.2
You may have to clean it up a bit with an extra comment ' as the formatting has changed with copying ;-)
'The script reads and parses the monitor EDID information from the registry in order to 'retrieve 'asset information.
'Script:
''''''''''''''''''''''''''
' Monitor EDID Information'
''''''''''''''''''''''''''
'*************************
'17 June 2004
'coded by Michael Baird
'
'and released under the terms of GNU open source license agreement
'(that is of course if you CAN release code that uses WMI under GNU)
'
'Please give me credit if you use my code
'this code is based on the EEDID spec found at http://www.vesa.org
'and by my hacking around in the windows registry
'the code was tested on WINXP,WIN2K and WIN2K3
'it should work on WINME and WIN98SE
'It should work with multiple monitors, but that hasn't been tested either.
'*************************
'
'*************************
'It should be noted that this is not 100% reliable
'I have witnessed occasions where for one reason or another windows
'can't or doesn't read the EDID info at boot (example would be someone
'booting with the monitor turned off) and so windows changes the active
'monitor to "Default_Monitor"
'Another reason for reliability problems is that there is no
'requirement in the EDID spec that a manufacture include the
'serial number in the EDID data AND only EDIDv1.2 and beyond
'have a requirement that the EDID contain a descriptive
'model name
'That being said, here goes....
'*************************
'
'*************************
'Monitors are stored in HKLM\SYSTEM\CurrentControl
'
'Unfortunately, not only monitors are stored here Video Chipsets and maybe some other stuff
'is also here.
'
'Monitors in "HKLM\SYSTEM\CurrentContro
' HKLM\SYSTEM\CurrentControl
'Since not only monitors will be found under DISPLAY sub key you need to find out which
'devices are monitors.
'This can be deterimined by looking at the value "HardwareID" located
'at HKLM\SYSTEM\CurrentControl
'if the device is a monitor then the "HardwareID" value will contain the data "Monitor\<VESA_Monitor_ID>
'
'The next difficulty is that all monitors are stored here not just the one curently plugged in.
'So, if you ever switched monitors the old one(s) will still be in the registry.
'You can tell which monitor(s) are active because they will have a sub-key named "Control"
'*************************
'
strComputer="."
dim strarrRawEDID()
intMonitorCount=0
Const HKLM = &H80000002 'HKEY_LOCAL_MACHINE
'get a handle to the WMI registry object
Set oRegistry = GetObject("winmgmts:{imper
sBaseKey = "SYSTEM\CurrentControlSet\
'enumerate all the keys HKLM\SYSTEM\CurrentControl
iRC = oRegistry.EnumKey(HKLM, sBaseKey, arSubKeys)
For Each sKey In arSubKeys
'we are now in the registry at the level of:
'HKLM\SYSTEM\CurrentContro
'we need to dive in one more level and check the data of the "HardwareID" value
sBaseKey2 = sBaseKey & sKey & "\"
iRC2 = oRegistry.EnumKey(HKLM, sBaseKey2, arSubKeys2)
For Each sKey2 In arSubKeys2
'now we are at the level of:
'HKLM\SYSTEM\CurrentContro
'so we can check the "HardwareID" value
oRegistry.GetMultiStringVa
for tmpctr=0 to ubound(svalue)
if lcase(left(svalue(tmpctr),
'if it is a monitor we will check for the existance of a control subkey
'that way we know it is an active monitor
sBaseKey3 = sBaseKey2 & sKey2 & "\"
iRC3 = oRegistry.EnumKey(HKLM, sBaseKey3, arSubKeys3)
For Each sKey3 In arSubKeys3
if skey3="Control" then
'if the Control sub-key exists then we should read the edid info
oRegistry.GetBinaryValue HKLM, sbasekey3 & "Device Parameters\", "EDID", arrintEDID
if vartype(arrintedid) <> 8204 then 'and if we don't find it...
strRawEDID="EDID Not Available" 'store an "unavailable message
else
for each bytevalue in arrintedid 'otherwise conver the byte array from the registry into a string (for easier processing later)
strRawEDID=strRawEDID & chr(bytevalue)
next
end if
'now take the string and store it in an array, that way we can support multiple monitors
redim preserve strarrRawEDID(intMonitorCo
strarrRawEDID(intMonitorCo
intMonitorCount=intMonitor
end if
next
end if
next
Next
Next
'*************************
'now the EDID info for each active monitor is stored in an array of strings called strarrRawEDID
'so we can process it to get the good stuff out of it which we will store in a 5 dimensional array
'called arrMonitorInfo, the dimensions are as follows:
'0=VESA Mfg ID, 1=VESA Device ID, 2=MFG Date (M/YYYY),3=Serial Num (If available),4=Model Descriptor
'5=EDID Version
'*************************
dim arrMonitorInfo()
redim arrMonitorInfo(intMonitorC
dim location(3)
for tmpctr=0 to intMonitorCount-1
if strarrRawEDID(tmpctr) <> "EDID Not Available" then
'*************************
'first get the model and serial numbers from the vesa descriptor
'blocks in the edid. the model number is required to be present
'according to the spec. (v1.2 and beyond)but serial number is not
'required. There are 4 descriptor blocks in edid at offset locations
'&H36 &H48 &H5a and &H6c each block is 18 bytes long
'*************************
location(0)=mid(strarrRawE
location(1)=mid(strarrRawE
location(2)=mid(strarrRawE
location(3)=mid(strarrRawE
'you can tell if the location contains a serial number if it starts with &H00 00 00 ff
strSerFind=chr(&H00) & chr(&H00) & chr(&H00) & chr(&Hff)
'or a model description if it starts with &H00 00 00 fc
strMdlFind=chr(&H00) & chr(&H00) & chr(&H00) & chr(&Hfc)
intSerFoundAt=-1
intMdlFoundAt=-1
for findit = 0 to 3
if instr(location(findit),str
intSerFoundAt=findit
end if
if instr(location(findit),str
intMdlFoundAt=findit
end if
next
'if a location containing a serial number block was found then store it
if intSerFoundAt<>-1 then
tmp=right(location(intSerF
if instr(tmp,chr(&H0a))>0 then
tmpser=trim(left(tmp,instr
else
tmpser=trim(tmp)
end if
'although it is not part of the edid spec it seems as though the
'serial number will frequently be preceeded by &H00, this
'compensates for that
if left(tmpser,1)=chr(0) then tmpser=right(tmpser,len(tm
else
tmpser="Serial Number Not Found in EDID data"
end if
'if a location containing a model number block was found then store it
if intMdlFoundAt<>-1 then
tmp=right(location(intMdlF
if instr(tmp,chr(&H0a))>0 then
tmpmdl=trim(left(tmp,instr
else
tmpmdl=trim(tmp)
end if
'although it is not part of the edid spec it seems as though the
'serial number will frequently be preceeded by &H00, this
'compensates for that
if left(tmpmdl,1)=chr(0) then tmpmdl=right(tmpmdl,len(tm
else
tmpmdl="Model Descriptor Not Found in EDID data"
end if
'*************************
'next get the mfg date
'*************************
'the week of manufacture is stored at EDID offset &H10
tmpmfgweek=asc(mid(strarrR
'the year of manufacture is stored at EDID offset &H11
'and is the current year -1990
tmpmfgyear=(asc(mid(strarr
'store it in month/year format
tmpmdt=month(dateadd("ww",
'*************************
'next get the edid version
'*************************
'the version is at EDID offset &H12
tmpEDIDMajorVer=asc(mid(st
'the revision level is at EDID offset &H13
tmpEDIDRev=asc(mid(strarrR
'store it in month/year format
tmpver=chr(48+tmpEDIDMajor
'*************************
'next get the mfg id
'*************************
'the mfg id is 2 bytes starting at EDID offset &H08
'the id is three characters long. using 5 bits to represent
'each character. the bits are used so that 1=A 2=B etc..
'
'get the data
tmpEDIDMfg=mid(strarrRawED
Char1=0 : Char2=0 : Char3=0
Byte1=asc(left(tmpEDIDMfg,
Byte2=asc(right(tmpEDIDMfg
'now shift the bits
'shift the 64 bit to the 16 bit
if (Byte1 and 64) > 0 then Char1=Char1+16
'shift the 32 bit to the 8 bit
if (Byte1 and 32) > 0 then Char1=Char1+8
'etc....
if (Byte1 and 16) > 0 then Char1=Char1+4
if (Byte1 and 8) > 0 then Char1=Char1+2
if (Byte1 and 4) > 0 then Char1=Char1+1
'the 2nd character uses the 2 bit and the 1 bit of the 1st byte
if (Byte1 and 2) > 0 then Char2=Char2+16
if (Byte1 and 1) > 0 then Char2=Char2+8
'and the 128,64 and 32 bits of the 2nd byte
if (Byte2 and 128) > 0 then Char2=Char2+4
if (Byte2 and 64) > 0 then Char2=Char2+2
if (Byte2 and 32) > 0 then Char2=Char2+1
'the bits for the 3rd character don't need shifting
'we can use them as they are
Char3=Char3+(Byte2 and 16)
Char3=Char3+(Byte2 and 8)
Char3=Char3+(Byte2 and 4)
Char3=Char3+(Byte2 and 2)
Char3=Char3+(Byte2 and 1)
tmpmfg=chr(Char1+64) & chr(Char2+64) & chr(Char3+64)
'*************************
'next get the device id
'*************************
'the device id is 2bytes starting at EDID offset &H0a
'the bytes are in reverse order.
'this code is not text. it is just a 2 byte code assigned
'by the manufacturer. they should be unique to a model
tmpEDIDDev1=hex(asc(mid(st
tmpEDIDDev2=hex(asc(mid(st
if len(tmpEDIDDev1)=1 then tmpEDIDDev1="0" & tmpEDIDDev1
if len(tmpEDIDDev2)=1 then tmpEDIDDev2="0" & tmpEDIDDev2
tmpdev=tmpEDIDDev2 & tmpEDIDDev1
'*************************
'finally store all the values into the array
'*************************
arrMonitorInfo(tmpctr,0)=t
arrMonitorInfo(tmpctr,1)=t
arrMonitorInfo(tmpctr,2)=t
arrMonitorInfo(tmpctr,3)=t
arrMonitorInfo(tmpctr,4)=t
arrMonitorInfo(tmpctr,5)=t
end if
next
'For now just a simple screen print will suffice for output.
'But you could take this output and write it to a database or a file
'and in that way use it for asset management.
for tmpctr=0 to intMonitorCount-1
wscript.echo "Monitor " & chr(tmpctr+65) & ")"
wscript.echo ".........." & "VESA Manufacturer ID= " & arrMonitorInfo(tmpctr,0)
wscript.echo ".........." & "Device ID= " & arrMonitorInfo(tmpctr,1)
wscript.echo ".........." & "Manufacture Date= " & arrMonitorInfo(tmpctr,2)
wscript.echo ".........." & "Serial Number= " & arrMonitorInfo(tmpctr,3)
wscript.echo ".........." & "Model Name= " & arrMonitorInfo(tmpctr,4)
wscript.echo ".........." & "EDID Version= " & arrMonitorInfo(tmpctr,5)
next
Is there anything I can do remotely without having to load a vbs script or a tool on their machine? I was really hoping for a tool that would go and grab the data and then either dump it to a text file or I can update a database that would allow me to search it. Aida works well on my machine, but it doesn't seem to work so well at getting remote info. The VBS Script is nice, but I don't want to have to run this on everyone's machine.
Simply run it in a login script, then change the script to point to a file. Here is an example script I use to collect service pack level and pipe the results tto a file, liberally commented. Just created a files system object as below, then map a network drive to where you want to store the data. Then pipe the output from the vbscript above to the file.
On Error Resume Next
Const ForAppend = 8
strComputer = "."
'Check for file existance, if so quit.
Set objFSO = CreateObject("Scripting.Fi
If objFSO.FileExists ("c:\Windows\splevel.txt")
Wscript.Quit
End If
'Map Network drive Q: to \\ServerIP\vol1\nscripts
'Change to the IP address of your server
Set objNetwork = Wscript.CreateObject("Wscr
objNetwork.RemoveNetworkDr
objNetwork.MapNetworkDrive
'Open the file ScriptLog.txt for appending
Set objFile = objFSO.OpenTextFile("Q:\lo
'Connect to the Winmanagement Service
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=imper
'Get the Netware login name
Dim oShell
Set oShell = WScript.CreateObject( "WScript.Shell" )
uname = oShell.ExpandEnvironmentSt
objFile.WriteLine "Netware username is " & uname
'Get information from the WMI
Set colOSes = objWMIService.ExecQuery("S
For Each objOS in colOSes
objFile.WriteLine "Computer Name: " & objOS.CSName
objFile.WriteLine "Caption: " & objOS.Caption 'Name
objFile.WriteLine "Version: " & objOS.Version 'Version & build
objFile.WriteLine "Service Pack: " & objOS.ServicePackMajorVers
objOS.ServicePackMinorVers
objFile.WriteLine "*************************
Next
'Write Checkfile to hard drive
Set objCheckFile = objFSO.CreateTextFile("c:\
objCheckFile.Close
Set objCheckFile = objFSO.OpenTextfile("c:\wi
objcheckFile.Writeline "Check file for ServicePack level check routine; DO NOT DELETE!"
'Cleanup
objNetwork.RemoveNetworkDr
odjfile.Close
objCheckFile.Close
http://winventory.sourcefo
go to that site, yo need IIS, PHP and MySQL (all free, IIS is with windows)
follow the instructions and run
http://winventory.sourcefo
that link shows how to run remotely, you get a bunch of great info
Business Accounts
Answer for Membership
by: EE33Posted on 2006-03-13 at 16:08:44ID: 16179558
I am sure you don't have to go into the registry
AdvancedRe moteInfo_d 4488.html
to find the monitors serial number.
There is a free tool called "AdvancedRemoteInfo 0.6.4.2"
you can try here...
http://www.majorgeeks.com/