Alexei wrote: > just wondering if it is possible to have an install read values and assign > them to properties if there is the appropriate .ini file but if the file can > not be found to go ahead and display the GUI (which will then be able to get > the data from the user). >
There's no support for reading arbitrary .ini files; that would require a custom action. If you want to support a silent install that requires data, you can use command-line switches: MSIEXEC /l*vx install.log /i my.msi PROPERTY1=FOO PROPERTY2=BAR PROPERTY9=BAZ -- sig://boB http://joyofsetup.com/ ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ WiX-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wix-users

