电脑C盘中有几个后戳名是Log的文件删不到怎么办啊

来源:百度知道 编辑:UC知道 时间:2024/07/01 14:23:31
在安全模式下怎么删掉啊

删不了就不删咯 人家才多大啊 又不碍着你什么

推荐你使用个好东西 只要你不怕它给你删出问题(用了近一年了 至少我没出现过问题)
其实在网上也搜得到它的做法
如下
1 建立一个新得记事本文档
2 输入如下内容:

@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 清理系统垃圾完成!