Creating a report from Find results

  • Thread starter Thread starter Eric
  • Start date Start date
E

Eric

Is it possible to create a spreadsheet report from data
that I retrieved via a search? I'm searching for files
from the year 2001 on our public domain server, and
received 33000 returns. I want to view the data in report
form. Is this possible? Thanks in advance for any help.
Eric
 
In
Eric said:
Is it possible to create a spreadsheet report from data
that I retrieved via a search? I'm searching for files
from the year 2001 on our public domain server, and
received 33000 returns. I want to view the data in report
form. Is this possible? Thanks in advance for any help.
Eric

open a cmd prompt

type

cd \

dir *.* /s /od > test.txt

wait a while for the full machine to be scanned.

then in the root directory will be a txt file called test.txt

this is your directory listing of all files (oldest dates first)
that can be imported into Excel etc
 
Back
Top