码迷,mamicode.com
首页 > 其他好文 > 详细

[Inno Setup] 如何读取命令行输入的参数

时间:2019-10-18 11:04:29      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:count   for   boolean   col   The   ams   bool   mst   int   

以 /verysilent 为例

[Code]
var 
  isVerySilent: Boolean;

function InitializeSetup(): Boolean;
var
  j: Integer;
begin
  isVerySilent := False;
  for j := 1 to ParamCount do
    if CompareText(ParamStr(j), /verysilent) = 0 then
    begin
      isVerySilent := True;
      Break;
    end; 

  if isVerySilent then
    Log (VerySilent)
  else
    Log (not VerySilent);
end;

 

[Inno Setup] 如何读取命令行输入的参数

标签:count   for   boolean   col   The   ams   bool   mst   int   

原文地址:https://www.cnblogs.com/liujx2019/p/11696918.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!