4

Firebird の 32 ビット バージョンのみをインストールするオプションをユーザーに提供する Inno Script インストーラーがあります。64 ビット マシンがあり、6 ビット Firebird を使用してアプリが動作することを確認したので、32 ビット プラットフォームでは 32 ビット Firebird インストーラーを表示し、64 ビット プラットフォームでは 64 ビット インストーラーを表示するようにインストーラーを設定します。

[Install Actions] セクションでは、Firebird インストーラーのチェックボックスを表示しているため、インストールされていない場合はインストールするか、すでにインストールされている場合は Firebird インストールを実行しないかをユーザーに選択させることができます。

これは私のスクリプトからのものです:

[Run]

Filename: {app}\Firebird-2.5.1.26351_1_x64.exe; Parameters: "/SILENT /NOCPL"; WorkingDir: {app}; Flags: postinstall skipifsilent 64bit; Check: Is64BitInstallMode; 

Filename: {app}\Firebird-2.5.1.26351_1_Win32.exe; Parameters: "/SILENT /NOCPL"; WorkingDir: {app}; Flags: postinstall skipifsilent 32bit; Check: "not Is64BitInstallMode"; 

問題は、ダイアログ フォームに 32 ビットのインストーラーしか表示されないことです。

両方のファイルが含まれているため、アプリのインストール中に両方を使用できます。

[Files]

Source: ..\Firebird-2.5.1.26351_1_x64.exe; DestDir: {app}

Source: ..\Firebird-2.5.1.26351_1_Win32.exe; DestDir: {app}

64 ビット プラットフォームで 64 ビットの Firebird インストーラを表示するにはどうすればよいですか?

ありがとう

4

1 に答える 1

5

Examples\64BitTwoArch.issInnoSetup でインストールされるファイルには、まさにこれを行う例 (Win32 に 32 ビット バージョンをインストールするか、Win64 に 64 ビット バージョンをインストールする) があります。

; -- 64BitTwoArch.iss --
; Demonstrates how to install a program built for two different
; architectures (x86 and x64) using a single installer.

; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!

[Setup]
AppName=My Program
AppVersion=1.5
DefaultDirName={pf}\My Program
DefaultGroupName=My Program
UninstallDisplayIcon={app}\MyProg.exe
Compression=lzma2
SolidCompression=yes
OutputDir=userdocs:Inno Setup Examples Output
; "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.
; On all other architectures it will install in "32-bit mode".
ArchitecturesInstallIn64BitMode=x64
; Note: We don't set ProcessorsAllowed because we want this
; installation to run on all architectures (including Itanium,
; since it's capable of running 32-bit code too).

[Files]
; Install MyProg-x64.exe if running in 64-bit mode (x64; see above),
; MyProg.exe otherwise.
Source: "MyProg-x64.exe"; DestDir: "{app}"; DestName: "MyProg.exe"; Check: Is64BitInstallMode
Source: "MyProg.exe"; DestDir: "{app}"; Check: not Is64BitInstallMode
Source: "MyProg.chm"; DestDir: "{app}"
Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme

[Icons]
Name: "{group}\My Program"; Filename: "{app}\MyProg.exe"
于 2012-11-09T21:13:00.887 に答える