默认情况下可用的Inno Setup页面是什么(没有自定义屏幕),它们看起来如何,它们的顺序是什么,它们的默认设置是什么以及如何更改它?
答案 0 :(得分:6)
Inno Setup在线帮助概述了available Wizard pages。它列出了您要求的大部分信息。但它错过了默认状态,部分和屏幕截图。
您可以使用此最小的Inno安装脚本自行查看所有对话框:
[Setup]
AppName=Stack Overflow
AppVersion=0.0.0.0
DefaultDirName={pf}\Stack Overflow
DefaultGroupName=Stack Overflow
VersionInfoVersion=0.0.0.0
OutputDir=compiled
WizardImageFile=LargeWizardImage.bmp
WizardSmallImageFile=SmallWizardLogo.bmp
DisableWelcomePage=no
LicenseFile=so.txt
Password=stack
InfoBeforeFile=info.txt
UserInfoPage=yes
[Components]
Name: "StackOverflow"; Description: "Demo component"; Types: full
Name: "TasksDemo"; Description: "Tasks component"; Types: custom
[Files]
Source: "SmallWizardLogo.bmp"; DestDir: "{app}"; DestName: "Icon"
[Icons]
Name: "{group}\DemoIcon"; Filename: "Icon"
[Tasks]
Name: desktopicon; Description: "Create a &desktop icon"; GroupDescription: "Additional icons:"; Components: TasksDemo
在这里,默认隐藏的那些在右上角被击中。
参数:[Setup] DisableWelcomePage
默认值:yes
(表示"未显示")
参数:[Setup] LicenseFile
默认值:无许可证文件(表示"未显示")
参数:[Setup] Password
默认值:无密码(表示"未显示")
参数:[Setup] InfoBeforeFile
默认值:无信息文件(表示"未显示")
参数:[Setup] UserInfoPage
默认值:no(表示"未显示")
参数:[Setup] DisableDirPage
默认值:auto(表示"如果尚未安装,则显示")
参数:[Components]
不为空
默认值:空(表示"未显示")
参数:[Icons]
不为空且[Setup] DisableProgramGroupPage
默认值:无图标(表示"未显示")
参数:[Tasks]
不为空
默认值:无任务(表示"未显示")
参数:[Setup] DisableReadyPage
默认值:no(表示"显示")
参数:none,显示要写入的文件是否正在使用中 默认值:未使用(表示"未显示")