场景是,我们有一个客户端/服务器应用程序,客户端安装是使用 Inno Setup 的引导程序,它从 IP/端口号指定的服务器下载客户端。我们希望能够通过 UDP 广播检测本地网络上是否有服务器,并可以编写一个控制台应用程序来执行此操作。问题是,我们如何将信息从控制台应用程序传递到安装程序?
我可以捕获返回码,但它只能是一个 int。据我所知,Inno Setup 中读取文件的唯一功能是在预处理器中,因此我们无法读取控制台应用程序在运行时创建的文件。我唯一能想到的就是返回一个 int ,其中前 4 位数字是端口之前 '.' 和 : 的位置,然后解析出该值,这看起来很hackish、脆弱且容易出错,特别是考虑到我不太熟悉用于构造字符串的 Inno Setup 语法/函数。
有什么建议吗?
如果您想从 Inno Setup 中的代码解析命令行参数,请使用与此类似的方法。只需从命令行调用安装程序,如下所示:
c:\MyInstallDirectory>MyInnoSetup.exe -myParam parameterValue
然后你可以在任何需要的地方这样调用
GetCommandLineParam
:
myVariable := GetCommandLineParam('-myParam');
{ ================================================================== }
{ Allows for standard command line parsing assuming a key/value organization }
function GetCommandlineParam (inParam: String):String;
var
LoopVar : Integer;
BreakLoop : Boolean;
begin
{ Init the variable to known values }
LoopVar :=0;
Result := '';
BreakLoop := False;
{ Loop through the passed in array to find the parameter }
while ( (LoopVar < ParamCount) and
(not BreakLoop) ) do
begin
{ Determine if the looked for parameter is the next value }
if ( (ParamStr(LoopVar) = inParam) and
( (LoopVar+1) < ParamCount )) then
begin
{ Set the return result equal to the next command line parameter }
Result := ParamStr(LoopVar+1);
{ Break the loop }
BreakLoop := True;
end
{ Increment the loop variable }
LoopVar := LoopVar + 1;
end;
end;
不知道如何从命令行加载参数,但您可以使用
LoadStringFromFile
加载文件内容或 GetIniString
从 ini 文件读取参数。
更一般地,在 Inno Setup 帮助文件中查找“支持功能参考”。此页面将为您提供所有 Inno 函数的列表(不包括预处理器)。如果您找不到此页面(如果您只找到有关预处理器的信息),那么您可能正在查找错误的帮助文件。请注意,Inno Setup 帮助目录不是那么好,但索引非常好。
命令行参数记录在“设置命令行参数”页面上。您可能可以通过使用现有参数之一来欺骗 Inno,但使用 ini 文件似乎是最直接的方法。
以上匿名回答应该点赞。
我只需在脚本中按名称引用参数即可将参数传递给我的安装程序:
{param:filePath|abc}
然后在调用安装程序时使用所需格式传递参数值:
MyInnoSetup.exe /filePath=../foo.exe
InnoSetup 包含一种类似于 Pascal 的解释型扩展语言,可以在安装程序运行时用于很多事情。
例如,我知道它可以读取注册表,并且我相当确定它可以读取文件,至少可以从某些文件夹中读取文件。您的控制台模式应用程序可以写入临时文件或删除一个或多个包含安装程序其余部分所需信息的注册表项,并且可以从脚本环境返回到正确的安装脚本中。安装程序甚至可以稍后清理临时文件和/或密钥。
来自 Inno Setup 手册:
{参数:参数名称|默认值}
Embeds a command line parameter value.
* ParamName specifies the name of the command line parameter to read from.
* DefaultValue determines the string to embed if the specified command
line parameter does not exist, or its value could not be determined.
示例:
[设置] 应用程序 ID=... 应用程序名称={param:exe_name|xyz}.exe
更多:www downloadatoz com/manual/in/inno-setup/topic_consts.htm