I am trying to install an MSI package with around 10 options. I was hoping to create these options in a .txt file
and pass those through to msiexec.exe
during the install via the command line using a script such as this:
C:\Windows\System32\msiexec.exe /qn /i "C:\folder\Installer.msi" /L*V "C:\folder\Installerlog.txt" /t "C:\folder\Installer.switch.txt"
My installer.switch.txt file has a structure similar to this:
Option1=option1 ^
Option1=option2 ^
Option1=option3 ^
With this I hope to pass the options via the installer.switch.txt
file. Could you please advise on firstly if this is possible and secondly which errors I might be making in the syntax.
Thanks