Re: [WiX-users] Extract Binary file from MSI C++

2013-05-01 Thread Natalie Carr
30 April 2013 15:32 To: General discussion for Windows Installer XML toolset.; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Extract Binary file from MSI C++ C#/DTF custom actions have a really nice story to support this without writing a lick of code. You just add the files to the M

Re: [WiX-users] Extract Binary file from MSI C++

2013-04-30 Thread John Cooper
nstaller XML toolset.; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Extract Binary file from MSI C++ C#/DTF custom actions have a really nice story to support this without writing a lick of code. You just add the files to the MSBuild project as Type: Content Action: Copy Always and t

Re: [WiX-users] Extract Binary file from MSI C++

2013-04-30 Thread Christopher Painter
++ CA projects to support this also. From: "TimM" Sent: Tuesday, April 30, 2013 8:58 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Extract Binary file from MSI C++ Natalie, I have basically the same task where we have abo

Re: [WiX-users] Extract Binary file from MSI C++

2013-04-30 Thread John Cooper
, April 30, 2013 8:52 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Extract Binary file from MSI C++ Natalie, I have basically the same task where we have about 5 files within the binary table that need to be extracted so that we can trigger a custom actions that depends on all 5 files existin

Re: [WiX-users] Extract Binary file from MSI C++

2013-04-30 Thread TimM
Natalie, I have basically the same task where we have about 5 files within the binary table that need to be extracted so that we can trigger a custom actions that depends on all 5 files existing in the same folder. So I would like to know if you have this working correctly and if so would you be a

Re: [WiX-users] Extract Binary file from MSI C++

2012-11-23 Thread Natalie Carr
nt: Thursday, November 22, 2012 5:36 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Extract Binary file from MSI C++ And make sure the phView is actually pointing at a view handle. Usually, you'd have MSIHANDLE hView; ... > If (MsiDatabaseOpenVi

Re: [WiX-users] Extract Binary file from MSI C++

2012-11-22 Thread David Connet
e > ading-from-the-binary-table.aspx > > > -----Original Message----- > From: Natalie Carr [mailto:natalie.c...@measuresoft.com] > Sent: 22 November 2012 17:03 > To: 'General discussion for Windows Installer XML toolset.' > Subject: Re: [WiX-users] Extract Binary f

Re: [WiX-users] Extract Binary file from MSI C++

2012-11-22 Thread Peter Shirtcliffe
012 17:03 To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Extract Binary file from MSI C++ Peter, I know now what you mean: extern "C" UINT __stdcall InstallDrivers(MSIHANDLE hInstall) { MsiGetActiveDatabase(hInstall); Ms

Re: [WiX-users] Extract Binary file from MSI C++

2012-11-22 Thread Natalie Carr
rtcliffe [mailto:pshirtcli...@sdl.com] Sent: Thursday, November 22, 2012 4:54 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Extract Binary file from MSI C++ The argument to MsiDatabaseOpenView should be a handle to a database. That would be there return value

Re: [WiX-users] Extract Binary file from MSI C++

2012-11-22 Thread Natalie Carr
er 22, 2012 4:54 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Extract Binary file from MSI C++ The argument to MsiDatabaseOpenView should be a handle to a database. That would be there return value of MsiGetActiveDatabase. MsiGetActiveDatabase takes and argume

Re: [WiX-users] Extract Binary file from MSI C++

2012-11-22 Thread Peter Shirtcliffe
The argument to MsiDatabaseOpenView should be a handle to a database. That would be there return value of MsiGetActiveDatabase. MsiGetActiveDatabase takes and argument of an installation session which is what the custom action is passed on entry. You've passed and uninitialized database handle to b