Advertisement
Najeebsk

ADD-REGISTRY-TWEAKS.REG

Jan 6th, 2022
592
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
REG 4.72 KB | None | 0 0
  1. Edit Right Click Menu For Desktop
  2. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  3. HKEY_CLASSES_ROOT\Directory\Background\shell
  4.  
  5. HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers
  6. -=-=-=-=-=-=-=-=-=-=-=- END -=-=-=-=-=-=-=-=-=-=-=-=-=-
  7. Edit Right Click  Menu For Files
  8. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  9. HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\
  10.  
  11. HKEY_CLASSES_ROOT\*\shell
  12.  
  13. HKEY_CLASSES_ROOT\AllFileSystemObjects\ShellEx\ContextMenuHandlers
  14. -=-=-=-=-=-=-=-=-=-=-=- END -=-=-=-=-=-=-=-=-=-=-=-=-=-
  15. Edit Right Click Menu For Folders
  16. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  17. HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\
  18.  
  19. HKEY_CLASSES_ROOT\*\shell
  20.  
  21. HKEY_CLASSES_ROOT\AllFileSystemObjects\ShellEx\ContextMenuHandlers
  22. -=-=-=-=-=-=-=-=-=-=-=- END -=-=-=-=-=-=-=-=-=-=-=-=-=-
  23. Address to add key: Move To Folder
  24. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  25. HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers
  26.  
  27. Value to Enter in Input box:
  28. {C2FBB631-2971-11D1-A18C-00C04FD75D13}
  29.  
  30. And Remove Value to Enter in Input box:
  31.  Value Delete OR  Exmple: (-)
  32. -{C2FBB631-2971-11D1-A18C-00C04FD75D13}
  33. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  34. Windows Registry Editor Version 5.00
  35. ;AddMoveToFolder.reg
  36. ;Adds the "Move To Folder" functionality from Windows 7, when you right
  37.  
  38. click files or folders, for easier file management.
  39. [HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Move To]
  40. @="{C2FBB631-2971-11D1-A18C-00C04FD75D13}"
  41. -=-=-=-=-=-=-=-=-=-=-=- END -=-=-=-=-=-=-=-=-=-=-=-=-=-
  42. Address to add key: Copy To Folder
  43. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  44. HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers
  45.  
  46. Value to Enter in Input box:
  47. {C2FBB630-2971-11D1-A18C-00C04FD75D13}
  48.  
  49. And Remove Value to Enter in Input box:
  50.  Value Delete OR  Exmple: (-)
  51. -{C2FBB630-2971-11D1-A18C-00C04FD75D13}
  52. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  53. Windows Registry Editor Version 5.00
  54. ;AddCopyToFolder.reg
  55. ;Adds the "Copy To Folder" functionality from Windows 7, when you right
  56.  
  57. click files or folders, for easier file management.
  58. [HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Copy To]
  59. @="{C2FBB630-2971-11D1-A18C-00C04FD75D13}"
  60. -=-=-=-=-=-=-=-=-=-=-=- END -=-=-=-=-=-=-=-=-=-=-=-=-=-
  61. How to copy file content to Clipboard using Right-click Context Menu in
  62.  
  63. Windows 10
  64.  Copy to Clipboard
  65. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  66. Windows Registry Editor Version 5.00
  67. ;AddCopyToClipboardFileContent.reg
  68. [HKEY_CLASSES_ROOT\SystemFileAssociations\text\shell\copytoclip]
  69. @="Copy to Clipboard"
  70.  
  71. [HKEY_CLASSES_ROOT\SystemFileAssociations\text\shell\copytoclip\command]
  72. @="cmd.exe /c type \"%1\" | clip.exe"
  73. -=-=-=-=-=-=-=-=-=-=-=- END -=-=-=-=-=-=-=-=-=-=-=-=-=-
  74. Windows Registry Editor Version 5.00
  75.  
  76. ;Show Copy as Path always in the right-click menu, without pressing SHIFT
  77. ;Ramesh Srinivasan, Winhelponline.com
  78.  
  79. [HKEY_CLASSES_ROOT\Allfilesystemobjects\shell\windows.copyaspath]
  80. @="Copy &as path"
  81. "Icon"="imageres.dll,-5302"
  82. "InvokeCommandOnSelection"=dword:00000001
  83. "VerbHandler"="{f3d06e7c-1e45-4a26-847e-f9fcdee59be0}"
  84. "VerbName"="copyaspath"
  85. -=-=-=-=-=-=-=-=-=-=-=- END -=-=-=-=-=-=-=-=-=-=-=-=-=-
  86. Example 1: Add “Permanently Delete” command to right-click menu
  87.  
  88. To add “Permanently Delete” option to the context menu for files, you need
  89.  
  90. to copy the following key:
  91.  
  92. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer
  93.  
  94. \CommandStore\shell\Windows.PermanentDelete
  95.  
  96. to the following key:
  97.  
  98. HKEY_CLASSES_ROOT\*\shell\Windows.PermanentDelete
  99.  
  100. This can be done by exporting the 1st key to a .REG file (via File – Export
  101.  
  102. command in the Registry Editor). Then, edit the file with Notepad and change
  103.  
  104. the following path:
  105.  
  106. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer
  107.  
  108. \CommandStore\shell\Windows.PermanentDelete
  109.  
  110. to
  111.  
  112. HKEY_CLASSES_ROOT\*\shell\Windows.PermanentDelete
  113.  
  114. Save the REG file and double-click to run it. This adds the “Permanently
  115.  
  116. Delete” option to the right-click menu for all files.
  117. -----------------------------------------------------
  118. Quick Tip: You can set this key only on a per-file type basis or for all
  119.  
  120. file types, folders, or both files & folders. However, it makes perfect
  121.  
  122. sense to add the “Delete Permanently” command only for (all) files. Adding
  123.  
  124. it to Folders will work, but there is always a risk of accidental deletion
  125.  
  126. of an entire folder — but it’s your call.
  127.  
  128. To add the command for folders, you’d copy it to the following branch:
  129.  
  130. HKEY_CLASSES_ROOT\Directory\shell
  131.  
  132. To implement it for both files and folders, add it here:
  133.  
  134. HKEY_CLASSES_ROOT\AllFileSystemObjects\shell
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement