清理系統(tǒng)垃圾bat:
在電腦桌面空白處新建一個(gè)文本文檔
新建完成后,將下文復(fù)制粘貼到文本文檔里。
@echo off
echo 正在清除系統(tǒng)垃圾文件,請(qǐng)稍等......
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 清除系統(tǒng)垃圾完成!
echo. & pause
復(fù)制完成后,點(diǎn)擊文件,另存為,彈出另存為窗口后,
保存類型改為所有文件,保存路徑自定義,文件名自定義(注:文件名尾綴需要加上“.bat”)
最后生成一個(gè)bat批處理文件,我們雙擊打開,系統(tǒng)便會(huì)自動(dòng)清理垃圾文件了。
標(biāo)簽: 怎么一鍵清理系統(tǒng)垃圾bat bat清理垃圾