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

2009-02-04 Thread Uwe Stump
Hi Martin, Try this (deferred execution): CustomAction Id=CA_Unpack_Cmd Property=SC_SETUP_EXEC Value=quot;[INSTALLDIR]zmq.exequot; -y / CustomAction Id=CA_Unpack_Exec BinaryKey=WixCA DllEntry=CAQuietExec Return=check Execute=deferred / InstallExecuteSequence Custom Action=CA_Unpack_Cmd

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): CustomAction Id=CA_Unpack_Cmd Property=SC_SETUP_EXEC Value=quot;[INSTALLDIR]zmq.exequot; -y / CustomAction Id=CA_Unpack_Exec

[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: CustomAction Id=Unpack ExeCommand=zmq.exe -y / InstallExecuteSequence Custom Action=Unpack After=InstallFinalize / /InstallExecuteSequence What I get is error 2721. Any advice?