Reputation: 559
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
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