Tuesday, February 21

PS 2 BACK UP


HARDWARE REQUIRED
- PS2 capable of playing backups
- USB flash drive (most will work, but not all)
- CD burner and 1 blank CDR
Backup PS2 memory card to USB
STEP ONE – Burn uLaunchELF
Download, extract and burn the uLaunchELF ISO.
STEP TWO – Load uLaunchELF on the PS2
Load up the uLaunchELF disc in your PS2 and plug in your USB drive. This CD should work in any PS2 capable of playing ‘backup’ discs, if everything goes to plan you should see the PlayStation2 logo for a second, followed by the uLaunchELF menu. You should see a list of drives, including the PS2 memory card(s), and hopefully your USB flash drive (listed as “MASS”).
STEP THREE – Backup your PS2 saves to USB drive
You can now start copying and pasting PS2 game saves from your memory card to your flash drive – most of the commands you’ll need for copying and pasting are on the uLaunchELF screen. Once you’ve worked out how to copy PS2 game saves between your memory card and flash drive you can easily reclaim filespace on your memory card by copying game saves onto the flash drive, and archiving them on your PC.
Homebrew
Using the uLaunchELF boot CD, you can also get the PS2 to run homebrew software such as emulators (SNES Station, PGEN etc.) and media players from a flash drive. Just copy the required files from your PC to the flash drive, boot up your PS2 using the uLaunchELF cd, then navigate to the ‘MASS’ flash drive – you can run most homebrew ‘elf’ programs directly from the flash drive – or you can copy them to a memory card and run them from there.

Saturday, February 4

Stop A Restart Process In 3steps


Some times we need to stop some restart process quickly. In windows XP some times it gives auto restart warning and here is good solution for it.

1. Go to Start menu
2. Click on RUN
3. Enter the following command excluding hashcodes "shutdown -a"

its Done.

Thursday, February 2

How To Remove and Add Right-Click Menu Items from Files and Folders


Removing Items
A lot of programs you install will add themselves to the right-click menu of your files and/or folders. And most times, you have no choice in the matter and, as a result, your right-click menu can get very long with added items you don't even use. The last person I was helping with this had a right context menu so long that the Rename option was no longer visible!
Fortunately, you can easily remove those unwanted menu items, if you know the registry values to edit. And it's not at all difficult once you know the keys responsible for the additions.

For Files, the secret lies in the "context menu handlers" under the shellex subkey for "All Files" which, in the registry, is nothing but an asterisk - like a dos wildcard, which means the values entered apply to all files. It is at the very top of the Root key, right here:

HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers

Click the the + sign next to the ContextMenuHandlers key, to expand it.
Now you will see some of the programs that have added items to your right-click menu. Simply delete the program keys you don't want.
Yup! It's that simple. If deleting makes you uneasy, just export the key before deleting it. Or, instead of deleting the values, disable them. Simply double click the default value for the program on the right hand pane and rename the clsid value by placing a period or dash in front of it.
ie; - {b5eedee0-c06e-11cf-8c56-444553540000}
Then exit the registry, refresh, and right click a file to see if the item was removed from the menu.
Some programs - like WinZip or WinRar - will add several items to your right click menu but all of them will be removed by deleting or disabling their one context menu handler.

Note that the above key only applies to the right click menu of files.
To remove entries from the right click context menu of folders, you need to navigate to the Folder and Drive keys:

HKEY_CLASSES_ROOT\Folder\shellex\ContextMenuHandlers
HKEY_CLASSES_ROOT\Drive\shellex\ContextMenuHandlers


All you have to do is follow the same procedure as for Files - either disable or delete items you wish to remove.
Adding Items
Adding Items to the right click menu of Files and Folders is also fairly simple using the Registry. It just involves the creation of a few new keys for each item you wish to add. You edit the same keys used for removing items. Let's use Notepad as an example of an item you'd like to add to the right click menu of all your files or folders.

For folders, go to this key:
HKEY_CLASSES_ROOT\Folder
Click the + sign next to Folder and expand it so that the Shell key is visible. Right click the Shell key and choose New>Key and name the key Notepad or whatever else you'd prefer (whatever the key is named is what will appear in the right-click menu). Now right click the new key you made and create another key named Command. Then, in the right hand pane, double click "Default" and enter Notepad.exe as the value.
Exit the registry, refresh, and right click any folder. Notepad should now be on the context menu.


For files, go here again:

HKEY_CLASSES_ROOT\*
Expand the * key and see if a Shell key exists. If it does exist, follow the same procedure as for folders. If it does not exist, you'll have to create a new Shell first. Just right click the * key and choose New>Key and name it Shell. Then right click the Shell key and continue on the same way you did for adding items to the right click menu of folders.
Once done, Notepad should appear as an option in the right click menu of all your files.
Vic Ferri owns the very popular WinTips and Tricks <http://groups.yahoo.com/group/WinTips-Tricks> email group. He is also in charge of the Printing Tips <http://personal-computer-tutor.com/printing.htm> and Registry Tips <http://personal-computer-tutor.com/abc1/v4/vic4.htm> pages at Linda's Computer Stop.