DBalaji
DBalaji

Reputation: 61

How to Create an MSI which runs in passive mode using WIX?

How can I create an MSI using WIX that can run in passive mode? If I double click on the msi it should launch in passive mode. This should be equivalent of running MSI package with /passive or /qb!- command line option. This is required to start the MSI installation from another application.

Is there any way of embedding command line options into MSI package?

Please post ideas that would help?

Upvotes: 1

Views: 606

Answers (1)

Bob Arnson
Bob Arnson

Reputation: 21896

Just don't use UIRef to include any UI: If the .msi package doesn't have dialogs in it, MSI will run it with basic UI (the equivalent of /qb-).

Upvotes: 1

Related Questions