1. 程式人生 > >C盤清理小程序制作

C盤清理小程序制作

echo 命名 隨著 數據 清除 清單 erp 寫入 代碼

引言:大家都知道,隨著時間的推薦,我們電腦系統的C盤緩存的臨時數據、無用數據會越來越多,這會導致我們的系統運行速度被大大拖慢,所有這裏教大家怎麽制作一個簡單的清理C盤臨時數據和無用數據的小程序。
制作步驟:

  1. 新建一個TXT文件,命名為:系統清理.bat
  2. 用記事本打開,然後編輯,寫入以下代碼:
    代碼清單:
    @echo off 
    echo 正在清理系統垃圾文件,請稍等......
    del /s /f /q c:\windows\temp\*.*
    rd /s /q c:windows\temp
    md c:\windows\temp
    del /s /f /q C:\WINDOWS\Prefetch
    del /s /f /q %temp%\*.*
    rd /s /q %temp%
    md %temp%
    deltree /y c:\windows\tempor~1
    deltree /y c:\windows\temp
    deltree /y c:\windows\tmp
    deltree /y c:\windows\ff*.tmp
    deltree /y c:\windows\history
    deltree /y c:\windows\cookies
    deltree /y c:\windows\recent
    deltree /y c:\windows\spool\printers
    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\*.*"
    del c:\WIN386.SWP

    echo系統清除結束!
    echo. & pause

  3. 代碼寫好後保存。
  4. 使用的時候雙擊運行即可。

C盤清理小程序制作