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

后端 未结 2 553
有刺的猬
有刺的猬 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: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)"
    

提交回复
热议问题