64Bit.iss 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. ; -- 64Bit.iss --
  2. ; Demonstrates installation of a program built for the x64 (a.k.a. AMD64)
  3. ; architecture.
  4. ; To successfully run this installation and the program it installs,
  5. ; you must have a "x64" edition of Windows.
  6. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
  7. [Setup]
  8. AppName=My Program
  9. AppVersion=1.5
  10. DefaultDirName={pf}\My Program
  11. DefaultGroupName=My Program
  12. UninstallDisplayIcon={app}\MyProg.exe
  13. Compression=lzma2
  14. SolidCompression=yes
  15. OutputDir=userdocs:Inno Setup Examples Output
  16. ; "ArchitecturesAllowed=x64" specifies that Setup cannot run on
  17. ; anything but x64.
  18. ArchitecturesAllowed=x64
  19. ; "ArchitecturesInstallIn64BitMode=x64" requests that the install be
  20. ; done in "64-bit mode" on x64, meaning it should use the native
  21. ; 64-bit Program Files directory and the 64-bit view of the registry.
  22. ArchitecturesInstallIn64BitMode=x64
  23. [Files]
  24. Source: "MyProg-x64.exe"; DestDir: "{app}"; DestName: "MyProg.exe"
  25. Source: "MyProg.chm"; DestDir: "{app}"
  26. Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme
  27. [Icons]
  28. Name: "{group}\My Program"; Filename: "{app}\MyProg.exe"