Who know how read Bios information on Win2000/Xp

you can read the BIOS information with vbscript.
Code: Select all
Set BIOSSet = GetObject("winmgmts:{impersonationLevel=impersonate}!//" & PCname & "/root/cimv2").ExecQuery("select * from Win32_BIOS")
For each BIOS in BIOSSet
msgbox BIOSSet.getObjectText_
Next