Re: [WiX-users] General Text Replacement

2013-10-29 Thread Tobias S
The AppSecInc. Community MSI Extensions are MSI Custom Actions and so used during Installation Runtime. In general they can be useful for different custom actions. See http://dblock.github.io/msiext/docs/1.3/ for their Intermediate Custom Actions. ---

Re: [WiX-users] General Text Replacement

2013-10-29 Thread Blair Murri
That should work for replacements you can do during buildtime. That would be a great feature to contribute to make it available during installtime. Blair From: Tobias S Sent: ‎Monday‎, ‎October‎ ‎28‎, ‎2013 ‎6‎:‎07‎ ‎AM To: General discussion for Windows Installer XML toolset. Sh

Re: [WiX-users] General Text Replacement

2013-10-28 Thread Tobias S
Should be possible using Win32_ReadFile + Regex_Replace + Win32_WriteFile + from Msiext (AppSecInc. Community MSI Extensions - http://dblock.github.io/msiext/) -- October Webinars: Code for Performance Free Intel webinars c

[WiX-users] General Text Replacement

2013-10-22 Thread Christopher Painter
I'm creating an installer in WiX that requires text replacements in a config file. The config file is not XML or INI based so I need to do some sort of search and replace / regex. Is there anything in WiX or other community extensions that provide this? I know how to do this using InstallS