找回密碼
 注册
搜索
熱搜: 活动 交友 discuz
查看: 748|回復: 0

七招讓你的電腦飛起來

[複製鏈接]
發表於 2008-7-31 08:35:13 | 顯示全部樓層 |閱讀模式
七招讓你的電腦飛起來

第一招:清除系統垃圾
  輕鬆流暢上網你是否注意到你的電腦系統磁片的可用空間正在一天天在減少呢?是不是像老去的猴王一樣動作一天比一天遲緩呢?
  沒錯!在Windows在安裝和使用過程中都會產生相當多的垃圾檔,包括暫存檔案(如:*.tmp、*._mp)日誌檔(*.log)、臨時幫助檔(*.gid)、磁片檢查檔(*.chk)、臨時備份檔案(如:*.old、*.bak)以及其他暫存檔案。特別
    是如果一段時間不清理IE的暫存檔案夾“Temporary Internet Files”,其中的緩存檔有時會佔用上百MB的磁碟空間。這些LJ檔不僅僅浪費了寶貴的磁碟空間,嚴重時還會使系統運行慢如蝸牛。這點相信你肯定忍受不了吧!所以應及時清理系統的LJ檔的淤塞,保持系統的“苗條”身材,輕鬆流暢上網!朋友來吧,現在就讓我們一起來快速清除系統垃圾吧!!
  下面是步驟很簡單就兩步!
  在桌面上點滑鼠右鍵,選擇新建一個“記事本”,把下面的字複製進去,點“另存為”,把檔案名定為“清除系統LJ.bat”就完成,記住尾碼名一定要是.bat,好ok了!你的垃圾清除器就這樣製作成功了!雙擊它就能很快地清理垃圾檔,大約一分鐘不到。
  PS. 要複製進去的字是 見下:
  @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
  以後只要雙擊運行該檔,當螢幕提示“清除系統LJ完成!就還你一個“苗條”的系統了!!到時候再看看你的電腦,是不是急速如飛呢?可別忘了回帖喔!
  注:LJ就是垃圾的意思!這招比那些所謂的優化大師好用!不會破壞系統檔。

    第二招:清除所有多餘的啟動專案
  此命令將自動清理所有非必要的啟動專案,僅保留輸入法(ctfmon)。
  目的是減少不必要的資源佔用,使系統運行順暢。
  方法如上,複製內容見下(紅色部分)
    @ ECHO OFF
    color 1f
    title 清除所有多餘的啟動專案
    PAUSE
    reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /va /f
    reg delete HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run /va /f
    reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run /v ctfmon.exe /d C:\WINDOWS\system32\ctfmon.exe
    reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg" /f
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\IMJPMIG8.1"
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\IMJPMIG8.1" /v command /d ""C:\WINDOWS\IME\imjp8_1\IMJPMIG.EXE" /Spoil /RemAdvDef /Migration32"
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\IMJPMIG8.1" /v hkey /d HKLM
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\IMJPMIG8.1" /v inimapping /d 0
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\IMJPMIG8.1" /v item /d IMJPMIG
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\IMJPMIG8.1" /v key /d SOFTWARE\Microsoft\Windows\CurrentVersion\Run
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002A"
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002A" /v command /d "C:\WINDOWS\system32\IME\TINTLGNT\TINTSETP.EXE /IMEName"
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002A" /v hkey /d HKLM
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002A" /v inimapping /d 0
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002A" /v item /d TINTSETP
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002A" /v key /d SOFTWARE\Microsoft\Windows\CurrentVersion\Run
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002ASync"
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002ASync" /v command /d ""C:\WINDOWS\IME\imjp8_1\IMJPMIG.EXE" /Spoil /RemAdvDef /Migration32"
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002ASync" /v hkey /d HKLM
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002ASync" /v inimapping /d 0
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002ASync" /v item /d TINTSETP
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002ASync" /v key /d SOFTWARE\Microsoft\Windows\CurrentVersion\Run
    del "C:\Documents and Settings\All Users\「開始」功能表\程式\啟動\*.*" /q /f
    del "C:\Documents and Settings\Default User\「開始」功能表\程式\啟動\*.*" /q /f
    del "%userprofile%\「開始」功能表\程式\啟動\*.*" /q /f
    start C:\WINDOWS\pchealth\helpctr\binaries\msconfig.exe
