Re: [WiX-users] WiX 3.0: How to run a program

2009-06-29 Thread Bob Arnson
little.forest wrote: > So that means, if I need to run an executable as "asyncNoWait", then I'll > have to use a different kind of customaction? If so, do you know what that > type of customaction is? > See the MSI SDK topic "Custom Action Return Processing Options." -- sig://boB http://joy

Re: [WiX-users] WiX 3.0: How to run a program

2009-06-26 Thread little.forest
ndows Installer XML toolset. Sent: Thursday, June 25, 2009 8:49:46 AM Subject: Re: [WiX-users] WiX 3.0: How to run a program little.forest wrote: > 1. If I try to use "asyncNoWait" as the "Return" type, I'm getting this error: > The CustomAction/@Return attribute&

Re: [WiX-users] WiX 3.0: How to run a program

2009-06-25 Thread Bob Arnson
little.forest wrote: > 1. If I try to use "asyncNoWait" as the "Return" type, I'm getting this error: > The CustomAction/@Return attribute's value, 'asyncNoWait', cannot be > specified without attribute ExeCommand present. > You can't use that with a DLL custom action, which is what QuietExec

Re: [WiX-users] WiX 3.0: How to run a program

2009-06-24 Thread little.forest
current one? Thanks. From: "Wilson, Phil" To: General discussion for Windows Installer XML toolset. Sent: Wednesday, June 24, 2009 10:26:38 AM Subject: Re: [WiX-users] WiX 3.0: How to run a program Execute=Immediate is before any file

Re: [WiX-users] WiX 3.0: How to run a program

2009-06-24 Thread Wilson, Phil
] WiX 3.0: How to run a program Can you WiX experts take a bit of your time to point me out the problems below? I used exactly the example code from wix.chm, but it doesn't work for me. Am I doing the right thing? I really appreciate it if you can give me some clue. Basically, I'd ju

Re: [WiX-users] WiX 3.0: How to run a program

2009-06-24 Thread little.forest
ight after the installation but before the main application getting launched. Thank you! /Brian From: little.forest To: General discussion for Windows Installer XML toolset. Sent: Tuesday, June 23, 2009 2:51:17 PM Subject: Re: [WiX-users] WiX 3.0: How to run

Re: [WiX-users] WiX 3.0: How to run a program

2009-06-23 Thread little.forest
Hi, I re-read the wix.chm and found "Quiet Execution Custom Action". I tried to use the example in wix.chm. But when I run it, I got these errors: MSI (s) (68!58) [13:58:06:803]: PROPERTY CHANGE: Deleting QtExecCmdLine property. Its current value is '"[INSTALLLOCATION]abc.exe"'. CAQuietExec:  Er

Re: [WiX-users] WiX 3.0: How to run a program

2009-06-05 Thread little.forest
Hi Rob, Thank you very much for your response. Actually, I did read the Wix.chm and found a topic "How To: Run the Installed Application After Setup". Do you mean this topic? If it's not, then could you please tell me a few key words that I can use to search the topic? For the topic "How To: R

Re: [WiX-users] WiX 3.0: How to run a program

2009-06-04 Thread Rob Mensching
I'm pretty sure the WiX.chm has a topic about exactly this case. little.forest wrote: > Hi, > > We're using WiX 3.0.4805.0. > > Question: how to run a program? We'd like to run it after all files installed > but before the main application running. > > Here is the code which doesn't work - the te

[WiX-users] WiX 3.0: How to run a program

2009-06-04 Thread little.forest
Hi, We're using WiX 3.0.4805.0. Question: how to run a program? We'd like to run it after all files installed but before the main application running. Here is the code which doesn't work - the test.exe program never run during installation: ... ... NOT Installed ... Can you ple