瑞星卡卡安全论坛

首页 » 技术交流区 » 系统软件 » 请问一下各位大虾,怎样开机就自动删除TEMP文件夹中的东西啊?【求助】
消灭你病毒 - 2006-9-24 12:52:00
请问一下各位大虾,怎样开机就自动删除TEMP文件夹中的东西啊?说清楚一些啊!
阿诺8979 - 2006-9-24 13:24:00
二楼正确
不可再生的缘 - 2006-9-24 13:38:00
@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 清除系统垃圾文件完成!
echo. & pause
保存为 bat 然后就OK了
消灭你病毒 - 2006-9-24 21:56:00
谢谢啊!
1
查看完整版本: 请问一下各位大虾,怎样开机就自动删除TEMP文件夹中的东西啊?【求助】