第三招:清除所有多餘的桌面右鍵菜單

  很多顯卡在裝了驅動之後,桌面右鍵會多出一項或多項功能表,這些功能並不實用,
  還會拖慢右鍵的彈出速度,我們最好清除它。
  方法如上,複製內容見下(紅色部分)
    @ ECHO OFF
    title 清除所有多餘的桌面右鍵菜單
    color 1a
    PAUSE
    regsvr32 /u /s igfxpph.dll
    reg delete HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers /f
    reg add HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\new /ve /d {D969A300-E7FF-11d0-A93B-00A0C90F2719}
    reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v HotKeysCmds /f
    reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v IgfxTray /f
    第四招:C盤轉換為NTFS格式
  NTFS格式是WinXP推薦使用的格式。轉換為NTFS格式能提高硬碟存儲的
  效率,並可設置訪問許可權以保護檔。但NTFS格式的分區在DOS/WIN9X
  下均不能被識別,可能會給初級用戶造成不便。如無必要請不要轉換。
  方法如上,複製內容見下(紅色部分)
    @ ECHO OFF
    color 1b
    title C盤轉換為NTFS格式
    convert c:/fs:ntfs
    第五招:給每個盤添加標籤
  此命令將為本機每個盤都添加上標籤,一般是用在新機上面。
  以引導初學者更合理地支配他們的硬碟空間。
  方法如上,複製內容見下(紅色部分)
    @ ECHO OFF
    title 給每個盤添加標籤
    color 1B
    PAUSE
    c:
   labelc:WINXP
    label d:軟體
    label e:影視
    label f:遊戲
    label g:資料
    label h:備份
    d:
    md 本機驅動程式
    md 本機驅動程式\0.DirectX
    md 本機驅動程式\1.主板晶片組
    md 本機驅動程式\2.顯卡
    md 本機驅動程式\3.音效卡
    md 本機驅動程式\4.網卡
    md 本機驅動程式\5.攝像頭
