开始——程序——附件——记事本,打开电脑记事本。
@echo off
color 3b
title 清除XP系统垃圾工具
echo 正在清除系统垃圾文件,请稍等......
rem 提示部份软件卸载需LOG 文件,清理掉后就无法卸载
if exist "%windir%*.log" del /f /s /q "%windir%*.log" 2>nul
if exist "%systemdrive%*.log" del /f /s /q "%systemdrive%*.log" 2>nul
if exist "%systemdrive%*.tmp" del /f /s /q "%systemdrive%*.tmp" 2>nul
if exist "%systemdrive%*._mp" del /f /s /q "%systemdrive%*._mp" 2>nul
if exist "%systemdrive%*.gid" del /f /s /q "%systemdrive%*.gid" 2>nul
if exist "%systemdrive%*.chk" del /f /s /q "%systemdrive%*.chk" 2>nul
if exist "%systemdrive%*.old" del /f /s /q "%systemdrive%*.old" 2>nul
if exist "%systemdrive%*.ftg" del /f /s /q "%systemdrive%*.ftg" 2>nul
if exist "%systemdrive%*.fts" del /f /s /q "%systemdrive%*.fts" 2>nul
if exist "%systemdrive%*._mp" del /f /s /q "%systemdrive%*._mp" 2>nul
if exist "%systemdrive%*.syd" del /f /s /q "%systemdrive%*.syd" 2>nul
if exist "%systemdrive%*.ms" del /f /s /q "%systemdrive%*.ms" 2>nul
if exist "%systemdrive%*.diz" del /f /s /q "%systemdrive%*.diz" 2>nul
if exist "%systemdrive%*.??$" del /f /s /q "%systemdrive%*.??$" 2>nul
if exist "%systemdrive%*.??~" del /f /s /q "%systemdrive%*.??~" 2>nul
if exist "%systemdrive%*.$$$" del /f /s /q "%systemdrive%*.$$$" 2>nul
if exist "%systemdrive%*.~*" del /f /s /q "%systemdrive%*.~*" 2>nul
if exist "%systemdrive%*.@@@" del /f /s /q "%systemdrive%*.@@@" 2>nul
if exist "%systemdrive% ecycled*.*" del /f /s /q %systemdrive% ecycled*.* 2>nul
if exist "%windir%*.bak" del /f /s /q %windir%*.bak 2>nul
if exist "%windir%*.tmp" del /f /s /q %windir%*.tmp 2>nul
if exist "%windir%SoftwareDistributionDownload*.*" del /f /s /q %windir%SoftwareDistributionDownload*.* 2>nul
if exist "%systemroot% emp*.*" del /a /f /s /q "%systemroot% emp*.*" 2>nul
if exist "%systemroot%Prefetch*.*" del /a /f /s /q "%systemroot%Prefetch*.*" 2>nul
if exist "%systemroot%minidump*.*" del /f /q /s /a "%systemroot%minidump*.*" 2>nul
if exist "%systemroot%*.dmp" del /a /f /s /q "%systemroot%*.dmp" 2>nul
if exist "%systemroot%*.tmp" del /a /f /s /q "%systemroot%*.tmp" 2>nul
if exist "%systemroot%*._mp" del /a /f /s /q "%systemroot%*._mp" 2>nul
if exist "%systemroot%*.gid" del /a /f /s /q "%systemroot%*.gid" 2>nul
if exist "%systemroot%*.bak" del /a /f /s /q "%systemroot%*.bak" 2>nul
if exist "%systemroot%*.old" del /a /f /s /q "%systemroot%*.old" 2>nul
if exist "%systemroot%*.query" del /a /f /s /q "%systemroot%*.query" 2>nul
rd /s /q %windir% emp & md %windir% emp
if exist "%userprofile%Local SettingsTemp*.*" del /f /s /q "%userprofile%Local SettingsTemp*.*" 2>nul
if exist "%userprofile% ecent*.*" del /f /s /q "%userprofile% ecent*.*" 2>nul
if exist "%ALLUSERSPROFILE%DocumentsDrWatson*.*" del /f /q "%ALLUSERSPROFILE%DocumentsDrWatson*.*" 2>nul
if exist "%USERPROFILE%Application DataMicrosoftOfficeRecent*.lnk" del /f /q "%USERPROFILE%Application DataMicrosoftOfficeRecent*.lnk" 2>nul
rem echo 正在清理临时文件……
for /d %%a in ("%temp%*.*") do rd /s /q "%%a"
del /a /f /s /q "%temp%*.*" 2>nul
for /d %%a in ("%tmp%*.*") do rd /s /q "%%a"
del /a /f /s /q "%tmp%*.*" 2>nul
echo 正在清理系统升级补丁留下来的反安装目录……
for /f "tokens=1" %%i in ('dir %SystemRoot%$*$ /s /b /ad') do rd /s /q %%i
echo 正在正在清理IE缓存、cookies、历史纪录等(当前用户)...
reg query "HKCUsoftwareMicrosoftWindowsCurrentVersionExplorerShell Folders" /v Cache>vtemp.txt
reg query "HKCUsoftwareMicrosoftWindowsCurrentVersionExplorerShell Folders" /v Cookies>>vtemp.txt
reg query "HKCUsoftwareMicrosoftWindowsCurrentVersionExplorerShell Folders" /v History>>vtemp.txt
reg query "HKCUsoftwareMicrosoftWindowsCurrentVersionExplorerShell Folders" /v NetHood>>vtemp.txt
reg query "HKCUsoftwareMicrosoftWindowsCurrentVersionExplorerShell Folders" /v Recent>>vtemp.txt
for /f "tokens=3*" %%a in (vtemp.txt) do (
for /d %%i in ("%%a %%b*.*") do rd /s /q "%%i" 2>Nul
del /a /f /s /q "%%a %%b*.*" del /q vtemp.txt 2>Nul
)
echo 清除浏览器地址记录...
reg delete "HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerTypedUrls" /f 2>nul
REG ADD "HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerTypedUrls"
echo 清除运行记录...
reg delete "HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerRunMRU" /f 2>nul
REG ADD "HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerRunMRU" /v "MRUList" /t reg_sz /d "a" /f
pause >nul
goto exit
把以上编码复制黏贴到记事本中。
保存到桌面,文件名为清理系统缓存.bat,注意一定要用.bat后缀。文件类型:所有文件。
在桌面上双击此bat文件。
系统自动清理,很快即可清理完成。
内容来源:https://m.huguan123.com 虎观百科