1.

Solve : Here is a bat file code that makes your pc faster!?

Answer»

here is a bat code that clears all history and cookies on your pc.{makes it FASTER}:
Code: [Select]
cls
@ECHO OFF
ECHO. ***********************************
ECHO. ** Clean Cookies and Temp Files **
ECHO. ** Will not work in NT **
ECHO. *******************************
deltree /y c:\WINDOWS\cookies\*.*
deltree /y c:\windows\tempor~1\*.*
deltree /y c:\progra~1\Netscape\Users\default\Cache\*.jpg
deltree /y c:\progra~1\Netscape\Users\default\Cache\*.gif
deltree /y c:\progra~1\Netscape\Users\default\Cache\*.htm
deltree /y c:\progra~1\Netscape\Users\default\archive\*.htm
deltree /y c:\progra~1\Netscape\Users\default\archive\*.gif
deltree /y c:\progra~1\Netscape\Users\default\archive\*.jpg
deltree /y c:\windows\temp\*.*
deltree /y c:\temp\*.*
deltree /y c:\windows\Recent\*.*
deltree /y c:\recycled\*.*
cls
EXIT

paste it into a notpad document and SAVE it on your desktop as "junksquash.bat". Then double click on it to use!!(please reply if it helps)!!DELTREE does not EXIST on all flavors of Windows and not all users have Netscape installed. A better approach would be a script that queries what browser is used and then take any appropriate action.

The DELTREE COMMAND has been replaced by the DEL command and the /s switch in some editions of Windows. Complications arise when an application is not installed in the default directory. A well written script would need to follow the installation path to know where various files are located.

Just my 2¢ worth. sorry
sidewinder (I was wondering why it says you're a computer expert?)I used this and it hhelped me out a little bit more and I have win98.



Discussion

No Comment Found