installer - Innosetup - are user CreateInputOptionPage "wizard" pages shown when /silent, etc is specified? -
innosetup setup executables have command line options permit unattended or batch file operation - i.e. possible have command-line parameters /silent, /verysilent, such no "wizard" pages displayed.
if add own wizard pages using createinputoptionpage
these still display, i.e. need add further command-line options suppress these (and provide default responses) well?
(yes, could try myself, answer useful others, , there might further issues haven't thought of)
when run /silent or /verysilent dialogs create such createinputoptionpage
not shown. initializewizard()
still called , forms still created.
so values read these wizard pages default values.
you can have specific behavior in pascal script when silent using wizardsilent()
function.
you can check parameters sent install in pascal script using paramcount
, paramstr
functions or can whole string using getcmdtail
.
Comments
Post a Comment