Last active
November 30, 2017 23:27
-
-
Save toburger/03866f831700e61e6c0d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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