Bah humbug. PowerShell:

[EMAIL PROTECTED]
$files = get-childitem -recurse c:
foreach ($file in $files) { 
        if (!$file.PSIsContainer) { 
                $arr.($file.extension) += $file.length; 
        } 
}
$arr

Regards,

Michael B. Smith, MCITP:SA,EMA/MCSE/Exchange MVP
My blog: http://TheEssentialExchange.com/blogs/michael
Link with me at: http://www.linkedin.com/in/theessentialexchange


-----Original Message-----
From: Kurt Buff [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 01, 2008 12:03 PM
To: NT System Admin Issues
Subject: Re: Windirstat

Ah.

Yes, diruse won't do much for that. However, I don't know what will,
either, except perhaps a good script of some sort.

Perhaps the output of 'dir /s /b' could be massaged - sorted according
to file type and then file sizes tallied/summed. That would be an
interesting project.

Kurt

On Wed, Oct 1, 2008 at 5:58 AM, Kevin Lundy <[EMAIL PROTECTED]> wrote:
> Thanks for diruse.  Useful for something else!  However my current task is
> trying to analyze about 8T of files for data types in preparation of
> installing an enterprise search.  So I'm interested in the right side of
> windirstat - utilization per file type.  From my quick review of diruse I
> don't think I see that.
>
> Looks like I will just be manually transposing data from windirstat into
> excel.  Although I'm experimenting with sizemenow and it may do it.
>
> On Tue, Sep 30, 2008 at 5:15 PM, Kurt Buff <[EMAIL PROTECTED]> wrote:
>>
>> Sorry, no, I haven't found that either.
>>
>> I've found diruse.exe to be helpful for this, though.
>>
>> On Tue, Sep 30, 2008 at 1:25 PM, Kevin Lundy <[EMAIL PROTECTED]> wrote:
>> > Any WinDirStat users out there?  (http://windirstat.sourcefourge.net)
>> >
>> >
>> > Great little utility for analyzing disk utilization.  Has anyone
figured
>> > out
>> > how to export the results to a text or csv file?  I'd really like to
>> > export
>> > so I can then sort and compare various file share.  The only thing I
>> > have
>> > found is a screen capture.
>>
>> ~ Finally, powerful endpoint security that ISN'T a resource hog! ~
>> ~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~
>
>
>
>

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~

Reply via email to