How to find files larger than a specific size with PowerShell

PowerShell
With PowerShell you can also find files which are larger than a certain size. This can be accomplished with the command below. In this example we are looking for files larger than 100MB, on the C drive.
Get-ChildItem c:\ -Recurse | Where-Object {$_.Length -gt 100MB}