亚洲色一色噜一噜噜噜_在线国产精品一区二区_91国自产拍 精品_国产伦三级一区二区

  • <object id="nlumt"><tt id="nlumt"><pre id="nlumt"></pre></tt></object>
    <legend id="nlumt"><mark id="nlumt"></mark></legend>
    <pre id="nlumt"><tt id="nlumt"><rt id="nlumt"></rt></tt></pre>

    <bdo id="nlumt"><delect id="nlumt"></delect></bdo>

       找回密碼
       注冊(cè)

      QQ登錄

      只需一步,快速開(kāi)始

      最棒的XP操作系統(tǒng)垃圾清理小程序

      [復(fù)制鏈接]
      1#
      發(fā)表于 2009-1-2 23:58:40 | 只看該作者 |倒序?yàn)g覽 |閱讀模式
      <P>&nbsp;</P>
      % A1 O' v" o9 [) g5 `7 `% O<P>&nbsp;</P>
      7 F3 X( V4 T* d2 x9 c<P>&nbsp;</P>  A4 E$ t3 x0 k/ z- ?% X
      <P>&nbsp;</P>; u- V1 z, Y/ ?
      <P>復(fù)制-粘帖到記事本,</P>8 q6 U, S0 ?+ }8 l
      <P>&nbsp;</P>
      0 P; q. p6 o" c5 |% G* T8 ~" b6 F<P>另存為所有文件-**(任意名字).BAT,</P>
      ' y3 w2 w( x8 B4 n! l, r<P>&nbsp;</P>
      " s- M9 u$ k2 n& P# c" P) N6 g; n; O<P>雙擊運(yùn)行就可以清除系統(tǒng)垃圾了.</P>+ R( u2 A. J0 r
      <P>&nbsp;</P>3 G4 }8 \+ B( ?" Z+ o& A4 `) o
      <P>也可以下載2樓附件直接使用.</P>
      " b+ q, U: p& ]$ b0 R% g<P>&nbsp;</P>9 l& Y$ k) K  @% d7 k
      <P>&nbsp;</P>
      3 E; S3 s6 N' D8 M9 P4 V6 p<P>&nbsp;</P>. G0 Z3 S( {4 X: U, w% Q' p! o
      <P>.</P>7 E: ]8 C3 R: N7 r+ {+ J
      <P>&nbsp;</P>, n# w5 H. C3 J# m- R
      <P>&nbsp;</P>
      % B  R# O& y0 a% B1 m' e<P>&nbsp;</P>
        T* ?) e: B5 Z; @<P>&nbsp;</P>
      / ~' ?  P$ Q7 s  z/ B- k<P>&nbsp;</P>
      : _, g6 G( G- c<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>
      2 ^& L. r1 i8 n& G<P>echo =========================================================<BR>echo.<BR>echo 本程序特點(diǎn)<BR>echo.<BR>echo 鑒于很多人把IE緩存等文件夾轉(zhuǎn)移到非系統(tǒng)盤(pán),<BR>echo 所以,本程序清理垃圾文件時(shí),首先進(jìn)行判斷系<BR>echo 統(tǒng)的設(shè)置。<BR>echo.<BR>echo 優(yōu)點(diǎn):清理位置更加準(zhǔn)確,策略更加科學(xué)。<BR>echo.<BR>echo 開(kāi)始執(zhí)行清理……<BR>echo.<BR>echo 正在檢查cookies、歷史紀(jì)錄等目錄位置(當(dāng)前用戶)……<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緩存、歷史紀(jì)錄等(當(dāng)前用戶)……<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>::跟上面幾項(xiàng)未必是重復(fù)的(!),也是對(duì)當(dāng)前用戶目錄<BR>echo 正在清理臨時(shí)文件 (系統(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)目錄中的垃圾文件 (稍候,需要點(diǎn)時(shí)間)……<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 正在清除無(wú)用的磁盤(pán)檢錯(cuò)文件 (系統(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)升級(jí)補(bǔ)丁留下來(lái)的反安裝目錄 (已修正能正確清除)……<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 正在清除常見(jiàn)的軟件垃圾項(xiàng)目 (按默認(rèn)目錄)……<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 全部清理完畢,任意鍵退出 (注: 若提示文件沒(méi)找到是正常的)……<BR>pause &gt;nul<BR>del %SystemRoot%\vTmp.txt
      </P>
      2#
       樓主| 發(fā)表于 2009-1-3 00:12:44 | 只看該作者
      3#
      發(fā)表于 2009-1-14 16:07:47 | 只看該作者
      謝謝,一直在用。
      您需要登錄后才可以回帖 登錄 | 注冊(cè)

      本版積分規(guī)則

      QQ|本地廣告聯(lián)系: QQ:905790666 TEL:13176190456|Archiver|手機(jī)版|小黑屋|汶上信息港 ( 魯ICP備19052200號(hào)-1 )

      GMT+8, 2025-4-12 19:37

      Powered by Discuz! X3.5

      © 2001-2025 Discuz! Team.

      快速回復(fù) 返回頂部 返回列表