请求高手帮我用VB写个清除系统垃圾的程序,写的好有分加!

来源:百度知道 编辑:UC知道 时间:2024/05/04 15:06:18
请高手用VB帮我写个
像COOKIES、TEMP等所有垃圾文件都能删除的程序
感激不尽
无所谓最好一个星期内

这类任务用批处理就搞定了……

@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 complete & successful
echo. & pause

把@echo off以下(包括@echo off)的内容存为.bat结尾的文件,双击运行即可。

你什么时候要?

Private Sub Com