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

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

a

I changed my assembly to the following, to no avail:

a

How do I change the name displayed in the Open With dialog box?

+1
source share
2 answers

The answer to Hans is what he did 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)" 
+1
source

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

Described on this MSDN page .

+3
source

All Articles