Advertisement
Python253

add_your_exe_to_context

Mar 21st, 2024
545
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
REG 0.68 KB | None | 0 0
  1. """
  2. === DISCLAIMER ===
  3. The following comments are for reference only and should not be included in the saved script.
  4.  
  5. File Data:
  6.  
  7. Filename: add_your_exe_to_context.reg
  8. Version: 1.00
  9. Author: Jeoi Reqi
  10. Registry Modification Notes:
  11.  
  12. This '.reg' file facilitates the addition of custom executables to the context menu by editing the Windows registry.
  13. Users are strongly advised to create a backup of the registry before applying any changes.
  14. ==================
  15. """
  16.  
  17. Windows Registry Editor Version 5.00
  18.  
  19. [HKEY_CLASSES_ROOT\*\shell\YourProgramName]
  20. @="Run with Your Program"
  21.  
  22. [HKEY_CLASSES_ROOT\*\shell\YourProgramName\command]
  23. @="\"C:\\Path\\To\\Your\\Program.exe\" \"%1\""
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement