How can I set the name of my program in the Open With dialog?

后端 未结 2 542
有刺的猬
有刺的猬 2021-01-15 23:36

I want the program to read VLC (Move on end):

\"a\"

I\'ve modified my Assembly Info to the

相关标签:
2条回答
  • 2021-01-16 00:05

    It is stored in the registry as the FriendlyAppName value under HKCR\Applications\YourExeName.

    Described in this MSDN page.

    0 讨论(0)
  • 2021-01-16 00:18

    Per Hans' answer, this is what did it for me:

    export.reg

    Windows Registry Editor Version 5.00
    
    [HKEY_CLASSES_ROOT\Applications\VLCMoveOnEnd.exe]
    "FriendlyAppName"="VLC (Move on end)"
    
    [HKEY_CLASSES_ROOT\Applications\VLCMoveOnEnd.exe\shell]
    
    [HKEY_CLASSES_ROOT\Applications\VLCMoveOnEnd.exe\shell\open]
    "FriendlyAppName"="VLC (Move on end)"
    
    0 讨论(0)
提交回复
热议问题