C盘最大化清理

删除Program Data中Micrisoft/Search中文件

  • 进入目录C:\ProgramData\Microsoft\Search\Data
  • 打开任务管理器,结束任务SearchIndexer.exe
  • 资源管理器中第一步的目录下按住shift键同时右击选择在“此处打开命令窗口”,输入命令:del /F /Q /S Applications回车,完成后输入:del /F /Q /S Temp,将这两个目录中的文件清理。

清理工具清理

百度网盘下载链接:点我 密码:05qy

批处理清理

  • C盘新建文本文档,输入如下批处理命令:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@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

更改文件名为批处理文件,比如qingli.bat,双击运行。

推荐文章