You can't wait forever. Do something and make it happen.
你不可能永远等下去,去做点儿什么,让一切成真。
系统垃圾多?没问题!自制一个系统垃圾清理软件,每天轻松清理垃圾!保持系统"苗条"身材,拥有流畅的上网感觉,所以今天的技能你不得不学!
首先我们在电脑桌面,鼠标右键选择新建扩展栏,文档,创建一个空白的新建文件夹。如图显示。
我们打开空白文件夹,输入
@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
点“另存为”,保存类型为“所有文件”,把文件名定为“清除系统LJ.bat” 记住后缀名一定要是.bat。
生成�BAT文件。文件图标也会改变。
最后我们打开文件,文件会自己运行把你的系统垃圾全部清理到爪哇国。如图显示
原理:在Windows在安装和使用过程中都会产生相当多的垃圾文件,包括临时文件(如:*.tmp、*._mp)日志文件(*.log)、临时帮助文件(*.gid)、磁盘检查文件(*.chk)、临时备份文件(如:*.old、*.bak)以及其他临时文件。
del /f /s /q %systemdrive%\*.tmp
del=delete(删除)
整个语句就表示 清除tmp文件。
最后的最后如果觉得小编的方法帮助到你了,那就为小编投个票,鼓励下吧。