Tag Archive | "Clean"

3 Chrome Applications That Clean Up The Internet


The internet can be a dirty place. No, I am not referring to the adult websites that are all over the place; I am referring to the fact that many websites are covered with junk that you do not want to see. If you go to a website to read an article, it would be convenient to be able to see the article. If you go to YouTube to watch a video, it would be amazing to watch it without a million suggested videos and comments detracting from your enjoyment.

Thanks to these three Chrome extensions, you can now have the clean web browsing experience you wanted all along. All your favorite articles and videos can be as clean as you always dreamt them to be.

The three extensions that I am going to highlight today will remove all the garbage from websites and leave you with a clean and shiny viewing experience. If you have a hard time concentrating and dealing with distractions, these extensions are tailor-made for you.

Clea.nr

Clea.nr is a simple extension. It cleans up YouTube and Amazon, and makes them much more pleasant places to be. It seems like YouTube keeps adding more and more stuff, making it less about the video you are watching now, and more about the video you need to watch next. Clea.nr solves that by removing everything but the video you are watching, and a search bar.

If that is not enough, you can also click the “Dim Lights” link right below the video to have the background fade. This way, it is even easier to lock in on the video and forget about everything that is going on around it.

The program works the same way for Amazon. It clears out all the extras Amazon shows you around the side of the screen, and simply shows the search results. This makes Amazon easier to navigate. It also prevents Amazon from up selling you to something you do not need.

TidyRead

We have covered TidyRead before, but it has made many improvements with this new extension. TidyRead is designed to clean up the websites you read. It removes all the extras and only shows you the article you are reading. I have to say, please support the websites you love by not blocking the ads completely, but instead use a program like this to hide them just while you are actively reading an article.

Tidy is packed with features. You can set it on automatic, so as soon as you click on an article it cleans it. You can choose to set it to manual, so it only cleans up an article when you click the icon next to the address bar.

Once you are looking at an article, there are all kinds of options. You can change the font size, color, background and so much more. The settings appear at the top of the article, and are easy to access and change.

If you are looking to make more changes, you can right-click the extension’s icon and go to options. From here, you can fine-tune the program even more. In the settings screen you can choose whether you want TidyRead to be automatic or manual.

Clearly by Evernote

For Evernote users, this should be your go to program. It does not offer as much customization as TidyRead, but it does allow you to tweak the color palette for the article. It cleans up the article and shows you only the important parts. To clean up an article, simply click the extension’s icon next to the address bar.

The thing that makes Clearly so great is the ability to quickly clip the article to your Evernote account for later reading. When you are viewing a cleaned up article, simply click on the Evernote logo on the right side of the screen, and it will automatically be saved to your Evernote account. This is awesome if you are in the middle of reading something and you have to stop for one reason or another.

Another nice feature of Clearly is the ability to print an article quickly. On the right side there is a little printer icon. Click that and Clearly will print the cleaned up version of the article.

Conclusion

With these three extensions, you will be ready to visit a clutter free internet. Just remember, websites rely on ads to give you free content, so support them and at least check out the ads before you clean everything up!

Did these extensions make browsing the web more pleasant? Let us know in the comments.

Image Credit: ShutterStock

Similar Stuff



View full post on MakeUseOf

Posted in Useful APPsComments (1)

5 Ways To Clean Up Your Computer With An Automated Script [Windows]


class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/automated.png" alt="automate computer cleanup" />Computer maintenance isn’t exactly something that most people remember to do. For the general user that isn’t exactly tech savvy, when a computer doesn’t work, they either call for help or simply buy a new computer.

If you have family members or friends that are always calling you for help with a slow computer, I’m going to offer you a solution that you can use to stop those phone calls right now. This solution incorporates six tools into a Windows script. That script is going to perform all of the PC cleanup work that you would do if you were sitting right in front of the computer yourself.

What This Script Will Accomplish

This Windows script is going to run the required tools in command line mode. Many of these tools that you’ve been using for years, you may not have even realized that there is a command-line mode available.

Clean Up Registry & Temp Folders

The first step is probably the most important. We’re going to launch CCleaner in command line mode to clean up temp files and the registry.

One catch. In order to make this script work without constant notifications about the apps making computer changes, you’ll have to disable the User Account Control windows feature in Windows 7.

style="text-align: center;"> class="aligncenter" style="border-width: 1px; border-color: black; border-style: solid;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/autoclean1.png" alt="" width="571" height="406" />

Now you’re ready to roll. Create a file called CleanComputer.wsf and start it off with the following script.

<job> /> <script language="VBScript">

Option Explicit /> On Error Resume Next

Dim WshShell /> Dim retVal

set WshShell=CreateObject("WScript.Shell") /> WshShell.run "CCleaner.exe /AUTO"

Danny covered href="http://www.makeuseof.com/tag/optimize-system-run-ccleaner/">CCleaner recently, so you can see just what it is capable of and how much it can optimize your system. When you launch it in the script as shown above with the /AUTO flag, it’ll run invisible and it’ll use the settings you used when you last ran the application. You’ll see CCleaner.exe running in the Task Manager.

style="text-align: center;"> class="aligncenter" style="border-width: 1px; border-color: black; border-style: solid;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/autoclean2.png" alt="automate computer cleanup" width="520" height="417" />

If you configure CCleaner beforehand, in auto mode it’ll automatically clean up temporary files, log files and your registry as well.

Clean Up Spyware

Next up is to take care of any spyware that might be running on the PC. My favorite tool for that is Spybot, and luckily Spybot also offers a command line feature. The one problem here is that the path to Spybot is full of spaces, which is hard to handle in a Windows Script shell command.

So, create a .bat file with the following:

C:\Program Files (x86)\Spybot - Search & Destroy\SpybotSD.exe" /taskbarhide /autocheck /autofix /autoclose /> Exit

Save it as SpyBot.bat in the same directory as your Windows script. Then in the next line of your WSF file, add the following:

WshShell.run "spybot.bat"

Your Windows Script will launch your batch job that will launch Spybot in command-line mode. You will know it’s running when the Exe appears in the task manager.

