How to create msi using cx_freeze which will accept command line input

let's say i have msi "foo.msi" if I want to pass an option like

foo.msi <option> 

Is it possible? If so, how can I do this? I am using cx_freeze to create msi

+7
python windows-installer cx-freeze
source share
1 answer

MSI is executed by Msiexec.exe, therefore only command line options supported by Msiexec.exe are possible: 1 , 2 .

+5
source share

All Articles