zoukankan      html  css  js  c++  java
  • 一键清理硬盘垃圾

    一键清除笔记本电脑系统垃圾还我硬盘空间


    大部分笔记本电脑都存在垃圾,垃圾是如何产生的呢,是在安装和使用过程中都会产生相当多的垃圾文件,包括临时文件(如:*.tmp、*._mp)、日志文件(*.log)、临时帮助文件(*.gid)、磁盘检查文件(*.chk)、临时备份文件(如:*.old、*.bak)以及其他临时文件等等。特别是如果一段时间不清理IE的临时文件夹,就是那个名叫“Temporary Internet Files”的东西,其中的缓存文件有时会占用上百MB的磁盘空间。这些垃圾文件不仅仅浪费了宝贵的磁盘空间,严重时还会使系统运行变慢,大家在使用笔记本电脑系统一段时间后,肯定会感觉到笔记本电脑运行越来越慢,系统盘空间莫名的越来越大。这就是因为笔记本系统里产生了很多垃圾文件,及时清理这个文件很重要。但是怎么清理这些繁多的垃圾文件呢,在这里我教大家制作一个“一键清理系统垃圾文件”的批处理文件。

      先建立一个“清除系统垃圾.bat”批处理文件

      在电脑屏幕的左下角按“开始→程序→附件→记事本”,把下面的文字复制进去,点“另存为”,路径选“桌面”,保存类型为“所有文件”,文件名为“清除系统垃圾.bat”,就完成了,记住后缀名一定要是“.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% ecycled*.*
      del /f /s /q %windir%*.bak
      del /f /s /q %windir%prefetch*.*
      rd /s /q %windir% emp & md %windir% emp
      del /f /q %userprofile%cookies*.*
      del /f /q %userprofile% ecent*.*
      del /f /s /q "%userprofile%Local SettingsTemporary Internet Files*.*"
      del /f /s /q "%userprofile%Local SettingsTemp*.*"
      del /f /s /q "%userprofile% ecent*.*"
      echo 清除系统垃圾完成!
      echo. & pause

      在使用的时候只要双击运行该文件,当屏幕提示“清除系统垃圾完成!就还你一个“苗条”的系统了!!到时候再看看你的电脑,是不是急速如飞呢?这招比那些所谓的优化大师好用!最重要的是无论在公司默认的系统环境还是在自己家中的电脑都不会破坏系统文件,制作方法也简单易学。

  • 相关阅读:
    47-python基础-python3-字符串-常用字符串方法(五)-rjust()-ljust()-center()
    46-python基础-python3-字符串-常用字符串方法(四)-join()-split()
    45-python基础-python3-字符串-常用字符串方法(三)-startswith()-endswith()
    44-python基础-python3-字符串-常用字符串方法(二)-isalpha()-isalnum()-isdigit()-isspace()-istitle()
    43-python基础-python3-字符串-常用字符串方法(一)-upper()-lower()-isupper()-islower()
    42-python基础-python3-字符串-原始字符串
    40-python基础-python3-字典常用方法-setdefault()
    39-python基础-python3-字典常用方法-get()
    38-python基础-python3-检查字典中是否存在键或值
    HTTP协议详解
  • 原文地址:https://www.cnblogs.com/jiangqw/p/3708114.html
Copyright © 2011-2022 走看看