[RESOLVED] [Inno Setup Compiler 5] - How change the aplication name?
i have 1 ISS file, but i need update it for another application(using some files that are in file and others). how can i update the application name?
Re: [Inno Setup Compiler 5] - How change the aplication name?
Moved To Application Deployment
Re: [Inno Setup Compiler 5] - How change the aplication name?
Quote:
Originally Posted by
Hack
Moved To Application Deployment
sorry... but i was thinking that section was only for Visual Basic... but thanks
Re: [Inno Setup Compiler 5] - How change the aplication name?
finally i found the problem...
heres the 2 ways:
if you have ISPP installed:
Code:
#define MyAppName "Ola"
#define MyAppVersion "1.5"
#define MyAppPublisher "Cambalinho"
#define MyAppExeName "CatchDiamonds.exe"
[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{C60E17DE-F52C-490F-97A0-D61644CAACE3}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName}
AllowNoIcons=yes
OutputDir=D:\Documents and Settings\Joaquim Miguel.CAMBALIN-806F02\Os meus documentos\CatchDiamonds\Setup
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes
you only need do 2 litle things:
change these line:
Code:
#define MyAppName "Ola"
instead "ola" you can use "catchdiamonds" or what you need... it's a string;)
and then you must delete these line:
Code:
AppId={{C60E17DE-F52C-490F-97A0-D61644CAACE3}
if you don't have the ISPP installed:
just change these line:
Code:
AppName={#MyAppName}
here i use a ISPP const, but you can use a string:
(without these simbols "")
the next lines must be changed too:
Code:
DefaultDirName={pf}\ola
DefaultGroupName=ola
for work in same folder. and the line:
Code:
AppId={{C60E17DE-F52C-490F-97A0-D61644CAACE3}
must be deleted.
thanks
Re: [Inno Setup Compiler 5] - How change the aplication name?
Quote:
Originally Posted by
joaquim
sorry... but i was thinking that section was only for Visual Basic... but thanks
That section is for anything to do with application deployment! Such as languages such as VB, C#, etc or how to configure the setup program, etc.