Add motherboard info

This commit is contained in:
Josh Willox
2020-12-23 19:58:16 +11:00
parent 5ec703568f
commit 54b6bdd179
+10
View File
@@ -245,6 +245,16 @@ function info_os {
}
# ===== MOTHERBOARD =====
function info_motherboard {
$motherboard = Get-CimInstance Win32_BaseBoard -CimSession $cimSession -Property Manufacturer,Product
return @{
title = "Motherboard"
content = "{0} {1}" -f $motherboard.Manufacturer, $motherboard.Product
}
}
# ===== TITLE =====
function info_title {
return @{