Liste les fichiers plus grands qu'une certaine taille

Liste des fichiers superieurs à une certaine taille

Batch

1forfiles /P C:\ /M *.* /S /C "CMD /C if @fsize gtr 524288000 echo @PATH @FSIZE"

Powershell

1Get-ChildItem C:\ -recurse | where-object {$_.length -gt 524288000} | Sort-Object length | ft fullname, length -auto

Nushell

1ls | where size > 10mb | sort modified