mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
16 lines
No EOL
414 B
PowerShell
16 lines
No EOL
414 B
PowerShell
function Show-IcingaCPUData()
|
|
{
|
|
|
|
$CPUInformation = Get-CimInstance Win32_Processor;
|
|
[hashtable]$PhysicalCPUData = @{};
|
|
|
|
foreach ($cpu_properties in $CPUInformation) {
|
|
$cpu_datails = @{};
|
|
foreach($cpu_core in $cpu_properties.CimInstanceProperties) {
|
|
$cpu_datails.Add($cpu_core.Name, $cpu_core.Value);
|
|
}
|
|
$PhysicalCPUData.Add($cpu_datails.DeviceID, $cpu_datails);
|
|
}
|
|
|
|
return $PhysicalCPUData;
|
|
} |