消防衣穿着视频:谁能告诉我怎样新建一个记事本,我想做一个清理系统的程序.

来源:百度文库 编辑:高考问答 时间:2024/04/28 03:51:26

@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%\\小甜饼s\\*.*
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

新建→文本文档 就哦了

在文件夹里点右件 新建文本文档 就可以了

楼上这位是不是COPY来的啊.这是龙族的
@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