DEV Community

hardyweb
hardyweb

Posted on

Powershell Search Big File

Run as admin.

Get-ChildItem -Path "C:\path" -Recurse -File | Where-Object { $_.Length -gt 1GB }
Enter fullscreen mode Exit fullscreen mode

Top comments (0)