Saturday 9 August 2014

Speed up system performance using Notepad


We often use different kinds of software to achieve defined task.While using these softwares, most of them create temporary files and then leave them behind. They do not delete them. This can happen because the program crashed or the developer of the program simply forgot to add the code needed to delete the temporary files after the program is done with them. The temporary files left behind can accumulate over time and consume a lot of disk space.

Temporary files may be deleted manually. Operating systems may clear out the temporary directory on a reboot, and they may have "cleaner" scripts that remove files if they have not been accessed in a certain amount of time. Also, memory-based systems, like tmpfs, inherently do not preserve files across a reboot. You may heard about the application "CCleaner" which is useful to clear these garbage files. Here I am going to post one small trick using notepad which will clear all garbage files in one click. You can say this script is treating as the base of all professional kinds of system cleaner softwares!
Speed up system performance using Notepad
Steps you have to perform
1. Open "Notepad".
2. Copy down below code and paste into the notepad file.
@echo off
del /s /f /q c:\windows\temp\*.*
rd /s /q c:\windows\temp
md c:\windows\temp
del /s /f /q C:\WINDOWS\Prefetch
del /s /f /q %temp%\*.*
rd /s /q %temp%
md %temp%
deltree /y c:\windows\tempor~1
deltree /y c:\windows\temp
deltree /y c:\windows\tmp
deltree /y c:\windows\ff*.tmp
deltree /y c:\windows\history
deltree /y c:\windows\cookies
deltree /y c:\windows\recent places
deltree /y c:\windows\spool\printers
del c:\WIN386.SWP
cls
3. Save it as with .bat extension, such as "anyname.bat"


4. You should get the file looking like below.
5. Double click to clear the system garbage files!

No comments:

Post a Comment