I have a created a multilanguage installer using WiX. I am running the installer from command line using command "msiexec /i myinstaller.msi TRANSFORMS=":1041"
and it is working fine.
Now I have created a language selection dialog using bootstrapper. How can I pass the selected language to my WiX installer to launch as per selected language? I got this idea from following links:
- Can we localize WIX msi and bundle using language selection UI at runtime?
- http://wix.tramontana.co.hu/tutorial/transforms/morphing-installers
My bundle has <MsiPackage SourceFile="myinstaller.msi" DisplayInternalUI="yes" >
I have this screen as a result of my custom UI using Burn from WiX toolset:
I want somehow to execute command msiexec /i myinstaller.msi TRANSFORMS=":1041"
if I select Japanese or msiexec /i myinstaller.msi TRANSFORMS=":1031"
if I select German and press OK.
Please tell me what I should do for this problem. Is there any other way to do this? If yes, then please tell me. Some code sample would be a better help.