Technology Questions

Go Back   Technology Questions > Software Questions > Operating System Questions > Windows XP

Windows XP Discuss the Microsoft Windows XP Operating System

Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old 01-04-2007, 03:50 AM
pmaths@gmail.com
Newsgroup Contributor
 
Posts: n/a
Output file search results to text file "Is this possible".

Is there a application or a way I can get a file search to out put it's
results to a txt file.

Basically - I have a mapped drive to a location on one of our windows
2000 servers. I want to be able to search on this mapped drive "inc
sub dirs" for all files that have not been accessed prior to 06/11/05
and to output the file name / directory structure to a text file. I
don't want to copy the file just list the file name and directory
structure.

If anyone can offer up advice on an application I can use or a dos
script I can run, I would appreciate it.

Cheers

Pete

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

 
Old 01-04-2007, 03:50 AM
  #2 (permalink)  
Old 01-04-2007, 03:51 AM
Jon
Newsgroup Contributor
 
Posts: n/a
Re: Output file search results to text file "Is this possible".



The reason I decided to write that, was mainly because <pmaths******.com>
wrote in message
news:1162830851.064534.41550@m73g2000cwd.googlegro ups.com...
> Is there a application or a way I can get a file search to out put it's
> results to a txt file.
>
> Basically - I have a mapped drive to a location on one of our windows
> 2000 servers. I want to be able to search on this mapped drive "inc
> sub dirs" for all files that have not been accessed prior to 06/11/05
> and to output the file name / directory structure to a text file. I
> don't want to copy the file just list the file name and directory
> structure.
>
> If anyone can offer up advice on an application I can use or a dos
> script I can run, I would appreciate it.
>
> Cheers
>
> Pete
>


This command line would go most of the way - listing files not accessed
prior to the start of December 2005, which may be sufficient. Otherwise
you'll need a specially written longer script, if you want things more
precise.

dir /ta /od /s /a-d x: | find /v /i "/2006" | find /v /i "12/2005" | find /v
/i "File(s)" >oldfileslist.txt

(replacing x: with the mapped drive letter in question)

--
Jon

There is no royal road to learning

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #3 (permalink)  
Old 01-04-2007, 03:52 AM
Ramesh, MS-MVP
Newsgroup Contributor
 
Posts: n/a
Re: Output file search results to text file "Is this possible".

Hi Pete,

Adding to Jon:

See:

How to print Windows XP Search results to a file ?:
http://windowsxp.mvps.org/searchresults.htm

--
Regards,

Ramesh Srinivasan, Microsoft MVP [Windows XP Shell/User]
Windows® XP Troubleshooting http://www.winhelponline.com


<pmaths******.com> wrote in message
news:1162830851.064534.41550@m73g2000cwd.googlegro ups.com...
Is there a application or a way I can get a file search to out put it's
results to a txt file.

Basically - I have a mapped drive to a location on one of our windows
2000 servers. I want to be able to search on this mapped drive "inc
sub dirs" for all files that have not been accessed prior to 06/11/05
and to output the file name / directory structure to a text file. I
don't want to copy the file just list the file name and directory
structure.

If anyone can offer up advice on an application I can use or a dos
script I can run, I would appreciate it.

Cheers

Pete


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #4 (permalink)  
Old 01-04-2007, 03:52 AM
pmaths@gmail.com
Newsgroup Contributor
 
Posts: n/a
Re: Output file search results to text file "Is this possible".

Hi - Thanks for the response guys - I've gone with sysexp "works a
treat".

Cheers!!!


Ramesh, MS-MVP wrote:
> Hi Pete,
>
> Adding to Jon:
>
> See:
>
> How to print Windows XP Search results to a file ?:
> http://windowsxp.mvps.org/searchresults.htm
>
> --
> Regards,
>
> Ramesh Srinivasan, Microsoft MVP [Windows XP Shell/User]
> Windows® XP Troubleshooting http://www.winhelponline.com
>
>
> <pmaths******.com> wrote in message
> news:1162830851.064534.41550@m73g2000cwd.googlegro ups.com...
> Is there a application or a way I can get a file search to out put it's
> results to a txt file.
>
> Basically - I have a mapped drive to a location on one of our windows
> 2000 servers. I want to be able to search on this mapped drive "inc
> sub dirs" for all files that have not been accessed prior to 06/11/05
> and to output the file name / directory structure to a text file. I
> don't want to copy the file just list the file name and directory
> structure.
>
> If anyone can offer up advice on an application I can use or a dos
> script I can run, I would appreciate it.
>
> Cheers
>
> Pete


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #5 (permalink)  
Old 01-04-2007, 03:52 AM
Ramesh, MS-MVP
Newsgroup Contributor
 
Posts: n/a
Re: Output file search results to text file "Is this possible".

You're welcome!

--
Regards,

Ramesh Srinivasan, Microsoft MVP [Windows XP Shell/User]
Windows® XP Troubleshooting http://www.winhelponline.com


<pmaths******.com> wrote in message
news:1162900515.279490.17990@k70g2000cwa.googlegro ups.com...
Hi - Thanks for the response guys - I've gone with sysexp "works a
treat".

Cheers!!!


Ramesh, MS-MVP wrote:
> Hi Pete,
>
> Adding to Jon:
>
> See:
>
> How to print Windows XP Search results to a file ?:
> http://windowsxp.mvps.org/searchresults.htm
>
> --
> Regards,
>
> Ramesh Srinivasan, Microsoft MVP [Windows XP Shell/User]
> Windows® XP Troubleshooting http://www.winhelponline.com
>
>
> <pmaths******.com> wrote in message
> news:1162830851.064534.41550@m73g2000cwd.googlegro ups.com...
> Is there a application or a way I can get a file search to out put it's
> results to a txt file.
>
> Basically - I have a mapped drive to a location on one of our windows
> 2000 servers. I want to be able to search on this mapped drive "inc
> sub dirs" for all files that have not been accessed prior to 06/11/05
> and to output the file name / directory structure to a text file. I
> don't want to copy the file just list the file name and directory
> structure.
>
> If anyone can offer up advice on an application I can use or a dos
> script I can run, I would appreciate it.
>
> Cheers
>
> Pete



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows XP file search: "Search Tape Backup" Mister.Fred.Ma@gmail.com Windows XP 0 12-03-2007 11:10 AM
Get windows search results in a text file Mike D Windows XP 3 09-04-2007 05:40 PM
How to make the file search to find files by "text or property"? Dima Microsoft Office 17 05-15-2007 05:40 AM
"404 errors" and "search results" return incorrect data Joe Internet Explorer 1 05-06-2007 09:30 AM
"Insert", "Picture", "From File" - file types displayed? N N Microsoft Office 1 01-15-2007 11:18 AM


New To Technology Questions? Do You Need Help with Your Computer or Device? Do You Need Help with this site?

All times are GMT -8. The time now is 10:36 AM.


2003 - 2009 All Rights Reserved. Technology Questions

Search Engine Friendly URLs by vBSEO 3.3.0