zoukankan      html  css  js  c++  java
  • 清理系统垃圾文件 请命名为:*.bat

     1 @echo off
     2 echo 正在清理系统垃圾文件,请稍等......
     3 
     4 del /f /s /q %systemdrive%\*.tmp
     5 del /f /s /q %systemdrive%\*._mp
     6 
     7 del /f /s /q %systemdrive%\*.gid
     8 del /f /s /q %systemdrive%\*.chk
     9 del /f /s /q %systemdrive%\*.old
    10 
    11 
    12 del /f /s /q %systemdrive%\recycled\*.*
    13 del /f /s /q %windir%\*.bak
    14 del /f /s /q %windir%\prefetch\*.*
    15 rd /s /q %windir%\temp & md %windir%\temp
    16 del /f /q %userprofile%\cookies\*.*
    17 del /f /q %userprofile%\recent\*.*
    18 del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
    19 del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
    20 del /f /s /q "%userprofile%\recent\*.*"
    21 
    22 echo 清理系统垃圾完成!
    23 
    24 echo                     /////////////////////////////////////////
    25 
    26 
    27 
    28 echo                             我不去想:是否能够成功,
    29 echo                               既然选择了远方!
    30 echo                               便只顾风雨兼程
    31 echo                                    ……
    32 
    33 
    34 echo                          我不去想:身后会不会袭来寒风冷雨,
    35 echo                               既然目标是---地平线,
    36 echo                               留给世界的只能是背影!!!
    37 echo                                    ……
    38 
    39 
    40 echo                     /////////////////////////////////////////
    41 
    42 
    43 
    44 echo. & pause 
  • 相关阅读:
    网页打开qq
    正则表达式
    微信小程序 如何使用globalData
    微信小程序中常见的typeof cb == “function” && cb(that.globalData.userInfo)
    MongoDB
    Elasticsearch学习
    Kafka学习之路 (一)Kafka的简介
    mybatis sql语句中转义字符
    定时任务
    mybatis insert into 返回id,useGeneratedKeys,keyColumn,keyProperty,parameterType
  • 原文地址:https://www.cnblogs.com/alamps/p/2398084.html
Copyright © 2011-2022 走看看