清理系统垃圾文需要用什么代码.docVIP

  • 3
  • 0
  • 约 8页
  • 2016-12-05 发布于河南
  • 举报
清理系统垃圾文需要用什么代码

清理系统垃圾文件需要用什么代码   电脑是需要定时维护以及清理垃圾文件的,如果嫌手动太麻烦的话,一般用代码也是可以清理成功的,今天小编就为大家准备了清理系统垃圾文件代码,希望大家可以去用用。   @echo off   ::修正于2007-09-12   color 2f   Title 系统垃圾文件清理器   echo.   echo =========================================================   echo ***** 系统垃圾文件清理器 *****   echo.   echo   echo =========================================================   echo.   echo 本程序特点   echo.   echo 鉴于很多人把IE缓存等文件夹转移到非系统盘,   echo 所以,本程序清理垃圾文件时,首先进行判断系   echo 统的设置。   echo.   echo 优点:清理位置更加准确,策略更加科学。   echo.   echo 开始执行清理……   echo.   echo 正在检查cookies、历史纪录等目录位置(当前用户)……   reg query HKCUsoftwareMicrosoftWindowsCurrentVersionExplorerShell Folders /v Cache%temp%cleantmp.txt   reg query HKCUsoftwareMicrosoftWindowsCurrentVersionExplorerShell Folders /v Cookies%temp%cleantmp.txt   reg query HKCUsoftwareMicrosoftWindowsCurrentVersionExplorerShell Folders /v History%temp%cleantmp.txt   reg query HKCUsoftwareMicrosoftWindowsCurrentVersionExplorerShell Folders /v NetHood%temp%cleantmp.txt   reg query HKCUsoftwareMicrosoftWindowsCurrentVersionExplorerShell Folders /v Recent%temp%cleantmp.txt   echo 正在清理Cookies、IE缓存、历史纪录等(当前用户)……   for /f tokens=3* %%a in (%temp%cleantmp.txt) do (   for /d %%i in (%%a %%b*.*) do rd /s /q %%i   del /a /f /s /q %%a %%b*.*   )  ::跟上面几项未必是重复的(!),也是对当前用户目录   echo 正在清理临时文件 (系统目录)……   del /a /f /s /q %userprofile%Locals~1Tempor~1*.*   del /a /f /s /q %userprofile%Locals~1Temp*.*   del /a /f /s /q %userprofile%cookies*.*   del /a /f /s /q %userprofile%recent*.*   del /a /f /s /q %Temp%*.*   del /a /f /s /q %Tmp%*.*   del /a /f /s /q %HomePath%..IconCache.db   echo 正在清理系统目录中的垃圾文件 (稍候,需要点时间)……   del /a /f /s /q %systemdrive%*._mp   del /a /f /s /q %systemdrive%*.log   del /a /f /s /q %systemdrive%*.dmp   del /a /f /s /q %systemdrive%*.gid   del /a /f /s /q %systemdrive%*.old   del /a /f /s /q %systemdrive%*.tmp   del /a /f /s /q %systemdrive%recycled*.*   del /a /f /s /q %SystemRoot%*.bak   del /a /f /s /q %SystemRoot%*.query   rd /s /q %SystemRoot%Downloaded Program Files   rd /s /q %

文档评论(0)

1亿VIP精品文档

相关文档