把该批处理加到启动项里- @echo off&color 2f&Title 系统垃圾文件清理器
- more +9 "%~f0"
- set "z=HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
- for %%a in (cache history cookies) do for /f "tokens=2*" %%b in ('reg query "%z%" /v %%a') do if exist "%%c" (
- rd /s /q "%%c"
- md "%%c"
- )
- start "" "http://www.bathome.net/index.php"
- exit
-
- =========================================================
- ***** 系统垃圾文件清理器 专用版 *****
-
- 本程序特点
-
- 1、不管IE6、IE7、IE8哪个版本都能清除;
-
- 2、自动检测,当发现电脑开机后,自动运行本批处理;
-
- 3、清除完毕后,自动打开网页http://www.bathome.net/index.php;
-
- =========================================================
复制代码
|