Skip to content

Instantly share code, notes, and snippets.

@lholman
Created March 20, 2015 16:18
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 lholman/b2e66adecbe397dd7397 to your computer and use it in GitHub Desktop.
Save lholman/b2e66adecbe397dd7397 to your computer and use it in GitHub Desktop.
Get-FolderSize usage
Get-ChildItem -path D:\TeamCity\system\artifacts -Filter "bla*" | Where {$_.PSIsContainer -eq $true} | ForEach-Object {$_.FullName} | Get-FolderSize
#https://gallery.technet.microsoft.com/scriptcenter/Get-FolderSize-b3d317f5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment