系统清理小工具

我们两清 提交于 2020-03-11 12:37:53

 平常清理系统什么的都是用360,超级兔子之类的,公司的机器不让装杂七六八的软件的,自己一点点清理又闲麻烦。所以经常用这段bat文件清理。

每次找起来麻烦,还是放到园子里好找。

@echo off
echo 正在为清除系统垃圾文件而进行系统路径遍历,需要几秒时间,请稍等......
del 
///%systemdrive%\*.tmp
del 
///%systemdrive%\*._mp
del 
///%systemdrive%\*.log
del 
///%systemdrive%\*.gid
del 
///%systemdrive%\*.chk
del 
///%systemdrive%\*.old
del 
///%systemdrive%\recycled\*.*
del 
///%windir%\*.bak
del 
///%windir%\prefetch\*.*
rd 
//%windir%\temp & md %windir%\temp
del 
//%userprofile%\cookies\*.*
del 
//%userprofile%\recent\*.*
del 
///"%userprofile%\Local Settings\Temporary Internet Files\*.*"
del 
///"%userprofile%\Local Settings\Temp\*.*"
del 
///"%userprofile%\recent\*.*"
echo 
*********************************************************************
echo 清除系统LJ完成!准备退出...
echo 
*********************************************************************
echo 剩余 
6
ping 
127.1 > nul
echo 剩余 
5
ping 
127.1 > nul
echo 剩余 
4
ping 
127.1 > nul
echo 剩余 
3
ping 
127.1 > nul
echo 剩余 
2
ping 
127.1 > nul
echo 剩余 
1
ping 
127.1 > null

exit 

把这段代码粘贴到记事本里,保存为.bat文件就可以了 。


 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!