2022-11-14 13:33:53 +01:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Checks BIOS details
|
|
|
|
|
.DESCRIPTION
|
|
|
|
|
This PowerShell script queries BIOS details and prints it.
|
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> ./check-bios
|
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
if ($IsLinux) {
|
|
|
|
|
# TODO
|
|
|
|
|
} else {
|
|
|
|
|
$BIOS = Get-CimInstance -ClassName Win32_BIOS
|
|
|
|
|
$Manufacturer = $BIOS.Manufacturer
|
|
|
|
|
$Model = $BIOS.Name
|
|
|
|
|
$SerialNumber = $BIOS.SerialNumber
|
|
|
|
|
$Version = $BIOS.Version
|
2022-11-28 09:13:01 +01:00
|
|
|
|
"✅ BIOS $Manufacturer $($Model): S/N $SerialNumber, version $Version"
|
2022-11-14 13:33:53 +01:00
|
|
|
|
}
|
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|