Windows 哪些临时文件夹重启就能消失的?
- 提问者网友:难遇难求
- 2021-07-29 18:30
- 五星知识达人网友:佘樂
- 2021-07-29 20:08
将下面的代码保存下来,另存为**.bat文件(**为随意名字,你可以随便命名如:垃圾.bat), 点击该bat文件就可以了。很好用 基本日常垃圾文件都可以清理。
======================================================================
echo off
echo 欢迎使用一键垃圾清理系统"高级版"
echo 请关闭其它所有运行的程序
echo 按任意键继续...
pause
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
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%\servicepackfiles\*.*
del /f /s /q %windir%\prefetch\*.*
del /f /s /q %windir%\driver cache\i386\*.*
del /f /s /q %windir%\softwaredistribution\download\*.*
del /f /s /q %windir%\$NtUninstal*.*
rd /s /q %windir%\temp & md %windir%\temp
del /f /s /q "%userprofile%\小甜饼s\*.*
del /f /s /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\*.*"
del /f /s /q "%userprofile%\Local Settings\History\*.*"
echo 清除系统垃圾完成,谢谢使用!
echo. & pause