Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

let's say I have an 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

like image 368
Rohan Nagalkar Avatar asked Aug 08 '17 09:08

Rohan Nagalkar


1 Answers

MSIs are executed by Msiexec.exe so the only command-line options that are possible are those supported by Msiexec.exe: 1, 2.

like image 177
Bob Arnson Avatar answered Sep 28 '22 03:09

Bob Arnson