Search found 1 match

by urbanetz
Mon Jun 24, 2002 8:48 am
Forum: In-depth High-tech BIOS section
Topic: Who know how read Bios information on Win2000/Xp
Replies: 2
Views: 4437

:)

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