[WiX-users] Service fails to install due to insufficient permissions

2008-05-05 Thread Jose Sanchez Saldana (Excell Data Corporation)
When trying to install a service through WIX, I use the following code: ServiceInstall Id=DataServiceInstall Name=Data Service DisplayName=Data Service ErrorControl=normal

[WiX-users] Installing files from a pre-generated CAB file

2008-04-02 Thread Jose Sanchez Saldana (Excell Data Corporation)
Suppose I have a cab file called FILES.CAB, which I've generated previously. Is there any way (other than running a custom action to extract it) to install the files within this CAB using WIX? Thanks. - Check out the new

[WiX-users] Running a SQL command in WIX

2007-12-17 Thread Jose Sanchez Saldana (Excell Data Corporation)
What's the best way, in your opinion, to run a SQL command on a database that's being installed through SOUP in WIX? - SF.Net email is sponsored by: Check out the new SourceForge.net Marketplace. It's the best place to buy or

[WiX-users] Calling embedded binaries with dependencies in WIX

2007-11-26 Thread Jose Sanchez Saldana (Excell Data Corporation)
I'm attempting to call sed.exe as an embedded binary from an MSI - however, it has three dependencies: cygiconv2.dll, cygintl2.dll, and cygwin1.dll. Does wix have any mechanism, through custom actions, that would allow sed.exe to be called from within the MSI - through the binary tag - without

Re: [WiX-users] Calling embedded binaries with WIX Custom Actions

2007-11-20 Thread Jose Sanchez Saldana (Excell Data Corporation)
- From: Julie Campbell [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 20, 2007 1:15 PM To: wix-users@lists.sourceforge.net; Jose Sanchez Saldana (Excell Data Corporation) Subject: Re: [WiX-users] Calling embedded binaries with WIX Custom Actions Jose, There are three things that you missed

[WiX-users] Calling embedded binaries with WIX Custom Actions

2007-11-19 Thread Jose Sanchez Saldana (Excell Data Corporation)
As a simple test, I've input the following code into a .wxs file: Binary Id=Notepad.exe SourceFile=c:\WINNT\notepad.exe/ CustomAction Id=NotepadPopUp BinaryKey=Notepad.exe ExeCommand=c:\old.txt / InstallExecuteSequence