Skip to content

Instantly share code, notes, and snippets.

@mgreenegit
Created September 30, 2015 20:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgreenegit/ca130bc642736d316a44 to your computer and use it in GitHub Desktop.
Save mgreenegit/ca130bc642736d316a44 to your computer and use it in GitHub Desktop.
Mem
function Get-AvailableMemory {
$Mem = '' | Select AvailableMemory
$Mem.AvailableMemory = Get-Counter '\Memory\Available MBytes' | % CounterSamples | % CookedValue
return $Mem
}
New-Alias Mem Get-AvailableMemory -Scope Global
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment