INNO SETUP 获得命令行参数(来自网络)

时间:2021-03-28 17:42:10

[Code]

function GetMyParam(PName
:String):String;
var
  CmdLine 
: String;
  CmdLineLen 
: Integer;
  i 
: Integer;
begin
    CmdLineLen
:=ParamCount();
    
for i:=0 to CmdLineLen do
    begin
    CmdLine
:=ParamStr(i);
    
if CmdLine= PName then
      begin
          CmdLine
:=ParamStr(i+1);
          Result 
:= CmdLine;
          
Exit;
      end;
    end;
end;