还在用第三方软件清理系统垃圾,或是还在苦苦寻找系统垃圾文件手动清理?
停止浪费你的时间吧!
分享一个简单好用的妙招,让计算机开机自动执行垃圾清理,提升电脑运行速度。
1、打开记事本,将文章末尾“清理系统垃圾代码”复制到记事本中,保存为.bat格式
2、开始菜单找到【所有程序】>【启动】,然后鼠标右键选中打开,此时你就打开了文件夹
“C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup”
3、将第1步保存的.bat文件复制到第2步打开的文件夹中,设置完成
重启你的电脑试试吧,开机就看到清理在进行了。
从此你的计算机再也不用经常人工手动的去处理系统垃圾,有兴趣的小伙伴们还可以根据自身需求更改“清理系统垃圾代码”哦!
清理系统垃圾代码:
@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