>>Will need to write (or find) code to do this on 6.x. > >dir /s \path\to\imailbox\tree\*.mbx | sort > >.... will at least print the oldest last-modified dates at the top.
I would suggest the following: dir \path\to\imailbox\tree\*.mbx /s /a-d /od [Lists all *.mbx files sorted by date/time (oldest first) and suppresses listing of directories] >dir /s /+25 /R \path\to\imailbox\tree\*.mbx | sort > >.... "might" get the biggest .mbx files at the top. (untested) This won't work as "/+25" and "/R" are parameters to the SORT program. Try this instead: dir \path\to\imailbox\tree\*.mbx /s /a-d /o-s [Lists all *.mbx files sorted by size (largest first) and suppresses listing of directories] >Len -- Guy Isabel <[EMAIL PROTECTED]> Please visit http://www.ipswitch.com/support/mailing-lists.html to be removed from this list. An Archive of this list is available at: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/ Please visit the Knowledge Base for answers to frequently asked questions: http://www.ipswitch.com/support/IMail/
