发布网友 发布时间:2022-03-30 00:27
共3个回答
热心网友 时间:2022-03-30 01:57
1windows只自带了磁盘清理,你点击磁盘的属性就能看到2你开一个记事本(其他的都行,txt)然后复制下面这些字
@echo
off
echo
正在清理系统垃圾文件,按任意键开始....pause
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\*.*"
del
/f
/q
E:\我的文档\平常备份\tmp\*.*
echo
清理系统垃圾完成!按任意键关闭窗口
echo.
&
pause
最后你把文件的名字改成.bat或.cmd结尾的就行了。
windows
xp
自带的清理系统垃圾的命令是什么?这里有视频教程可以看下
http://www.alisoho.com
热心网友 时间:2022-03-30 03:15
新建文本文档,复制以下内容
@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
保存,修改文件类型为bat
热心网友 时间:2022-03-30 04:49
右击磁盘-属性-常规-磁盘清理
windows
7相对应的DOS命令是cleanmgr.exe
我的系统换成了win
7,不知windows
xp是不是用这个命令。