How to clean up C drive

Table of contents

 

1.Software cleaning

2. Manual cleaning

3. Code bat cleaning


1.Software cleaning

Optional software:

  1. Disk analysis-spacesniffer
  2. Garbage Cleaner-ccleaner
  3. Duplicate file cleaning-Duplicate Cleaner
  4. System optimization-dism++
  5. Partition Assistant

Reference URL: https://www.zhihu.com/question/27284451

2. Manual cleaning

Manually clean up C drive

It turns out that these files in the C drive can be deleted, no wonder the more the computer is used, the more it freezes!

3. Code bat cleaning

@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

Copy the above code into Notepad, and save Notepad as an ANSI-encoded .bat file, and then click to execute the bat file

The encoding is ANSI to prevent garbled characters in cmd at runtime

 

Guess you like

Origin blog.csdn.net/Daisy74RJ/article/details/106725210