一键清理系统垃圾文件?在电脑的程序内,在装机人员工具里,有“一键
在的程序内,在装机人员工具里,有“一键清理系统垃圾文件”,我一点,清理了不少,不知指的是什么?有什么作用?请教一下!
这只是一个批处理文件. 内容如下: @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 del 就是删除的意思,后面跟的就是要删除的内容. 主要删除了一些垃圾文件,上网缓存文件,回收站文件,上网cookies文件等. 删除了一些系统中不需要的文件,基本上可以信任它...