Change WIX Installer language at run

前端 未结 3 1671
伪装坚强ぢ
伪装坚强ぢ 2020-12-11 11:47

Multi-Language MSI Packages without Setup.exe Launcher

Please help me to create multi language MSI package without Setup.exe by using wix.

I have created ms

相关标签:
3条回答
  • 2020-12-11 11:53

    You can follow the directions as described on this site: Multi-Language MSI Packages without Setup.exe Launcher

    Steps described shortly:

    • You create a basic MSI-package with English as default / fallback language
    • You create transforms for every other language you want to include
    • You embed those transforms within your MSI-package (so you basically just have one MSI-file)
    • You adjust the Summary Information Stream

    The scripts used are taken from the Windows SDK. Using this method you start the MSI and based on the regional options (not the UI language) configured for your system, Windows Installer will present the installation in the related language (if a transform was included) or in English (if Windows Installer couldn't find any appropriate language transform).

    Used it myself with 5 languages included and worked like a charm.

    0 讨论(0)
  • 2020-12-11 12:12

    Transforms must be applied when the MSI is launched, that's the bottom line. The language of the machine is also not relevant - if you have a separate exe to launch the MSI then the system language would be a useful default language, but there's nothing to stop anyone installing an English language MSI on a German language OS. And how can Windows know which transform files you have and automatically apply them during an install.

    It's still true that if you want the user to select the language you need a launch program that adds the relevant transform in the MSI launch command line. Why is the separate exe a big issue?

    0 讨论(0)
  • 2020-12-11 12:16

    Please see my answer to is it possible to create a multilanguage installer using WIX? on how to create an auto-detecting MSI. (I'd post a comment but I don't have the privilege.)

    0 讨论(0)
提交回复
热议问题