Re: [WiX-users] Wix Question related to closing process using util:CloseApplication

2012-09-21 Thread Rob Mensching
CloseApplication sends a close message to the process in question. That's basically it. On Fri, Sep 21, 2012 at 5:17 AM, Chandrasekaran, Suman (GE Healthcare) < suman.chandraseka...@ge.com> wrote: > HI, > > I am using Wix 3,6. I have an issue, while uninstalling the application > I want t

Re: [WiX-users] Wix Question

2010-12-28 Thread Rob Mensching
Sounds a lot like: http://wix.sourceforge.net/manual-wix3/run_program_after_install.htm On Thu, Dec 23, 2010 at 2:53 PM, Minarto Margoliono < mmargoli...@seamless.com.au> wrote: > If i want to open a webpage after the installation finished, where the > website address is from a custom ui dialog,

Re: [WiX-users] Wix Question

2007-05-12 Thread Rob Mensching
Take a look at the MSI SDK's documentation about the command line for the Windows Installer. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Elnata Degefa (Bluwater Consulting Inc) Sent: Wednesday, May 09, 2007 6:05 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Wix Q

Re: [WiX-users] Wix Question

2007-05-10 Thread Elnata Degefa (Bluwater Consulting Inc)
Perfect, thank you Dustine. From: Dustin Andrews Sent: Wednesday, May 09, 2007 6:37 PM To: Elnata Degefa (Bluwater Consulting Inc); wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Wix Question This is really simple. You just supply the parameters (that match properties in the MSI) on

Re: [WiX-users] Wix Question

2007-05-09 Thread Dustin Andrews
This is really simple. You just supply the parameters (that match properties in the MSI) on the command line. myInstall.msi DOMAINACCOUNT=domain\user PASSWORD=password Be sure to include conditions in your msi to fail the install if required options are missing. (or installed will allow upgrade