如何清空所有缓存
发布网友
发布时间:2022-04-20 08:48
我来回答
共2个回答
热心网友
时间:2023-07-20 14:11
1、使用组合快捷键:Windows
+
R键,打开运行操作框,然后在打开后面输入
cmd
,然后回车打开命令提示符;
2、清空DNS缓存命令为:ipconfig/flushdns
输入后,回车即可清空DNS缓存。
热心网友
时间:2023-07-20 14:11
新建一个txt文档里面粘贴以下内容
@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
清理系统垃圾完成!
然后另存为清空缓存.bat
双击
清空缓存.bat文件