Skip to content

Instantly share code, notes, and snippets.

@toburger
Last active November 30, 2017 23:27
Show Gist options
  • Save toburger/03866f831700e61e6c0d to your computer and use it in GitHub Desktop.
Save toburger/03866f831700e61e6c0d to your computer and use it in GitHub Desktop.
param ([string[]]$Computer = ".")
@($Computer) | % {
$c = $_
if ($c -eq '.') { $c = $env:COMPUTERNAME }
$os = get-wmiobject Win32_OperatingSystem -Computer $_
$physical = Get-WmiObject CIM_PhysicalMemory -Computer $_
$free = $os.FreePhysicalMemory
$total = $os.TotalVisibleMemorySize
$totalphysical = ($physical) | % { $t = 0 } { $t += $_.Capacity } { $t }
Write-Host -Foreground 'Cyan' $c
"Total Physical Memory: {0:N2} GB" -f ($totalphysical / 1GB)
"Used: {0:p0}" -f ((100 - (100 / $total * $free)) / 100)
"Free: {0:p0}" -f ((100 / $total * $free) / 100)
""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment