运行以下代码并不能正常清理Temporary Internet Files文件夹
@echo off
echo 开始清除电脑里的垃圾文件,请稍等......
del /f /s /q "d:\Temporary Internet Files\*.*"
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 /a /f /s /q "D:\System Volume Information\*.*"
del /a/f/s/q "e:\System Volume Information\*.*"
del /a/f/s/q "f:\System Volume Information\*.*"
del /a/f/s/q "g:\System Volume Information\*.*"
del /a/f/s/q "h:\System Volume Information\*.*"
del /a/f/s/q "j:\System Volume Information\*.*"
del /a/f/s/q "i:\System Volume Information\*.*"
rd /s/q "D:\System Volume Information"
rd /s/q "e:\System Volume Information"
rd /s/q "f:\System Volume Information"
rd /s/q "g:\System Volume Information"
rd /s/q "h:\System Volume Information"
rd /s/q "j:\System Volume Information"
rd /s/q "i:\System Volume Information"
echo 已清电脑里的垃圾文件,请按任意键退出
echo. & pause
Last edited by haibo327 on 2007-8-9 at 03:19 PM ]