Britec Tech Support Forum

Full Version: clean temp files without 3rd party tool
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
i would like to know how do i clean temp files without CCleaner, etc.?
Hi f23498,

to clean temp files without 3rd party tools, here is what do:

Right click the start button and select Run
[attachment=1961]
Then in the run box, type %temp% and click OK
[attachment=1964]
Once the Windows explorer appears, highlight everything and delete it! (If you can't delete some items, that is fine, this is normal)
[attachment=1965]
After that, open the run box again and type temp
[attachment=1966]
Then follow same procedure above to remove the files.

Once you have done that, there should be no more temp files!

RECdevicehelper
you can make use of the built in disk cleanup feature to clean temp files.. here's a video on it



1. Open Notepad and copy and past text below.

Code:
cd C:\Users\%username%\AppData\Local
rmdir /S /Q Temp

del C:\Windows\Prefetch\*.* /Q

del C:\Windows\Temp\*.* /Q

del C:\Users\%username%\AppData\Roaming\Microsoft\Windows\Recent Items*.* /Q
pause

2. Name file Temp-Clean.bat change to all files and save

3. Right-Click and run as administrator

4. Junk files will be cleaned from Temp, Prefetch and Recent Items

That's it. You can make complex ones to do a lot more if you wish.

You can download it here.
Double clutch, just so you are aware, he wants to learn how to clean temp files without ccleaner or any third party tool.
(10-29-2016, 04:25 PM)RECdevicehelper Wrote: [ -> ]Double clutch, just so you are aware, he wants to learn how to clean temp files without ccleaner or any third party tool.
I see that now. thanks REC
(10-29-2016, 04:26 PM)Double clutch Wrote: [ -> ]
(10-29-2016, 04:25 PM)RECdevicehelper Wrote: [ -> ]Double clutch, just so you are aware, he wants to learn how to clean temp files without ccleaner or any third party tool.
I see that now. thanks REC
No problem
thank you
(10-29-2016, 07:35 PM)f23948 Wrote: [ -> ]thank you
Your Welcome!
Pages: 1 2