vote up 1 vote down star
1

When I creat a .exe, I can right click it and go to properties->details. Then I get a list like:

File Description | Type | Application File Version | Product Name | Product Version | Copyright | Size | 18.0 KB Date Modified | 6/16/2009 8:23 PM Language |

How do I change these properties? (And on a side note, is there a way to change the icon?)

flag

2  
Is this an executable you are compiling, or an executable you do not have access to the source code of? – DeadHead Jun 20 at 20:21
This is an executable I've already compiled from C++ code. – Keand64 Jun 20 at 20:28
@Keand64: If you want to change it by hand, you can use File -> Open in Visual Studio to open the exe file and alter the resources easily. – Mehrdad Jun 20 at 20:31

3 Answers

vote up 5 vote down check

If you are using C/Win32 you can add something like this to your project encapsulated in a *.rc (resource) file:

VS_VERSION_INFO VERSIONINFO
 FILEVERSION    0,0,0,2
 PRODUCTVERSION 0,0,0,2
 FILEFLAGSMASK 0x3fL
 #ifdef _DEBUG
 FILEFLAGS 0x1L
 #else
 FILEFLAGS 0x0L
 #endif
 FILEOS 0x4L
 FILETYPE 0x1L
 FILESUBTYPE 0x0L
{
    BLOCK "StringFileInfo"
    { 
        BLOCK "040904b0"
        {
            VALUE "Comments",         "comment\0"
            VALUE "CompanyName",      "comment\0"
            VALUE "FileDescription",  "base file\0"
            VALUE "FileVersion",      "0.0.0.2 TP\0"
            VALUE "InternalName",     "testTP\0"
            VALUE "LegalCopyright",   "none\0"
            VALUE "OriginalFilename", "test.exe\0"
            VALUE "ProductName",      "test\0"
            VALUE "ProductVersion",   "0.0.0.2 TP\0"
        } 
    }
    BLOCK "VarFileInfo"
    {
        VALUE "Translation", 0x409, 1200
    }
}
link|flag
Could you elaborate a little? – Keand64 Jun 20 at 20:43
1  
@Keand64 You find additionally information on MSDN/VERSIONINFO msdn.microsoft.com/en-us/library/… However I can try to shortly describe how it works for me in C (not sure if this is the preferred method in c++, but I didn't now about that you are doing this in C++). I add a resource file (eg. main.rc) to my project, add the code from above and edit it accordingly (see msdn). After a recompile my .exe file contains all the information. If I remember correctly in .NET you can do the same with the [assembly: AssemblyTitle("title")] command. – merkuro Jun 20 at 21:10
vote up 1 vote down
link|flag
vote up 0 vote down

This is simple file version info resource. For already existent files you can edit this information with any resource editor (for example Resource Hacker, it is outdated but still good). You can change icon this way too.

If you create your own application, then setting it depends on tool you are using. For example in Visual Studio you must look into project properties.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.