Something like mail washer needed please

  • Thread starter Thread starter bdeditch
  • Start date Start date
B

bdeditch

I am looking for a cahe cleaner, temp folder cleaner, etc. Something
like mail washer. What is out there that is freeware?
 
bdeditch said:
I am looking for a cahe cleaner, temp folder cleaner, etc. Something
like mail washer. What is out there that is freeware?
To my knowledge mailwasher is an e-mail filter that effectively lets you
delete/bounce unwanted mail from your server.
For a cleaner I recommend Crapcleaner.
I have used it on all my machines for over a year with no problems.

http://www.ccleaner.com

Domsters
 
bdeditch said:
I am looking for a cahe cleaner, temp folder cleaner, etc. Something
like mail washer. What is out there that is freeware?

1. Copy everything between the lines of asterisks (but not the
asterisks)
2. Open Notepad and paste
3. Save the file with a descriptive name (I use "DumpAll")
4. Change the file extension to .bat
5. Execute it (or a shortcut to it)

If you want to delete the cache of other programs - ICQ for example -
just add another line following the same format as the others.

****************************
@ECHO OFF
IF EXIST C:\WINDOWS\RECENT\NUL DELTREE /Y C:\WINDOWS\RECENT\
IF EXIST C:\WINDOWS\HISTORY\*.* DELTREE /Y C:\WINDOWS\HISTORY\*.*
IF EXIST C:\WINDOWS\TEMP\NUL DELTREE /Y C:\WINDOWS\TEMP\
IF EXIST C:\WINDOWS\TEMPOR~1\CACHE1\*.* DELTREE /Y
C:\WINDOWS\TEMPOR~1\CACHE1\*.*
IF EXIST C:\WINDOWS\TEMPOR~1\CACHE2\*.* DELTREE /Y
C:\WINDOWS\TEMPOR~1\CACHE2\*.*
IF EXIST C:\WINDOWS\TEMPOR~1\CACHE3\*.* DELTREE /Y
C:\WINDOWS\TEMPOR~1\CACHE3\*.*
IF EXIST C:\WINDOWS\TEMPOR~1\CACHE4\*.* DELTREE /Y
C:\WINDOWS\TEMPOR~1\CACHE4\*.*
IF EXIST C:\WINDOWS\TEMPOR~1\*.* DELTREE /Y C:\WINDOWS\TEMPOR~1\*.*
IF EXIST "C:\WINDOWS\Local Settings\Temporary Internet
Files\Content.IE5"\CACHE1\*.* DELTREE /Y "C:\WINDOWS\Local
Settings\Temporary Internet Files\Content.IE5"\CACHE1\*.*
IF EXIST "C:\WINDOWS\Local Settings\Temporary Internet
Files\Content.IE5"\CACHE2\*.* DELTREE /Y "C:\WINDOWS\Local
Settings\Temporary Internet Files\Content.IE5"\CACHE2\*.*
IF EXIST "C:\WINDOWS\Local Settings\Temporary Internet
Files\Content.IE5"\CACHE3\*.* DELTREE /Y "C:\WINDOWS\Local
Settings\Temporary Internet Files\Content.IE5"\CACHE3\*.*
IF EXIST "C:\WINDOWS\Local Settings\Temporary Internet
Files\Content.IE5"\CACHE4\*.* DELTREE /Y "C:\WINDOWS\Local
Settings\Temporary Internet Files\Content.IE5"\CACHE4\*.*
IF EXIST "C:\WINDOWS\Local Settings\Temporary Internet
Files\Content.IE5"\*.* DELTREE /Y "C:\WINDOWS\Local Settings\Temporary
Internet Files\Content.IE5"\*.*
*************************************
--
dadiOH
____________________________

dadiOH's dandies v3.06...
....a help file of info about MP3s, recording from
LP/cassette and tips & tricks on this and that.
Get it at http://mysite.verizon.net/xico
 
dadiOH said:
1. Copy everything between the lines of asterisks (but not the
asterisks)
2. Open Notepad and paste


I forgot about line wrap in posts.

Each statement beginning with "IF EXIST..." needs to be on a complete
line. For the batch file to work you will have to go through the
wrapped lines and remove the extraneous carriage ("newline") returns
replacing them with a space.


dadiOH
____________________________

dadiOH's dandies v3.06...
....a help file of info about MP3s, recording from
LP/cassette and tips & tricks on this and that.
Get it at http://mysite.verizon.net/xico
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top