有没有专门清理电脑垃圾的软件啊、?
- 提问者网友:遮云壑
- 2021-04-27 10:27
- 五星知识达人网友:末日狂欢
- 2021-04-27 10:36
1.打开记事本,复制以下内容:
@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
2.粘贴到记事本里,另存为 定时清理系统垃圾.bat 或者 定时清理系统垃圾.cmd
3.开始-程序-启动 右击打开 然后把 定时清理系统垃圾.bat 复制到这个文件夹内 ok 这样每次 开机登录系统后 系统会自动运行这个文件(定时清理系统垃圾.bat ) 哈哈 瞬间系统速度提升
4.想让其他程序开机自动运行的话 也可以这样做哦 把程序的快捷方式 复制到 启动 文件夹内即可 也可以把 定时清理系统垃圾.bat 的快捷方式复制到启动 文件夹内
- 1楼网友:低音帝王
- 2021-04-27 14:11
- 2楼网友:杯酒困英雄
- 2021-04-27 13:47
- 3楼网友:掌灯师
- 2021-04-27 12:47
- 4楼网友:神鬼未生
- 2021-04-27 12:04
- 5楼网友:渡鹤影
- 2021-04-27 10:46
这个可以清理系统垃圾,下面的内容拷贝到一个记事本里,把后缀“txt”改成“bat”
@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