服务器c盘垃圾文件太多,百度了下批量删除垃圾文件,代码如下:

    @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

坑爹的是先把temp文件夹删了,再建,导致temp文件夹的权限发生改变。

解决办法,给temp文件夹的user用户写入的权限。



最后修改:2014 年 03 月 26 日
如果觉得我的文章对你有用,请随意赞赏