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

爷,独闯天下 提交于 2019-12-19 11:05:39

问题


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

I've modified my Assembly Info to the following, to no avail:

How can I alter the name displayed in the Open With dialog?


回答1:


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

Described in this MSDN page.




回答2:


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)"


来源:https://stackoverflow.com/questions/14906673/how-can-i-set-the-name-of-my-program-in-the-open-with-dialog

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!