registry - context menu for specific filetype -


i've been trying add right-click context entry .mkv files, i've added default value of "mkv.custom" hkey_classes_root\.mkv, added(using hkcu because overwrites hklm[?]) hkey_current_user\software\classes\mkv.custom\shell\click convert\command , have "ffmpeg.exe -i %1 -vcodec copy -acodec copy %1.mp4" default. issue menu not appear when clicking files .mkv extension. ideas why happening?

[edit] wrote .reg file guys can test/help/(i can avoid typos)

windows registry editor version 5.00  [hkey_classes_root\.mkv] @="mkv.custom"  [hkey_classes_root\mkv.custom\shell\click convert\command] @="cmd.exe"   [hkey_current_user\software\classes\mkv.custom\shell\click convert\command] @="cmd.exe"   

note applications use key hkey_classes_root\.mkv\openwithprogids tried this, not work.

windows registry editor version 5.00  [hkey_classes_root\.mkv\openwithprogids] "mkv.custom"=hex(0):  [hkey_current_user\software\classes\mkv.custom\shell\click convert\command] @="cmd.exe"  [hkey_classes_root\mkv.custom\shell\click convert\command] @="cmd.exe" 

from docs:

... if write keys key under hkey_classes_root, system stores information under hkey_local_machine\software\classes. ..

so end in verb registration partly goes hklm , partly hkcu. use hkey_current_user\software\classes\ along if want register per user verb.


Comments

Popular posts from this blog

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -