pascalscript - Inno Setup Section [Run] with condition -
i need condition in [run]
. if it's possible...
need run command depends on condition.
like this:
if (userpage.values[0] = 'nc') filename: {sys}\inetsrv\appcmd.exe; parameters: "set......"
or other way it.
regards.
you looking check
parameter:
[run] filename: "{sys}\inetsrv\appcmd.exe"; parameters: "set......"; check: shouldrun [code] function shouldrun: boolean; begin result := (userpage.values[0] = 'nc'); end;
Comments
Post a Comment