Who know how read Bios information on Win2000/Xp

Only for programmers and BIOS gurus with technical questions.
Post Reply
edwardhg
New visitors - please read the rules.
Posts: 2
Joined: Thu May 16, 2002 10:53 am

I tried to read Bios information from Win2000,but it was inhibit.Who can tell me how to do it. Thanks
urbanetz
New visitors - please read the rules.
Posts: 1
Joined: Mon Jun 24, 2002 8:43 am

:)

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
edwardhg
New visitors - please read the rules.
Posts: 2
Joined: Thu May 16, 2002 10:53 am

Dear urbanetz,Thanks for your kindly help!!
Post Reply