Exporting Search Results

  • Thread starter Thread starter Charlie
  • Start date Start date
C

Charlie

I must be missing something...
All I want to do is run a search on one of our servers for
all document types (*.*) that contain URL's to that server
AND return those results to a tab delimited csv file (or
even a plain text file if I have to.)
I've tried the Win2K resource kit tools Find and qgrep, as
well as attempting some VBScript (which I'm not good at).

Any ideas?

Thanks!
 
Charlie said:
I must be missing something...
All I want to do is run a search on one of our servers for
all document types (*.*) that contain URL's to that server
AND return those results to a tab delimited csv file (or
even a plain text file if I have to.)
I've tried the Win2K resource kit tools Find and qgrep, as
well as attempting some VBScript (which I'm not good at).

Check out the FREE Agent Ransack (not File Locator) at
http://www.mythicsoft.com. It does everything you want and
then some.
 
Charlie wrote in
I must be missing something...
All I want to do is run a search on one of our servers for
all document types (*.*) that contain URL's to that server
AND return those results to a tab delimited csv file (or
even a plain text file if I have to.)
I've tried the Win2K resource kit tools Find and qgrep, as
well as attempting some VBScript (which I'm not good at).

Any ideas?

Have you tried findstr.exe? I may not understand what you need but
think perhaps
findstr /s /m /c:<string> <StartDirectory>\* >outfile
might do.
 
Back
Top