系统的清除垃圾的运行命令是什么?
发布网友
发布时间:2022-03-30 00:27
我来回答
共2个回答
热心网友
时间:2022-03-30 01:57
命令清除缓存的方法:
1、新建一文本文件,双击打开
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
清除系统LJ完成!
echo.
&
pause
3、点击键盘“ctrl+s”,或者点击“文件”“保存”,然后关闭该文件
4、选中该文件,点击右键,点击重命名,将扩展名改为.bat
5、双击运行,可以看到运行的细节,有很多用不到的文件被删掉了
6、等运行完成就可以了。
热心网友
时间:2022-03-30 03:15
@echo
offecho
清理系统垃圾中......del
/f
/s
/q
%systemdrive%\*.tmpdel
/f
/s
/q
%systemdrive%\*._mpdel
/f
/s
/q
%systemdrive%\*.giddel
/f
/s
/q
%systemdrive%\*.chkdel
/f
/s
/q
%systemdrive%\*.olddel
/f
/s
/q
%systemdrive%\recycled\*.*del
/f
/s
/q
%windir%\*.bakdel
/f
/s
/q
%windir%\prefetch\*.*rd
/s
/q
%windir%\temp
&
md
%windir%\tempdel
/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
把上面的代码复制到TXT文本中
保存重命名把后缀名TXT改成BAT
运行
或者输入命令「开始」「运行」
然后输入:
cleanmgr
/sageset:99