Forked from tomarbuthnot/gist:1c148a3ad09641f6313d
Created
November 30, 2020 03:04
-
-
Save nguyenl95/02e7b4d5734ea549b08d4827da9c3208 to your computer and use it in GitHub Desktop.
Sort Files by Size PowerShell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ChildItem -Path c:\ -Recurse | Sort-Object Length -Descending | Select-Object length,name,directory -First 100 | Format-Table -AutoSize |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment