标题: [系统相关] 请高手帮我修改一段vista 系统日志清理 批处理代码 [打印本页]
作者: hailangm 时间: 2011-8-18 11:31 标题: 请高手帮我修改一段vista 系统日志清理 批处理代码
请高手帮我修改一段vista 系统日志清理的批处理代码,要求只清理vista系统日志,点击就运行,不提示,退出也不做任何提示,谢谢了
@echo off
title Windows Vista系统垃圾清理批处理
color 2E
echo Windows Vista操作系统在安装和使用过程中都会产生相当多的垃圾文件,包括临时文件(如:*.tmp、*._mp)、日志文件(*.log)、临时帮助文件 (*.gid)、磁盘检查文件(*.chk)、临时备份文件(如:*.old、*.bak)以及其他临时文件.特别是如果一段时间不清理IE的临时文件夹 “Temporary Internet Files”,其中的缓存文件有时会占用上百MB的磁盘空间.这些垃圾文件不仅仅浪费了宝贵的磁盘空间,严重时还会使系统运行慢如蜗牛。该批处理脚本将自 动清理您的电脑中无用的垃圾文件,决不涉及系统中的重要文件,请放心使用!
echo --------------------------
echo 要开始进行系统清理
pause
cls
@echo off
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 %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
del /f /s /q "%appdata%\Microsoft\Windows\cookies\*.*"
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
rd /s /q "%userprofile%\Local Settings\Temp\" & md "%userprofile%\Local Settings\Temp\"
del /f /s /q "%appdata%\Microsoft\Windows\Recent\*.*"
@echo off
cls
color 2A
echo -----系统垃圾清理完成!
echo 要退出
pause
作者: yhp1996 时间: 2011-8-18 11:52
- @echo off
- title Windows Vista系统垃圾清理批处理
- color 2E
- 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 %windir%\*.bak
- del /f /s /q %windir%\prefetch\*.*
- rd /s /q %windir%\temp & md %windir%\temp
- del /f /s /q "%appdata%\Microsoft\Windows\cookies\*.*"
- del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
- del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
- rd /s /q "%userprofile%\Local Settings\Temp\" & md "%userprofile%\Local Settings\Temp\"
- del /f /s /q "%appdata%\Microsoft\Windows\Recent\*.*"
- exit
复制代码
作者: hailangm 时间: 2011-8-18 11:57
回复 2# yhp1996
老大,我只要求对VISTA系统日志清理,其他不要
作者: yhp1996 时间: 2011-8-18 12:12
回复 3# hailangm - @echo off
- title Windows Vista系统垃圾清理批处理
- color 2E
- del /f /s /q %systemdrive%\*.log
- exit
复制代码
不知道你是不是要这样的
log文件不是什么“VISTA系统日志”
清理VISTA系统日志,要用事件查看器
作者: hailangm 时间: 2011-8-18 12:28
回复 4# yhp1996
老大,我就是想找一个能够清理VISTA系统日志文件的批处理
作者: CUer 时间: 2011-8-18 12:43
能描述一下你心中的“VISTA系统日志”在什么地方吗?
作者: yhp1996 时间: 2011-8-18 12:59
- sc stop Eventlog
- del /f /q %windir%\system32\config\Appevent.evt
- del /f /q %windir%\system32\config\Sysevent.evt
- del /f /q %windir%\system32\config\Secevent.evt
- sc start Eventlog
复制代码
没测试过的代码,慎重使用
作者: lxzzr 时间: 2011-8-18 13:14
win7下的工具wevtutil.exe 例子:wevtutil.exe cl application
实在不行参考(以管理员运行):http://wizard.2288.org/post/26.html
作者: hailangm 时间: 2011-8-18 14:26
谢谢你们的热心帮助,我测试了再来回复
作者: hailangm 时间: 2011-8-18 14:26
谢谢你们的热心帮助,我测试了再来回复
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |