Thanks for your answer. Do you have a short example, how I can access
this from within my managed bootstrapper. 

Maybe you have also a hint for me how I can get an Embedded Eula.rtf,
which is defined as content in my bundle authoring.

Best regards
Nikolaus Keuth 

_________________________________________________________________________________________
AVL List GmbH, Firmensitz: Graz, Firmenbuchnummer: FN 53507M, Landesgericht 
fuer ZRS Graz


 
-----Original Message-----
From: wix-users-requ...@lists.sourceforge.net
[mailto:wix-users-requ...@lists.sourceforge.net] 
Sent: Dienstag, 22. November 2011 17:53
To: wix-users@lists.sourceforge.net
Subject: WiX-users Digest, Vol 66, Issue 56

Send WiX-users mailing list submissions to
        wix-users@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.sourceforge.net/lists/listinfo/wix-users
or, via email, send a message with subject or body 'help' to
        wix-users-requ...@lists.sourceforge.net

You can reach the person managing the list at
        wix-users-ow...@lists.sourceforge.net

When replying, please edit your Subject line so it is more specific than
"Re: Contents of WiX-users digest..."


Today's Topics:

   1. Re: Custom Action to verify input (Hoover, Jacob)
   2. Re: If Bundle/@Name is empty, the bundle installer will have
      no title in the UI (Rob Mensching)
   3. Re: Burn & MBA & Getting PackageName from PackageID
      (Rob Mensching)
   4. Re: IBootstrapperApplication::OnExecuteMsiMessage() callback
      suppressed? (Rob Mensching)
   5. Re: Burn: disk space usage calculation (Rob Mensching)
   6. Re: Failed to install WiX v3.6 (Rob Mensching)
   7. Re: Major Upgrade - Ask user if he would like to upgrade
      (Rob Mensching)


----------------------------------------------------------------------

Message: 1
Date: Tue, 22 Nov 2011 09:54:11 -0600
From: "Hoover, Jacob" <jacob.hoo...@greenheck.com>
Subject: Re: [WiX-users] Custom Action to verify input
To: "General discussion for Windows Installer XML toolset."
        <wix-users@lists.sourceforge.net>
Message-ID:
        
<6698d25d7a94484a9ed61be05e1790630710b...@messenger2.greenops.com>
Content-Type: text/plain;       charset="us-ascii"

The property name alone only tests to see that the property is assigned.

        <Publish Event="SpawnDialog" Order="2"
Value="ConfigDlg">UserInfoVerified</Publish>
          <Publish Event="NewDialog" Order="3" Value="PassDlg">Not
UserInfoVerified</Publish>


should be

        <Publish Event="SpawnDialog" Order="2"
Value="ConfigDlg">UserInfoVerified ~= "TRUE"</Publish>
          <Publish Event="NewDialog" Order="3" Value="PassDlg">
(UserInfoVerified ~= "FALSE")</Publish>

-----Original Message-----
From: AxiomaticImpact [mailto:ke...@legendary-immersion.com]
Sent: Monday, November 21, 2011 2:30 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Custom Action to verify input



--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Custom-Act
ion-to-verify-input-tp7004942p7017845.html
Sent from the wix-users mailing list archive at Nabble.com.
------------------------------------------------------------------------
------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



------------------------------

Message: 2
Date: Tue, 22 Nov 2011 08:35:24 -0800
From: Rob Mensching <r...@robmensching.com>
Subject: Re: [WiX-users] If Bundle/@Name is empty, the bundle
        installer will have no title in the UI
To: "General discussion for Windows Installer XML toolset."
        <wix-users@lists.sourceforge.net>
Message-ID:
        
<CAHdHTVdiKC8VY3_j2wk1=26L6z7hkN=da2nivfaty7sm2mr...@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8

This was a bug. New solution will be to mark the Bundle DisableModify
and
DisableRemove. That way you can keep the bundle name.

On Mon, Nov 21, 2011 at 6:42 AM, Peter Bulyaki
<peter.buly...@gmail.com>wrote:

> Hi,
>
> I am replying myself, I have found one possible solution.
>
> On Thu, Nov 17, 2011 at 3:07 PM, Peter Bulyaki
>
> > Hi Guys,
> >
> > I removed the Bundle/@Name element from my wxs file, because I don't
want
> > to see the bundle name in the Add/Remove Programs list. However,
this
> > removed the title from the bootstrapper UI too. Is there any other
way to
> > get rid of the bundle name in Add/Remove Programs while keeping the
title
> > on the bootstrapper?
> > I have tried setting the WixBundleName variable as well, with zero
> success.
> >
> >
> - I have copied the RtfTheme.xml from the WiX source to my project,
and
> renamed it MyTheme.xml
> - Added this line to my Bundle.wxs:
>       <WixVariable Id="WixStdbaThemeXml" Value="MyTheme.xml" />
> - Changed the Window tag in the MyTheme.xml to the title I want to use
> (instead of '[WixBundleName] Setup').
>
> Peter
>
>
------------------------------------------------------------------------
------
> All the data continuously generated in your IT infrastructure
> contains a definitive record of customers, application performance,
> security threats, fraudulent activity, and more. Splunk takes this
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>


