如何制作系统垃圾清理程序
- 提问者网友:温旧梦泪无声
- 2021-05-08 15:05
- 五星知识达人网友:想偏头吻你
- 2021-05-08 16:43
@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\*.*"
echo 清除系统垃圾完成!
echo. & pause
- 1楼网友:从此江山别
- 2021-05-08 18:28
用记事本打开 把以下代码粘上去 然后保存为后缀为.bat的文件即可运行清理工作
@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 %systemdrive%\$Recycle.Bin\*.* 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%\AppData\Roaming\Microsoft\Internet Explorer\UserData\*.*" del /f /s /q "%userprofile%\AppData\Local\Temp\*.*" del /f /s /q "%userprofile%\recent\*.*" echo asdfgh echo. & pause
- 2楼网友:罪歌
- 2021-05-08 18:10
用360就好的哇