第六招:關閉有害埠
      提高安全性,讓你上網更加無後顧之憂!!!
      第六招不讓發了,太長,傳個做好的上來試試!
      地址如下:
   http://clubpic2.chinaren.com/uploadfile/200612/595/BxkRUQYT.bat
    第七招:威金病毒批次處理專殺
      “威金”病毒主要通過網路共用傳播,病毒會感染電腦中所有的.EXE可執行檔,傳播速度十分迅速。“威金”病毒運行後,修改註冊表自啟動項,以使自己隨系統一起運行,向系統檔目錄下生成以下病毒檔:
    Program Files\svhost32.exe
    Program Files\micorsoft\svhost32.exe
    windows\explorer.exe
    windows\logo1_exe
    windows\rundll32.exe
    windows\rundl132.exe
    windows\intel\rundl132.exe
    windows\dll.dll
    病毒新變種還會自動從網站下載“天堂殺手”以及“QQ大盜(QQpass)”等10餘種木馬病毒,企圖盜取包括天堂、征途、夢幻西遊、傳奇等多種流行網遊以及QQ的帳號、密碼。
    方法如上,複製內容見下(紅色部分)
    @ECHO OFF
    del c:\winnt\logo1_.exe
    del c:\windows\logo1_.exe
    del c:\winnt\0sy.exe
    del c:\windows\0sy.exe
    del c:\winnt\1sy.exe
    del c:\windows\1sy.exe
    del c:\winnt\2sy.exe
    del c:\windows\2sy.exe
    del c:\winnt\3sy.exe
    del c:\windows\3sy.exe
    del c:\winnt\4sy.exe
    del c:\windows\4sy.exe
    del c:\winnt\5sy.exe
    del c:\windows\5sy.exe
    del c:\winnt\6sy.exe
    del c:\windows\6sy.exe
    del c:\winnt\7sy.exe
    del c:\windows\7sy.exe
    del c:\winnt\8sy.exe
    del c:\windows\8sy.exe
    del c:\winnt\9sy.exe
    del c:\windows\9sy.exe
    del c:\winnt\rundl132.exe
    del c:\windows\rundl132.exe
    net share c$ /d
    net share d$ /d
    net share e$ /d
    net share F$ /d
    net share G$ /d
    net share h$ /d
    net share i$ /d
    net share j$ /d
    net share admin$ /d
    net share ipc$ /d
    del c:\winnt\logo1_.exe
    del c:\windows\logo1_.exe
    del c:\windows\vdll.dll
    del c:\winnt\vdll.dll
    del c:\windows\tdll.dll
    del c:\winnt\tdll.dll
    del c:\windows\dll.dll
    del c:\winnt\dll.dll
    del c:\winnt\kill.exe
    del c:\windows\kill.exe
    del c:\winnt\sws32.dll
    del c:\windows\sws32.dll
    del c:\winnt\rundl132.exe
    del c:\windows\rundl132.exe
    echo.
    echo.
    echo.
    echo. *****************************
    echo.
    echo. 正在查毒...請不要關閉......
    echo.
    echo. *****************************
    echo.
    echo.
    echo.
    echo.
    ping 127.0.0.1 -n 5
    del c:\winnt\logo1_.exe
    del c:\windows\logo1_.exe
    del c:\windows\vdll.dll
    del c:\winnt\vdll.dll
    del c:\windows\dll.dll
    del c:\winnt\dll.dll
    del c:\windows\tdll.dll
    del c:\winnt\tdll.dll
    del c:\winnt\kill.exe
    del c:\windows\kill.exe
    del c:\winnt\sws32.dll
    del c:\windows\sws32.dll
    del c:\winnt\rundl132.exe
    del c:\windows\rundl132.exe
    echo.
    echo.
    echo.
    echo. *****************************
    echo.
    echo. 正在查毒...請不要關閉......
    echo.
    echo. *****************************
    echo.
    echo.
    echo.
    echo.
    ping 127.0.0.1 -n 5
    del c:\winnt\logo1_.exe
    del c:\windows\logo1_.exe
    del c:\windows\vdll.dll
    del c:\winnt\vdll.dll
    del c:\windows\dll.dll
    del c:\winnt\dll.dll
    del c:\windows\tdll.dll
    del c:\winnt\tdll.dll
    del c:\winnt\kill.exe
    del c:\windows\kill.exe
    del c:\winnt\sws32.dll
    del c:\windows\sws32.dll
    del c:\windows\0sy.exe
    del c:\winnt\1sy.exe
    del c:\windows\1sy.exe
    del c:\winnt\2sy.exe
    del c:\windows\2sy.exe
    del c:\winnt\3sy.exe
    del c:\windows\3sy.exe
    del c:\winnt\4sy.exe
    del c:\windows\4sy.exe
    del c:\winnt\5sy.exe
    del c:\windows\5sy.exe
    del c:\winnt\6sy.exe
    del c:\windows\6sy.exe
    del c:\winnt\7sy.exe
    del c:\windows\7sy.exe
    del c:\winnt\8sy.exe
    del c:\windows\8sy.exe
    del c:\winnt\9sy.exe
    del c:\windows\9sy.exe
    del c:\winnt\rundl132.exe
    del c:\windows\rundl132.exe
    del C:\winnt\Logo1_.exe
    del C:\winnt\rundl132.exe
    del C:\winnt\bootconf.exe
    del C:\winnt\kill.exe
    del C:\winnt\sws32.dll
    del C:\winnt\dll.dll
    del C:\winnt\vdll.dll
    del c:\winnt\tdll.dll
    del C:\winnt\system32\ShellExt\svchs0t.exe
    del C:\Program Files\Internet Explorer\0SY.exe
    del C:\Program Files\Internet Explorer\1SY.exe
    del C:\Program Files\Internet Explorer\2sy.exe
    del C:\Program Files\Internet Explorer\3sy.exe
    del C:\Program Files\Internet Explorer\4sy.exe
    del C:\Program Files\Internet Explorer\5sy.exe
    del C:\Program Files\Internet Explorer\6SY.exe
    del C:\Program Files\Internet Explorer\7sy.exe
    del C:\Program Files\Internet Explorer\8sy.exe
    del C:\Program Files\Internet Explorer\9sy.exe
    del C:\winnt\system32\Logo1_.exe
    del C:\winnt\system32\rundl132.exe
    del C:\winnt\system32\bootconf.exe
    del C:\winnt\system32\kill.exe
    del C:\winnt\system32\sws32.dll
    del C:\windows\Logo1_.exe
    del C:\windows\rundl132.exe
    del C:\windows\bootconf.exe
    del C:\windows\kill.exe
    del C:\windows\sws32.dll
    del C:\windows\dll.dll
    del C:\windows\vdll.dll
    del c:\windows\tdll.dll
    del C:\windows\system32\ShellExt\svchs0t.exe
    del C:\windows\system32\Logo1_.exe
    del C:\windows\system32\rundl132.exe
    del C:\windows\system32\bootconf.exe
    del C:\windows\system32\kill.exe
    del C:\windows\system32\sws32.dll
    del c:\_desktop.ini /f/s/q/a
    del d:\_desktop.ini /f/s/q/a
    del e:\_desktop.ini /f/s/q/a
    del f:\_desktop.ini /f/s/q/a
    del g:\_desktop.ini /f/s/q/a
    del h:\_desktop.ini /f/s/q/a
    del i:\_desktop.ini /f/s/q/a
    del j:\_desktop.ini /f/s/q/a
    del k:\_desktop.ini /f/s/q/a
