2011-10-06 20:53:09 +02:00
|
|
|
; -- Example2.iss --
|
|
|
|
; Same as Example1.iss, but creates its icon in the Programs folder of the
|
|
|
|
; Start Menu instead of in a subfolder, and also creates a desktop icon.
|
|
|
|
|
|
|
|
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
|
|
|
|
|
|
|
|
[Setup]
|
|
|
|
AppName=My Program
|
|
|
|
AppVersion=1.5
|
2018-12-30 12:30:09 +01:00
|
|
|
WizardStyle=modern
|
2018-07-05 18:22:04 +02:00
|
|
|
DefaultDirName={autopf}\My Program
|
2011-10-06 20:53:09 +02:00
|
|
|
; Since no icons will be created in "{group}", we don't need the wizard
|
|
|
|
; to ask for a Start Menu folder name:
|
|
|
|
DisableProgramGroupPage=yes
|
|
|
|
UninstallDisplayIcon={app}\MyProg.exe
|
2018-06-08 09:42:07 +02:00
|
|
|
Compression=lzma2
|
|
|
|
SolidCompression=yes
|
2011-10-06 20:53:09 +02:00
|
|
|
OutputDir=userdocs:Inno Setup Examples Output
|
|
|
|
|
|
|
|
[Files]
|
|
|
|
Source: "MyProg.exe"; DestDir: "{app}"
|
|
|
|
Source: "MyProg.chm"; DestDir: "{app}"
|
|
|
|
Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme
|
|
|
|
|
|
|
|
[Icons]
|
2018-07-09 20:13:35 +02:00
|
|
|
Name: "{autoprograms}\My Program"; Filename: "{app}\MyProg.exe"
|
|
|
|
Name: "{autodesktop}\My Program"; Filename: "{app}\MyProg.exe"
|