I've created a WiX installer to deploy a set of websites on at a customer site and use xmlfile to plug correct values for hostnames and connectionStrings into our web.config files. Since these values come from the installer UI I've run into a problem when doing an Upgrade install using:
msiexec /i Websites.msi /l*vx Website.log REINSTALL=ALL REINSTALLMODE=vomus
While the update performs correctly the xmlfile actions plug empty values in since the UI isn't run.
Is there a way of getting these values into the installer without parsing the XML or prompting the installation engineer for the values again?
Cheers, Damien