Hier ist ein Beispiel für eine Mail-Client-Registrierung - Zur Registrierung bei Default Programs / modernen Default Apps. Sie können es entsprechend modifizieren und nicht wesentliche Teile weglassen.
Windows Registry Editor Version 5.00 ;RegisteredApplications ;---------------------- [HKEY_LOCAL_MACHINE\SOFTWARE\RegisteredApplications] "MyMail"="Software\\Clients\\Mail\\MyMail\\Capabilities" ;Clients Key (The path mentioned for MyMail in RegisterdApplications key) ;------------------------------------------------------------------------ [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail\MyMail] @="MyMail" [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail\MyMail\Capabilities] "ApplicationDescription"="Superfast, Light-weight Mail Client for Windows" [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail\MyMail\Capabilities\FileAssociations] ".eml"="MyMail.eml" ".nws"="MyMail.nws" [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail\MyMail\Capabilities\StartMenu] "Mail"="MyMail" [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail\MyMail\Capabilities\UrlAssociations] "mailto"="MyMail.mailto" ;Then create handlers for MyMail.eml, MyMail.nws, MyMail.mailto as referenced above ;EML File Type Handler ;--------------------- [HKEY_CLASSES_ROOT\MyMail.eml] @="MyMail EML Handler" [HKEY_CLASSES_ROOT\MyMail.eml\shell\open\command] @="\"C:\\Program Files\\Windows Mail\\WinMail.exe\" -eml \"%1\"" ;NWS File Type Handler ;--------------------- [HKEY_CLASSES_ROOT\MyMail.nws] @="MyMail NEWS Handler" [HKEY_CLASSES_ROOT\MyMail.nws\shell\open\command] @="\"C:\\Program Files\\Windows Mail\\WinMail.exe\" -news \"%1\"" ;MAILTO Protocol Handler ;--------------------- [HKEY_CLASSES_ROOT\MyMail.mailto] @="MyMail MAILTO Handler" [HKEY_CLASSES_ROOT\MyMail.mailto\shell\open\command] @="\"C:\\Program Files\\Windows Mail\\WinMail.exe\" -mailto \"%1\""
Ich habe das gleiche in diesen Pastebin-Link hochgeladen .
Informationen zur offiziellen Dokumentation finden Sie unter Registrierung von Standardprogrammen unter MSDN. Obwohl der Dokumentstatus nicht für Windows 10 gültig ist, gilt er unter Windows 10 (und funktioniert einwandfrei). Der Registrierungsteil hat sich in Windows 10 nicht geändert.
Siehe auch: Standardeinstellungen für Windows 10-Programme - Microsoft Community