请教高手:在网吧中,internet选项锁了,如何删除cookies?

来源:百度知道 编辑:UC知道 时间:2024/06/18 12:30:57

网吧中为了防止病毒等破坏机器,一般都装有还原软件,因此只要进行系统重启,就可以删除cookies文件,但如果不想进行系统重启的话,可以用批处理清除,格式如下:
@echo off
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
del /f /s /q %userprofile%\COOKIES\*.*
rd /s /q %windir%\temp & md %windir%\temp
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
del /f /q %systemdrive%\recycled\*.*
sfc /purgecache '清理系统盘