Hello,
You can get some BIOS informations with that WMI call:
Get-WmiObject -Class Win32_Bios -ComputerName SOFSR2Node2
You can pipe that to “Get-Member” or use MSDN to get all available properties.
Hereunder an example with some useful properties :
Get-WmiObject -Class Win32_Bios -ComputerName SOFSR2Node2,2k12r2 | Select-Object Manufacturer,Version,SerialNumber,PSComputerName,Description