style="text-align: center;"> class="aligncenter" style="border-width: 1px; border-color: black; border-style: solid;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/autoclean3.png" alt="script to clean temp files" width="549" height="410" />

Those four parameters after the spybotsd.exe file  will run Spybot in silent mode, automatically remove any spyware found, and then automatically close.

Remove Malicious Software

In addition to anything Spybot catches, I also like to run the Microsoft href="http://support.microsoft.com/kb/890830">Malicious Software removal tool. Download the executable from the “Microsoft Download Center” section, save it in your script directory as “malremove.exe” and then add the following line to your growing Windows Script.

WshShell.run "malremove.exe /Q /F:Y"

The /Q command tells the malware removal tool to run in quiet mode (no interface) and /F:Y tells it to forcibly remove any malware that it finds without any intervention required. The first time you run it during your initial testing, you’ll have to select the option for no warning the next time it runs.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/autoclean4.png" alt="script to clean temp files" width="404" height="305" />

Here it is running in the background.

style="text-align: center;"> class="aligncenter" style="border-width: 1px; border-color: black; border-style: solid;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/autoclean31.png" alt="script to clean temp files" width="549" height="410" />

So, we’ve covered most of what you’d probably do if you were there in person – run CCleaner to get rid of temporary Internet files and other temp files, remove spyware and malware, so what’s left?

Automate Disk Cleanup

Another common tool that can help computer performance is the Windows Disk Cleanup tool.  First you have to set it up. Go to Start -> Run and type: “cleanmgr /sageset:1“. The following window will appear.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/autoclean6.png" alt="computer clean up script" width="385" height="472" />

Set up the items that you’d like your command line to automatically clean, and then click OK. This tells it that whenever you choose /sageset:1, to utilize the settings you’ve just created. Now, in your Windows Script, add the following line.

WshShell.run "Cleanmgr /sagerun:1"

This will run the Windows disk cleanup silently, using the settings you’ve just created. You can also install the latest Windows updates by first installing  href="http://www.wuinstall.com/">WuInstall.exe and adding this line.

WshShell.run "wuinstall.exe /install /reboot_if_needed"

And don’t forget to do a quick defrag of the hard drive by adding the following lines to the script.

WshShell.run “Defrag volume c:”

WshShell.run "Defrag volume d:"

Automate Virus Scan After Cleanup

Last, but definitely not least, you’ll also want to end your script by firing off a full virus scan. For example, I use Kaspersky, which offers its own href="http://support.kaspersky.com/kis2010/tech?qid=208280476">set of command line parameters.

In my case, I just add the following final line to my script.

WshShell.run "AVP.exe SCAN /ALL /i4"

And that kicks off the command window and runs through a full scan (which can take several hours).

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/antivirus51.png" alt="automate computer cleanup" width="580" height="293" />

Most other anti-virus providers out there offer similar command-line options.

So, once you’ve added all of these lines, close out your Windows Script.

WScript.Quit /> </script> /> </job>

Once you’ve finished the procedure above and saved your file on the PC, just schedule the job to run on a regular basis (/Accessories/System Tools/Task Scheduler). Give the procedure above a try and see how well it works for you.

Did it work well, and can you think of any other useful command line tasks that could also be added? Share your thoughts in the comments section below.

Image Credit: href="http://image.shutterstock.com/display_pic_with_logo/704362/704362,1308593659,3/stock-photo-high-resolution-d-render-of-an-control-panel-in-colorful-lighting-control-panel-switches-80248693.jpg" rel="nofollow">Shutterstock



View full post on MakeUseOf

Posted in Useful APPsComments (0)

Enjoy A Clean, Improved Desktop With KDE 4.7 [Linux]


class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/06/kde_logo_intro.png" alt="" />One of class="vt-p" href="http://www.makeuseof.com/service/linux">Linux‘s most popular desktop environments, class="vt-p" href="http://www.makeuseof.com/tags/kde/">KDE, released their latest series (version 4.7) at the end of July. This version improves on work done in previous releases by adding new features while improving performance and stability.

However, this new version does not provide a drastic change such as class="vt-p" href="http://www.makeuseof.com/tag/gnome-3-beta-desktop-linux/">GNOME 3, as most changes are under the hood and are not visually reflected. Needless to say, you will still see an improvement while working, but they do not fall under the aesthetics category.

Major Improvements To KWin

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/kde47_desktopeffects_options.jpg" alt="" width="580" height="508" />

class="vt-p" href="http://userbase.kde.org/KWin">KWin, the compositing window manager for KDE, has had quite a lot of work put into it in the last six months. All of this work is supposed to help make the Plasma Workspaces (the overall desktop of KDE) more portable so that it can be used on mobile platforms. This has been achieved by making use of new Qt technologies (Qt being the application framework) and adding support for OpenGL ES 2.0.

However, regular desktop users can benefit from all of this work done to KWin, as I can say that KWin’s performance has improved quite a bit. Virtually all desktop effects are now more responsive and execute more smoothly. I tend to turn on more desktop effects than I should, so this is a welcome improvement. You can also see that the options window for Desktop Effects has received a very slight makeover as well.

Updates To The Application Suite

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/kde47_digicam20.jpg" alt="" width="580" height="351" />

As with every KDE release, the KDE suite of applications has received a nice update as well. Many of the updates to these programs increase stability and performance, along with varying levels of feature changes, depending on the application. Although KDE 4.7 is, from what I’ve heard, supposed to go hand in hand with Qt 4.8, it has been working very well on my system which currently still sports Qt 4.7.

Emerging New IM Platform

KDE 4.7 also introduces a new instant messaging program, currently titled under the project name “KDE-Telepathy“. The end result of this project, once it matures, is designed to replace the current instant messaging client, Kopete. The new instant messenger is supposed to provide more features, flexibility, and overall stability and performance.

Already included is some initial desktop integration in the form of a panel widget. KDE-Telepathy isn’t installed by default, however, and may or may not even be included in your distribution’s repositories (well, at least those that include KDE 4.7). Either once distributions release a new version that includes KDE 4.7, or once the KDE-Telepathy project matures enough, will it be included in the repositories. Such a decision is placed upon each distribution for them to choose.

