2024-10-01 15:11:03 +02:00
|
|
|
|
<#
|
2022-10-04 15:19:00 +02:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Lists motherboard details
|
|
|
|
|
.DESCRIPTION
|
|
|
|
|
This PowerShell script lists the motherboard details.
|
|
|
|
|
.EXAMPLE
|
2024-10-10 20:41:36 +02:00
|
|
|
|
PS> ./check-motherboard.ps1
|
|
|
|
|
✅ Motherboard Calla_LC by LN
|
2022-10-04 15:19:00 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
2024-10-01 15:33:53 +02:00
|
|
|
|
if ($IsLinux) {
|
|
|
|
|
} else {
|
|
|
|
|
$details = Get-WmiObject -Class Win32_BaseBoard
|
2024-10-10 20:41:36 +02:00
|
|
|
|
"✅ Motherboard $($details.Product) by $($details.Manufacturer)"
|
2024-10-01 15:33:53 +02:00
|
|
|
|
}
|
2022-10-04 15:19:00 +02:00
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
2023-08-06 21:35:36 +02:00
|
|
|
|
}
|