Re: [WiX-users] Burn. How to set UILevel == 3 (INSTALLUILEVEL_BASIC) or 4 (INSTALLUILEVEL_REDUCED) for msi.

2013-11-11 Thread Alexey Larsky-RUS
I explain: For certain MSI I like to show only dialog from CA and hide standard GUI. I did it by showing CA dialog in INSTALLUILEVEL_BASIC level. It is not correct because INSTALLUILEVEL_BASIC should execute complete silently. Please suggest how do it best with burn. PS. INSTALLUILEVEL_REDUCED

Re: [WiX-users] Burn. How to set UILevel == 3 (INSTALLUILEVEL_BASIC) or 4 (INSTALLUILEVEL_REDUCED) for msi.

2013-11-11 Thread Blair Murri
Looking at the interfaces between the engine and the BA, it appears that the only way involves someone setting that command-line argument. From: alexey.lar...@jeppesen.com To: wix-users@lists.sourceforge.net Date: Tue, 12 Nov 2013 07:13:39 +0100 Subject: Re: [WiX-users] Burn. How to set

Re: [WiX-users] Burn. How to set UILevel == 3 (INSTALLUILEVEL_BASIC) or 4 (INSTALLUILEVEL_REDUCED) for msi.

2013-11-11 Thread Alexey Larsky-RUS
But maybe exist any another approach for shows only CA dialog (and hiding standard)? -Original Message- From: Blair Murri [mailto:os...@live.com] Sent: Tuesday, November 12, 2013 10:39 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] Burn. How to set UILevel ==

Re: [WiX-users] Burn. How to set UILevel == 3 (INSTALLUILEVEL_BASIC) or 4 (INSTALLUILEVEL_REDUCED) for msi.

2013-11-11 Thread Blair Murri
Create and add a transform? In general, CA dialogs have never been well supported in Windows Installer, and the standard MSI UI has never been very complete. Thus, the recommendation is to create and use a BA for all of your UI. From: alexey.lar...@jeppesen.com To:

Re: [WiX-users] Burn. How to set UILevel == 3 (INSTALLUILEVEL_BASIC) or 4 (INSTALLUILEVEL_REDUCED) for msi.

2013-11-10 Thread Alexey Larsky-RUS
Is it possible to set INSTALLUILEVEL_REDUCED (as DisplayInternalUI + BOOTSTRAPPER_DISPLAY_PASSIVE) only for certain msi in bindle without /passive command line argument? -Original Message- From: Nicolás Alvarez [mailto:nicolas.alva...@gmail.com] Sent: Saturday, November 02, 2013 11:05

Re: [WiX-users] Burn. How to set UILevel == 3 (INSTALLUILEVEL_BASIC) or 4 (INSTALLUILEVEL_REDUCED) for msi.

2013-11-02 Thread Nicolás Alvarez
The progress should be shown in the Burn UI, not in a separate window that may even look different for each sub-package. Remember Burn is designed to provide a single progress bar experience. -- Nicolas 2013/11/1 Alexey Larsky-RUS alexey.lar...@jeppesen.com: When I like to show overall

Re: [WiX-users] Burn. How to set UILevel == 3 (INSTALLUILEVEL_BASIC) or 4 (INSTALLUILEVEL_REDUCED) for msi.

2013-11-01 Thread Hoover, Jacob
You can display the same progress in your BA that you could with a basic UI. Are you using WixStdBA or your own BA? If you are using WixStdBA you simply need to add Text Name=ExecuteProgressActionDataText X=11 Y=163 Width=-11 Height=17 FontId=3 DisablePrefix=yes/ To your progress

Re: [WiX-users] Burn. How to set UILevel == 3 (INSTALLUILEVEL_BASIC) or 4 (INSTALLUILEVEL_REDUCED) for msi.

2013-11-01 Thread Alexey Larsky-RUS
I use slightly modified WixStdBA. I'll try to use ExecuteProgressActionDataText. But anyway, it is good idea be able to set any possible UILevel for covering all UI variants for 3rd party MSIs. Sometime that really necessary. -Original Message- From: Hoover, Jacob

Re: [WiX-users] Burn. How to set UILevel == 3 (INSTALLUILEVEL_BASIC) or 4 (INSTALLUILEVEL_REDUCED) for msi.

2013-10-31 Thread Hoover, Jacob
Might I ask why you need a Basic install UI level? From: Blair Murri [os...@live.com] Sent: Tuesday, October 29, 2013 12:58 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Burn. How to set UILevel == 3

Re: [WiX-users] Burn. How to set UILevel == 3 (INSTALLUILEVEL_BASIC) or 4 (INSTALLUILEVEL_REDUCED) for msi.

2013-10-31 Thread Alexey Larsky-RUS
When I like to show overall progress for each msi. Some of them setups long time. It could be matter during tuning installing 3rd-party MSIs with incorrect conditions of custom actions. As I remember, on INSTALLUILEVEL_BASIC installation should be fully silent, like INSTALLUILEVEL_NONE.

Re: [WiX-users] Burn. How to set UILevel == 3 (INSTALLUILEVEL_BASIC) or 4 (INSTALLUILEVEL_REDUCED) for msi.

2013-10-29 Thread Blair Murri
It’s a combination of setting “DisplayInternalUI” to “yes” AND setting the “display” arguments to BOOTSTRAPPER_DISPLAY_PASSIVE (which happens for you when you pass the “/passive” argument to burn). That will get you INSTALLUILEVEL_REDUCED (4). INSTALLUILEVEL_BASIC (3) isn’t currently available

[WiX-users] Burn. How to set UILevel == 3 (INSTALLUILEVEL_BASIC) or 4 (INSTALLUILEVEL_REDUCED) for msi.

2013-10-28 Thread Alexey Larsky-RUS
Dear users, I can't found how to set UILevel == 3 or 4 for msi (MsiPackage). DisplayInternalUI='no' sets UILevel == 2 (INSTALLUILEVEL_NONE) DisplayInternalUI='yes' sets UILevel == 5 (INSTALLUILEVEL_FULL) Yours sincerely.