Check out information on Windows Management Instrumentation a.k.a. WMI. You can use a SQL like query to get just about any information you need from things like the BIOS, CMOS, System Board, Operating System, etc. It can be used on Windows 98, ME, 2000, XP machines. For 98 you have to install the package. WMI is built in to XP and 2000.
set tmpObj = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & SystemName & "\root\cimv2".InstancesOf ("Win32_ComputerSystem"
for each tmpItem in tmpObj
MakeModel = trim(tmpItem.Manufacturer) & " " & trim(tmpItem.Model)
next
Set tmpObj = Nothing: Set tmpItem = Nothing
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.