Page 1 of 1

Who know how read Bios information on Win2000/Xp

Posted: Thu May 16, 2002 10:57 am
by edwardhg
I tried to read Bios information from Win2000,but it was inhibit.Who can tell me how to do it. Thanks

Posted: Mon Jun 24, 2002 8:48 am
by urbanetz
:)

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

Thanks!!

Posted: Mon Jul 01, 2002 6:29 am
by edwardhg
Dear urbanetz,Thanks for your kindly help!!