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 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 upgrades, repairs and un-install 
to work without them).

    <Condition Message="You must provide an account name and password. 
C\>myInstall.msi DOMAINACCOUNT=domain\account PASSORD=password">
      DOMAINACCOUNT Or Installed
    </Condition>
    <Condition Message="You must provide a password for the domain account. 
C:\>myInstall.msi DOMAINACCOUNT=domain\account PASSORD=password">
      PASSWORD Or Installed
    </Condition>



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 Question

I am a new user of Wix, I wanted to create msi for our deployment process. I 
want the msi to accept different parameter (command line argument), I couldn't 
find any doc which explain how to do this.

Any idea how I can do this? Or is there any documentation that I can use.

Thanks,
Elnata
SDET, SCG

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to