zhoulin Wang
zhoulin Wang

Reputation: 559

How do you determine if a WiX bundle installer is quiet or interactive?

There two problems that I shoud solved. First,how do you determine if a WiX bundle installer is quiet or interactive? Second,how does a exe installer that maked by bundle of wix v3.8 can keep a slient installing with several parameters? Please give me help,thanks!

Upvotes: 2

Views: 641

Answers (1)

Rob Mensching
Rob Mensching

Reputation: 36006

The Burn engine provides your Bootstrapper Application a struct with all the information from the command-line. In managed code the Command struct is provided to your class that inherits from Bootstrapper.

In the Command struct you'll get the Display enum that tells you whether the bundle is launched quite or passive or full UI. There is also the GetCommandLineArgs() to get additional command line arguments.

Upvotes: 2

Related Questions