Skip to content

Instantly share code, notes, and snippets.

@akramarev
Last active January 29, 2016 11:01
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 akramarev/94c843f5967557da94f2 to your computer and use it in GitHub Desktop.
Save akramarev/94c843f5967557da94f2 to your computer and use it in GitHub Desktop.
Windows disk space, allocation, directories size
Get-ChildItem | Where-Object { $_.PSIsContainer } | ForEach-Object { $_.Name + ": " + "{0:N2}" -f ((Get-ChildItem $_ -Recurse | Measure-Object Length -Sum -ErrorAction SilentlyContinue).Sum / 1MB) + " MB" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment