专用垃圾清理工具

 

  
  
  
  
  1. @echo off  
  2. title 专用垃圾清理器  
  3. echo 乔磊 制作  
  4. echo.  
  5. echo 正在清除系统垃圾文件,请稍等...  
  6. echo.  
  7. set alldrive=c d e f g h i j k l m n o p q r s t u v w x y z  
  8. del /f /s /q %systemdrive%\*.tmp  
  9. del /f /s /q %systemdrive%\*._mp  
  10. del /f /s /q %systemdrive%\*.log  
  11. del /f /s /q %systemdrive%\*.gid  
  12. del /f /s /q %systemdrive%\*.chk  
  13. del /f /s /q %systemdrive%\*.old  
  14. for %%a in (%alldrive%) do if exist %%a:\Recycled rd /s /q %%a:\Recycled   
  15. for %%a in (%alldrive%) do if exist %%a:\RECYCLER rd /s /q %%a:\RECYCLER   
  16. del /f /s /q %windir%\*.bak  
  17. del /f /s /q %windir%\prefetch\*.*  
  18. del /f /s /q %windir%\temp\*.*  
  19. del /f /q %userprofile%\cookies\*.*  
  20. del /f /q %userprofile%\recent\*.*  
  21. del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"  
  22. del /f /s /q "%userprofile%\Local Settings\Temp\*.*"  
  23. del /f /s /q "%userprofile%\recent\*.*"  
  24. echo 清理完成!  
  25. echo 请按任意键退出!  
  26. pause>nul 

哈哈,分享给大家

你可能感兴趣的:(职场,批处理,休闲)