windows服务器清理系统垃圾日志文件
2020-11-25 02:39
标签:windows Windows服务器的系统盘如果是2003系统的话那么我们默认给10G的空间就够了,但是有时候我们不经意去查看系统盘的时候发现已经使用了9.9G,其实多是垃圾日志文件占用系统盘空间,使用如下批处理将这些文件删除。 在桌面新建一个文本文档,将如下代码复制进去: 代码复制完成之后将文件的后缀名改成bat或者cmd格式的,双击执行以下,系统垃圾就都被清除掉了。 本文出自 “淡蓝色的风” 博客,请务必保留此出处http://1051236524.blog.51cto.com/5661514/1409355 windows服务器清理系统垃圾日志文件,搜素材,soscw.com windows服务器清理系统垃圾日志文件 标签:windows 原文地址:http://1051236524.blog.51cto.com/5661514/1409355@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
文章标题:windows服务器清理系统垃圾日志文件
文章链接:http://soscw.com/index.php/essay/22546.html