Windows Commands

From Stadm
Revision as of 10:32, 11 September 2014 by Stadm1 (talk | contribs) (Created page with "=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:\...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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}