Listar archivos segun tamaño en PowerShell - simple

PHOTO EMBED

Mon Jun 03 2024 14:37:03 GMT+0000 (Coordinated Universal Time)

Saved by @RobertoSilvaZ #powershell #windows11 #system #performance

Get-ChildItem -Path C:\ -Recurse -File -ErrorAction SilentlyContinue | Where-Object { $_.Length -gt 100MB } | Sort-Object Length -Descending | Select-Object FullName, Length | Format-Table -AutoSize
content_copyCOPY