標籤:windows
Windows伺服器的系統硬碟如果是2003系統的話那麼我們預設給10G的空間就夠了,但是有時候我們不經意去查看系統硬碟的時候發現已經使用了9.9G,其實多是垃圾記錄檔佔用系統硬碟空間,使用如下批處理將這些檔案刪除。
在案頭建立一個文字文件,將如下代碼複製進去:
@echo offecho 正在清除系統垃圾檔案,請稍等......del /f /s /q %systemdrive%\*.tmpdel /f /s /q %systemdrive%\*._mpdel /f /s /q %systemdrive%\*.logdel /f /s /q %systemdrive%\*.giddel /f /s /q %systemdrive%\*.chkdel /f /s /q %systemdrive%\*.olddel /f /s /q %systemdrive%\recycled\*.*del /f /s /q %windir%\*.bakdel /f /s /q %windir%\prefetch\*.*rd /s /q %windir%\temp & md %windir%\tempdel /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
代碼複製完成之後將檔案的尾碼名改成bat或者cmd格式的,雙擊執行以下,系統垃圾就都被清除掉了。
本文出自 “淡藍色的風” 部落格,請務必保留此出處http://1051236524.blog.51cto.com/5661514/1409355