-
March 11th, 2003, 03:37 AM
#1
How to Delete Cookies, Recent files, history,applog and temporary files using DELTREE
[gloworange]This is a simple tutorial on how to delete all cookies, internet temporary files, history, recent files and applogs using Deltree command. The sample below will show you how to do it. Just cut and paste it in your text editing tools and save it with an extension of <filename.bat>[/gloworange]
rem ===================================
@ECHO OFF
IF EXIST C:\WINDOWS\RECENT\*.* DELTREE /Y C:\WINDOWS\RECENT\*.*
IF EXIST C:\WINDOWS\COOKIES\*.* DELTREE /Y C:\WINDOWS\COOKIES\*.*
IF EXIST C:\WINDOWS\HISTORY\*.* DELTREE /Y C:\WINDOWS\HISTORY\*.*
IF EXIST C:\WINDOWS\APPLOG\*.* DELTREE /Y C:\WINDOWS\APPLOG\*.*
IF EXIST C:\RECYCLED\*.* DELTREE /Y C:\RECYCLED\*.*
IF EXIST C:\WINDOWS\TEMP\*.* 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\*.*
ECHO ***********************
ECHO [email protected]
ECHO COPYRIGHT -=[H2cKcR2D35T 2003]=-
ECHO ****************************
cls
rem ===================================
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|