1   1  /  1  页   跳转

开机怎么自动删除东西

开机怎么自动删除东西

我在C盘的TMP/TMP/文件夹里每次开机会建立一个{8字符-4字符-4字符-4字符-12字符}的文件夹,字符随即的,建立文件夹的程序也知道,但是关机的时候不会自动删除,所以里面的东西每次要手动删除。
怎么弄才可以开机的时候自动删除?我想弄个.CMD的处理命令,但是自己弄不出来,谁会弄,或者用其他的办法做到?
最后编辑2007-01-25 17:40:31
分享到:
gototop
 

用批处理文件,然后将该文件加载到启动项里。
gototop
 

处理命令怎么写?我一直没弄好,帮下忙~
gototop
 

@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 s\*.* 
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\*.*" 
sfc /purgecache '清理系统盘无用文件 
defrag %systemdrive% -b '优化预读信息 
echo 清除系统LJ完成! 
echo. & pause 

到时文件保存改名为.bat 格式 就OK了 
gototop
 

这不是开机自动运行的
到时你可以在注册表里改为开机自动运行就OK了
gototop
 
1   1  /  1  页   跳转
页面顶部
Powered by Discuz!NT