清理电脑垃圾程序
 在电脑屏幕的左下角按开始程序附件记事本,把下面的文字复制进去(不带===),点文件--另存为,路径选儿童节短信“桌面(也可以选择为其他路径,只要你记得就可以了),保存类型为全部文件(*.*(或者在输入文件名后用英文半角引号引起来),文件名为清除系统垃圾文件.bat”或者幸福触手可及百度百科清除系统垃圾文件.cmd”(文件名可任意),就完成了。记住后缀名一定要是".bat"或者".cmd",至此你的垃圾清除器就这样制作成功了!
  双击它就能很快地清理垃圾文件,大约一分钟不到。
@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 清除系统垃圾文件完成!
  echo. & pause
批处理升级版
  个人在上面的基础上增加的,望高手补充。这个版本就是更能了解清理的过程,如果不想那么繁琐,就请用上面的。(从“@echo off”处开始复制)
  @echo off 计算机操作知识
  echo 准备清理系统垃圾 ...
  echo ==================================
  echo 【临时文件(*.tmp)】
  title 清理临时文件 (1 / 16) 百分之6
  del /f /s /q %systemdrive%\*.tmp
  echo 【临时文件(*._mp)】
  title 清理临时文件 (2 / 16) 百分之12
  del /f /s /q %systemdrive%\*._mp
  echo 【日志文件(*.log)】
  title 清理日志文件 (3 / 16) 百分之18
  del /f /s /q %systemdrive%\*.log
  echo 【临时帮助文件(*.gid)】
  title 清理临时帮助文件 (4 / 16) 百分之25
  del /f /s /q %systemdrive%\*.gid
  echo 【磁盘检查文件(*.chk)】
  title 清理磁盘检查文件 (5 / 16) 百分之31
  del /f /s /q %systemdrive%\*.chk
  echo 【临时备份文件(*.old)】
  title 清理临时备份文件 (6 / 16) 百分之37
  del /f /s /q %systemdrive%\*.old
  echo 【Excel备份文件(*.xlk)】
  title 清理Excel备份文件 (7 / 16) 百分之43
  del /f /s /q %systemdrive%\*.xlk
  echo 【回收站】
  title 清空回收站 (8 / 16) 百分之50
  del /f /s /q %systemdrive%\recycled\*.*
  echo 【临时备份文件(*.bak)】
  title 清理临时备份文件 (9 / 16) 百分之56
  del /f /s /q %windir%\*.bak
  echo 【预读取数据文件夹】
  title 清空预读取数据文件夹 (10 / 16) 百分之62
  del /f /s /q %windir%\prefetch\*.*
  echo 【临时文件】
  title 清理临时文件 (11 / 16) 百分之68
糖醋黄鱼的做法  rd /s /q %windir%\temp & md %windir%\temp
  echo 【COOKIE】
  title 清理COOKIE (12 / 16) 百分之75
  del /f /q %userprofile%\cookies\*.*
  echo 【文件使用记录】
  title 清理文件使用记录 (13 / 16) 百分之81
  del /f /q %userprofile%\recent\*.*
  echo 【IE临时文件】
  title 清理IE临时文件 (14 / 16) 百分之87
  del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
天文望远镜品牌
  echo 【临时文件文件夹】
  title 清理临时文件 (15 / 16) 百分之93
  del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
  echo 【文件使用记录】
怎样学好语文
  title 清理文件使用记录 (16 / 16) 百分之100
  del /f /s /q "%userprofile%\recent\*.*"
  echo ==================================
  title 清理完成 百分之100
  echo 清理系统垃圾完成!
  echo 按任意键或点“关闭”退出,谢谢!
  echo. & pause

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。