溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何進行C盤清理小程序制作

發(fā)布時間:2021-11-25 16:55:49 來源:億速云 閱讀:246 作者:柒染 欄目:編程語言

如何進行C盤清理小程序制作,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

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

  1. 新建一個TXT文件,命名為:系統(tǒng)清理.bat

  2. 用記事本打開,然后編輯,寫入以下代碼:
    代碼清單:

    @echo off 
    echo 正在清理系統(tǒng)垃圾文件,請稍等......
    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系統(tǒng)清除結(jié)束!
    echo. & pause

  3. 代碼寫好后保存。

  4. 使用的時候雙擊運行即可。

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI