I needed a way a few years back to clean up a folder that users kept saving backups into. They would save 2-3 GB worth of backups there a week, on a small server, that filled it up fast, Enter ForFiles

This little app (built in on most machines) looks @ the folder, checks the dates, and deletes anything older

forfiles /p d:temp /d –7/m *.* /C “cmd /C del @path /Q”

Change the Path, and the Date range to what you need.

« »