PowerShell – BIOS Version

Looking to see what the current BIOS version is by running the following PowerShell script.
This provides Manufacturer, version and the release date
$bios = Get-CimInstance -ClassName CIM_BIOSElement $bios | Select-Object Manufacturer, Version, ReleaseDate