L
Lance McGonigal
Thanks in advance for your help.
Does anyone know how to get a pc's BIOS settings?
Thanks
Does anyone know how to get a pc's BIOS settings?
Thanks
Lance McGonigal said:Does anyone know how to get a pc's BIOS settings?
Lance McGonigal said:I'm looking for something that shows which drives are enabled, boot
options, drive settings, etc.
Thanks in advance for your help.
Does anyone know how to get a pc's BIOS settings?
Thanks
RD said:Hi Lance,
Do you have to use VBA? The reason I ask is because Windows scripting
works
really well for this.
I recently had to do some automated inventory work on our computers. Below
is a
script that gets you BIOS info. All I needed was the serial number but
there
are plenty of other things available.
Hope it helps!
RD
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colSMBIOS = objWMIService.ExecQuery _
("Select * from Win32_SystemEnclosure")
For Each objSMBIOS in colSMBIOS
Wscript.Echo "Serial Number: " & objSMBIOS.SerialNumber
Next