Re: [WiX-users] 'INSERT INTO' an offline MSI with DTF

2015-03-26 Thread laurie
For anyone who may be interested, using the DTF module with Powershell (external to an MSI) requires code in the following format: # PowerShell - # Add Required Type Libraries Add-Type -Path "C:\Program Files (x86)\WiX Toolset v4.0\bin\WixToolset.Dtf.WindowsInstaller.dll"; # Open an MSI

Re: [WiX-users] 'INSERT INTO' an offline MSI with DTF

2015-03-23 Thread laurie
Thanks for the suggestion Phill, What I am trying to do is external to a running MSI. Since the my original post I've tried the same DTF functions in C# and was surprised to see everything work perfectly. Following on from the VBScript & PowerShell snippets above, the code below is the same acti

Re: [WiX-users] 'INSERT INTO' an offline MSI with DTF

2015-03-23 Thread Phill Hogland
I have not used DTF, but I noticed this thread , which may be helpful. This blog post discusses the general concept from a C++ perspe