Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
WiX Cookbook

You're reading from  WiX Cookbook

Product type Book
Published in Jan 2015
Publisher
ISBN-13 9781784393212
Pages 260 pages
Edition 1st Edition
Languages
Author (1):
Nicholas Matthew Ramirez Nicholas Matthew Ramirez
Profile icon Nicholas Matthew Ramirez

Table of Contents (20) Chapters

WiX Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Organizing and Building WiX Projects 2. Installing Files and Directories 3. File and Folder Permissions 4. Shortcuts 5. Editing XML Files during Installation 6. Custom Actions 7. Installing Wizards 8. Users and Groups 9. Handling Prerequisites 10. Installing Websites 11. Linking to the Web 12. Installing SQL Server Databases 13. Admin Tasks Index

Setting an environment variable


Environment variables, which are globally available to any software running on the system, provide a means for storing useful information about your application that the end user might reference—usually on the command-line. For example, you might install a variable that contains the path to your software so that the end user could use it as a shortcut when referencing the executable.

Getting ready

Create a new setup project and name it EnvironmentVariableInstaller.

How to do it...

Set an environment variable with the Environment element as described in the following steps:

  1. Add a Component element with its KeyPath attribute set to yes:

    <Component Id="cmpEnvironmentVariable" 
               Guid="{313075B5-BF2C-4012-9A6E-2F4E2C461306}"  
               KeyPath="yes">
    </Component>
  2. Within that component, add an Environment element that defines the name and value of the new environment variable. Set Action to set to overwrite any existing value and System to yes to...

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 $15.99/month. Cancel anytime}