BAT batch script processing system disk cleaning garbage

Today, I will give you a wave of Amway how to use batch scripts to clean up the C drive cache garbage.
First, we first create a txt text on the computer,
and then enter the following code

@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 clear system garbage is complete!
echo. & pause
Insert picture description here

After saving the code, click on the document, right-click to open the rename property, change the format of our previously written document to bat format, run the batch script, and click save

Insert picture description here
Insert picture description here
Insert picture description here

Change the file suffix file name to bat format, click save, and then double-click to run to automatically clean up
Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_45743004/article/details/104197039