powershell - Serbipunk/notes GitHub Wiki
list largest files
gci -r| sort -descending -property length | select -first 10 name, length
https://4sysops.com/archives/finding-large-files-with-powershell/
gci -r| sort -descending -property length | select -first 10 name, length
https://4sysops.com/archives/finding-large-files-with-powershell/