How to Clean a Game Console Cartridge

(2 votes, average 5.00 out of 5)

A classic symptom of older game systems which use cartridges is that sometimes the game cartridge itself can become corroded and unusable.   There are several ways to clean cartridges, from the easiest to most desperate. First, here are some common things NOT to do in order to clean your game cartridge:

 

 

Things NOT To Do

  1. Do NOT blow into the cartridge. Yes it is a quick fix. Yes it does work temporarily. However, due to the moisture of you blowing onto the cartridge connectors, eventually, it *will* corrode the contacts, and you *will* have to use step 2 below to get your cart working again. 
  2. Do NOT use household cleaners such as Armor All or Pledge.  This may seem obvious, but many people attempt to clean their game console cartridges with cleaners in order to polish the game contacts.  This does NOT work!



Things to Try

There are two main things that can be done to try and clean your cartridges.  The first is a safer method -- always try this first:

1. Use rubbing alcohol

Take a q-tip and soak it with rubbing alcohol. Leave it soaked, and clean your cartridge by rubbing roughly on one side of the contacts. Next, take the cartridge, insert it into the cartridge slot of the console a couple times, in and out, quickly. Next, take the dry end, and rub again on the same side. Repeat until you see the dirt disappear from the game contacts. Once all the dirt is gone, go to the other side of the cartridge connectors. and repeat.  After you are sure the cartridge is dry, try it out!  If it does not work, move on to step two.

 

2. CAREFULLY APPLY 2000 GRIT SANDPAPER

There must be some corrosion on the contacts if the game still does not boot. 2000 grit sandpaper will polish those metal contacts right off, and make them look shiny new. It will take off a tad of the PCB, but its nothing to be concerned of.  Generally enough isn't taken off enough to even remove the color of the PCB, let alone ruining it.

It is best to take apart the cartridge if possible. It's the easiest way to get into the contacts. Nintendo games use special bits to open them, but you can find those with a quick google search.  Take your worst credit card or some kind of card that is like it. Fold the sandpaper across the card, of course, the abrasive side out. Now, sand with medium strength (not too light, but not hard either) on one side of the connectors, until you see a shine on the contacts. Now, repeat on the other side. Don't do this until you do step 1 first, because step 1 also cleans the cartridge slot's contacts.



Now your game cartridge should work like new!  This should work for most video game systems which use cartridges, including NES, SNES, N64, Colecovision, Intellivision, Vectrex, Genesis, and anything that is not CD based.

Partner Links:
Last Updated on Wednesday, 21 July 2010 13:15  
Related Articles

» Using Cookies to Save Data in PHP

Cookies are a useful way to save information, for example a user preference or login session locally on the client's machine. PHP makes creating and accessing cookies very easy. To create a cookie called myCookie with the value hello,world, simply add the following line of PHP code:$expireTime = 60 * 60 * 24 + (); // 1 day("myCookie", "hello,world", $expireTime); This data will then be available the next time the user loads that particular page. To access the cookie at a later date, use the...

» Make the Linux or Mac OS X Command Line Easier with .bashrc

Starting to use the command line (or terminal) in Linux or Mac OS X can be very daunting. It is indeed a complex task to learn all of the commands and how to use them together properly. Despite the learning curve, using the command line can make a lot of tasks significantly faster and easier. One way to make the terminal easier to use is by creating a .bashrc file.Most Linux distributions (and Mac OS X) use the as the default terminal shell (although I've heard some ). When initializing, Bash...

» Understanding File and Folder Permissions (POSIX) on Linux and Mac OS X (using chmod)

Linux and Mac OS X both use a -compatible type of filesystem. This has to do with the way files are accessed by their owner and others. Files and folders have permissions for 3 different types of users:Owner: this is the user who owns the file or folderGroup: this is the permissions for any user in the group that the file belongs toOthers: this is the permissions for all other users who don't fall into one of the two above categoriesFor each of these types of users, there are 3 different...

Comments  

 
0 #1 Jason 2010-07-20 13:53
Good to know! Thanks for the article : )