I saw it mentioned something to the effect that "Deltree.exe" is no more.
Well, at least within the Windows XP community, that is far from correct.
Deltree.exe can be copied to XP from any earlier OS, like '98 or ME.
I even have it on my own web site, for an easy download.
But with the new functions built into the RD command, that's no longer necessary.
However, I too like Deltree and continue to use it in my own Cleanup batch files.
As for US old timers who just don't like JUNK forever building up on our hard drives, and sucking the life out of our PC's,
a cleanup batch file in the Startup folder is like FREE Maid Service for our PC's.
I've been using that means for keeping my PC nice and clean, Daily, for many years now. I share that technique with my customers. It really helps those who will never do their own maintenance.
The actual syntax has changed somewhat, since the windows 98 days, but the idea is the same.
Then with Vista, Win-7 and Win-8, where the Deltree command no longer works, I've modified my cleanup batch files to start with the DEL command.....like this:
del /F /S /Q "C:\temp\*.*"
del /F /S /Q "%systemroot%\temp\*.*"
That does essentially the same thing as using Deltree.
It's pointless to delete the actual 'temp' folder. Windows just has to remake it on the next boot. So don't just make extra work for windows when it's trying to boot up..... leave the 'temp' folder alone. (Take out the junk, but leave the folder)
If you go through your own hard drive and find every folder where windows or some other program stores junk files, and then add a line containing that folder to a batch file, your cleanup batch file will probably be as long or longer than mine.
Mine is currently about forty lines long.
Oh, I'm also deleting the contents of my AVG virus vault and my Recycle Bin.
I hate junk and I try to get rid of as much of it as is humanly possible. With the HD clean, lean and mean, scans and backups go just so much faster.
A batch file that you write yourself, can get the job done and be much safer than those 'do everything' cleanup programs like CCleaner.
Cheers Mates!