第六招:關閉有害埠
      提高安全性,讓你上網更加無後顧之憂!!!
      第六招不讓發了,太長,傳個做好的上來試試!
      地址如下:
   http://clubpic2.chinaren.com/uploadfile/200612/595/BxkRUQYT.bat
    第七招:威金病毒批次處理專殺
      “威金”病毒主要通過網路共用傳播,病毒會感染電腦中所有的.EXE可執行檔,傳播速度十分迅速。“威金”病毒運行後,修改註冊表自啟動項,以使自己隨系統一起運行,向系統檔目錄下生成以下病毒檔:
    Program Files\svhost32.exe
    Program Files\micorsoft\svhost32.exe
    windows\explorer.exe
    windows\logo1_exe
    windows\rundll32.exe
    windows\rundl132.exe
    windows\intel\rundl132.exe
    windows\dll.dll
    病毒新變種還會自動從網站下載“天堂殺手”以及“QQ大盜(QQpass)”等10餘種木馬病毒,企圖盜取包括天堂、征途、夢幻西遊、傳奇等多種流行網遊以及QQ的帳號、密碼。
    方法如上,複製內容見下(紅色部分)
    @ECHO OFF
    del c:\winnt\logo1_.exe
    del c:\windows\logo1_.exe
    del c:\winnt\0sy.exe
    del c:\windows\0sy.exe
    del c:\winnt\1sy.exe
    del c:\windows\1sy.exe
    del c:\winnt\2sy.exe
    del c:\windows\2sy.exe
    del c:\winnt\3sy.exe
    del c:\windows\3sy.exe
    del c:\winnt\4sy.exe
    del c:\windows\4sy.exe
    del c:\winnt\5sy.exe
    del c:\windows\5sy.exe
    del c:\winnt\6sy.exe
    del c:\windows\6sy.exe
    del c:\winnt\7sy.exe
    del c:\windows\7sy.exe
    del c:\winnt\8sy.exe
    del c:\windows\8sy.exe
    del c:\winnt\9sy.exe
    del c:\windows\9sy.exe
    del c:\winnt\rundl132.exe
    del c:\windows\rundl132.exe
    net share c$ /d
    net share d$ /d
    net share e$ /d
    net share F$ /d
    net share G$ /d
    net share h$ /d
    net share i$ /d
    net share j$ /d
    net share admin$ /d
    net share ipc$ /d
    del c:\winnt\logo1_.exe
    del c:\windows\logo1_.exe
    del c:\windows\vdll.dll
    del c:\winnt\vdll.dll
    del c:\windows\tdll.dll
    del c:\winnt\tdll.dll
    del c:\windows\dll.dll
    del c:\winnt\dll.dll
    del c:\winnt\kill.exe
    del c:\windows\kill.exe
    del c:\winnt\sws32.dll
    del c:\windows\sws32.dll
    del c:\winnt\rundl132.exe
    del c:\windows\rundl132.exe
    echo.
    echo.
    echo.
    echo. *****************************
    echo.
    echo. 正在查毒...請不要關閉......
    echo.
    echo. *****************************
    echo.
    echo.
    echo.
    echo.
    ping 127.0.0.1 -n 5
    del c:\winnt\logo1_.exe
    del c:\windows\logo1_.exe
    del c:\windows\vdll.dll
    del c:\winnt\vdll.dll
    del c:\windows\dll.dll
    del c:\winnt\dll.dll
    del c:\windows\tdll.dll
    del c:\winnt\tdll.dll
    del c:\winnt\kill.exe
    del c:\windows\kill.exe
    del c:\winnt\sws32.dll
    del c:\windows\sws32.dll
    del c:\winnt\rundl132.exe
    del c:\windows\rundl132.exe
    echo.
    echo.
    echo.
    echo. *****************************
    echo.
    echo. 正在查毒...請不要關閉......
    echo.
    echo. *****************************
    echo.
    echo.
    echo.
    echo.
    ping 127.0.0.1 -n 5
    del c:\winnt\logo1_.exe
    del c:\windows\logo1_.exe
    del c:\windows\vdll.dll
    del c:\winnt\vdll.dll
    del c:\windows\dll.dll
    del c:\winnt\dll.dll
    del c:\windows\tdll.dll
    del c:\winnt\tdll.dll
    del c:\winnt\kill.exe
    del c:\windows\kill.exe
    del c:\winnt\sws32.dll
    del c:\windows\sws32.dll
    del c:\windows\0sy.exe
    del c:\winnt\1sy.exe
    del c:\windows\1sy.exe
    del c:\winnt\2sy.exe
    del c:\windows\2sy.exe
    del c:\winnt\3sy.exe
    del c:\windows\3sy.exe
    del c:\winnt\4sy.exe
    del c:\windows\4sy.exe
    del c:\winnt\5sy.exe
    del c:\windows\5sy.exe
    del c:\winnt\6sy.exe
    del c:\windows\6sy.exe
    del c:\winnt\7sy.exe
    del c:\windows\7sy.exe
    del c:\winnt\8sy.exe
    del c:\windows\8sy.exe
    del c:\winnt\9sy.exe
    del c:\windows\9sy.exe
    del c:\winnt\rundl132.exe
    del c:\windows\rundl132.exe
    del C:\winnt\Logo1_.exe
    del C:\winnt\rundl132.exe
    del C:\winnt\bootconf.exe
    del C:\winnt\kill.exe
    del C:\winnt\sws32.dll
    del C:\winnt\dll.dll
    del C:\winnt\vdll.dll
    del c:\winnt\tdll.dll
    del C:\winnt\system32\ShellExt\svchs0t.exe
    del C:\Program Files\Internet Explorer\0SY.exe
    del C:\Program Files\Internet Explorer\1SY.exe
    del C:\Program Files\Internet Explorer\2sy.exe
    del C:\Program Files\Internet Explorer\3sy.exe
    del C:\Program Files\Internet Explorer\4sy.exe
    del C:\Program Files\Internet Explorer\5sy.exe
    del C:\Program Files\Internet Explorer\6SY.exe
    del C:\Program Files\Internet Explorer\7sy.exe
    del C:\Program Files\Internet Explorer\8sy.exe
    del C:\Program Files\Internet Explorer\9sy.exe
    del C:\winnt\system32\Logo1_.exe
    del C:\winnt\system32\rundl132.exe
    del C:\winnt\system32\bootconf.exe
    del C:\winnt\system32\kill.exe
    del C:\winnt\system32\sws32.dll
    del C:\windows\Logo1_.exe
    del C:\windows\rundl132.exe
    del C:\windows\bootconf.exe
    del C:\windows\kill.exe
    del C:\windows\sws32.dll
    del C:\windows\dll.dll
    del C:\windows\vdll.dll
    del c:\windows\tdll.dll
    del C:\windows\system32\ShellExt\svchs0t.exe
    del C:\windows\system32\Logo1_.exe
    del C:\windows\system32\rundl132.exe
    del C:\windows\system32\bootconf.exe
    del C:\windows\system32\kill.exe
    del C:\windows\system32\sws32.dll
    del c:\_desktop.ini /f/s/q/a
    del d:\_desktop.ini /f/s/q/a
    del e:\_desktop.ini /f/s/q/a
    del f:\_desktop.ini /f/s/q/a
    del g:\_desktop.ini /f/s/q/a
    del h:\_desktop.ini /f/s/q/a
    del i:\_desktop.ini /f/s/q/a
    del j:\_desktop.ini /f/s/q/a
    del k:\_desktop.ini /f/s/q/a
發表於 2008-7-31 12:34:23 | 顯示全部樓層


please show me how can I copy @echo off into brief case?
回復

使用道具 舉報

手機版|小黑屋|術數縱橫

GMT+8, 2026-8-12 07:10 PM , Processed in 0.018449 second(s), 14 queries .

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回復 返回頂部 返回列表