scheduled task

  • Thread starter Thread starter JMRegard
  • Start date Start date
J

JMRegard

I would like to schedule for my temporary internet files
and cookies to be deleted on a regular basis. I tried to
go through scheduled task and could not find anything
that looked like what I wanted. Can this be done? If so,
how?
 
you can create a batch file to run as a scheduled task.
you do this by creating a new text document. then inside
the text document type the following.

del /q C:\Documents and Settings\USERNAME\Local
Settings\Temporary Internet Files

the /q means that it won't ask you to delete then, it
will just delete them. (ex: are you sure you want to
delete...yes or no) the USERNAME is whatever profile you
are signed on under. This is the default pathname. just
put the location of where the files are you want to
delete. but just giving a folder directory, it deletes
all files within that directory. Then save this file as
delete.cmd or whatever you want to call it, as long as it
ends in .cmd then schedule that to run as often as you'd
like. it will delete all cookies and temp internet files
when it runs.

Josh
 
Back
Top