我的电脑C盘不能清理
- 提问者网友:流星是天使的眼泪
- 2021-05-05 19:46
- 五星知识达人网友:怀裏藏嬌
- 2021-05-05 20:28
教你自己制作清理系统垃圾工具;点击 开始—程序—附件—记事本,把下面的代码复制进去:@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 清除系统LJ完成!
echo. & pause
保存时候选“另存为”,路径选“桌面”,保存类型为“所有文件”,文件名为“清理系统LJ.bat”,这样就完成了,记住后缀一样要为bat,现在桌面上就有一个清理系统垃圾的工具了 ,双击它能很快的清理系统垃圾,速度很快,不到一分钟,
- 1楼网友:一把行者刀
- 2021-05-05 21:18