PS get large files

Get-ChildItem c:\ -r -ErrorAction SilentlyContinue –Force |sort -descending -property length | select -first 10 name, DirectoryName, @{Name="MB";Expression={[Math]::round($_.length / 1MB, 2)}}

Larger than certain size:

$size=500*1024*1024
GCi C:\ -recurse -ErrorAction SilentlyContinue –Force | where-object {$_.length -gt $size} | Sort-Object length | ft fullname

More articles

Docker networking :)

Docker networking is just awesome. -if you enjoy networking. Especially check out the IPVLAN L3 functionality, it is really nice. Learn

Read More »