[软件开发]安全垃圾文件清理批处理 by LightningFox beta 0.1
软件语言:简体中文
应用平台:Windows
软件介绍:安全垃圾文件清理批处理工具。
代码如下:
@echo off
echo 安全垃圾文件清理批处理 by LightningFox beta 0.1
DEL /F /S /Q %TEMP%*.*
DEL /F /S /Q %TMP%*.*
DEL /F /S /Q %windir%\Temp*.*
DEL /F /S /Q %windir%\Prefetch*.*
DEL /F /S /Q “%userprofile%\Cookies*.* “
DEL /F /S /Q “%userprofile%\Recent*.lnk”
DEL /F /S /Q “%userprofile%\Local Settings\Temp*.“
DEL /F /S /Q “%userprofile%\Local Settings\History*.“
DEL /F /S /Q “%userprofile%\Local Settings\Temporary Internet Files*.* “
echo 垃圾文件清理完成!
echo.
pause
[软件开发]安全垃圾文件清理批处理 by LightningFox beta 0.1
http://lfmem.com/我的作品/安全垃圾文件清理批处理/