Reader small image

You're reading from  WiX Cookbook

Product typeBook
Published inJan 2015
Reading LevelBeginner
Publisher
ISBN-139781784393212
Edition1st Edition
Languages
Right arrow
Author (1)
Nicholas Matthew Ramirez
Nicholas Matthew Ramirez
author image
Nicholas Matthew Ramirez

Nick Ramirez is a software developer living in Columbus, Ohio. As a believer that deployment shouldn't be terrifying, he has become a big fan of technologies such as WiX. His other related interests include build automation, software architecture, and playing Minecraft. Nick lives with his wife and two cats.
Read more about Nicholas Matthew Ramirez

Right arrow

Introduction


Before you add your own user interface, your MSI will give the minimum amount of feedback during the installation. There will be a progress bar and a cancel button, but that's about it. The user won't get any lead-up before their computer is suddenly being altered. This can be pretty unnerving for the end user.

The good news is that we can add a UI using the same declarative XML syntax that we've used in the rest of our setup project. Even better, the WiX toolset ships with several ready-made install wizards that we can use as is or customize. A user interface doesn't have to mean slowing down unattended, automated installs either. We can turn our UI off by running the MSI from the command line with the /quiet flag, as follows:

msiexec /i MyInstaller.msi /quiet

In this chapter, we'll get familiar with using the WiX toolset's wizards and how to customize them. We'll also see how to save the choices the user has made through the UI so that we can use that information in later parts...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
WiX Cookbook
Published in: Jan 2015Publisher: ISBN-13: 9781784393212

Author (1)

author image
Nicholas Matthew Ramirez

Nick Ramirez is a software developer living in Columbus, Ohio. As a believer that deployment shouldn't be terrifying, he has become a big fan of technologies such as WiX. His other related interests include build automation, software architecture, and playing Minecraft. Nick lives with his wife and two cats.
Read more about Nicholas Matthew Ramirez