不安装杀毒软件怎么清理电脑垃圾
1、首先我们在桌面上右键,新建一个记事本,比如叫垃圾清理

2、然后复制下面的代码到记事本中并保存
@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
3、右键点击txt文档,选择重命名

4、然后将文件类型从TXT改为bat,并点击是

5、文件改完名后,双击运行执行文件,系统编开始自动清理垃圾

6、垃圾清理完成后任意键关掉就可以了
