发新话题
打印

改名后第一帖(非百分百原创)系统清理小工具(回帖是一种美德请不要缺了这个)

改名后第一帖(非百分百原创)系统清理小工具(回帖是一种美德请不要缺了这个)

系统清理小工具
把内容入在记事本里,后缀改为  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 系统已删除请重启(^_^)!
  echo. & pause

[ 本帖最后由 天堂之约 于 2007-9-15 10:03 编辑 ]

TOP

重新开始了

TOP

厉害!
还是挺好用的

TOP

怎么用呀!我怎么看不懂呀!
态度决定一切!
http://hi.baidu.com/sanhewxw

TOP

使用方法很简单:
1,先复制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 系统已删除请重启(^_^)!
  echo. & pause
2,新建一个*.TXT文件,把内容粘贴到文件里,保存.
3.把TXT的文件名更改成:ECHO.BAT,直接运行就OK 了!

TOP

我试试看,这到底有什么作用?
态度决定一切!
http://hi.baidu.com/sanhewxw

TOP

发新话题