12

我已经设置了一个安装我的应用程序的 inno 设置脚本。生成的 setup.exe 将在 windows vista/7 上正确安装,但在 windows xp 上除以零错误而失败。inno 示例脚本在 windows xp 上工作,所以它一定是我正在做的事情。谁能看到我做错了什么?

; Script generated by the Inno Setup Script Wizard.
#define app_src_path "..\MyApp"
#define app_exe_path "..\bin"

#define file_ver GetFileVersion(app_exe_path + "\win32\MyApp.exe")
#define app_ver Delete(file_ver, 6, 2)

[Setup]
AppId={{BBB40316-958C-446B-A08D-311273214AA6}
AppName=MyApp
AppVersion={#app_ver}
UninstallDisplayName=MyApp
AppPublisher=My Company US
DefaultDirName={pf}\My Company\MyApp
DisableDirPage=yes
DefaultGroupName=My Company
DisableProgramGroupPage=yes
#emit 'OutputBaseFilename="MyApp-Setup-' + app_ver + '"'
#emit 'SetupIconFile="' + app_src_path + '\rc\MyAppIcon.ico"'
Compression=lzma
SolidCompression=yes
ArchitecturesInstallIn64BitMode=x64
WizardImageFile=ZDS.bmp
WizardSmallImageFile=ZDSsmall.bmp

[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

[InstallDelete]
Type: filesandordirs; Name: "{app}\MyApp";

[Files]
; x64 files
Source: "{#app_exe_path}\x64\MyApp.exe"; DestDir: "{app}"; Flags: ignoreversion; Check: Is64BitInstallMode

; win32 files
Source: "{#app_exe_path}\win32\MyApp.exe"; DestDir: "{app}"; Flags: ignoreversion; Check: not Is64BitInstallMode

; platform independent
Source: "{#app_src_path}\rc\pic1-24.png"; DestDir: "{app}\rc"; Flags: ignoreversion nocompression
Source: "{#app_src_path}\rc\pic2-24.png"; DestDir: "{app}\rc"; Flags: ignoreversion nocompression
Source: "{#app_src_path}\rc\pic3-24.png"; DestDir: "{app}\rc"; Flags: ignoreversion nocompression

[Icons]
Name: "{group}\MyApp"; Filename: "{app}\MyApp.exe"
Name: "{commondesktop}\MyApp"; Filename: "{app}\MyApp.exe"; Tasks: desktopicon
Name: "{group}\{cm:UninstallProgram,MyApp}"; Filename: "{uninstallexe}"

[Run]
Filename: "{app}\MyApp.exe"; Description: "{cm:LaunchProgram,MyApp}"; Flags: nowait postinstall skipifsilent

编辑: 这是 /LOG 的输出

2012-07-14 10:07:50.855   Log opened. (Time zone: UTC-04:00)
2012-07-14 10:07:50.855   Setup version: Inno Setup version 5.5.1 (u)
2012-07-14 10:07:50.855   Original Setup EXE: E:\MyApp-Setup-0.0.0.exe
2012-07-14 10:07:50.855   Setup command line: /SL5="$801DE,623918,137216,E:\MyApp-Setup-0.0.0.exe" /LOG
2012-07-14 10:07:50.855   Windows version: 5.1.2600 SP3  (NT platform: Yes)
2012-07-14 10:07:50.855   64-bit Windows: No
2012-07-14 10:07:50.870   Processor architecture: x86
2012-07-14 10:07:50.870   User privileges: Administrative
2012-07-14 10:07:50.885   Exception message:
2012-07-14 10:07:50.885   Message box (OK):
                          Floating point division by zero.
2012-07-14 10:07:51.654   User chose OK.
2012-07-14 10:07:51.654   Deinitializing Setup.
2012-07-14 10:07:51.654   Log closed.

我没有 [code] 部分,所以我很困惑 MessageBox (OK) 消息的来源。

4

3 回答 3

19

对丹的回答的补充,不适合评论......

对于向导图像文件,我使用 GIMP 2.8 作为图像编辑器尝试了几乎所有可能的颜色深度和操作系统(Windows 7 和 Windows XP)排列。我想出了以下结果:

您使用什么颜色深度并不重要。8 位、16 位、24 位或 32 位。仔细想想,这是有道理的,因为 Windows XP 确实支持桌面上的 32 位图标。 请参阅下面的编辑

当 Dan 谈到位图中的“损坏”标题时,他把它钉在了头上。事实证明,它没有腐败。默认情况下,GIMP 2.8 将“颜色空间信息”保存在位图文件的标题中。Innosetup 或 Windows XP(我不确定是哪个)不知道如何正确解释此信息。

关键是要确保这个色彩空间信息没有保存在位图文件中。从 GIMP 2.8 导出位图时,您可以选择检查“不写入颜色空间信息”选项,如下图所示。

在此处输入图像描述

编辑2014 年 3 月 20 日

一些更新信息:在 InnoSetup 版本 5.5.4(在 Windows 7 64 位操作系统上运行和安装)中,使用上述方法和 32 位图像bitmap image is not valid运行编译的安装文件时会出错。

更改为 24 位图像,仍然没有色彩空间信息,解决了这个问题。

于 2012-09-15T16:08:15.077 回答
4

原来问题出在 WizardImageFile 和 WizardImageFileSmall 上。最初使用 24 位 bmp 文件。我将位深度减少到 16,现在设置将在 windows xp 下运行。这也使我的安装包更小,所以赢了。

于 2012-07-15T13:53:29.630 回答
1

您可以使用netpbm 工具转换为 bmp。即来自png:

pngtopnm icon.png | ppmtobmp - > icon.bmp

上面的答案似乎是正确的,不幸的是我在找到它们之前浪费了很多时间 - 我可以发誓我曾尝试勾选 gimp 的“无色彩空间”框。所以这就是我最终做的事情,可以编写脚本来转换许多图标,也可以帮助面临同样问题的人。

于 2014-05-07T03:41:06.000 回答