I have a setup built in InnoSetup and i need to convert it to msi. I use msiwrapper.
The setup file needs some arguments for automated install, eg:
setup.exe /var_a=1 /var_b=2
I need also to convert it to MSI, so i use msiwrapper. it is possible to pass arguments to the setup executable using the argument WRAPPED_ARGUMENTS.
So if i run it like this, it works:
msiexec /i "setup.msi" /quiet WRAPPED_ARGUMENTS="/var_a=1"
my problem is to use aditional variables, i cant find a place with such example. Already tried several approaches with no success. Anyone has a clue for this to work?
unsuccessfull examples:
msiexec /i "setup.msi" /quiet WRAPPED_ARGUMENTS="/var_a=1 /var_b=2"
msiexec /i "setup.msi" /quiet WRAPPED_ARGUMENTS="/var_a=1,/var_b=2"
msiexec /i "setup.msi" /quiet WRAPPED_ARGUMENTS="/var_a=1|/var_b=2"
msiexec /i "setup.msi" /quiet WRAPPED_ARGUMENTS="/var_a=1","/var_b=2"
and so on...