@echo off echo 正在自动删除admin$管理共享和ipc$管道共享, net share admin$ /del net share IPC$ /del net share C$ /del net share D$ /del net share E$ /del net share F$ /del
echo 这里是 清理当前用户的Cookies,IE缓存,历史纪录等…… for /f "tokens=3*" %%i in (%temp%\cleantmp.txt) do ( for /d %%i in ("%%i %%b\*.*") do rd /q /s "%%i">Nul 2>Nul del /a /f /s /q "%%i %%b\*.*">Nul 2>Nul )
echo 这里清理系统临时垃圾文件…… del /a /f /s /q "%userprofile%\Locals~1\Tempor~1\*.*" >Nul 2>Nul del /a /f /s /q "%userprofile%\Locals~1\Temp\*.*" >Nul 2>Nul del /a /f /s /q "%userprofile%\cookies\*.*" >Nul 2>Nul del /a /f /s /q "%userprofile%\recent\*.*" >Nul 2>Nul del /a /f /s /q "%Temp%\*.*" >Nul 2>Nul del /a /f /s /q "%Tmp%\*.*" >Nul 2>Nul del /a /f /s /q "%HomePath%\..\IconCache.db" >Nul 2>Nul del /a /f /s /q "%SystemDrive%\driver?\*.pnf" >Nul 2>Nul del /a /f /s /q "%SystemDrive%\driver?\InfCache.1" >Nul 2>Nul del /a /f /s /q "%SystemRoot%\*._mp" >Nul 2>Nul del /a /f /s /q "%SystemRoot%\*.bak" >Nul 2>Nul del /a /f /s /q "%SystemRoot%\kb*.log" >Nul 2>Nul del /a /f /s /q "%SystemRoot%\*.dmp" >Nul 2>Nul del /a /f /s /q "%SystemRoot%\*.gid" >Nul 2>Nul del /a /f /s /q "%SystemRoot%\*.old" >Nul 2>Nul del /a /f /s /q "%SystemRoot%\*.query" >Nul 2>Nul del /a /f /s /q "%SystemRoot%\*.tmp" >Nul 2>Nul del /a /f /s /q "%SystemRoot%\inf\InfCache.1" >Nul 2>Nul del /a /f /s /q "%SystemRoot%\driver?\*.pnf" >Nul 2>Nul del /a /f /s /q "%SystemRoot%\driver?\InfCache.1" >Nul 2>Nul del /a /f /s /q "%SystemRoot%\inf\*.pnf" >Nul 2>Nul del /a /f /s /q "%SystemRoot%\minidump\*.*" >Nul 2>Nul del /a /f /s /q "%SystemRoot%\Prefetch\*.*" >Nul 2>Nul for %%i in (c d e f g h i j k l m n o p q r s t u v w x y z) do del /a /f /q %%i:\autorun.inf %%i:\*.exe rd /q /s %%i:\recycler %%i:\recycled rd /q /s "%ProgramFiles%\InstallShield Installation Information" >Nul 2>Nul rd /q /s "%systemdrive%\Documents and Settings\All Users\Documents\My BoBoTurbo" >Nul 2>Nul rd /q /s "%systemroot%\Connection Wizard" >Nul 2>Nul rd /q /s "%systemroot%\Downloaded Installations" >Nul 2>Nul rd /q /s "%SystemRoot%\Help" >Nul 2>Nul rd /q /s "%systemroot%\ie7updates" md "%systemroot%\ie7updates" >Nul 2>Nul rd /q /s "%SystemRoot%\Offline Web Pages" >Nul 2>Nul rd /q /s %SystemRoot%\system32\oobe rd /q /s "%SystemRoot%\system32\ReinstallBackups" >Nul 2>Nul rd /q /s "%SystemRoot%\SoftwareDistribution\Download" md "%SystemRoot%\SoftwareDistribution\Download" >Nul 2>Nul rd /q /s "%SystemRoot%\SoftwareDistribution\datastore" md "%SystemRoot%\SoftwareDistribution\datastore" >Nul 2>Nul rd /q /s "%SystemRoot%\SoftwareDistribution\EventCache" md "%SystemRoot%\SoftwareDistribution\EventCache" >Nul 2>Nul rd /q /s "%SystemRoot%\temp" md "%SystemRoot%\temp" >Nul 2>Nul
echo 这里是清理无用的磁盘检错文件…… del /a /f /q "%SystemDrive%\*.chk" >Nul 2>Nul dir %SystemDrive%\found.??? /ad/b >c:\临时垃圾.txt for /f %%i in (c:\临时垃圾.txt) do rd /q /s "%SystemDrive%\%%i" >Nul 2>Nul
echo 这里清理系统升级补丁留下来的反安装目录…… dir %SystemRoot%\$*$ /ad /b >c:\临时垃圾.txt for /f %%i in (c:\临时垃圾.txt) do rd /q /s "%SystemRoot%\%%i" >Nul 2>Nul