-- 
virtually, Rob Mensching - http://RobMensching.com LLC


------------------------------

Message: 3
Date: Tue, 22 Nov 2011 08:40:07 -0800
From: Rob Mensching <r...@robmensching.com>
Subject: Re: [WiX-users] Burn & MBA & Getting PackageName from
        PackageID
To: "General discussion for Windows Installer XML toolset."
        <wix-users@lists.sourceforge.net>
Message-ID:
        
<cahdhtvdruwjjv1onk_q2p1eanpy-y5mzodym+5d_vehctsf...@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8

The BootstrapperApplicationData.xml file (included with your BA) should
contain the mapping.

On Wed, Nov 16, 2011 at 9:10 AM, Keuth Nikolaus AVL/GRZ <
nikolaus.ke...@avl.com> wrote:

> Hello!
>
> Do you have any hints for me, how a can get the package names from my
> custom bootstrapper, to show a package list to the user?
>
> Best regards
> Nikolaus Keuth
>
>
> ------------------------------
>
> Hello!
>
>
>
> I'm currently writing my own MBA with wix3.6.
>
> I have a very simple question:
>
> How can I get the full name of a package by the use of the packageid,
> which I get with nearly every event of the engine, during the
>
> Installation process.
>
>
>
> Should be straight forward, but I cannot find a solution currently.
>
>
>
> Best regards
> Nikolaus Keuth
>
>
>
> ---
>
> DR. NIKOLAUS KEUTH
>
> Skill team leader ICF & Product Manager fOX
>
> Calibration Technologies
>
<http://www.avl.com/wo/webobsession.servlet.go/encoded/YXBwPWJjbXMmcGFnZ
>
T12aWV3JiZub2RlaWQ9NDAwMDU5MDMx.html<http://www.avl.com/wo/webobsession.
servlet.go/encoded/YXBwPWJjbXMmcGFnZT12aWV3JiZub2RlaWQ9NDAwMDU5MDMx.html
>
> >
>
> Business Unit Measurement & Instrumentation,
>
> Instrumentation & Test Systems
>
>
>
> mailto:nikolaus.ke...@avl.com <mailto:nikolaus.ke...@avl.com>
>
> Phone: +43 316 787 3869, Fax: +43 316 787 6780,
>
> Mobile: +43 664 85 09 069, Office: +43 316 787 648
>
>
>
> AVL LIST GMBH
>
> A-8020 Graz, Hans-List-Platz 1
>
> www.avl.com
>
>
>
>
>
________________________________________________________________________
_________________
> AVL List GmbH, Firmensitz: Graz, Firmenbuchnummer: FN 53507M,
> Landesgericht fuer ZRS Graz
>
>
>
>
________________________________________________________________________
> _________________
> AVL List GmbH, Firmensitz: Graz, Firmenbuchnummer: FN 53507M,
> Landesgericht fuer ZRS Graz
>
>
>
>
------------------------------------------------------------------------
------
> All the data continuously generated in your IT infrastructure
> contains a definitive record of customers, application performance,
> security threats, fraudulent activity, and more. Splunk takes this
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>


-- 
virtually, Rob Mensching - http://RobMensching.com LLC


------------------------------

Message: 4
Date: Tue, 22 Nov 2011 08:40:54 -0800
From: Rob Mensching <r...@robmensching.com>
Subject: Re: [WiX-users]
        IBootstrapperApplication::OnExecuteMsiMessage() callback
suppressed?
To: "General discussion for Windows Installer XML toolset."
        <wix-users@lists.sourceforge.net>
Message-ID:
        
<CAHdHTVc_D9L6Ccw+6BHR+ga+zd9YEgoCyf=rgqy+jr9nb+p...@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8

It should still be sent. If not, that'd be a bug.

On Mon, Nov 14, 2011 at 3:07 AM, Timo Viitaniemi <
timo.viitani...@crosscontrol.com> wrote:

> Hello!
>
> I have been using OnExecuteMsiMessage() IBootstrapperApplication
interface
> in my boostrapper application while using WiX release 3.6.2214.
However,
> now it seems that this function callback is not called after updating
to
> 3.6.2221 release. Is it suppressed by purpose and if so, how can I
retrieve
> the msi information now?
>
> Best Regards,
> Timo Viitaniemi
>
>
>
------------------------------------------------------------------------
------
> RSA(R) Conference 2012
> Save $700 by Nov 18
> Register now
> http://p.sf.net/sfu/rsa-sfdev2dev1
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>


-- 
virtually, Rob Mensching - http://RobMensching.com LLC


------------------------------

Message: 5
Date: Tue, 22 Nov 2011 08:49:02 -0800
From: Rob Mensching <r...@robmensching.com>
Subject: Re: [WiX-users] Burn: disk space usage calculation
To: "General discussion for Windows Installer XML toolset."
        <wix-users@lists.sourceforge.net>
