mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fixed ansible_totalmem fact returning 0
Win32_PhysicalMemory CIM object is busted on some virtual environments, switched to Win32_ComputerSystem.TotalPhysicalMemory
This commit is contained in:
parent
8eb04fe0d3
commit
45fff5d939
1 changed files with 2 additions and 4 deletions
|
@ -26,11 +26,9 @@ $result = New-Object psobject @{
|
|||
};
|
||||
|
||||
$win32_os = Get-CimInstance Win32_OperatingSystem
|
||||
$win32_cs = Get-CimInstance Win32_ComputerSystem
|
||||
$osversion = [Environment]::OSVersion
|
||||
$memory = @()
|
||||
$memory += Get-WmiObject win32_Physicalmemory
|
||||
$capacity = 0
|
||||
$memory | foreach {$capacity += $_.Capacity}
|
||||
$capacity = $win32_cs.TotalPhysicalMemory # Win32_PhysicalMemory is empty on some virtual platforms
|
||||
$netcfg = Get-WmiObject win32_NetworkAdapterConfiguration
|
||||
|
||||
$ActiveNetcfg = @(); $ActiveNetcfg+= $netcfg | where {$_.ipaddress -ne $null}
|
||||
|
|
Loading…
Reference in a new issue