3
For a very specific situation on a project, I need to make a Windows machine know about some specific settings at the BIOS(such as Enabled/Disabled PXE boot, Boot Sequence, Bios Version, and more....). I'm thinking in doing this with powershell, VBScript, or whatever(actually doesn't matter how, I just need to read these settings from Windows).
I'm reseaching this and found nothing for now, there is a way(maybe a indirect one)?
2BIOS version can be found with
systeminfo | findstr BIOS
in the command prompt. I imagine other settings would be somewhat BIOS specific, i.e. depending on the brand/version. – Bob – 2012-04-13T12:45:42.420I found a lot of settings at regedit->HKLM\HardwarezDescription\System\BIOS. However, it have just Bios Version too. – Diogo – 2012-04-13T12:47:54.617
2
WMI can read much of this too. http://msdn.microsoft.com/en-us/library/windows/desktop/aa394077(v=vs.85).aspx
– uSlackr – 2012-04-13T12:53:15.757@uSlackr - Actually only BIOS version too. – Diogo – 2012-04-13T12:54:41.677