一键清除系统垃圾批处理文件的制作方法
批处理文件怎么做先新建一个记事本文件,然后把下面这段代码复制到记事本里,保存为后缀名为.bat的批处理文件,例如clean.bat。然后双击运行它即可以清除系统垃圾。
源代码如下:
@echo off
echo 清空IE临时文件目录...
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
echo 正在清除系统临时文件 *.tmp *._tmp *.log *.chk *.old ,请稍等...
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
echo 清空垃圾箱,备份文件和预缓存脚本...
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
rem cooke和最近历史还是保留吧...
rem del /f /q %userprofile%\COOKIES s\*.*
rem del /f /q %userprofile%\recent\*.*
echo 清理系统盘无用文件...
%windir%\ /purgecache
echo 优化预读信息...
%windir%\ %systemdrive% -b
echo      *
echo    ***
echo    *****
echo  *******
echo 清除系统完成!
echo 本软件由廖道林制作!
echo    *****
echo    ***
echo      *
echo. & pause
                                        廖道林   
                                        2011.3.18

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。