在vista中用优化大师清理系统垃圾文件怎么总能查出垃圾文件,是怎么会事,该怎么解决
那台电脑都是如许的。因为只要你用电脑,电脑就会产生垃圾。你仍是本身编一个法式比力好用,将下面的内容复造下来用记事本保留起来,定名为“垃圾清理。bat”,放在桌面上,你想什么时候清理就什么时候清理,并且清理得干清洁净。比起什么巨匠、兔子、360等翻开软件需要破费时间的觉得爽多了。
@echo off
pause
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%
ecycled*。*
del /f /s /q %windir%*。
bak
del /f /s /q %windir%prefetch*。*
rd /s /q %windir% emp md %windir% emp
del /f /q %userprofile%cookies*。
del /f /q %userprofile%
ecent*。*
del /f /s /q "%userprofile%Local SettingsTemporary Internet Files*。
del /f /s /q "%userprofile%Local SettingsTemp*。*"
del /f /s /q "%userprofile%
ecent*。*"
echo 清理系统垃圾完成!
echo。
pause。
0