mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
13 lines
No EOL
329 B
PowerShell
13 lines
No EOL
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;
|
|
} |