[WiX-users] Specifying source subdirectory

2012-05-16 Thread Martin Sustrik
Hi, My source tree has a file in "include" subdirectory. I want to install it to "include" subdirectory on the target box. I do the following: Light.exe is looking for th

Re: [WiX-users] Running command line at the end of installation

2009-02-04 Thread Martin Sustrik
OK, thanks, I've managed to run the exe. Now, how can I delete it afterwards? Thx. Martin Uwe Stump wrote: > Hi Martin, > > Try this (deferred execution): > > Value=""[INSTALLDIR]zmq.exe" -y" /> > Return="check" Execute="deferred" /> > > > After="InstallFinalize">$YourComponent>2 >

[WiX-users] Running command line at the end of installation

2009-02-04 Thread Martin Sustrik
Hi all, I want to run a command line at the end of installation. This is how far I have got: What I get is error 2721. Any advice? Thanks. Martin -- Create and Deploy Rich Internet Apps ou

Re: [WiX-users] Very Simple Installer

2009-02-03 Thread Martin Sustrik
Thx. Will try. Martin patrik.torn...@addiva.se wrote: > 1 create a self extract zip > 2 embeed zip file in wix > 3 move zip file to directory > 4 run custom action to start file like start a exe > > on reinstall remove all files from directory then 1-4 > > Citerar Marti

Re: [WiX-users] Very Simple Installer

2009-02-03 Thread Martin Sustrik
u stay with WiX try using the Heat tool to create the XML, on > simple installs it does a pretty good job. > > Neil > > -Original Message- > From: Martin Sustrik [mailto:sust...@fastmq.com] > Sent: 03 February 2009 20:03 > To: General discussion for Window

Re: [WiX-users] Very Simple Installer

2009-02-03 Thread Martin Sustrik
Castro, Edwin (Hillsboro) wrote: > Do you need to handle upgrades? If so, how are you going to handle file > renames, deletions, etc? Install into single directory. With new version delete the directory and install in anew. No registry keys. No icons. No menu items. No fancy stuff :) Martin -

Re: [WiX-users] Very Simple Installer

2009-02-03 Thread Martin Sustrik
o this. It's on out CodePlex now in our root project, but >> that reminds me that I've been meaning to contribute it to the MSBuild >> community tasks project... >> >> >> >> -Original Message- >> From: Martin Sustrik [mailto:sust...@fastmq

Re: [WiX-users] Very Simple Installer

2009-02-03 Thread Martin Sustrik
:( Any other tool that would be basically simple zip/unzip + add a nice windowsey GUI to the install? Martin Chad Petersen wrote: > V2 is the same as v3 in this regard. No built-in support for wildcard > inclusion of files. > > -Original Message----- > From: Martin Sustr

Re: [WiX-users] Very Simple Installer

2009-02-03 Thread Martin Sustrik
ribute it to the MSBuild community > tasks project... > > > > -Original Message- > From: Martin Sustrik [mailto:sust...@fastmq.com] > Sent: Tuesday, February 03, 2009 11:25 > To: wix-users@lists.sourceforge.net > Subject: [WiX-users] Very Simple Installer > > Hi, &g

[WiX-users] Very Simple Installer

2009-02-03 Thread Martin Sustrik
Hi, I have a directory tree I want to install at a user-specified location. It's as simple as that... however, I don't want to manage large xml definition file with an entry for each file to be packaged. Is there a way to do that with WiX? Thanks. Martin --