自己動手製作C盤清理垃圾小程式
今天,Wynn分享給大家一個製作C盤清理垃圾小程式的教程。
首先,現在桌面新建一個文字文件。
然後雙擊開啟它。複製黏貼以下程式碼:
@echo off
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 清除系統垃圾完成!
如圖所示:
然後,另存為一個檔案,儲存型別選擇“所有檔案”,檔名為“清除系統垃圾.bat”點選儲存,就完事了!最後,小程式的模樣是這個樣子的。