KMail, KOrganizer & Akonadi Improvements

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/kde47_caldav.jpg" alt="" width="323" height="580" />

Although this ultimately falls under all the other minor features that are being included, I simply had to include my personal favorite features of this new release. KDE 4.7 includes a completely reworked (but it keeps the same look) version of KMail, which works a lot better with the Akonadi resource framework. In addition, Akonadi now supports CalDav, so all of you who wanted to have more than one Google calendar included in your KOrganizer now can.

As Google Calendar supports CalDav, people can finally add all the calendars they wish to KOrganizer. One of the few things I had against KDE was the fact that I simply couldn’t use my Google calendars as I wanted to, but this issue has finally been resolved.

Conclusion

KDE 4.7 is overall a great release that you should update to whenever your distribution supports it. As it currently stands, Kubuntu has a class="vt-p" href="http://www.ubuntubuzz.com/2011/07/install-upgrade-kde-470-to-kubuntu-via.html">PPA that ships KDE 4.7, openSUSE has class="vt-p" href="http://en.opensuse.org/KDE_repositories#Upstream_release_aka._KR47_.28KDE_SC_4.7.29">numerous KDE repositories that people can choose from (“Upstream” will include KDE 4.7), and Fedora currently offers KDE 4.7 through the unstable branch of the class="vt-p" href="http://kde-redhat.sourceforge.net/">kde-redhat repository for Fedora 15. As it appears, Kubuntu 11.10, openSUSE 12.1, and Fedora 16 should all ship with KDE 4.7 when they each release.

What do you think of KDE’s latest release? What do you like or dislike about it? Let us know in the comments!



View full post on MakeUseOf

Posted in Useful APPsComments (0)

Clean Uninstall Unwanted Programs On Your Windows Machine With ZSoft Uninstaller


class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/00-Cleaning-Up.jpg" alt="uninstall unwanted programs" />With so much software available today, how do you pick the ones that suit you best?  The answer is you try out software from what you find or from other peoples recommendations, and hope for the best. While some applications might be fine, other applications might not fit your needs.

But what do you do with installed software that you don’t need? You uninstall them, and move on to the next candidates. But the problem is, uninstallation under Windows often equals litter, small and non-functional files that will only hog and slow down your system. Completely uninstalling an unwanted application from Windows is not as easy as it sounds. Most of the time, you’ll need help from class="vt-p" href="http://www.makeuseof.com/tag/force-uninstall-windows-programs-iobit-uninstaller/">third-party class="vt-p" href="http://www.makeuseof.com/tag/revo-uninstaller-will-hunt-down-your-bloatware/">uninstallers such as  class="vt-p" href="http://www.zsoft.dk/index/software_details/4">ZSoft Uninstaller.

Uninstalling & More

From the first time you open the application, you can tell that ZSoft Uninstaller is more than just a simple uninstaller. This app also offers other features like an “Analyze installation” and “Temp File Finder“. The main interface provides you with a search box and a list of installed applications.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/02a_Main_Interface.jpg" border="0" alt="uninstall unwanted programs" width="580" height="389" />

To do a standard uninstallation, just pick one installed software from the list (or do a search), then click the “Uninstall” button.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/02b_Selecet_And_Uninstall.jpg" border="0" alt="uninstall programs" width="580" height="389" />

ZSoft Uninstaller will analyze the application that you want to uninstall.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/02c_Configure_Uninstallation.jpg" border="0" alt="uninstall programs" width="398" height="150" />

It will open the official uninstaller, or directly uninstall the app if the official uninstaller does not exist.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/02z_Other_Uninstallation.jpg" border="0" alt="uninstall programs" width="580" height="436" />

Then, ZSoft Uninstaller will display the list of uninstalled apps and ask you whether you want to search for leftovers from those programs.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/02f_Search_for_Leftovers_r.jpg" border="0" alt="uninstall programs windows" width="540" height="250" />

Double-click one of the applications in the leftovers list, click next, and ZSoft will search your hard drive for the litter – usually in the form of registry and/or file system files. Check the ones that you want to eliminate and click the “Remove” button.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/02h_Leftovers_Search.jpg" border="0" alt="uninstall programs windows" width="553" height="311" />

Please note that messing with the registry and file system is not recommended unless you really know what you are doing. Always do a backup before changing anything.

Analyze Installation

Maybe the safest method to do a clean uninstallation of any application is to use data from a monitored installation process. Assuming that nothing else happens during the installation, the differences in the hard drive before and after the process would be all of the installed components. Then, uninstalling would be as simple as removing these chunks of differences.

ZSoft Uninstaller provides users with an installation monitoring feature called “Analyze Installation“.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/02c_Analyze_Installation.jpg" border="0" alt="uninstall programs windows" width="510" height="396" />

You should run this feature before installing anything. Choose the drive(s) where you want to install the application, and click “Before Installation“.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/03b_Analyze_Before_Install.jpg" border="0" alt="03b Analyze Before Install" width="510" height="396" />

Analyze Installation” will do a quick scan of your drive and log the result.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/03c_Ready_To_Install.jpg" border="0" alt="03c Ready To Install" width="496" height="257" />

Before you click “After Installation” button, you should install the applications that you want to monitor.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/03d_Installing_Braid.jpg" border="0" alt="03d Installing Braid" width="503" height="388" />

After the installation is finished, press the “After Installation” button and “Analyze Installation” will re-scan the hard drive and store the result.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/03e_Analyzing.jpg" border="0" alt="03e Analyzing" width="496" height="86" />

Give your recent installation a name. A recommended name is the application name.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/03f_Enter_App_Name.jpg" border="0" alt="03f Enter App Name" width="276" height="144" />

Then the process is finished.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/03g_Task_Finished.jpg" border="0" alt="03g Task Finished" width="256" height="118" />

Should you want to uninstall the app later, all that you have to do is to double click the app from the list.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/03h_Analyzed_Programs.jpg" border="0" alt="03h Analyzed Programs" width="494" height="151" />

