首页 > 学院 > 基础常识 > 正文

一键清理系统垃圾文件.bat

2019-11-01 01:10:31
字体:
来源:转载
供稿:网友

  对于现在清理系统垃圾文件的软件越来越多,而且都是需要从网上下载,安装。这样一系列的过程总是很麻烦,今天小编要教大家的就是利用简单的方法来清理系统的垃圾文件。

  在“桌面”上新建一个“记事本”,然后我们打开记事本,在记事本中,输入以下代码:

  @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 SettingsTemporary Internet Files*.*"

  del /f /s /q "%userprofile%Local SettingsTemp*.*"

  del /f /s /q "%userprofile%recent*.*"

  echo 清除系统垃圾完成!

  echo. & pause

  在输入代码之后,我们保存退出,并将文件重命名,名字随便取,但是后缀名一定要是“.bat”,例如“学无忧.bat”。然后直接双击打开运行就可以了。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表