这个是什么意思呀
- 提问者网友:浪荡绅士
- 2021-08-01 07:01
@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 清除系统LJ完成!
echo. & pause
- 五星知识达人网友:动情书生
- 2021-08-01 07:39
@echo off
echo 正在清除系统垃圾文件,请稍等...... //界面显示文字 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp //删除系统盘下以tmp扩展名的文件[tmp为临时文件,无用]
del /f /s /q %systemdrive%\*._mp //删除系统盘下以_mp扩展名的文件
del /f /s /q %systemdrive%\*.log //删除系统盘下以log扩展名的文件[log日志文件,无用]
del /f /s /q %systemdrive%\*.gid //删除系统盘下以gid扩展名的文件
del /f /s /q %systemdrive%\*.chk //删除系统盘下以chk扩展名的文件
del /f /s /q %systemdrive%\*.old //删除系统盘下以old扩展名的文件
del /f /s /q %systemdrive%\recycled\*.* //删除回收站的所有文件
del /f /s /q %windir%\*.bak //删除所有以bak为扩展名的备份文件
del /f /s /q %windir%\prefetch\*.* // 删除windows预读文件
rd /s /q %windir%\temp & md %windir%\temp //删除临时文件夹里的所有文件
del /f /q %userprofile%\cookies\*.* //删除本帐户的cookie文件..
del /f /q %userprofile%\recent\*.* //清除最近使用文件的纪录
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*" //清除IE的缓存文件
del /f /s /q "%userprofile%\Local Settings\Temp\*.*" //清除所有临时文件
del /f /s /q "%userprofile%\recent\*.*" //清除最近使用文件记录
echo 清除系统LJ完成! //界面显示文字 清除系统LJ完成!
echo. & pause //程序暂停,等待你关闭
总之就是清除系统的垃圾文件
- 1楼网友:痴妹与他
- 2021-08-01 08:34