Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Edit Right Click Menu For Desktop
- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- HKEY_CLASSES_ROOT\Directory\Background\shell
- HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers
- -=-=-=-=-=-=-=-=-=-=-=- END -=-=-=-=-=-=-=-=-=-=-=-=-=-
- Edit Right Click Menu For Files
- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\
- HKEY_CLASSES_ROOT\*\shell
- HKEY_CLASSES_ROOT\AllFileSystemObjects\ShellEx\ContextMenuHandlers
- -=-=-=-=-=-=-=-=-=-=-=- END -=-=-=-=-=-=-=-=-=-=-=-=-=-
- Edit Right Click Menu For Folders
- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\
- HKEY_CLASSES_ROOT\*\shell
- HKEY_CLASSES_ROOT\AllFileSystemObjects\ShellEx\ContextMenuHandlers
- -=-=-=-=-=-=-=-=-=-=-=- END -=-=-=-=-=-=-=-=-=-=-=-=-=-
- Address to add key: Move To Folder
- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers
- Value to Enter in Input box:
- {C2FBB631-2971-11D1-A18C-00C04FD75D13}
- And Remove Value to Enter in Input box:
- Value Delete OR Exmple: (-)
- -{C2FBB631-2971-11D1-A18C-00C04FD75D13}
- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- Windows Registry Editor Version 5.00
- ;AddMoveToFolder.reg
- ;Adds the "Move To Folder" functionality from Windows 7, when you right
- click files or folders, for easier file management.
- [HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Move To]
- @="{C2FBB631-2971-11D1-A18C-00C04FD75D13}"
- -=-=-=-=-=-=-=-=-=-=-=- END -=-=-=-=-=-=-=-=-=-=-=-=-=-
- Address to add key: Copy To Folder
- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers
- Value to Enter in Input box:
- {C2FBB630-2971-11D1-A18C-00C04FD75D13}
- And Remove Value to Enter in Input box:
- Value Delete OR Exmple: (-)
- -{C2FBB630-2971-11D1-A18C-00C04FD75D13}
- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- Windows Registry Editor Version 5.00
- ;AddCopyToFolder.reg
- ;Adds the "Copy To Folder" functionality from Windows 7, when you right
- click files or folders, for easier file management.
- [HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Copy To]
- @="{C2FBB630-2971-11D1-A18C-00C04FD75D13}"
- -=-=-=-=-=-=-=-=-=-=-=- END -=-=-=-=-=-=-=-=-=-=-=-=-=-
- How to copy file content to Clipboard using Right-click Context Menu in
- Windows 10
- Copy to Clipboard
- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- Windows Registry Editor Version 5.00
- ;AddCopyToClipboardFileContent.reg
- [HKEY_CLASSES_ROOT\SystemFileAssociations\text\shell\copytoclip]
- @="Copy to Clipboard"
- [HKEY_CLASSES_ROOT\SystemFileAssociations\text\shell\copytoclip\command]
- @="cmd.exe /c type \"%1\" | clip.exe"
- -=-=-=-=-=-=-=-=-=-=-=- END -=-=-=-=-=-=-=-=-=-=-=-=-=-
- Windows Registry Editor Version 5.00
- ;Show Copy as Path always in the right-click menu, without pressing SHIFT
- ;Ramesh Srinivasan, Winhelponline.com
- [HKEY_CLASSES_ROOT\Allfilesystemobjects\shell\windows.copyaspath]
- @="Copy &as path"
- "Icon"="imageres.dll,-5302"
- "InvokeCommandOnSelection"=dword:00000001
- "VerbHandler"="{f3d06e7c-1e45-4a26-847e-f9fcdee59be0}"
- "VerbName"="copyaspath"
- -=-=-=-=-=-=-=-=-=-=-=- END -=-=-=-=-=-=-=-=-=-=-=-=-=-
- Example 1: Add “Permanently Delete” command to right-click menu
- To add “Permanently Delete” option to the context menu for files, you need
- to copy the following key:
- HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer
- \CommandStore\shell\Windows.PermanentDelete
- to the following key:
- HKEY_CLASSES_ROOT\*\shell\Windows.PermanentDelete
- This can be done by exporting the 1st key to a .REG file (via File – Export
- command in the Registry Editor). Then, edit the file with Notepad and change
- the following path:
- HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer
- \CommandStore\shell\Windows.PermanentDelete
- to
- HKEY_CLASSES_ROOT\*\shell\Windows.PermanentDelete
- Save the REG file and double-click to run it. This adds the “Permanently
- Delete” option to the right-click menu for all files.
- -----------------------------------------------------
- Quick Tip: You can set this key only on a per-file type basis or for all
- file types, folders, or both files & folders. However, it makes perfect
- sense to add the “Delete Permanently” command only for (all) files. Adding
- it to Folders will work, but there is always a risk of accidental deletion
- of an entire folder — but it’s your call.
- To add the command for folders, you’d copy it to the following branch:
- HKEY_CLASSES_ROOT\Directory\shell
- To implement it for both files and folders, add it here:
- HKEY_CLASSES_ROOT\AllFileSystemObjects\shell
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement