发布网友 发布时间:2022-04-20 01:51
共1个回答
热心网友 时间:2023-07-02 05:35
@echo off。
echo 正在清理系统垃圾文件,请稍等.。
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%\recycled\*.*。
del /f /s /q %windir%\*.bak。
del /f /s /q %windir%\prefetch\*.*。
rd /s /q %windir%\temp & md %windir%\temp。
del /f /q %userprofile%\cookies\*.*。
del /f /q %userprofile%\recent\*.*。
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"。
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"。
del /f /s /q "%userprofile%\recent\*.*"。
RD %TEMP% /S/Q 。
MKDIR %TEMP%。
echo 清理系统垃圾完成。
echo. & pause 。
@echo off 。
color 0a 。
title 清理WIN7系统垃圾 。
echo 正在清除系统垃圾文件,请稍后。
echo 删除补丁备份目录。
rd %windir%\$hf_mig$ /q /s 。
echo 把补丁卸载文件夹的名字保存成2950800.txt 。
dir %windir%\$NtUninstall* /a:d /b >%windir%\2950800.txt 。
echo 从2950800.txt中读取文件夹列表并且删除文件夹 。
for /f %%i in (%windir%\2950800.txt) do rd %windir%\%%i /s /q 。
echo 删除2950800.txt 。
del %windir%\2950800.txt /f /q 。
echo 删除补丁安装记录内容(下面的del /f /s /q %systemdrive%\*.log已经包含删除此类文件)。
del %windir%\KB*.log /f /q。