Windows Commands
From Stadm
Jump to navigationJump to search
Helpful windows commands
FindingLargest Files
- in power shell run
Get-ChildItem c:\ -Recurse | Where-Object {$_.Length -gt 1000MB}
- can be abbreviated as well
gci c:\ -rec | where {$_.Length -gt 1000mb}