只读
只读(readonly)又称唯读,表示文档或属性只能读取,不能修改也不能储存。有些重要的档案会设定成只读状态,免得一不小心修改这些文档的内容,除非解除只读的状态,不然这些文档是不能修改的。
批处理文件[ ]
删除垃圾文件的批处理文件制作方法如下:
首先开启记事本(其他的都行,txt)然后复制下面这些字
@echo off
echo 正在清理系统垃圾文件,按任意键开始...... &pause
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\*.*
del /f /s /q %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
最后,将文件的名字改成.bat或.cmd结尾并直接执行。
注意事项[ ]
系统的只读文件最好不要删除,以免引起系统故障!