I am trying to make an installation using WiX, and I need to modify the configuration file (not XML or INI) with entries that have a configured WiX dialog.
Is there a good way to do this? Do I need to do custom VB script actions, maybe?
The following are the relevant bits of the wxs file:
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLLOCATION" Name="MyApp">
<Component Id="ap_cfg" KeyPath="yes" Guid="...">
<File Id="CONFIGFILE" Source="myConfig.cfg" />
</Component>
</Directory>
</Directory>
</Directory>
source
share