No, I mean Autoexec.bat file.
REM-----start cut here-------
@echo off
cd windows
deltree cookies /y
md cookies
deltree tempor~1 /y
deltree history /y
md history
REM------end cut here-------
Just cut and paste it in.
If you're unsure, and you want some user input for this, the whole thing can be written like this:
@echo off
cd windows
ECHO Now deleting the cookies
PAUSE
deltree cookies /y
ECHO Now remaking the cookies folder
PAUSE
md cookies
ECHO Now deleteing temporary internet files
PAUSE
deltree tempor~1 /y
ECHO Now deleting the history folder
PAUSE
deltree history /y
ECHO Now remaking the history folder
PAUSE
md history
That way you'll have to hit ENTER wherever you have the PAUSE, or you have the option to hit CTRL+C to abort the process. Cheers,
Jim