cool in just these two replys I've learned loads of info! thanks.
tr
"Hal Rottenberg" wrote:
> On Aug 14, 10:48 am, tonyr <to...@discussions.microsoft.com> wrote:
> > ls c:\ -rec | where {$_.mode -like "d*"} | foreach
> > {$di.getfolder($_.fullname).size/1024/1024}
> >
> > $di = fso
>
> $objFSO = New-Object -com scripting.filesystemobject
> $dirs = ls c:\ -rec | where { $_.PSIsContainer } # Another way to get
> the directories
> $dirs | % { "$($_.fullname) $($objFSO.getfolder($_).size/1024/1024)" }
>
> I imagine there's prettier ways to do this. 
>
>