windows xp 自带的清理系统垃圾的命令是什么?
发布网友
发布时间:2022-04-03 00:59
我来回答
共4个回答
懂视网
时间:2022-04-03 05:21
SystemClean系统清理,这是一款电脑系统清理工具,清理非常全面和彻底。它的主要功能有清理系统垃圾、修复系统、优化系统。
电脑系统即电脑操作系统(computer operating system):是计算机系统中的一个系统软件,它是这样一些程序模块的集合--它们管理和控制计算机系统中的软件资源,合理地组织计算机工作流程以便有效地利用这些资源为用户提供一个功能强大、使用方便和可扩展的工作环境,从而在计算机与其用户之间起到接口的作用。现有unix、linux、mac、os/2、GUN、dos、windows等数种通用常规操作系统,另外还有特殊应用的操作系统。
热心网友
时间:2022-04-03 02:29
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-04-03 03:47
新建文本文档,复制以下内容
@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-04-03 05:21
右击磁盘-属性-常规-磁盘清理
windows
7相对应的DOS命令是cleanmgr.exe
我的系统换成了win
7,不知windows
xp是不是用这个命令。