Guest User

Untitled

a guest
Apr 11th, 2016
840
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
REG 1.63 KB | None | 0 0
  1. Windows Registry Editor Version 5.00
  2.  
  3. ;RegisteredApplications
  4. ;----------------------
  5. [HKEY_LOCAL_MACHINE\SOFTWARE\RegisteredApplications]
  6. "MyMail"="Software\\Clients\\Mail\\MyMail\\Capabilities"
  7.  
  8.  
  9. ;Clients Key (The path mentioned for MyMail in RegisterdApplications key)
  10. ;------------------------------------------------------------------------
  11. [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail\MyMail]
  12. @="MyMail"
  13.  
  14. [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail\MyMail\Capabilities]
  15. "ApplicationDescription"="Superfast, Light-weight Mail Client for Windows"
  16.  
  17. [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail\MyMail\Capabilities\FileAssociations]
  18. ".eml"="MyMail.eml"
  19. ".nws"="MyMail.nws"
  20.  
  21. [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail\MyMail\Capabilities\StartMenu]
  22. "Mail"="MyMail"
  23.  
  24. [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail\MyMail\Capabilities\UrlAssociations]
  25. "mailto"="MyMail.mailto"
  26.  
  27.  
  28. ;Then create handlers for MyMail.eml, MyMail.nws, MyMail.mailto as referenced above
  29.  
  30. ;EML File Type Handler
  31. ;---------------------
  32. [HKEY_CLASSES_ROOT\MyMail.eml]
  33. @="MyMail EML Handler"
  34.  
  35. [HKEY_CLASSES_ROOT\MyMail.eml\shell\open\command]
  36. @="\"C:\\Program Files\\Windows Mail\\WinMail.exe\" -eml \"%1\""
  37.  
  38.  
  39. ;NWS File Type Handler
  40. ;---------------------
  41. [HKEY_CLASSES_ROOT\MyMail.nws]
  42. @="MyMail NEWS Handler"
  43.  
  44. [HKEY_CLASSES_ROOT\MyMail.nws\shell\open\command]
  45. @="\"C:\\Program Files\\Windows Mail\\WinMail.exe\" -news \"%1\""
  46.  
  47.  
  48. ;MAILTO Protocol Handler
  49. ;---------------------
  50. [HKEY_CLASSES_ROOT\MyMail.mailto]
  51. @="MyMail MAILTO Handler"
  52.  
  53. [HKEY_CLASSES_ROOT\MyMail.mailto\shell\open\command]
  54. @="\"C:\\Program Files\\Windows Mail\\WinMail.exe\" -mailto \"%1\""
Add Comment
Please, Sign In to add comment