| 12345678910111213141516171819202122232425262728293031323334 | 
							- ; -- 64Bit.iss --
 
- ; Demonstrates installation of a program built for the x64 (a.k.a. AMD64)
 
- ; architecture.
 
- ; To successfully run this installation and the program it installs,
 
- ; you must have a "x64" edition of Windows.
 
- ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
 
- [Setup]
 
- AppName=My Program
 
- AppVersion=1.5
 
- WizardStyle=modern
 
- DefaultDirName={autopf}\My Program
 
- DefaultGroupName=My Program
 
- UninstallDisplayIcon={app}\MyProg.exe
 
- Compression=lzma2
 
- SolidCompression=yes
 
- OutputDir=userdocs:Inno Setup Examples Output
 
- ; "ArchitecturesAllowed=x64" specifies that Setup cannot run on
 
- ; anything but x64.
 
- ArchitecturesAllowed=x64
 
- ; "ArchitecturesInstallIn64BitMode=x64" requests that the install be
 
- ; done in "64-bit mode" on x64, meaning it should use the native
 
- ; 64-bit Program Files directory and the 64-bit view of the registry.
 
- ArchitecturesInstallIn64BitMode=x64
 
- [Files]
 
- Source: "MyProg-x64.exe"; DestDir: "{app}"; DestName: "MyProg.exe"
 
- Source: "MyProg.chm"; DestDir: "{app}"
 
- Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme
 
- [Icons]
 
- Name: "{group}\My Program"; Filename: "{app}\MyProg.exe"
 
 
  |