How to make better use of MSI files

后端 未结 3 1100
慢半拍i
慢半拍i 2020-11-22 02:40

As you might know, msiexec is a command line application that you can use to install an MSI file. As you might know, you can run it in silent or invisible mode.

If t

3条回答
  •  萌比男神i
    2020-11-22 03:40

    Think of the user interface with MSI as optional. This means no answers should be required as the developer has sensible defaults in place so that things don't break.

    We distribute our software in MSI format to corporate customers, I also provide them with documentation on the basics of Orca (orca.msi is distributed with the Windows Installer SDK) and how to customize certain fields we have listed in the Property table for their installation. Such as serial number, registration details and a few other settings.

    In response to the original question about msiexec command line options just run MSIEXEC /? to set properties on the command line you would use something like

    MSIEXEC /I test.msi SOMEPROPERTY="Some value" PROP2="something else"
    

提交回复
热议问题