批處理清除垃圾檔案 經典

2022-02-09 23:26:33 字數 973 閱讀 9076

批處理指令如下:

1

@echo off

2echo 正在清除系統垃圾檔案,請稍等......

3@del /f /s /q %systemdrive%\*.tmp

4@del /f /s /q %systemdrive%\*._mp

5@del /f /s /q %systemdrive%\*.log

6@del /f /s /q %systemdrive%\*.gid

7@del /f /s /q %systemdrive%\*.chk

8@del /f /s /q %systemdrive%\*.old

9@del /f /s /q %systemdrive%\recycled\*.*

10@del /f /s /q %windir%\*.bak

11@del /f /s /q %windir%\prefetch\*.*

12@rd /s /q %windir%\temp & md %windir%\temp

13@del /f /q %userprofile%\cookies\*.*

14@del /f /q %userprofile%\recent\*.*

15 @del /f /s /q "

%userprofile%\local settings\temporary internet files\*.*

"16 @del /f /s /q "

%userprofile%\local settings\temp\*.*

"17 @del /f /s /q "

%userprofile%\recent\*.*

"18 echo 清除系統垃圾完成!

在windows xp環境下可以直接雙擊執行即可;而在windows 7以上版本須用管理員身份執行方可刪除有許可權的垃圾檔案!!!

如果有不足之處請指教!!!

批處理清除VisualStudio解決方案資料夾

有很多次我們需要手工來刪除bin,obj這樣的資料夾。這些資料夾是由visual studio編譯專案時生成的,其中包括了當前專案的程式集。乙個解決方案會包含好多個專案了,那麼就有很多這樣的bin,obj資料夾,我們想要實現的目標是遍歷所有資料夾與子資料夾然後刪除它們。下面使用batch file來...

清除批處理

能否刪除c documents and settings local settings temp 能否刪除c documents and settings local settings temp中的檔案?電腦c documents and settings local settings temp資料...

清除cookies的批處理 bat

清除cookies的批處理 bat 原理就是刪除當前使用者的cookies資料夾。這是個小技巧,把手動清除cookies的幾步折合成了一步。第一步 在桌面上新建乙個文字檔案為 一步清除cookies.txt 把副檔名改為bat,即 一步清除cookies.bat 第二步 echo off del q...