介绍:
使用批处理怎么快速清理Windows 7系统垃圾
参考这里,
1、新建文本文档,如:在桌面的空白处右键,选择:新建-文本文档,
桌面上就有:新建文本文档.txt,其中包含如下内容(再多也不怕,反正是拷贝),并保存:
@echo off
color 0b
echo =====================================================
echo.
echo 您已启动 WIN 7 系统垃圾清理 ,这里运行的命令都很安全!
echo.
echo =====================================================
echo.
echo 在程序没有结束的信息时,请勿关闭本窗口!
echo.
echo =====================================================
echo.
echo 正在清除系统垃圾文件,请稍候......
echo.
echo =====================================================
echo.
echo 第一
echo 清除清除Ie的浏览记录
echo.
echo **********************************
echo.
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351
@ echo Ie的浏览记录已经清除完毕
echo.
echo **********************************
echo.
echo 第二
echo 删除硬盘上的~$*.doc文件
echo (时间稍长,请耐心等候)
echo.
echo **********************************
echo.
del /f /s /q /a c:\~$*.doc
del /f /s /q /a d:\~$*.doc
del /f /s /q /a e:\~$*.doc
del /f /s /q /a f:\~$*.doc
del /f /s /q /a g:\~$*.doc
echo.
echo **********************************
echo.
@ echo 硬盘上的~$*.doc文件已经清除完。
echo.
echo **********************************
echo.
echo 第三
echo 删除系统的tmp文件
echo.
echo **********************************
echo.
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
rd /s /q %windir%\temp md %windir%\temp
del /f /s /q "%userprofile%\local settings\temp\*.*"
del /f /s /q %windir%\prefetch\*.*
echo.
echo **********************************
echo.
echo 第四
echo 删除日志文件
echo 删除帮助索引文件
echo 删除磁盘扫描留下的临时文件
echo 删除备份文件
echo 删除旧备份文件
echo.
echo **********************************
echo.
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %windir%\*.bak
del /f /s /q %systemdrive%\*.old
echo.
echo **********************************
echo.
echo 第五
echo 删除补丁文件
echo.
echo **********************************
echo.
cd /d c:\windows
for /f "delims=" %%i in ('dir/b/ad $*$')do rd/s/q "%%i"
@ del /f /s /q /a c:\windows\kb*.log
echo.
echo **********************************
echo.
echo 第六
echo 清空剪贴板上的内容
echo.
echo **********************************
echo.
echo 剪贴板上的内容已经清除完。
echo.
echo =====================
echo.
echo ……垃圾已清理完成……
echo.
echo =====================
echo.
echo ……因为有您在,所以我很幸福……
echo.
echo ……BYBY……再见!
echo.
echo ======================
echo. pause
2、改名,将桌面上的“新建文本文档.txt”改为“一键清理系统垃圾.bat”。
3、只要运行“一键清理系统垃圾.bat”,根据提示操作即可。
4、如果在清理过程中出现提示:“另一个程序正在使用此文件,进程无法访问”
可试试在“安全模式”下执行“一键清理系统垃圾.bat”。
如何使用bat批处理命令清理windows10系统垃圾文件
鼠标右键单击,新建文本文档-记事本
在文件中输入:
++++++++++++++++++++++++++++++++++++++++++++++
@echo off
color 0a
title windows10系统垃圾清理---
echo ★☆ ★☆ ★☆ ★☆ ★☆★☆★☆ ★☆ ★☆ ★☆ ★☆★
echo ★☆ ★☆ ★☆ ★☆ ★☆★☆★☆ ★☆ ★☆ ★☆ ★☆★
echo.★☆ ☆★
echo.★☆ ☆★
echo.★☆ 清理系统垃圾文件,请稍等...... ☆★
echo ★☆ ☆★
echo.★☆ ☆★
echo ★☆ ★☆ ★☆ ★☆ ★☆★☆★☆ ★☆ ★☆ ★☆ ★☆★
echo ★☆ ★☆ ★☆ ★☆ ★☆★☆★☆ ★☆ ★☆ ★☆ ★☆★
echo 清理垃圾文件,速度由电脑文件大小而定。在没看到结尾信息时
echo 请勿关闭本窗口。
echo 正在清除系统垃圾文件,请稍后......
echo 删除补丁备份目录
RD %windir%\$hf_mig$ /Q /S
echo 把补丁卸载文件夹的名字保存成2950800.txt
dir %windir%\$NtUninstall* /a:d /b %windir%\2950800.txt
echo 从2950800.txt中读取文件夹列表并且删除文件夹
for /f %%i in (%windir%\2950800.txt) do rd %windir%\%%i /s /q
echo 删除2950800.txt
del %windir%\2950800.txt /f /q
echo 删除补丁安装记录内容(下面的del /f /s /q %systemdrive%\*.log已经包含删除此类文件)
del %windir%\KB*.log /f /q
echo 删除系统盘目录下临时文件
del /f /s /q %systemdrive%\*.tmp
echo 删除系统盘目录下临时文件
del /f /s /q %systemdrive%\*._mp
echo 删除系统盘目录下日志文件
del /f /s /q %systemdrive%\*.log
echo 删除系统盘目录下GID文件(属于临时文件,具体作用不详)
del /f /s /q %systemdrive%\*.gid
echo 删除系统目录下scandisk(磁盘扫描)留下的无用文件
del /f /s /q %systemdrive%\*.chk
echo 删除系统目录下old文件
del /f /s /q %systemdrive%\*.old
echo 删除回收站的无用文件
del /f /s /q %systemdrive%\recycled\*.*
echo 删除系统目录下备份文件
del /f /s /q %windir%\*.bak
echo 删除应用程序临时文件
del /f /s /q %windir%\prefetch\*.*
echo 删除系统维护等操作产生的临时文件
rd /s /q %windir%\temp md %windir%\temp
echo 删除当前用户的COOKIE(IE)
del /f /q %userprofile%\cookies\*.*
echo 删除internet临时文件
del /f /s /q "%userprofile%\local settings\temporary internet files\*.*"
echo 删除当前用户日常操作临时文件
del /f /s /q "%userprofile%\local settings\temp\*.*"
echo 删除访问记录(开始菜单中的文档里面的东西)
del /f /s /q "%userprofile%\recent\*.*"
echo
echo ★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★
echo ★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★
echo ★☆ ☆★
echo.★☆ ☆★
echo.★☆ ☆★
echo ★☆ ☆★
echo ★☆ 恭喜您!清理全部完成! ☆★
echo.★☆ ☆★
echo ★☆ ☆★
echo.★☆ ☆★
echo ★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★
echo ★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★
echo.
++++++++++++++++++++++++++++++++++++++++++++++
然后单击文件,选择另存为
将文件另存为“ Windows10一键垃圾清理.bat ”,放置在任意位置。
双击文件便开始自动垃圾清理大约要几分钟时间
求一键清理系统垃圾的批处理命令
======复制下面的文字(这行不用复制)============================= @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哦。双击就可以清理系统垃圾了
记事本里输入以下内容:
@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
网友评论
最新评论
清除系统垃圾文件,请稍候......echo.echo =====================================================echo.echo 第一echo 清除清除Ie的浏览记录echo.echo **
emp\*.*" echo 删除访问记录(开始菜单中的文档里面的东西) del /f /s /q "%userprofile%\recent\*.*" echo echo ★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