| View previous topic :: View next topic |
| Author |
Message |
edwardhg New visitors - please read the rules.
Joined: 16 May 2002 Posts: 2
|
Posted: Thu May 16, 2002 8:57 am
Post subject: Who know how read Bios information on Win2000/Xp |
|
|
| I tried to read Bios information from Win2000,but it was inhibit.Who can tell me how to do it. Thanks
|
|
| Back to top |
|
 |
|
|
urbanetz New visitors - please read the rules.
Joined: 24 Jun 2002 Posts: 1
|
Posted: Mon Jun 24, 2002 6:48 am
Post subject: |
|
|
you can read the BIOS information with vbscript.
| Code: |
Set BIOSSet = GetObject("winmgmts:{impersonationLevel=impersonate}!//" & PCname & "/root/cimv2").ExecQuery("select * from Win32_BIOS")
For each BIOS in BIOSSet
msgbox BIOSSet.getObjectText_
Next
|
|
|
| Back to top |
|
 |
edwardhg New visitors - please read the rules.
Joined: 16 May 2002 Posts: 2
|
Posted: Mon Jul 01, 2002 4:29 am
Post subject: Thanks!! |
|
|
| Dear urbanetz,Thanks for your kindly help!!
|
|
| Back to top |
|
 |
|