Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Windows XP系統教程 >> 關於XP系統教程 >> Windows自帶記事本的實用技巧(2)

Windows自帶記事本的實用技巧(2)

日期:2017/1/23 17:11:21      編輯:關於XP系統教程

  有一個常用的清除系統垃圾文件的記事本批處理是:

  @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 SettingsTemporary Internet Files*.*”

  del /f /s /q “%userprofile%Local SettingsTemp*.*”

  del /f /s /q “%userprofile%recent*.*”

  echo 清除系統LJ完成!

  echo. &pause

  將以上代碼復制到記事本,另存為“清除系統垃圾文件.bat”,同時注意保存類型選擇“所有文件”,同時注意保存類型選擇“所有文件”,然後運行該批處理文件,即可清除系統日積月累的垃圾文件,隔些日子運行清除一次,可以釋放好多空間呢,我清除最多的一次記得是600MB多點。有朋友可能擔心這樣會不會選成什麼系統問題,我用了好多次,沒有什麼異常,網上google或者baidu一下就知道很多人這樣做了。

Copyright © Windows教程網 All Rights Reserved