mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
13 lines
329 B
PowerShell
13 lines
329 B
PowerShell
|
|
function Show-IcingaBiosData()
|
||
|
|
{
|
||
|
|
$BIOSInformation = Get-CimInstance Win32_BIOS;
|
||
|
|
[hashtable]$BIOSData = @{};
|
||
|
|
|
||
|
|
foreach ($bios_properties in $BIOSInformation) {
|
||
|
|
foreach($bios in $bios_properties.CimInstanceProperties) {
|
||
|
|
$BIOSData.Add($bios.Name, $bios.Value);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
return $BIOSData;
|
||
|
|
}
|