Guest User

Untitled

a guest
Nov 20th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. Windows Registry Editor Version 5.00
  2.  
  3. [HKEY_CLASSES_ROOT\.myext]
  4.  
  5. [HKEY_CLASSES_ROOT\.myext\OpenWithProgids]
  6. "MYAPP.myext"=""
  7.  
  8.  
  9. [HKEY_CLASSES_ROOT\MYAPP.myext]
  10. @="MyApp Example File"
  11.  
  12. [HKEY_CLASSES_ROOT\MYAPP.myext\DefaultIcon]
  13. @="C:\\MyApp\\myext.ico"
  14.  
  15.  
  16. [HKEY_CLASSES_ROOT\MYAPP.myext\shell]
  17.  
  18. [HKEY_CLASSES_ROOT\MYAPP.myext\shell\open]
  19. @="Open with MyApp"
  20. "Icon"="C:\\MyApp\\open.ico"
  21.  
  22. [HKEY_CLASSES_ROOT\MYAPP.myext\shell\open\command]
  23. @="\"C:\\MyApp\\cli.cmd\" \"open\" \"%1\""
  24.  
  25.  
  26. [HKEY_CLASSES_ROOT\MYAPP.myext\shell\myaction]
  27. @="Secondary action with MyApp"
  28. "Icon"="C:\\MyApp\\myaction.ico"
  29.  
  30. [HKEY_CLASSES_ROOT\MYAPP.myext\shell\myaction\command]
  31. @="\"C:\\MyApp\\cli.cmd\" \"myaction\" \"%1\""
Add Comment
Please, Sign In to add comment