1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
| cls @echo off echo 系统垃圾清理 echo 包括IE,软件等等 echo Loading... 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%\*.syd del /f /s /q %systemdrive%\recycled\*.* del /f /s /q %windir%\*.bak echo 清理IE文件,软件等等 del /f /s /q %windir%\prefetch\*.* rd /s /q %windir%\temp & md %windir%\temp del /f /s /q %windir%\temp\*.* del /f /s /q "%appdata%\Microsoft\Windows\cookies\*.*" del /f /q %userprofile%\recent\*.* del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*" del /f /s /q "%userprofile%\AppData\Local\Microsoft\Windows\Temporary Internet Files\*.*" del /f /s /q "%userprofile%\Local Settings\Temp\*.*" del /f /s /q "%userprofile%\recent\*.*" del /f /s /q %windir%\SoftwareDistribution\Download\*.* del /f /s /q "%appdata%\Microsoft\Windows\Recent\*.*" rd /s /q "%userprofile%\Local Settings\Temp\" & md "%userprofile%\Local Settings\Temp\" del /f /s /q "%userprofile%\Application Data\PPStream\*.*" del /f /s /q "%userprofile%\AppData\Roaming\PPStream\*.*" del /f /s /q "%userprofile%\AppData\Roaming\TheWorld\data\*.*" del /f /s /q "%userprofile%\Application Data\PPLive\*.*" del /f /s /q "%userprofile%\AppData\Roaming\PPLive\*.*" del /f /s /q "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\*.*" del /f /s /q "%windir%\Offline Web Pages\*.* del /f /s /q "%userprofile%\UpdateData\*.*" del /f /s /q "%userprofile%\Application Data\QQUpdate\*.*" del /f /s /q "%ProgFile%\Thunder Network\Thunder\Program\Update\*.*" rd /s /q "%ProgramFiles%\Tencent\QQGame\Download" del /a /f /s /q "%ProgramFiles%\Kaspersky Lab\*.tmp" del /a /f /s /q "%HOMEDRIVE%\Users\Public\Recorded TV\*.*" del /a /f /s /q "%HOMEDRIVE%\Users\Public\Pictures\*.*" del /a /f /s /q "%HOMEDRIVE%\Users\Public\Music\*.*" del /a /f /s /q "%HOMEDRIVE%\Users\Public\Videos\*.*" del /f /s /q "%systemdrive%\Documents and Settings\All Users\Application Data\PPLive\*.*" rd /s /q "%systemdrive%\Documents and Settings\All Users\Application Data\thunder_vod_cache\" del /f /s /q "%systemdrive%\Documents and Settings\All Users\Application Data\thunder_dctemp\*.*" del /f /s /q "%systemdrive%\Documents and Settings\Application Data\Kaspersky Lab\AVP8\Data\*.*" del /a /f /s /q "%HOMEDRIVE%\pragramdata\All Users\Application Data\Kaspersky Lab\AVP8\*.*" del /f /s /q "%userprofile%\AppData\Local\Microsoft\Windows Photo Gallery\Original Images\*.*" del /f /s /q "%userprofile%\AppData\Roaming\Kingsoft\KavRep\*.*" del /f /s /q "%systemdrive%\Documents and Settings\All Users\Application Data\Kingsoft\KavRep\*.*" del /f /s /q "%userprofile%\AppData\Roaming\Kingsoft\office6\backup\*" del /f /s /q "%systemdrive%\Documents and Settings\All Users\Application Data\Microsoft\Search\*.*" del /f /s /q "%systemdrive%\Documents and Settings\All Users\Application Data\Microsoft\Windows Defender\Backup\*.*" del /f /s /q "%ProgramFiles%\Microsoft Security Essentials\Backup\*.*" del /a /f /s /q "%userprofile%\Application Data\SogouPY\sgim_ext.bin" del /f /s /q "%userprofile%\AppData\LocalLow\SogouPY\sgim_ext.bin" del /a /f /s /q "%systemdrive%\Documents and Settings\All Users\Application Data\Microsoft\Microsoft Antimalware\LocalCopy\*.*" del /a /f /s /q "%systemdrive%\Documents and Settings\All Users\Application Data\Microsoft\Windows Defender\LocalCopy\*.*" del /a /f /s /q "%HOMEDRIVE%\Users\Public\Thunder Network\Thunder_A30B0AF7-D81B-464e-B4E4-4B6DF996FB46_\*.*" del /a /f /s /q "%HOMEDRIVE%\Users\Public\Thunder Network\thunder_DEF2CF18-A4A5-468A-ADE3-B410C49964BC_\Temp\*.*" del /a /f /s /q "%HOMEDRIVE%\Users\Public\Thunder Network\Thunder_xmp\*.*" del /a /f /q "%SystemDrive%\WINDOWS\Tasks\SogouImeMgr.job" exit
|