|
馬上注冊,結交更多好友,享用更多功能。
您需要 登錄 才可以下載或查看,沒(méi)有帳號?注冊
x
在Windows在安裝和使用過(guò)程中都會(huì )產(chǎn)生相當多的垃圾文件,包括臨時(shí)文件、日志文件、臨時(shí)幫助文件、磁盤(pán)檢查文件、臨時(shí)備份文件以及其他臨時(shí)文件。如果不及時(shí)清理這些臨時(shí)文件,不但會(huì )浪費一定的硬盤(pán)空間還會(huì )使系統運行變得緩慢。下面是小編給我們編寫(xiě)的程序,能幫你隨時(shí)清理垃圾文件。
在桌面上點(diǎn)鼠標右鍵,選擇新建一個(gè)“文本文檔”,把下面的程序復制進(jìn)去,點(diǎn)“另存為”,把文件名定為“清除系統LJ.bat”就完成,記住后綴名一定要是.bat,文件類(lèi)型為所有類(lèi)型。雙擊它就可以自動(dòng)幫你清理垃圾文件了。編寫(xiě)的程序如下:
@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 清除系統LJ完成!
echo. & pause
來(lái)自 www wxiu com
|
|