find large top 10 files and directories on windows powershell code example
Example: powershell list big files
gci -r| sort -descending -property length | select -first 10 name, length
gci -r| sort -descending -property length | select -first 10 name, length