Re: [WiX-users] CAQuietExec: Error 0x80070002: CAQuietExec Failed

2013-08-21 Thread Phil Wilson
That error means the file could not be found. Those custom actions are immediate, and they look like they depend on files that have been installed, but immediate custom actions are called before files have been installed. In any case, trying to run cmd or bat files is just too unreliable. Code wo

Re: [WiX-users] CAQuietExec: Error 0x80070002: CAQuietExec Failed

2013-08-21 Thread Nicolás Alvarez
Even if you could, you *definitely* can't do file redirection with > without explicitly invoking 'cmd'. Either way that looks kinda fragile. Did you consider writing a proper native-code CA? -- Nicolás 2013/8/20 Neil Sleightholm : > You can't run "echo" with invoking the command processor. Try

Re: [WiX-users] CAQuietExec: Error 0x80070002: CAQuietExec Failed

2013-08-20 Thread Neil Sleightholm
You can't run "echo" with invoking the command processor. Try "cmd /c echo blah...". Neil -Original Message- From: Dusan Plavak [mailto:dusan.pla...@avitech-ag.com] Sent: 20 August 2013 08:49 To: wix-users@lists.sourceforge.net Subject: [WiX-users] CAQuietExec: Error 0x80070002: CAQuiet