cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
balaji_akula
Level 3

I have to change the Company name, File version, product Name on setup.exe

Hi,

I am using Installshield 2010 "Installscript" project. I have to change the Company name, File version, product Name and Product Version on Setup.exe. Can any one tell me how to do this?
Labels (1)
0 Kudos
(7) Replies
KEiGHT
Level 6

take this as example

#include "Ifx.h"
function OnBegin()

begin
// TODO: Perform custom initialization steps, check requirements, etc.

// Set the product name to substitute for the %P place holder.
IFX_SETUP_TITLE = "Your application product name" ; // here is what you need, replace what is in quotes..."your app name or title"

end;
0 Kudos
balaji_akula
Level 3

Hello Keight,

Thanks for the reply, I wanted to change the "Setup.exe" ComapnyName and Product name not dialogs title names. Please see an attached image you can get clearly.
0 Kudos
KEiGHT
Level 6

It is recommended NOT to do that but you should use Resource Hacker 3.6 for setup.exe if you really want to do such things.

Make sure you have made an copy of your setup.exe before apply those changes !
0 Kudos
balaji_akula
Level 3

thanks for the information!!
0 Kudos
balaji_akula
Level 3

Is anybody knows...please help me.. i'm using Installscript project,
how can we change the Company name, product name and version on setup.exe using installscript.
0 Kudos
DebbieL
Level 17

InstallShield 2011 added support for customizing the file properties for Setup.exe. For more information, see Customizing File Properties for the Setup Launcher. InstallShield 2010 does not have that support.
0 Kudos
KEiGHT
Level 6

balaji.akula wrote:
Is anybody knows...please help me.. i'm using Installscript project,
how can we change the Company name, product name and version on setup.exe using installscript.


#include "Ifx.h"
function OnBegin()

begin

IFX_SETUP_TITLE = ""; // here is for dialog title
IFX_PRODUCT_DISPLAY_NAME = "";
IFX_PRODUCT_NAME = "";

end;

put between the "", the names as you wish !
0 Kudos