Link to home
Start Free TrialLog in
Avatar of deklinm
deklinmFlag for United States of America

asked on

File Server Audit - Identify Stale Files

My file server is filled with tons of useless files dating back to the 1990's. In an effort to reduce monthly backup and disaster recovery costs I'd like to identify all files with a last access date older than (January1, 2012) and move them to secondary non-production disk storage. I'm running Windows 2008 on both of my file servers. What is the easiest way to locate all of the files that meet the above criteria?
ASKER CERTIFIED SOLUTION
Avatar of Leo
Leo
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Robocopy is your friend.  If your OS is Windows 2008, then robocopy is already part of your arsenal

Move files from <source> to <destination> if minimum last access date (minlad) is 1/2/2012:
robocopy <source> <destination> /minlad:20120102  /move /e

robocopy /? for more switches and syntax
Here are some examples:
http://social.technet.microsoft.com/wiki/contents/articles/1073.robocopy-and-a-few-examples.aspx