1)怎么样清除系统垃圾?清除系统垃圾文件的软件有很多,比如Windows优化大师。除了用软件,你也可以自制一个清除系统垃圾的“小程序”,简单清理一下系统垃圾文件。
2)制作方法是,在桌面新建一个文本文件,把下面的代码扔进去。点文件/另存为,把文件名设为“一键清除系统垃圾.bat”(注意,此文件的扩展名为.bat,是个批处理文件)。
3)清除系统垃圾的批处理文件,内容如下:
@echo off
echo:
echo ============================
echo 照牛排:www.ZhaoNiuPai.com
echo ============================
echo:
@echo off
echo 正在清理系统垃圾,请稍候...
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\*.*"
del /f /s /q "%userprofile%\recent\*.*"
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
rd /s /q "%userprofile%\Local Settings\Temp" & md "%userprofile%\Local Settings\Temp"
rd /s /q %windir%\temp & md %windir%\temp
echo:
echo 清理完成!
echo:
echo ============================
echo 照牛排:www.ZhaoNiuPai.com
echo ============================
echo:
echo. & pause
4)你也可以点此下载一键清除系统垃圾的批处理文件,下载解压后放好。以后想清理系统垃圾,双击一键清除系统垃圾.bat就行了。
转载请以链接的形式注明本文地址,若本文对你有帮助,欢迎本文地址:http://www.zhaoniupai.com/archives/109.html