Check all the three boxes to confirm the terms and click “Uninstall“.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/03i_Uninstall_Analyzed.jpg" border="0" alt="03i Uninstall Analyzed" width="510" height="396" />

Then all traces of the uninstalled application are gone.

Other Features

Other than the uninstallation feature, ZSoft Uninstaller also comes with other tools such as “TMP File Searcher“.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/04b_BackUp_n_Del.jpg" border="0" alt="04b BackUp n Del" width="580" height="369" />

This tool will search your hard drive for temporary files and let you decide what to do with the junk.

More tools can be found under the “Tools” menu.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/05a_Other_Tools.jpg" border="0" alt="05a Other Tools" width="580" height="280" />

There’s the “Empty Folders Finder“. I think the name explains what this feature does.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/05a2_Empty_Folders.jpg" border="0" alt="05a2 Empty Folders" width="580" height="448" />

There’s also the “Startup Manager” which will help you to either “Disable” or “Delete” items from the start up list so they won’t boot up with your system.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/04/05b_StartUp_Manager.jpg" border="0" alt="uninstall unwanted programs" width="580" height="250" />

If you install and uninstall applications a lot, you will find ZSoft Uninstaller to be very useful in keeping your system clean.

Have you tried ZSoft Uninstaller? Do you use a third-party uninstaller or do you prefer the standard Windows uninstaller? Do you know other alternative uninstallers? Share your thoughts and opinions using the comments below.

Image credit: class="vt-p" rel="nofollow" href="http://www.flickr.com/photos/bonguri/117875608/">Bonguri

 

href="http://api.tweetmeme.com/share?url=http://www.makeuseof.com/tag/clean-uninstall-unwanted-programs-windows-machine-zsoft-uninstaller/"> src="http://api.tweetmeme.com/imagebutton.gif?url=http://www.makeuseof.com/tag/clean-uninstall-unwanted-programs-windows-machine-zsoft-uninstaller/"> href="http://digg.com/tools/diggthis/login?url=http://www.makeuseof.com/tag/clean-uninstall-unwanted-programs-windows-machine-zsoft-uninstaller/"> src="http://www.makeuseof.com/images/rss-buttons/diggme.png"> href="http://www.facebook.com/sharer.php?u=http://www.makeuseof.com/tag/clean-uninstall-unwanted-programs-windows-machine-zsoft-uninstaller/"> src="http://www.makeuseof.com/images/rss-buttons/fb.jpg"> href="http://www.google.com/reader/link?url=http://www.makeuseof.com/tag/clean-uninstall-unwanted-programs-windows-machine-zsoft-uninstaller/&title=Clean Uninstall Unwanted Programs On Your Windows Machine With ZSoft Uninstaller&srcTitle=MakeUseOf.com"> src="http://www.makeuseof.com/images/rss-buttons/gbuzz-feed.png"> href="http://www.stumbleupon.com/submit?url=http://www.makeuseof.com/tag/clean-uninstall-unwanted-programs-windows-machine-zsoft-uninstaller/"> src="http://www.makeuseof.com/images/rss-buttons/stumble.png">

 

More articles about: href="http://www.makeuseof.com/tags/cleaning/" title="cleaning" rel="tag">cleaning, href="http://www.makeuseof.com/tags/pc-maintenance/" title="pc maintenance" rel="tag">pc maintenance, href="http://www.makeuseof.com/tags/remove/" title="remove" rel="tag">remove, href="http://www.makeuseof.com/tags/uninstaller/" title="uninstaller" rel="tag">uninstaller />



View full post on MakeUseOf

Posted in Useful APPsComments (0)

BleachBit: A Utility To Clean Up Your Linux System


class="align-left" style="border: 0px none; margin-left: 20px; margin-top: 5px; float: right;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/08/tux-cleans-up.jpg" alt="wipe and clean linux" width="230" height="206" />It’s no secret: many programs fill your hard drive with well-meaning, but useless, crap. From browser caches to install leftovers to logs, computers are full of unnecessary information.

Windows users can turn to class="vt-p" href="http://www.filehippo.com/download_ccleaner">CCleaner – a program that can class="vt-p" href="http://www.makeuseof.com/tag/top-8-programs-that-can-make-your-computer-run-faster-nb/">make your computer run faster - to systematically remove such fluff from their drive. But what about Linux users who need to wipe and clean their Linux machine?

That’s what class="vt-p" href="http://bleachbit.sourceforge.net/features">BleachBit is for. Often called a CCleaner for Linux, BleachBit removes the cruft left behind by a number of programs in order to leave your hard drive emptier than it was before. This is particularly useful if you’re trying to class="vt-p" href="http://www.makeuseof.com/tag/6-ways-free-up-disk-space-netbook/">free up space on your netbook.

id="more-51284">

Getting Started

Before you can do anything, of course, you need to install BleachBit. Ubuntu users can class="vt-p" href="apt:bleachbit">simply click here to install; users of other Linux systems can easily find BleachBit in their respective repostories, or find downloads class="vt-p" href="http://bleachbit.sourceforge.net/">over at BleachBit’s website. Heck, you’ll even find a Windows version (that can’t do much, unfortunately).

Once you have the program you’ll find it in your applications menu under “System“. Fire it up and you’ll see all the programs and functions you can clean:

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/08/bleachbit-start.png" alt="wipe and clean linux" width="289" height="532" />

By default only the programs you’ve installed will show up here, which means you’ll only see relevant things. Go ahead and check the things you’re interested in deleting; you’ll be informed about the consequences of everything as you go. Once you’ve selected everything, go ahead and click “Preview” to see how much space you can save:

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/08/bleachbit-preview.png" alt="wipe and clean linux" width="579" height="360" />

Satisfied? I thought you might be. Check your settings one last time, then click “Delete” if you’re ready. Doing so will start the cleaning process!

Shred A File

