为什么我的电脑里总是会有很多垃圾文件的,删了不到半天又有一大堆了。
发布网友
发布时间:2022-05-10 22:54
我来回答
共2个回答
热心网友
时间:2023-11-10 13:06
这个是正常的,因为你用了电脑后,就会产生一些临时文件及网页页面缓存、系统日志等垃圾文件,你只要定期清理就可以了。
热心网友
时间:2023-11-10 13:07
把以下代码用记事本写好,然后另存为到桌面,保存类型为“所有文件”.之后双击打开此文件即可自动清除垃圾文件!
@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