Sunday, March 1, 2009

Add Copy to… Move to… shortcuts to Context Menu

Add Copy to…, Move to… shortcuts to Context Menu


To create Copy to Folder… or Move to Folder… for all file system objects.



Open your registry editor and create the following key.


Go to Key:

My Computer -> HKEY_CLASSES_ROOT -> AllFileSystemObjects -> Shellex -> ContextMenuHandlers


Under ContextMenuHandlers key create new sub key “Copy to…”

Add the “Default” string value “reg_sz” as “{C2FBB630-2971-11d1-A18C-00C04FD75D13}


Same can be done for adding “Move to…” to your context menu

Open the registry editor

Go to Key:


My Computer -> HKEY_CLASSES_ROOT -> AllFileSystemObjects -> Shellex -> ContextMenuHandlers


Under ContextMenuHandlers key create new sub key “Move to…”


Add the “Default” string value “reg_sz” as “{C2FBB631-2971-11d1-A18C-00C04FD75D13}


Or just copy paste following command in run command or in .bat file (batch file) and run it.


reg add "hkcr\AllFilesystemObjects\shellex\ContextMenuHandlers\Move To.." /v "" /t "reg_sz" /d "{C2FBB631-2971-11d1-A18C-00C04FD75D13}" /f


reg add "hkcr\AllFilesystemObjects\shellex\ContextMenuHandlers\Copy To.." /v "" /t "reg_sz" /d "{C2FBB630-2971-11d1-A18C-00C04FD75D13}" /f



No comments: