Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
WiX: A Developer's Guide to Windows Installer XML

You're reading from   WiX: A Developer's Guide to Windows Installer XML If you’re a developer needing to create installers for Microsoft Windows, then this book is essential. It’s a step-by-step tutorial that teaches you all you need to know about WiX: the professional way to produce a Windows installer package.

Arrow left icon
Product type Paperback
Published in Oct 2010
Publisher Packt
ISBN-13 9781849513722
Length 348 pages
Edition 1st Edition
Tools
Arrow right icon
Toc

Table of Contents (18) Chapters Close

WiX: A Developer's Guide to Windows Installer XML
Credits
About the Author
About the Reviewer
Preface
1. Getting Started FREE CHAPTER 2. Creating Files and Directories 3. Putting Properties and AppSearch to Work 4. Improving Control with Launch Conditions and Installed States 5. Understanding the Installation Sequence 6. Adding a User Interface 7. Using UI Controls 8. Tapping into Control Events 9. Working from the Command Line 10. Accessing the Windows Registry 11. Controlling Windows Services 12. Localizing Your Installer 13. Upgrading and Patching

Conditional statements and iterations


In this section, we'll take a look at the conditional and looping statements that are available at compile time.

if...elseif...else

The if statement checks that a preprocessor variable is set to a certain value. If it does, the code between it and the closing endif statement will be compiled. Optionally, it can be followed by an elseif or e lse statement, allowing you to compile other code if the initial condition is false. The entire block must end with an endif. Here's an example that only compiles a Property element if the preprocessor variable myVar is equal to 10.

<?if $(var.myVar) = 10 ?>
    <Property Id="newProperty" Value="5" />
<?endif?>

Here's a more complex example that utilizes the elseif and else statements:

<?if $(var.myVar) = 10 ?>
   <Property Id="newProperty" Value="5" />
<?elseif $(var.myVar) > 10?>
   <Property Id="newProperty" Value="6" />
<?else?>
   <Property Id="newProperty" Value...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image