Tutorial: Clean Junk Files in 2 Minutes
When your pc is running slower and slower, you should give it a spring cleaning.
The increasing in temporary files leads to shrink of swapping area done by pagefile.sys, and decreases the system performance. Junk files also scattering files all over the hard drive. This increases the size of the indexing file of the disk partition which will make the windows search utility much slower. Moreover, continued scattering of junk files makes other files highly fragmented over the drive. This fragmentation creates significant movement of the physical arm of the hard drive and thus shortens hard drive’s operating life and slows down the system performance.
I’m going to show you a few ways to clean up those annoying junk files.
Method 1:
There are a number of ways to remove and/or eliminate these junk files, and this is the easiest way. I strongly recommend that use Perfect Optimizer to clean your PC(Click Here to Free Download). This tool’s functions are strong beyond compare. It will clean up your junk files, scan and repair invalid registry entries, delete history records, remove duplicate files and invalid shortcuts, block viruses and spyware.
It’s so easy to use, even you know nothing about PC, you still can use it. Just click the “Clean” button on the left side, then click “Repair All”. After that, your computer will work in mint condition!
Method 2:
Copy the code to your Notepad, and save it to a .bat file (For example, click “File” menu, click “Save”, input “clean.bat”(without quotes)). Then double click the file you saved. This could help you remove the temp files and log files, these are all junk files. This method is worth a try, but its effects is not as good as method 1.
Code:
@echo off echo Now cleaning, please wait… 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 Done! You have your junk files removed! echo. & pause










This tool is really excellent!!!