If you delete a file on your computer, it’s not really gone. Data recovery experts can still recover it; the only real way to fully delete a file is to shred the hard drive. If you aren’t concerned about the CIA searching your drive anytime soon, however, BleachBit can probably shred it beyond the capabilities of most file recovery experts. Just click “File” followed by “Shred Files” to get started.

This is a great way to completely destroy evidence…or just protect your privacy.

Programs Supported

The number of programs supported by BleachBit is staggering. System files and your computer’s package manager are included, as are various MakeUseOf standards such as class="vt-p" href="http://www.makeuseof.com/tags/firefox/">Firefox and class="vt-p" href="http://www.makeuseof.com/tags/google-chrome/">Google Chrome. I could go on and on, but it’s probably best if you simply check out the full list of supported applications over at class="vt-p" href="http://bleachbit.sourceforge.net/features">BleachBit’s feature page. Odds are, if you use a given program, BleachBit can clean it.

Conclusion

BleachBit is a program that can save you a lot of hard disk space quickly, if that’s what you’re looking for. If your system is complaining about low space on your primary partition, give it a spin, but be sure you know what you’re doing.

Can you think of any other tools for this job? Do you have any tips for using this program well? As always I love hearing from you, so comment away. />
/>Follow href="http://twitter.com/MakeUseOf" target="_blank" >MakeUseOf on Twitter. Includes cool extras. />
/>

 

href="http://api.tweetmeme.com/share?url=http://www.makeuseof.com/tag/bleachbit-utility-clean-linux-system/"> src="http://api.tweetmeme.com/imagebutton.gif?url=http://www.makeuseof.com/tag/bleachbit-utility-clean-linux-system/"> href="http://digg.com/tools/diggthis/login?url=http://www.makeuseof.com/tag/bleachbit-utility-clean-linux-system/"> src="http://www.makeuseof.com/images/rss-buttons/diggme.png"> href="http://www.facebook.com/sharer.php?u=http://www.makeuseof.com/tag/bleachbit-utility-clean-linux-system/"> src="http://www.makeuseof.com/images/rss-buttons/fb.jpg"> href="http://www.google.com/reader/link?url=http://www.makeuseof.com/tag/bleachbit-utility-clean-linux-system/&title=BleachBit: A Utility To Clean Up Your Linux System&srcTitle=MakeUseOf.com"> src="http://www.makeuseof.com/images/rss-buttons/gbuzz-feed.png"> href="http://www.stumbleupon.com/submit?url=http://www.makeuseof.com/tag/bleachbit-utility-clean-linux-system/"> src="http://www.makeuseof.com/images/rss-buttons/stumble.png">

 


Similar MakeUseOf Articles

