Re: [WiX-users] Running an Exe

2012-09-06 Thread Natalie Carr
...@greenheck.com] Sent: 05 September 2012 22:58 To: chr...@iswix.com; General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Running an Exe Natalie, It is not recommended to do concurrent installs with a pure MSI based approach (http://msdn.microsoft.com/en-us/library

Re: [WiX-users] Running an Exe

2012-09-05 Thread Natalie Carr
-users] Running an Exe Does the .exe get run at all? The ExeCommand should be the parameters passed to the executable. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Running-an-Exe -tp7580285p7580288.html Sent from the wix-users mailing list archive

Re: [WiX-users] Running an Exe

2012-09-05 Thread Natalie Carr
I've tried the full path also but that made no difference..:( -Original Message- From: Adam Kadzban [mailto:mightyshorta...@gmail.com] Sent: 05 September 2012 00:36 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Running an Exe What's the error you're

Re: [WiX-users] Running an Exe

2012-09-05 Thread Pally Sandher
Message- From: Natalie Carr [mailto:natalie.c...@measuresoft.com] Sent: 04 September 2012 16:01 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Running an Exe I'm trying to run an exe when a user clicks a button, can anyone please tell me what i am doing wrong or tell me how to do

Re: [WiX-users] Running an Exe

2012-09-05 Thread Natalie Carr
[mailto:pally.sand...@iesve.com] Sent: 05 September 2012 11:04 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Running an Exe This is what you're doing wrong - http://msdn.microsoft.com/en-us/library/windows/desktop/bb204770.aspx#concur rent_installs

Re: [WiX-users] Running an Exe

2012-09-05 Thread Christopher Painter
: Natalie Carr natalie.c...@measuresoft.com Sent: Wednesday, September 05, 2012 5:52 AM To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Running an Exe Hi, Thanks, I don't want to use Burn as I have spent a great deal of time making my

Re: [WiX-users] Running an Exe

2012-09-05 Thread Hoover, Jacob
. From: Natalie Carr natalie.c...@measuresoft.com Sent: Wednesday, September 05, 2012 5:52 AM To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Running an Exe Hi, Thanks, I don't want to use Burn as I have spent a great

[WiX-users] Running an Exe

2012-09-04 Thread Natalie Carr
I'm trying to run an exe when a user clicks a button, can anyone please tell me what i am doing wrong or tell me how to do it please. Thanks Binary Id=sentinelInstaller SourceFile=sentinel_setup.exe / CustomAction Id=sentinel_setup BinaryKey=sentinelInstaller ExeCommand=sentinel_setup.exe

Re: [WiX-users] Running an Exe

2012-09-04 Thread Nick Ramirez
Does the .exe get run at all? The ExeCommand should be the parameters passed to the executable. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Running-an-Exe-tp7580285p7580288.html Sent from the wix-users mailing list archive at Nabble.com.

Re: [WiX-users] Running an Exe

2012-09-04 Thread Adam Kadzban
What's the error you're getting? You might also have the path to the exe wrong in the Binary tag. On Tue, Sep 4, 2012 at 1:28 PM, Nick Ramirez nickra...@hotmail.com wrote: Does the .exe get run at all? The ExeCommand should be the parameters passed to the executable. -- View this message

[WiX-users] Running Local exe from MSM

2008-02-05 Thread lashawntab
We have an MSM that we want to directly access a exe from the users local machine. We do not have this executable, we just know that it exists... I get the following error: DEBUG: Error 2721: Custom action RegisterRT.BD458878-67F6-4de3-AD17-C9262F1712F2 not found in Binary table stream. I

Re: [WiX-users] Running an exe with a working directory

2007-01-05 Thread Patrick Steele
@lists.sourceforge.net Subject: Re: [WiX-users] Running an exe with a working directory Date: Thu, 04 Jan 2007 21:13:25 -0300 You need a Custom Action Type 34 to run an exe with a working directory. Try this: CustomAction Id='LaunchMyExe' Directory='[INSTALLDIR]' ExeCommand='My.exe blah' Return='asyncNoWait' / K

Re: [WiX-users] Running an exe with a working directory

2007-01-05 Thread Patrick Steele
Original Message Follows From: Scott Palmer [EMAIL PROTECTED] To: Patrick Steele [EMAIL PROTECTED] Subject: Re: [WiX-users] Running an exe with a working directory Date: Fri, 5 Jan 2007 09:11:24 -0500 I think that in your example My.exe must be the full path to the exe. Scott On 1/5/07

[WiX-users] Running an exe with a working directory

2007-01-04 Thread Patrick Steele
After the end of my install, I wish to run my newly created exe with command line parameters. The exe is dependent upon dlls that have been added during the install, so I'm figuring maybe I have to set the working directory somehow prior to running the exe so that it will correctly pick up the

Re: [WiX-users] Running an exe with a working directory

2007-01-04 Thread Agustín K-ballo Bergé
You need a Custom Action Type 34 to run an exe with a working directory. Try this: CustomAction Id='LaunchMyExe' Directory='[INSTALLDIR]' ExeCommand='My.exe blah' Return='asyncNoWait' / K-ballo.- Patrick Steele escribió: After the end of my install, I wish to run my newly created exe with

Re: [WiX-users] Running an exe with a working directory

2007-01-04 Thread Rob Mensching
, 2007 16:06unkTo: wix-users@lists.sourceforge.netunkSubject: [WiX-users] Running an exe with a working directoryunkunkAfter the end of my install, I wish to run my newly created exe with commandunkline parameters. The exe is dependent upon dlls that have been added duringunkthe install, so I'm