Re: [WiX-users] Custom Action - start exe inside my INSTALLDIR

2008-11-26 Thread Love88Keys
to write DLL CustomActions that have > very few dependencies. Makes for a much more robust install. > > -Original Message- > From: Love88Keys [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 26, 2008 15:41 > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] Cu

Re: [WiX-users] Custom Action - start exe inside my INSTALLDIR

2008-11-26 Thread Rob Mensching
:41 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Custom Action - start exe inside my INSTALLDIR So, is there a way to start an EXE-File which requires dll´s via BinaryKey AND during uninstall? Rob Mensching-2 wrote: > > That is not correct. > > > -- View this mes

Re: [WiX-users] Custom Action - start exe inside my INSTALLDIR

2008-11-26 Thread Love88Keys
So, is there a way to start an EXE-File which requires dll´s via BinaryKey AND during uninstall? Rob Mensching-2 wrote: > > That is not correct. > > > -- View this message in context: http://n2.nabble.com/Custom-Action---start-exe-inside-my-INSTALLDIR-tp1568179p1583283.html Sent from the

Re: [WiX-users] Custom Action - start exe inside my INSTALLDIR

2008-11-25 Thread Rob Mensching
That is not correct. -Original Message- From: Eitan Behar [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2008 21:05 To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Custom Action - start exe inside my INSTALLDIR Why don't you incl

Re: [WiX-users] Custom Action - start exe inside my INSTALLDIR

2008-11-24 Thread Eitan Behar
ation. -Original Message- From: Love88Keys [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 25, 2008 12:54 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Custom Action - start exe inside my INSTALLDIR Well, I think I didn´t point my problem exactly. I´ve got an EXE which ist

Re: [WiX-users] Custom Action - start exe inside my INSTALLDIR

2008-11-24 Thread Love88Keys
Well, I think I didn´t point my problem exactly. I´ve got an EXE which ist only needed during install, uninstall or modify process. My first idea was -of course- to do a CustomAction with BinaryKey. But : 1. the EXE requires a dll and I don´t know how to refer to that. 2. I´m not shure if my EXE

Re: [WiX-users] Custom Action - start exe inside my INSTALLDIR

2008-11-23 Thread Eitan Behar
Hi Michael, There are a few methods to execute a file using a custom action. Basically, it depends whether you are deploying the file, have it on the binary table, or the file already exists. According to your email, you are deploying the file with your installation. Therefore, the simplest approa

Re: [WiX-users] Custom Action - start exe inside my INSTALLDIR

2008-11-23 Thread cemiles
... Love88Keys wrote: > > I´ve read part of Wix-Tutorial "http://www.tramontana.co.hu/wix.."; about > how to start an exe-file which is already installed on the system. The > suggested solution was: > > Notepad.exe > ExeCommand='[SourceDir]Readme.txt' Return='asyncNoWait' /> >

Re: [WiX-users] Custom Action - start exe inside my INSTALLDIR

2008-11-23 Thread Love88Keys
Hallo Eitan, I´ve tried it out but it doesn´t work. with "SetProperty" The Installer does nothing, as like as there is no such exe-file. with your suggested Custum Action it get an error before compilation is finished: LGHT0094: Unresolved reference to symbol 'Directory:INSTALLDIR' in section 'P

Re: [WiX-users] Custom Action - start exe inside my INSTALLDIR

2008-11-23 Thread Eitan Behar
Hi Michael, You cannot use Property elements within the Property element. Instead, use this: Another approach is just: If your app is in the INSTALLDIR folder, remove [WindowsFolder] On Sun, Nov 23, 2008 at 1:47 PM, Love88Keys <[EMAIL PROTECTED]>wrote: > > I´ve read part of Wix-Tutorial

[WiX-users] Custom Action - start exe inside my INSTALLDIR

2008-11-23 Thread Love88Keys
I´ve read part of Wix-Tutorial "http://www.tramontana.co.hu/wix.."; about how to start an exe-file which is already installed on the system. The suggested solution was: Notepad.exe How can I make to to run an exe which is alredy installed but lies inside my INSTALLDIR. Might be useful: My Actio