Can I put setup command line parameters in a file which is called during installation instead?
问题 After creating my setup.exe I have to pack it for various software deployment tools. Therefore I can't call the setup.exe with parameters, instead I have placed my own parameters in a setup.ini file next to the setup.exe [Code] var MyIniFile: String; function InitializeSetup(): Boolean; var LoadFromIniFile: String; begin Result := true; MyIniFile := ExpandConstant('{srcexe}'); //writes the full path of the setup.exe in "MyIniFile" MyIniFile := Copy(MyIniFile, 1, Length(MyIniFile) - Length