System purification

@echo off
del “%tmp%\*.*”/s /q /f
FOR /d %%p IN (“%tmp%\*.*”)DO rmdir “%%p”/s /q

Store the file with the above code as .bat suffix, name it whatever you want and run it as an administrator

Guess you like

Origin blog.csdn.net/qq_43808700/article/details/112599017