三:分析一下这个批处理的含义
@echo off (不显示后续命令及当前命令行)
echo 正在清除系统lj文件,请稍等...... (屏幕显示“正在清除系统lj文件,请稍等......”)
del /f /s /q %systemdrive%\*.tmp (强行删除系统算在磁盘根目录中扩展名为.tmp的文件)
del /f /s /q %systemdrive%\*._mp (强行删除系统算在磁盘根目录中扩展名为._mp的文件)
del /f /s /q %systemdrive%\*.log (强行删除系统算在磁盘根目录中扩展名为.log的文件)
del /f /s /q %systemdrive%\*.gid (强行删除系统算在磁盘根目录中扩展名为.gid的文件)
del /f /s /q %systemdrive%\*.chk (强行删除系统算在磁盘根目录中扩展名为.chk的文件)
del /f /s /q %systemdrive%\*.old (强行删除系统算在磁盘根目录中扩展名为.old的文件)
del /f /s /q %systemdrive%\recycled\*.* (清空回收站,如果回收站清空了,这一句其实也派不上用处的)
del /f /s /q %windir%\*.bak (强行删除当前启动的系统的所在目录中扩展名为.bak的文件)
del /f /s /q %windir%\prefetch\*.* (强行删除当前启动的系统的所在目录中prefetch文件夹中的所有文件)
rd /s /q %windir%\temp & md %windir%\temp (将系统中的temp文件夹删除后再新建一个temp文件夹)
del /f /q %userprofile%\cookies\*.* (删除当前用户文件夹中cookies文件夹中的所有文件)
del /f /q %userprofile%\recent\*.* (删除当前用户文件夹中recent文件夹中的所有文件)
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*" (删除当前用户文件夹中Local Settings\Temporary Internet Files\中的所有文件)
del /f /s /q "%userprofile%\Local Settings\Temp\*.*" (删除当前用户文件夹中Local Settings\Temp\中的所有文件)
del /f /s /q "%userprofile%\recent\*.*" (删除当前用户文件夹中recent文件夹中的所有文件)
echo 清除系统lj完成! (屏幕显示“清除系统lj完成!”)
echo. & pause (屏幕显示“Press any key to continue...”)注:echo.的作用是使屏幕上回显一空行
四:批处理的延伸
cls
@echo off
@echo 删除没用的系统墙纸...
DEL "%systemroot%\Blue Lace 16.bmp"
DEL "%systemroot%\Coffee Bean.bmp"
DEL "%systemroot%\FeatherTexture.bmp"
DEL "%systemroot%\Gone Fishing.bmp"
DEL "%systemroot%\Greenstone.bmp"
DEL "%systemroot%\Prairie Wind.bmp"
DEL "%systemroot%\Rhododendron.bmp"
DEL "%systemroot%\River Sumida.bmp"
DEL "%systemroot%\Santa Fe Stucco.bmp"
DEL "%systemroot%\Soap Bubbles.bmp"
DEL "%systemroot%\Zapotec.bmp"
DEL "%systemroot%\Web\Wallpaper\Crystal.jpg"
DEL "%systemroot%\Web\Wallpaper\Friend.jpg"
DEL "%systemroot%\Web\Wallpaper\Home.jpg"
DEL "%systemroot%\Web\Wallpaper\Moon flower.jpg"
DEL "%systemroot%\Web\Wallpaper\Peace.jpg"
DEL "%systemroot%\Web\Wallpaper\Power.jpg"
DEL "%systemroot%\Web\Wallpaper\Purple flower.jpg"
DEL "%systemroot%\Web\Wallpaper\Radiance.jpg"
DEL "%systemroot%\Web\Wallpaper\Ripple.jpg"
DEL "%systemroot%\Web\Wallpaper\Stonehenge.jpg"
DEL "%systemroot%\Web\Wallpaper\Vortec space.jpg"
DEL "%systemroot%\Web\Wallpaper\Ascent.jpg"
DEL "%systemroot%\Web\Wallpaper\Autumn.jpg"
DEL "%systemroot%\Web\Wallpaper\Azul.jpg"
DEL "%systemroot%\Web\Wallpaper\Follow.jpg"
DEL "%systemroot%\Web\Wallpaper\Red moon desert.jpg"
DEL "%systemroot%\Web\Wallpaper\Tulips.jpg"
DEL "%systemroot%\Web\Wallpaper\Wind.jpg"
@echo
@echo 删除不用的快捷方式...
DEL "%systemdrive%\Documents and Settings\All Users\「开始」菜单\Windows Update.lnk"
DEL "%systemdrive%\Documents and Settings\All Users\「开始」菜单\设定程序访问和默认值.lnk"
DEL "%systemdrive%\Documents and Settings\All Users\「开始」菜单\Windows Catalog.lnk"
move "C:\Documents and Settings\All Users\「开始」菜单\程序\Windows Movie Maker.lnk" "C:\Documents and Settings\All Users\「开始」菜单\程序\附件"
@echo
@echo 删除屏幕保护...
DEL "%systemroot%\system32\dllcache\scrnsave.scr"
DEL "%systemroot%\system32\dllcache\ss3dfo.scr"
DEL "%systemroot%\system32\dllcache\ssbezier.scr"
DEL "%systemroot%\system32\dllcache\ssflwbox.scr"
DEL "%systemroot%\system32\dllcache\ssmarque.scr"
DEL "%systemroot%\system32\dllcache\ssmypics.scr"
DEL "%systemroot%\system32\dllcache\ssmyst.scr"
DEL "%systemroot%\system32\dllcache\sspipes.scr"
DEL "%systemroot%\system32\dllcache\ssstars.scr"
DEL "%systemroot%\system32\dllcache\sstext3d.scr"
DEL "%systemroot%\system32\scrnsave.scr"
DEL "%systemroot%\system32\ss3dfo.scr"
DEL "%systemroot%\system32\ssbezier.scr"
DEL "%systemroot%\system32\ssflwbox.scr"
DEL "%systemroot%\system32\ssmarque.scr"
DEL "%systemroot%\system32\ssmypics.scr"
DEL "%systemroot%\system32\ssmyst.scr"
DEL "%systemroot%\system32\sspipes.scr"
DEL "%systemroot%\system32\ssstars.scr"
DEL "%systemroot%\system32\sstext3d.scr"
@echo 全部删除。.结束
pause