WARNING !
This Tutorial Involve Playing With The Windows Registry Which Is Not Recommended for novice user.If you mess up the things then your windows may even become unbootable.Please take care of that.
1.Restoring the Sort Order
If dragging and dropping on the Start menu is not disabled then you can sort all Programs menu items. Windows XP also sometimes adds new shortcuts to the bottom of the all Programs menu.Finding the program you want to run is difficult when the sort order of the Start menu is disordered.
Go to
- Code: Select all
HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder
sort order of the Favorites menu and Start menu now can be seen in the subkeys.The subkey Favorites contains the sort order of the Favorites menu. The subkey Start Menu contains the sort order of the classic Start menu, and the subkey Start Menu2 contains the sort order of the new Start menu.
You can remove any of them to resort the corresponding menu in alphabetical order.
For example, to restore the All Programs menu to alphabetical order, remove the subkey Start Menu2. To restore the Favorites menu in both Windows Explorer and Internet Explorer, remove the subkey Favorites.
2.Add a custom folder to My Computer or The Desktop
This hack will Create a custom folder - like the special My Document folder - and one that cannot be deleted or renamed!
Step 1
In the registry editor navigate to
- Code: Select all
HKEY_CLASS_ROOT(HCR)\CLSID
Create a new key with a Globally Unique Identifier {GUID}.Examples of GUIDs are
- Code: Select all
{A34EF940-4223-437e-B54B-F09E86F6E946}
{1E854EF7-5415-4aa2-B1EB-01F98C5EC8B2}
{CAA2C044-026B-48c0-A2CA-ED6DC1629016}
{207E8C61-8BA0-4772-8B5E-FE0F38C6B662}
Step 2
Set the value of the "(default)" Setting for this key to the name of the folder, say "Private Place".Create a new subkey under the main key and call it
- Code: Select all
DefaultIcon
- Code: Select all
C:\Ico\Vista\private.ico
Step 3
Create another subkey under the main key called
- Code: Select all
InprocServer32
- Code: Select all
shell32.dll
- Code: Select all
ThreadingModel
- Code: Select all
Apartment
- Code: Select all
Shell\Open My Folder\Command
- Code: Select all
explorer /root,C:\Private Place
Step 4
There's more keys to be created
- Code: Select all
ShellEx\PropertySheetHandlers\{207E8C61-8BA0-4772-8B5E-FE0F38C6B662}
- Code: Select all
ShellFolder
- Code: Select all
Attributes
- Code: Select all
00 00 00 00
Step 5
To place the folder in My Computer,
Go to
- Code: Select all
HLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace
and add
- Code: Select all
{207E8C61-8BA0-4772-8B5E-FE0F38C6B662}
To place the folder on desktop,
- Code: Select all
HLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace
and add
- Code: Select all
{207E8C61-8BA0-4772-8B5E-FE0F38C6B662}
Now go to My Computer and Desktop,and you'll see a new custom folder!

