Szukaj na tym blogu

poniedziałek, 13 lipca 2015

PowerShell list of folders size

Sample script

$c = gc .\ListOfDisabled.txt
foreach ($el in $c) {
$col = (Get-ChildItem $el -recurse | Measure-Object -Property Length -sum)
if ($col.sum -gt 1000000) {
$el
"{0:N2}" -f ($col.sum / 1MB)
}
}

Brak komentarzy:

Prześlij komentarz