zoukankan      html  css  js  c++  java
  • 系统清理小工具

     平常清理系统什么的都是用360,超级兔子之类的,公司的机器不让装杂七六八的软件的,自己一点点清理又闲麻烦。所以经常用这段bat文件清理。

    每次找起来麻烦,还是放到园子里好找。

    @echo off
    echo 正在为清除系统垃圾文件而进行系统路径遍历,需要几秒时间,请稍等......
    del 
    ///%systemdrive%\*.tmp
    del 
    ///%systemdrive%\*._mp
    del 
    ///%systemdrive%\*.log
    del 
    ///%systemdrive%\*.gid
    del 
    ///%systemdrive%\*.chk
    del 
    ///%systemdrive%\*.old
    del 
    ///%systemdrive%\recycled\*.*
    del 
    ///%windir%\*.bak
    del 
    ///%windir%\prefetch\*.*
    rd 
    //%windir%\temp & md %windir%\temp
    del 
    //%userprofile%\cookies\*.*
    del 
    //%userprofile%\recent\*.*
    del 
    ///"%userprofile%\Local Settings\Temporary Internet Files\*.*"
    del 
    ///"%userprofile%\Local Settings\Temp\*.*"
    del 
    ///"%userprofile%\recent\*.*"
    echo 
    *********************************************************************
    echo 清除系统LJ完成!准备退出...
    echo 
    *********************************************************************
    echo 剩余 
    6
    ping 
    127.1 > nul
    echo 剩余 
    5
    ping 
    127.1 > nul
    echo 剩余 
    4
    ping 
    127.1 > nul
    echo 剩余 
    3
    ping 
    127.1 > nul
    echo 剩余 
    2
    ping 
    127.1 > nul
    echo 剩余 
    1
    ping 
    127.1 > null

    exit 

    把这段代码粘贴到记事本里,保存为.bat文件就可以了 。


  • 相关阅读:
    utf8编码和中文不能解码问题解决
    python环境的安装配置
    repo同一个仓的同一个changeId的提交
    Jenkins pipeline之将命令的运行结果赋值给变量
    repo和git常用的命令和场景
    docker 安装rabbitmq
    docker的一些概念
    mysql数据库sql优化原则
    数据库优化02
    MySQL数据库优化总结
  • 原文地址:https://www.cnblogs.com/janes/p/2182533.html
Copyright © 2011-2022 走看看