Message-ID:
        
<CAHdHTVfQeqCPxR033AoZRKvsaK9Yc0ae0X6uUGyt_Yb7+=q...@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8

The Burn engine today does not do disk calculation. That is left to the
BootstrapperApplication.

On Wed, Nov 16, 2011 at 11:44 PM, Vadym Verba <vve...@sdl.com> wrote:

> Sorry for repeating, but does anyone have any clues?
>
> -----Original Message-----
> From: Vadym Verba
> Sent: Friday, November 11, 2011 11:37
> To: 'wix-users@lists.sourceforge.net'
> Subject: Burn: disk space usage calculation
>
> Hello.
>
> I have a bundle with several packages of .msi and .exe types, plus
> additional
> .exes to install some Windows roles. I also know all their features
and can
> gather information from user which one should be installed. So now I
have a
> problem to calculate how much space installation will take. I don't
think
> to
> hardcode size of each feature is a good idea because it can change in
next
> builds. I prefer some automatic approach.
> Is there any analogue of 'CostInitialize', 'FileCost' and
'CostInitialize'
> installer actions in Burn?
>
> BR,
> Vadym.
> SDL PLC confidential, all rights reserved.
> If you are not the intended recipient of this mail SDL requests and
> requires that you delete it without acting upon or copying any of its
> contents, and we further request that you advise us.
> SDL PLC is a public limited company registered in England and Wales.
>  Registered number: 02675207.
> Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire
SL6
> 7DY, UK.
>
>
>
>
------------------------------------------------------------------------
------
> All the data continuously generated in your IT infrastructure
> contains a definitive record of customers, application performance,
> security threats, fraudulent activity, and more. Splunk takes this
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>


-- 
virtually, Rob Mensching - http://RobMensching.com LLC


------------------------------

Message: 6
Date: Tue, 22 Nov 2011 08:50:55 -0800
From: Rob Mensching <r...@robmensching.com>
Subject: Re: [WiX-users] Failed to install WiX v3.6
To: "General discussion for Windows Installer XML toolset."
        <wix-users@lists.sourceforge.net>
Message-ID:
        
<CAHdHTVf4nQTR6zS=srg4bgtjqxjpvrosbaz4swg8t6deoii...@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8

As Bruce notes second, the log file in %TEMP% is the fastest way to
figure
out what went wrong.

On Wed, Nov 16, 2011 at 5:03 AM, Bruce Cran <br...@cran.org.uk> wrote:

> On 16/11/2011 12:06, Harper wrote:
> > What's wrong? How can I get information, why it failed? And how can
this
> be
> > fixed? One thing that's different from a successful installation is
that
> it
> > failed on a computer that's a member of a domain. But I am not aware
of
> > policies that disallow software installation.
> >
> > How do I get WiX 3.6 installed?
>
> One way it can fail is if Windows Installer has any reboots pending -
> for example if you've installed something previously that wanted to
> reboot and you clicked "No". Otherwise, you could check in the logs it
> produces by default (i.e. logging is enabled by default) in %TEMP% .
>
> --
> Bruce Cran
>
>
>
------------------------------------------------------------------------
------
> RSA(R) Conference 2012
> Save $700 by Nov 18
> Register now
> http://p.sf.net/sfu/rsa-sfdev2dev1
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>


-- 
virtually, Rob Mensching - http://RobMensching.com LLC


------------------------------

Message: 7
Date: Tue, 22 Nov 2011 08:52:09 -0800
From: Rob Mensching <r...@robmensching.com>
Subject: Re: [WiX-users] Major Upgrade - Ask user if he would like to
        upgrade
To: "General discussion for Windows Installer XML toolset."
        <wix-users@lists.sourceforge.net>
Message-ID:
        
<CAHdHTVf=24uWBdTcbCV6QEJecpJ60cfb7UKgJ_NoapbjCN-=c...@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8

Upgrade will set a property indicating that the major upgrade is
expected.
You can use that to change your UI and I *think* (never tried) condition
out RemoveExistingProducts appropriately.

On Wed, Nov 16, 2011 at 5:23 AM, <thomas.debo...@rohde-schwarz.com>
wrote:

> Hi,
>
> after some discussions I've changed my mind and have implemented the
code
> to support major upgrades.
>
> But when I now launch the second package to upgrade the first I get no
> hint that this will be an upgrade installation.
>
> How could I bring up a message or change the welcome dialog to ask the
> user if he would like to upgrade from the first package to the second?
>
> Cheers,
>  Thomas
>
>
------------------------------------------------------------------------
------
> RSA(R) Conference 2012
> Save $700 by Nov 18
> Register now
> http://p.sf.net/sfu/rsa-sfdev2dev1
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>


-- 
virtually, Rob Mensching - http://RobMensching.com LLC


------------------------------

------------------------------------------------------------------------
------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d

------------------------------

_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


End of WiX-users Digest, Vol 66, Issue 56
*****************************************

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to