Skip to content

Instantly share code, notes, and snippets.

@dvdfreitag
Last active May 15, 2017 18:00
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 dvdfreitag/f1a55b7aee6518a6c95f0d2384630b0e to your computer and use it in GitHub Desktop.
Save dvdfreitag/f1a55b7aee6518a6c95f0d2384630b0e to your computer and use it in GitHub Desktop.
Powershell script to get Chrome process statistics
# Chrome statistics
$chrome = Get-Process -ea silentlycontinue chrome
# Print statistics
Write-Host "$($chrome.count) instances, $(($chrome | Measure-Object PM -Sum).Sum / 1GB)GB"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment