It would be helpful to report the BIOS Version in Advanced Analytics.
We use this query, to do custom compliance policies based on the BIOS Version and it would be nice to see e.g. a Pie Chart with BIOS Version & Device Model to validate the BIOS Distribution among our fleet, before enforcing a new version in our compliance policies:
$WMI_BIOS = Get-WMIObject -class Win32_BIOS
$hash = @{ BiosVersion = $WMI_BIOS.SMBIOSBIOSVersion;}
return $hash | ConvertTo-Json -Compress