class="st-related-posts">

  • href="http://www.makeuseof.com/tag/speccy-an-advanced-system-information-tool-for-your-pc/" title="Speccy – An Advanced System Information Tool For Your PC">Speccy – An Advanced System Information Tool For Your PC (5 comments)
  • href="http://www.makeuseof.com/tag/bring-files-directories-control-duplicate-cleaner/" title="Remove Duplicate Files & Directories with Duplicate Cleaner">Remove Duplicate Files & Directories with Duplicate Cleaner (11 comments)
  • href="http://www.makeuseof.com/tag/keep-your-computer-clean-tidy-with-winpatrol-portable-windows/" title="Keep Your Computer Clean & Tidy With WinPatrol Portable [Windows]">Keep Your Computer Clean & Tidy With WinPatrol Portable [Windows] (6 comments)
  • href="http://www.makeuseof.com/tag/force-uninstall-windows-programs-iobit-uninstaller/" title="How To Force Uninstall Unwanted Windows Programs Using IObit Uninstaller">How To Force Uninstall Unwanted Windows Programs Using IObit Uninstaller (14 comments)
  • href="http://www.makeuseof.com/tag/fix-common-windows-problems-in-a-snap-with-fixwin/" title="How To Fix Common Windows Problems In A Snap With FixWin">How To Fix Common Windows Problems In A Snap With FixWin (9 comments)
  • href="http://www.makeuseof.com/tag/get-detailed-information-monitor-and-take-a-computer-benchmark-with-pc-wizard/" title="Get Detailed Info About Your OS & Hardware with PC Wizard">Get Detailed Info About Your OS & Hardware with PC Wizard (13 comments)
  • href="http://www.makeuseof.com/tag/easily-change-computer-settings-instantly-quick-config/" title="Easily Change Computer Settings Instantly With Quick Config">Easily Change Computer Settings Instantly With Quick Config (5 comments)
  • href="http://www.makeuseof.com/tag/clean-mac-give-life-cleanmymac-giveaway/" title="Clean Out Your Mac and Give It New Life with CleanMyMac [Giveaway]">Clean Out Your Mac and Give It New Life with CleanMyMac [Giveaway] (12 comments)
  • href="http://www.makeuseof.com/tag/analyze-your-pc-detect-new-driver-updates-online-with-ma-config/" title="Analyze Your PC & Detect New Driver Updates Online With Ma-Config">Analyze Your PC & Detect New Driver Updates Online With Ma-Config (23 comments)
  • href="http://www.makeuseof.com/tag/2-effective-tools-that-can-increase-your-hard-drive-performance-windows/" title="2 Effective Tools That Can Increase Your Hard Drive Performance on Windows">2 Effective Tools That Can Increase Your Hard Drive Performance on Windows (20 comments)


  • View full post on MakeUseOf.com

    Posted in Useful APPsComments (2)

    Computer Clean Up Software Review ? How To Scan And Fix Registry?


    Are you looking for a computer clean up software to speed up your computer? It is very common for computers to become filled with more and more useless entries as users install new programs into it. One particular part of the computer that can cause the computer to slow down is the registry. The longer your computer has been used, the more likely it is that there are bad entries and errors in it.

    What Is The Registry?

    The computer registry stores all the settings that are required for the hardware and software to run properly. Even during startup, the computer registry is heavily utilized. If you find that your computer frequently encounters errors, you most likely have registry problems.

    Why Should I Clean Up My Registry?

    With frequent usage of your computer, the registry will start to accumulate with more and more entries. These entries use up a large portion of your computer memory if left unclean, and significantly slow down the system. Most of the entries in your registry are actually useless, and may even become infected by spyware and errors.

    How Do I Clean My Computer Registry?

    If you are a technical expert, you should ensure that you backup your registry before you attempt to change it. However, if you have no experience with a computer registry, you should not look to edit it manually because it can be very dangerous. Mistakes made in the registry settings may cause it to be unable to boot up, or even damage the system.

    Having personally tried many registry cleaners on the market, I now know that there are many less useful ones that cannot find many types of errors on the registry. One good registry cleaner that I have used is able to detect every type of registry error, and can clean up the registry in 10 minutes.

    Effects Of Cleaning The Registry

    After cleaning your computer registry, you should find an increase in processing speed. My personal computer started to run as fast as when I first bought it, and I no longer encountered computer crashes or the blue screen.

    Where To Download The Top Rated Registry Cleaner?

    If you are planning to download a registry cleaner to clean your registry, you can check out my website at the link below to see the top registry cleaners sold by reputable companies.

    Posted in UtilitiesComments (0)

    Clean Mp3 Tags – Sort iTunes and WMP Automatically With an Mp3 Tag Editor


    If you have ever tried to clean MP3 tags manually then you know that this process is very long and tedious. Most people that download music online have collections of thousands of MP3 files. While I’m sure the majority of the songs are spelled correctly and have the correct ID3 tag information there is still a good portion that is incorrect. Having misspelled artist names and song titles can become a very big problem as your music collection gets larger. Couple that with the phantom songs that have no information and end up labeled as track one or unknown artist and you can have a very unorganized music library. Fortunately software developers have created a program that will automatically clean your MP3 tags with very little user input.

    Automatic MP3 tag cleaners also go by the name of iTunes organizers, ID3 tag editors, MP3 tagging tools, and more. All in all the majority of these programs primarily serve the same purpose. While there are planning of programs on the Internet that help with organizing iTunes and other digital music libraries there are only a couple that can automatically scan your music and correct mistakes on the fly. This is made possible by comparing your music files with a large online databases. When the software finds a match it downloads the correct ID3 tag information. It doesn’t use song names or album titles as the basis for its search it actually uses the MP3 file and analyzes the analog sound and compares that with its database.

    Here are some features that a good MP3 tag cleaner will offer:

    Remove iTunes duplicates
    Find and download album art
    Fix song details such as artist names, song titles, and genres
    Provides a friendly and easy to use user input
    Seamlessly and efficiently works with minimal user input

    As you can see MP3 tag cleaners are very powerful programs and can play a major role in organizing your iTunes or Windows media player libraries. If you are serious about cleaning your MP3 tags and having a very well-organized library I highly suggest downloading this software.

    If your music collection is a mess and full of “Track 01″ and “Unknown Artist” you can clean mp3 tags automatically in minutes!

    Fix mislabeled music, download album art, remove iTunes duplicates, and get concert alerts with the best mp3 tag cleaner on the market. Click the links above or copy and past this url in to your address bar for a full review of the program and its features, complete with a video tutorial on how to use the software.

    Posted in UtilitiesComments (0)

    How To Scan And Fix Registry? ? Computer Clean Up Software Review


    Do you want to learn how to scan and fix registry easily? Every computer should be regularly scanned to avoid errors and crashes. Unfortunately, this is not the case with most computers because many users do not have the knowledge to do so.

    If your computer is Windows-based, it will have a registry. It handles many functions of the system, like storing the configurations of your hardware and software, and keeping a record of your user profiles. If it is not clean, your computer will not be able to process and run smoothly.

    Despite being a very critical component of the computer system, almost every PC user has no idea how to maintain it, because there are simply no instructions readily available on how to do it. It is not advisable for you to fix your computer registry, because it has been known to cause errors when not handled properly.

    My Registry Cleaning Experience

    There are many registry cleaners on the internet, but I can tell you that some perform significantly better than others! The first registry cleaner that I used only managed to find less than 50 errors in my registry. It proceeded to clean out my registry, but I did not find any improvements in my computer performance.

    I was very sure that there was an error in my registry, because I could not access the registry area. So I proceeded to download another registry cleaner, and this time 100s of errors were found! After fixing my registry with this registry cleaner, my computer speed became much faster, and my registry was accessible again. Now I am relying on this registry cleaner to keep my computer optimized.

    Should You Buy A Registry Cleaner?

    Before you decide to buy a registry cleaner, you may want to know whether your computer registry needs cleaning. Some of the most common registry error symptoms are freezing of the computer screen, a significant slowdown your computer speed, the blue screen of death, restarting of the computer for no reason, and programs locking up.

    To get the top rated registry cleaner on the web today, visit my website link below to learn more about it.

    Posted in UtilitiesComments (0)

    Free Registry Fix ? Clean Your Computer and for Free


    Any changes to any software or hardware gets reflected in the registry files. Changes, if any made to control panel settings or system policies or installed software or any files associations are saved and stored in the registry of the computer. You can now go for free registry fix with a number of software programs available online.

    Partial Knowledge Is Always Fatal

    A user sometimes tries to get free xp registry fix and this may result in crash of his valuable system. If the user does not hold an expert knowledge of windows files or registry files, then making changes to registry can prove to be fatal for his computer system. There are some physical files that collectively are known as registry files and those files are located at different locations in the harddisk of the computer. Storage of registry files differs in different versions of window registry. A registry file is saved in a directory and it has two hidden files under Windows 95 and Windows 98 version. So, free registry fix should only be opted when you are aware of all the related facts.

    Get Your Backup Ready

    Today, there are many software programs available, that give you an opportunity to avail free registry fix. Not all users have the knowledge to access registry files and it is not recommended to make changes to registry if one is not sure of its results and files which will be affected. It is advisable to take a backup of the registry before making any modifications so that the changes can be restored in case of any error. Some softwares offer free download registry fix and a user can easily run the software and remove all errors and files which are obsolete.

    Regular cleaning of registry can be a big help in maintaining the performance and speed of the computer. With free registry fix there is no need to bother even about the cost. As a user installs or un-installs more softwares as well as hardwares, the registry files are changed accordingly. So, by using software cleaning registry files, all error files can easily be cleaned and rectified. With registry software Win32, DLL error messages or EXE errors can be removed from registry. Now it is much easy to opt for free registry fix full of all you need for enhancement of computer capability.

    Posted in UtilitiesComments (0)

    Visual C++ Runtime Error In Windows Xp – Clean Up these Errors !


    It can make you shout at your computer, and even make you wonder about how reliable your system is when you get a visual c++ runtime error in Windows XP on your computer screen. Most pc users have no knowledge of what is to blame for these problems and what they need to do to get rid of them. Before you run to a professional, which can be very expensive, carefully read the information that follows as it explains the easy and painless way to put an end to these error messages straightaway.

    But first off, i’ll give you a quick tour of a computer’s inner workings to give you an idea why these frustrating errors occur in the first place. For the most part, these runtime errors can be blamed on a registry that is damaged or corrupted – this being the part of windows that tracks what occurs on your computer, in other words, whenever you add, remove, or upgrade your software or hardware, a record of the procedure is kept by windows.

    All kinds of information is covered by the registration system; included are all the paths and links that are required to let windows know where the files that operate your various software/hardware are located. An incomplete software installation or its improper removal in some cases may result in links in your registry system that no longer function, in simple words, windows can’t operate that software or part of it, the outcome of which can sometimes be a visual c++ runtime error in Windows XP and many other problems such as blue screens, freeze ups, slow performance and more. Problems like this are simple enough to solve if you happen to be a professional and you know the ins and outs of your windows registry system, if that’s not the case, then you had better not try it – it’s very easy to make matters worse!

    But there happens to be a very easy and safe solution to the problem of a visual c++ runtime error in Windows XP even if you are not a computer expert – this can be done by using a professional registry repair utility. This is a simple and efficient way of detecting various errors on your computer and taking care to remedy them and quickly getting you on your way again. Since in most cases these solutions give you no-cost and no-obligation scans and fixes, it is recommended to download such tool and allow it to get your computer running with no problems.

    Posted in WindowsComments (0)

    Runtime Error On Windows Xp – Clean these Errors Now !


    It can be a difficult and annoying experience, and perhaps lead you to feel helpless while getting a runtime error on Windows XP on your computer. Lots of people really have no idea why these troubles show up and what can be done to solve them. Before deciding to hire a computer technician at great expense, study this brief how-to guide because it will help you to discover an easy way to get rid of these problems almost instantly.

    Before we begin, let me say a few words about how windows works so you’ll understand why these problems happen from the first place. Much of the time runtime errors occur because your registry system is corrupted or damaged – this is the place where windows tracks what happens on your pc, so each time you perform a software or hardware installation, uninstallation, or update, it is being registered by your windows.

    All sorts of information is included in the registration process; included are all the paths and links that are required to give windows instructions that tell it where the files that manage your assorted software/hardware applications are situated. It can sometimes happen that an incorrect software installation or removal may result in links in your registry system that no longer function, put simply, your windows application can’t run all or part of that program, the outcome of which can sometimes be a runtime error on Windows XP and a variety of additional hassles like boot up errors, lock ups, slow downs, and more. These kind of problems can be easily fixed if you are a professional and you have the skills to work on your registry, for most non-professionals, it’s not wise to try to do this alone – you can make a bad situation even worse!

    Luckily, there is a simple and risk-free method to get rid of a runtime error on Windows XP even if you have very basic computer skills – this can be done by using a professional registry repair utility. These software solutions specialize in scanning your pc for various errors and finishing the job by fixing them in just matter of minutes. Because many of these applications give no-charge pc scans as well as fixes, it’s advisable to download one of these utilities and let it get to work and solve these problems for you.

    Posted in WindowsComments (0)

    Best Registry Clean Up Tool – Don’t Miss this Review !


    Identifying the Best Registry Clean Up Tool isn’t that difficult, or at least it shouldn’t be that difficult. When you think of it you can easily find what you look for on the Internet: reading comparisons, accessing forums, or even installing many of these products and identify if they worth both your effort and money. The following short report will show you how you can quite fast find the best windows reg. repair system.

    Looking for the top windows reg. repair program(s) is quite an important task, imagine, this system is about to handle your Window’s reg. system, this part of your Windows system is very complex, vulnerable, and critical, you don’t want a poor application to deal with that.

    You’ve probably already noticed that there are countless win-registry fix programs on the web, researching for the Best Registry Clean Up Tool can take some time and even become quite frustrating; luckily, any user can quite fast transform this process quick and effective if you follow these tips.

    The very first step you need to take is to perform a quick search on the internet and find the top 3-5 registry ‘cure’ applications, filter those that do not provide a free download, take the opportunity and install those who do provide free download and identify which solutions are intuitive and easy to use, an advanced registry product should be easy to operate by any user at any level, now, perform a test scan with each tool and take a look at the results, don’t compare each tool by the total number of errors that it has discovered, but by their level, see which tool truly identified critical and important errors rather than just minor negligible ones.

    Another important issue when researching for the Best Registry Clean Up Tool see if the provider provides live 24/7 support, verify that they offer automatic system updates, and see if their application offers scheduled scans, after all we are busy users and we want to make sure that our Computer is being taken care of day and night. Never forget, registry repair application isn’t just another ‘nice to have’ tool installed on your Windows; this is a highly important tool that can easily help you prevent severe pc functionality problems, so take this task seriously before you install such tool on your Computer.

    Posted in UtilitiesComments (0)

    How To Clean Windows Xp Registry Today


    Do you want to know how to clean windows xp registry? It isn’t as hard as you may think. You don’t have to know all these technical terms such as dll files and stuff like that. It is just like fixing a car, you need the right tool. However in this case the right tool is actually a computer software program.

    If my grandma can do it, you can do it. It is really simple, just let the computer do all the work. All you have to do is start the scan. The scan will check your whole windows xp for problems in the registry. Things such as missing dll files, invalid registry keys, clutter in the registry and a whole bunch more. It will find all the windows xp problems for you.

    When it is done with the scan it will provide you with a list of problems that it found. These can be miss dll files, clutter, memory problems, you name it. It will have you then click the fix all button. It will make a back up file to restore everything if something did ever go wrong. You are all done, wasn’t that simple.

    Running a windows registry cleaner will do a lot of things for you. It will help with windows start up and shut down problems. It will also prevent computer crashing and freezing. I know the feeling when you are working on something and “bam” your computer freezes. It isn’t fun and prevent this by running a windows xp registry cleaner at least once a week. I call this preventive maintenance because your preventing the big problem from happening.

    Posted in WindowsComments (0)

    advanced registry optimizer ? Clean Your PC and improve the Speed of Your Computer


    Every system requires one or the other registry cleaning tool like an advanced registry optimizer. It is necessary to keep your system working fast and efficiently.

    However, there are loads and loads of registry cleaning tools available in market. Out of which some are paid, some are free and some come as a part of PC optimization package. You will find that all these work on same thing i.e. registry cleaning, but has different features. Some will have specialized features whereas some may contain only the fundamental things.

    You will find that some registry cleaners only remove empty entries, it’s fine, but it is a solution to only part of the problem. There are various other problems that are needed to be tackled by the registry cleaners like, removing outdated driver location, invalid shell extensions, invalid shortcuts and invalid class keys. These are few things that can make your system sluggish and slow in performance. One more important feature required by a registry cleaner is registry backup that has capacity to take back up before cleaning the registry also to get all these features you will require an advanced registry optimizer. This is necessary as sometimes we need to restore our system in case any applications cause problems after using a registry cleaner.

    So, basically for your computer to work effectively you need a comprehensive advanced registry optimizer that has all the features and can remove all types of junk from the Window’s registry. For more information on advanced registry optimizer you can visit the link below for more articles and information

    You need to choose from this bulk, but you have to choose the best and effective one as per the need of your system and work.

    Posted in UtilitiesComments (0)

    Clean Windows XP Registry


    Anyone who has used a Microsoft Windows OS (Operating System) will most likely have heard about the windows registry. When users attempt to clean Windows XP registry problems or any Windows version registry problems by modifying the registry settings for the first time the OS will warn the user not to do so unless they are knowledgeable in its use. This warning is usually enough to keep most people away from tampering with the registry out of fear of wrecking their computer.

    Actions like copying files from CD or other external medium, downloading files from the internet and installation or removal of applications all access the registry. Regular use of the computer can corrupt the registry and make it noticeably slower as time goes on. This is often due to lost entries (sometimes referred to as “orphans”) or invalid entries in the system registry. These orphan entries can be caused by improper installation or uninstall programs that did not quite get the uninstalled correctly. Sometimes a file will be open when a program is removed and the computer is unable to remove it but removes the registry entry anyway. The good news is that with the right knowledge and/or software you can clean the Windows XP registry (or other versions of Windows).

    One of the symptoms of a registry corruption in your computer is a sudden reduction in speed, although this reduction in speed may occur over a long period of time making it more difficult for you to notice. You may also experience excessive hard drive access or errors for no apparent reason. The use of registry cleaning software is the most often recommended way clean Windows XP registry problems because it is the quickest and easiest method.

    The cleaning program will have a look at the computers registry and find any entries that are not pointing to programs on the computer. The program will make recommendations based on its findings and allow the user to decide what should be done. These applications can found on the internet or purchased through a local retail store, some online versions offer free scans so you can see if you have any issues before purchasing the program.

    There are a lot of applications that clean Windows XP registry problems as well as others available, and this has led to some mistrust in them. Some people to attempt to repair the registry on their own but this is not recommended. Most experts agree that modifying the registry manually is not advisable because it can easily lead to a registry that is no longer usable.

    Since the health of the registry on your computer is critical to its smooth operation and speed owning a registry cleaning application is advisable for anyone who owns a computer. Running it on a regular basis will not only help to prevent these problems, but will also make your computing experience much more enjoyable.

    Posted in WindowsComments (0)

    Why and How Should You Clean Windows XP Registry to Speed up Your Slow PC now?


    Clean Windows XP registry to improve the performance of your computer. This is like a scanner that allows you to detect all the unnecessary files stored in your computer and delete these junks to ensure the optimum condition of your PC.

     

    Is your computer very slow? Do most of your applications constantly hang? Do you always receive error messages from various faulty programs, and suddenly stares at a blank monitor? Well, before your computer eventually crashes, you need to prevent all that.

     

    The best thing that you can do is to clean Windows XP registry. The registry is a database in your Windows XP that contains all the configuration of different files, programs, applications, and hardware. However, it may also contain several unwanted files that may just be taking up space and consequently slowing down the system. These unwanted files come from the different programs that we download, and when we delete them, they leave a large trail of unnecessary junks. These junks interfere the normal functioning of the other valid programs and may cause the computer to crash.

     

    In time, the junks may accumulate and can be very difficult to remove. To prevent that, you need to clean Windows XP registry as often as possible and in a regular basis. To keep it healthy, you have to avoid downloading programs that have little use for your computer. Avoid downloading poor-quality games and software. You also need to check if these programs come from an unverified source because there is a big possibility that they can cause damage to your computer aside from the virus that it might contain.

     

    Another way to clean Windows XP registry is by manually deleting the files containing bad codes. However, you need to be careful as the registry is a very large storeroom of all the files in your computer so you might end up deleting even those that are important for the normal functioning of a computer. To prevent this, you need to save the files to have a back-up in case you accidentally delete an important code.

     

    However, to make things easier, you can download from the internet a registry cleaning software. There are software that are free of charge but has only limited features. But this maybe enough if you only need a simple cleaning. But if you want a thorough and complete clean-up, you need to buy software. This is worth it if you just think of the possibility of lost files if you fail to clean Windows XP registry.

    All you need to do is to click here to get the best registry cleaner for free now:http://www.bestregsoftware.com/

     

    Posted in WindowsComments (0)

    Blogroll