小程式---清除系統盤垃圾(BAT)
阿新 • • 發佈:2018-12-16
複製以下內容(黑框部分)至文字文件,
檔名稱改為“小程式---清除系統盤垃圾.bat”,
右鍵“以管理員身份執行”即可。
@echo off color 2F ::設定視窗顏色,2代表背景顏色為綠色,F代表文字顏色為亮白色 mode con cols=80 lines=80 ::設定視窗大小 title 清除系統小程式 ::設定視窗標題 echo ------------------------------------------------------------------ echo 命令解釋: echo 命令:RD(Remove Directory),刪除目錄;DEL,刪除檔案或目錄 echo RD增加引數:/S echo 引數說明:使用此引數即“RD/S”用於刪除目錄樹, echo 即刪除目錄及目錄下的所有子目錄和檔案,相當於echo 以前版本中的DELTREE命令。 echo DEL增加引數:/F echo 引數說明:使用此引數即“DEL/F”可刪除只讀檔案; echo 增加引數:/S、/Q echo 引數說明:使用此引數即“DEL/S”作用與“RD/S”完全相同, echo 即刪除目錄及目錄下的所有子目錄和檔案。 echo 同時使用引數/Q,可取消刪除操作時的系統確認。 echo ------------------------------------------------------------------ echo. echo. echo. 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%\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\*.*" echo 清除系統 完成! echo. & pause
截圖如下:
執行結束,按任意鍵即可退出: