Re: [WiX-users] Extract Binaries at Install Time

2009-02-17 Thread Christopher Painter
1.exe")); Christopher Painter, Author of Deployment Engineering Blog Have a hot tip, know a secret or read a really good thread that deserves attention? E-Mail Me --- On Tue, 2/17/09, Romeo Salayo Jr. wrote: > From: Romeo Salayo Jr. > Subject: Re: [WiX-users] Extract Binaries at Install Time

Re: [WiX-users] Extract Binaries at Install Time

2009-02-16 Thread Romeo Salayo Jr.
ead a really good thread that deserves > attention? E-Mail Me > > > --- On Thu, 2/12/09, Romeo Salayo Jr. wrote: > >> From: Romeo Salayo Jr. >> Subject: Re: [WiX-users] Extract Binaries at Install Time >> To: wix-users@lists.sourceforge.net >> Date: Thur

Re: [WiX-users] Extract Binaries at Install Time

2009-02-12 Thread Christopher Painter
ering Blog Have a hot tip, know a secret or read a really good thread that deserves attention? E-Mail Me --- On Thu, 2/12/09, Romeo Salayo Jr. wrote: > From: Romeo Salayo Jr. > Subject: Re: [WiX-users] Extract Binaries at Install Time > To: wix-users@lists.sourceforge.net > Date: T

Re: [WiX-users] Extract Binaries at Install Time

2009-02-12 Thread Romeo Salayo Jr.
erves > attention? E-Mail Me > > > --- On Tue, 2/10/09, gree...@cox.net wrote: > >> From: gree...@cox.net >> Subject: Re: [WiX-users] Extract Binaries at Install Time >> To: "General discussion for Windows Installer XML toolset." >> >> Date: Tue

Re: [WiX-users] Extract Binaries at Install Time

2009-02-10 Thread Christopher Painter
Me --- On Tue, 2/10/09, gree...@cox.net wrote: > From: gree...@cox.net > Subject: Re: [WiX-users] Extract Binaries at Install Time > To: "General discussion for Windows Installer XML toolset." > > Date: Tuesday, February 10, 2009, 12:20 PM > One thing I can th

Re: [WiX-users] Extract Binaries at Install Time

2009-02-10 Thread Brian Rogers
You will need to read from the binary table in an immediate custom action. Then schedule a deferred custom action and pass the stream over. The deferred custom action can write the file to disk but it can't read from the MSI tables. The immediate custom action and read from the MSI tables but can't

Re: [WiX-users] Extract Binaries at Install Time

2009-02-10 Thread greenaj
One thing I can think of, make sure the custom action is run in immediate mode, not deferred. ajgreen "Romeo Salayo Jr." wrote: > > Hi, > > I'm trying to extract binaries at install time in able to use it during > installation only. I'm using C# DTF, the problem is I can't get > Record.

[WiX-users] Extract Binaries at Install Time

2009-02-09 Thread Romeo Salayo Jr.
Hi, I'm trying to extract binaries at install time in able to use it during installation only. I'm using C# DTF, the problem is I can't get Record.GetStream() to work. It always write to a file with "[Binary data]" and not the stream itself. Can anyone give an example on how to use GetStream() s