Auto-Del!

  • Thread starter Thread starter KejiaLi
  • Start date Start date
K

KejiaLi

As it known to us, it is not safe to leave personal info on public computer.
So, I have to do the same action when I shutdown the computer every
time:click "Tools"--"Internet Opinion" in order to delete Internet Cookies.
I hope the action will be automation when I shutdown the computer.I know
perhaps there require an small script.
I wrote:
@echo off
del C:\Documents and Settings\root\Local Settings\Temporary Internet Files
But when I run this script, some errors occour:System can not find the path!
Why? Who can help me?
Thanks so much!
 
KejiaLi said:
As it known to us, it is not safe to leave personal info on public computer.
So, I have to do the same action when I shutdown the computer every
time:click "Tools"--"Internet Opinion" in order to delete Internet Cookies.
I hope the action will be automation when I shutdown the computer.I know
perhaps there require an small script.
I wrote:
@echo off
del C:\Documents and Settings\root\Local Settings\Temporary Internet Files
But when I run this script, some errors occour:System can not find the path!
Why? Who can help me?
Thanks so much!

Surround your folder & file name with double quotes (") so that
Windows "knows" that this is one long name and not several
short names.

What makes you think that the cookies are in the location
indicated? I would expect them to be in
"C:\Documents and Settings\root\cookies"!
 
Back
Top