怎样一键删除电脑里的垃圾?
发布网友
发布时间:2022-04-29 21:09
我来回答
共5个回答
热心网友
时间:2022-05-19 18:49
一键删除垃圾,可以自己制作,网络上常见的一键清理垃圾就是一个批处理程序、方法如下:
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\*.*"
3、文件另存为一键清理垃圾,,后缀是[.bat] ,保存类型改为[所有文件]即可。
4、后缀名修改为bat后回车,在对话框点击是。
5、双击运行即可实现一键清理垃圾。
热心网友
时间:2022-05-19 20:07
一键删除什么样的文件?如果是在一个文件夹里面的话,要删除某些同样格式的文件可以用
DOS
系统完成、!
热心网友
时间:2022-05-19 21:42
1.复制:
@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完成!
2.新建记事本
3.重命名为laji.bat
4.双击
5.运行完毕OK!
热心网友
时间:2022-05-19 23:33
下个雅虎助手吧!很好用的
热心网友
时间:2022-05-20 01:41
呵呵
这个太简单了,做一个批处理文件,如下:(保你系统垃圾干干净净)
@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完成!
把上述内容复制到记事本,另存为“ 删除垃圾文件.bat "文件,然后双击执行。完成!