Re: [WiX-users] Howto optional install without gui - solved

2006-10-30 Thread Friedrich, Oliver
Thank you for your helping, this list is great J   Greetings Oliver Friedrich   From: Rob Mensching [mailto:[EMAIL PROTECTED] Sent: Montag, 30. Oktober 2006 17:27 To: Friedrich, Oliver; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Howto optional install without gui

Re: [WiX-users] Howto optional install without gui

2006-10-30 Thread Rob Mensching
1.  I suggest reading up about the MSI command-line in the MSI SDK.  You can do “misexec /i my.msi PROPERTY=value PROPERTY2=value2 /qn”   2.  You can create many different UI’s but I don’t think that you can totally get rid of the progress bar if you show any UI.   From: [EMAIL PRO

Re: [WiX-users] Howto optional install without gui

2006-10-30 Thread Rob Hamflett
You can specify properties on the command line with PROPERTYNAME=some_value and then use this as a condition for what your UI Sequence does. If you want a completely silent install then the /quiet flag will skip the UI Sequence all together, with no user interaction at all. Rob Friedrich, Ol