Many years ago, I made it a rule, to NEVER install another program on my PC, to do something that I could do with what was already on the PC to start with.
Put these three commands into a text file, then rename it
Cleanup.bat and one click does the job and you've never installed anything new on your PC.
del /f /s /q C:\*.tmp
del /f /s /q C:\*.bac
del /f /s /q C:\*.old
I would be reluctant to mass delete all the .log files, but only the .log.bac files.
Add just two more lines, to the above mentioned batch file, one to delete all the Edge temp files and another to delete all the Firefox temp files,and you've just done a massive cleanup, unlike any professional program on the market.
To clean out the Edge temp files:
del /F /S /Q "C:\Users\%UserName%\AppData\Local\Microsoft\Edge\User Data\Default\Cache\*.*"
To clean out all the Firefox temp files:
del /F /S /Q "C:\Users\%UserName%\AppData\Local\Mozilla\Firefox\Profiles\*.*"
Deleting the contents of the Prefetch folder was a little more complicated. First I had to take ownership of the folder, then I could delete its contents.
TAKEOWN /F "C:\Windows\Prefetch"
del /F /S /Q "C:\Windows\Prefetch\*.*"
If anyone puts all the 'blue lines' in this post, into one batch file, they will have a pretty good little Cleanup program.
Happy Easter, Y'all!
Shadow 