久久综合伊人噜噜色,日本三级香港三级人妇电影精品,亚洲中文色资源,国产高清一区二区三区人妖

    1. <sub id="9pxky"></sub>
    2. <small id="9pxky"></small>

          汶上信息港

          標題: 最棒的XP操作系統(tǒng)垃圾清理小程序 [打印本頁]

          作者: 中都社區(qū)    時間: 2009-1-2 23:58
          標題: 最棒的XP操作系統(tǒng)垃圾清理小程序
          <P>&nbsp;</P>4 G2 ]/ O" r6 j5 h7 o! G
          <P>&nbsp;</P>
          " y$ S4 `2 Z; c<P>&nbsp;</P>
          ( f+ E# H7 Z( n( p) o<P>&nbsp;</P>
          7 a3 h2 d6 L6 w. _( E<P>復制-粘帖到記事本,</P>
          ' z% I0 Z+ B3 S5 @$ j<P>&nbsp;</P>
          4 }" d1 h. J$ X1 s" ]& V<P>另存為所有文件-**(任意名字).BAT,</P>
          ( c4 ~1 y' \6 @# ^0 o5 }<P>&nbsp;</P>
          / X- x5 A. `+ h$ R1 u0 F3 m& l<P>雙擊運行就可以清除系統(tǒng)垃圾了.</P>& }% R2 n5 c; [" r3 J+ E3 ]5 A
          <P>&nbsp;</P>" ~, Y  h8 F& S
          <P>也可以下載2樓附件直接使用.</P>$ L$ C- i# q) z  }. o- c
          <P>&nbsp;</P>( G# R& }% ?% ~" [/ U5 D
          <P>&nbsp;</P>) U% D1 H2 m& c* Z/ N, e
          <P>&nbsp;</P>6 f3 I- U( U5 b
          <P>.</P>
          7 |, b# C1 Z( @- x<P>&nbsp;</P>
          7 I( ~* O- n% d2 A, T4 d5 _<P>&nbsp;</P>
          3 j  b4 v3 a. |- I8 a' _1 E<P>&nbsp;</P>( {" [( m2 i1 z" _4 d9 e6 G2 C& D4 h7 ^* L
          <P>&nbsp;</P>" A7 v/ Q5 K; I8 u1 Y
          <P>&nbsp;</P>, {% l- C- O/ [! \
          <P>
          @echo off<BR>::修正于2009-01-02<BR>color 2f<BR>Title 系統(tǒng)垃圾文件清理器 中都社區(qū)專用版 By 紅白菜<BR>echo.<BR>echo =========================================================<BR>echo ***** 系統(tǒng)垃圾文件清理器 中都社區(qū)專用版 By 紅白菜 *****<BR>echo.<BR>echo&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 修改制作:紅白菜 <A href="http://www.zhongdushi.cn">www.zhongdushi.cn</A></P>, Y8 }0 D5 M& z" J
          <P>echo =========================================================<BR>echo.<BR>echo 本程序特點<BR>echo.<BR>echo 鑒于很多人把IE緩存等文件夾轉移到非系統(tǒng)盤,<BR>echo 所以,本程序清理垃圾文件時,首先進行判斷系<BR>echo 統(tǒng)的設置。<BR>echo.<BR>echo 優(yōu)點:清理位置更加準確,策略更加科學。<BR>echo.<BR>echo 開始執(zhí)行清理……<BR>echo.<BR>echo 正在檢查cookies、歷史紀錄等目錄位置(當前用戶)……<BR>reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Cache&gt;%temp%\cleantmp.txt<BR>reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Cookies&gt;&gt;%temp%\cleantmp.txt<BR>reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v History&gt;&gt;%temp%\cleantmp.txt<BR>reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v NetHood&gt;&gt;%temp%\cleantmp.txt<BR>reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Recent&gt;&gt;%temp%\cleantmp.txt<BR>echo 正在清理Cookies、IE緩存、歷史紀錄等(當前用戶)……<BR>for /f "tokens=3*" %%a in (%temp%\cleantmp.txt) do (<BR>for /d %%i in ("%%a %%b\*.*") do rd /s /q "%%i"<BR>del /a /f /s /q "%%a %%b\*.*"<BR>)<BR>::跟上面幾項未必是重復的(!),也是對當前用戶目錄<BR>echo 正在清理臨時文件 (系統(tǒng)目錄)……<BR>del /a /f /s /q "%userprofile%\Locals~1\Tempor~1\*.*" <BR>del /a /f /s /q "%userprofile%\Locals~1\Temp\*.*" <BR>del /a /f /s /q "%userprofile%\cookies\*.*" <BR>del /a /f /s /q "%userprofile%\recent\*.*"<BR>del /a /f /s /q "%Temp%\*.*"<BR>del /a /f /s /q "%Tmp%\*.*"<BR>del /a /f /s /q "%HomePath%\..\IconCache.db"<BR>echo 正在清理系統(tǒng)目錄中的垃圾文件 (稍候,需要點時間)……<BR>del /a /f /s /q "%systemdrive%\*._mp"<BR>del /a /f /s /q "%systemdrive%\*.log"<BR>del /a /f /s /q "%systemdrive%\*.dmp"<BR>del /a /f /s /q "%systemdrive%\*.gid"<BR>del /a /f /s /q "%systemdrive%\*.old"<BR>del /a /f /s /q "%systemdrive%\*.tmp"<BR>del /a /f /s /q "%systemdrive%\recycled\*.*"<BR>del /a /f /s /q "%SystemRoot%\*.bak"<BR>del /a /f /s /q "%SystemRoot%\*.query"<BR>rd /s /q "%SystemRoot%\Downloaded Program Files"<BR>rd /s /q "%SystemRoot%\Offline Web Pages"<BR>rd /s /q "%systemroot%\Connection Wizard"<BR>rd /s /q "%SystemRoot%\SoftwareDistribution\Download"<BR>rd /s /q "%SystemRoot%\Assembly"<BR>rd /s /q "%SystemRoot%\Help"<BR>rd /s /q "%SystemRoot%\system32\ReinstallBackups"<BR>del /a /s /q "%SystemRoot%\inf\*.pnf"<BR>del /a /f /s /q "%SystemRoot%\inf\InfCache.1"<BR>dir %SystemRoot%\inf\*.* /ad/b &gt;%SystemRoot%\vTmp.txt<BR>for /f %%a in (%SystemRoot%\vTmp.txt) do rd /s /q "%SystemRoot%\inf\%%a"<BR>del /a /f /s /q "%SystemRoot%\Driver Cache\*.pnf"<BR>del /a /f /s /q "%SystemRoot%\Driver Cache\InfCache.1" <BR>del /a /f /s /q "%SystemRoot%\system32\drivers\*.pnf"<BR>del /a /f /s /q "%SystemRoot%\system32\drivers\InfCache.1"<BR>rd /s /q "%SystemRoot%\temp" &amp; md "%SystemRoot%\temp"<BR>del /a /f /s /q "%SystemRoot%\Prefetch\*.*"<BR>del /a /f /s /q "%SystemRoot%\minidump\*.*"<BR>echo 正在清除無用的磁盤檢錯文件 (系統(tǒng)分區(qū))……<BR>del /a /f /q "%SystemDrive%\*.chk"<BR>dir %SystemDrive%\found.??? /ad/b &gt;%SystemRoot%\vTmp.txt<BR>for /f %%a in (%SystemRoot%\vTmp.txt) do rd /s /q "%SystemDrive%\%%a"<BR>echo 正在清理系統(tǒng)升級補丁留下來的反安裝目錄 (已修正能正確清除)……<BR>dir %SystemRoot%\$*$ /ad/b &gt;%SystemRoot%\vTmp.txt<BR>for /f %%a in (%SystemRoot%\vTmp.txt) do rd /s /q "%SystemRoot%\%%a"<BR>echo 正在清除常見的軟件垃圾項目 (按默認目錄)……<BR>rd /s /q "%ProgramFiles%\InstallShield Installation Information"<BR>Ren "%ProgramFiles%\Common~1\Real\Update_OB\realsched.exe" realsched.ex_<BR>Del "%ProgramFiles%\Common~1\Real\Update_OB\realsched.exe"<BR>Reg Delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v TkBellExe /f<BR>rd /s /q "%ProgramFiles%\Tencent\QQGame\Download"<BR>taskkill /f /im "TIMPlatform.exe" /t<BR>del /a /f /s /q "%ProgramFiles%\Kaspersky Lab\*.tmp"<BR>echo.<BR>echo 全部清理完畢,任意鍵退出 (注: 若提示文件沒找到是正常的)……<BR>pause &gt;nul<BR>del %SystemRoot%\vTmp.txt
          </P>
          作者: 中都社區(qū)    時間: 2009-1-3 00:12
          [attach]609[/attach]
          作者: 中興藥浴    時間: 2009-1-14 16:07
          謝謝,一直在用。




          歡迎光臨 汶上信息港 (http://www.junkejituan.com/) Powered by Discuz! X3.5