怎样清理电脑垃圾使网速更快?
发布网友
发布时间:2022-03-02 11:47
我来回答
共1个回答
热心网友
时间:2022-03-02 13:16
将以下内容自暴复制到文本文件中,再将后缀名.txt改为.bat,双击即开始运行。要看源码,可选打开方式,用记事本打开。
@echo
off
echo
在windowsshiyong使用过成中,电脑系统磁盘的可用空间一天天在减少,运行速度在变慢。为此,我特编制了这个批处理命令,用来快速清理windows临时文件(如:*.tmp、*._mp)日志文件(*.log)、临时帮助文件(*.gid)、磁盘检查文件(*.chk)、临时备份文件(如:*.old、*.bak)以及其他临时文件,保证轻松流畅上网。
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
清除系统垃圾完成!
pause