windows电脑清除系统垃圾

2023-05-03 14:50:13 浏览数 (1)

(adsbygoogle = window.adsbygoogle || []).push({});

大家在使用windows的时候,经常会发现用着用着C盘的容量越来越小,很多系统垃圾都不知道怎么删除。下面介绍一种方法:

  1. 将下面代码复制在一个文本文档中(任何一款代码编辑器都可以)
  2. 保存,并将文件后缀改为.bat,双击运行即可 注意:很多人在使用的时候没有显示文件后缀,这里需要先设置电脑显示文件后缀
代码语言:javascript复制
@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 SettingsTemporary Internet Files*.*" 
del /f /s /q "%userprofile%Local SettingsTemp*.*" 
del /f /s /q "%userprofile%recent*.*" 
echo 清除系统LJ完成! 
echo. & pause 

0 人点赞