[WiX-users] Burn MBA: Bundle patch scenario.

2013-09-02 Thread Vitaly Baranov
Hello, I have a question regarding bundle patching scenario in custom MBA. I have RTM bundle v.1.0.0.226 with RTM msi: Bundle Name=Setup Version=1.0.0.226 Manufacturer=ACME UpgradeCode={1313AB3D-4133-4E79-8639-AB76C22F1AA3} RelatedBundle Id={1313AB3D-4133-4E79-8639-AB76C22F1AA3} Action=Upgrade/

Re: [WiX-users] Wix tool deployment

2013-09-02 Thread David Watson
I don't think there are issues with re-distributing the wix toolset as I have seen third party tools do that. Double check the license. I would personally just link to the site with instructions or if needed distribute the entire toolset. Dave -Original Message- From: biswajitbiee

Re: [WiX-users] Nit error while trying to run Lux tests.

2013-09-02 Thread Ihor Horovetskyi
When I try to run the .msi with log, test return value 3: 'SFXCA: Extracting custom action to temporary directory: C:\Windows\Installer\MSI253F.tmp-\ SFXCA: Failed to get requested CLR info. Error code 0x80131700 SFXCA: Ensure that the proper version of the .NET Framework is installed, or that

Re: [WiX-users] Copy many files to install folder

2013-09-02 Thread Ihor Horovetskyi
Use *'heat.exe'* harvest tool to automatically create layout with file components and references. Example of using with command line: *%wix%\bin\heat.exe dir Dist -ag -sfrag -srd -suid -var var.Binaries -cg BinaryFileGroup -out HeatFiles.wxi* where Dist - distribution directory with multiply

[WiX-users] Extract Binary file from MSI to Temp folder using C#

2013-09-02 Thread ak m
Dear All, Code to Extract Binary file from MSI to Temp folder using C# Anyone Plz help me on this? Thanks in Advance... Anil -- Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! Discover the easy

Re: [WiX-users] Extract Binary file from MSI to Temp folder using C#

2013-09-02 Thread Gabriel Ivanes
Hello, An example function in vbscript : Function ExtractBinary(BinaryName, OutputFile) Const msiReadStreamAnsi = 2 Dim oDatabase Set oDatabase = Session.Database Dim View Set View = oDatabase.OpenView(SELECT * FROM Binary WHERE Name = ' amp; BinaryName amp; ')

Re: [WiX-users] FileSearch issues

2013-09-02 Thread Edwin Castro
I searched for WiX FileSearch in same directory as MSI on google. The first hit [1] I received [2] includes a reply from Phil Wilson suggesting the SourceDir [3] or OriginalDatabase [4] (with some additional parsing) might work. [1]

Re: [WiX-users] FileSearch issues

2013-09-02 Thread Phil Wilson
My dumb search works just fine - I can't see what the issue is. This works for me: Sample.msi and thing.txt in the same directory. Property Id=FILEEXISTS Secure=yes DirectorySearch Id=CheckFileDir Path=[SourceDir] Depth=0 FileSearch Id=CheckFile Name=thing.txt

[WiX-users] [SPAM] Re: FileSearch issues

2013-09-02 Thread Rob Mensching
I'm curious what happens when SourceDir is blank. On Mon, Sep 2, 2013 at 10:25 AM, Phil Wilson phildgwil...@gmail.com wrote: My dumb search works just fine - I can't see what the issue is. This works for me: Sample.msi and thing.txt in the same directory. Property Id=FILEEXISTS