Re: [WiX-users] custom actions in burn?

2012-11-02 Thread Rob Mensching
That you could do declaratively via InstallCondition on the Package
elements if you didn't want to do it programmatically in your BA.


On Fri, Nov 2, 2012 at 1:50 AM, Igor Brejc  wrote:

> Hi,
>
> I have the same thing (two MSIs, one 32 and the other 64 bit). I'm using
> the managed bootstrapper with override of OnPlanPackageBegin() method to
> control which one gets installed, without the need for custom actions:
>
> protected override void
> OnPlanPackageBegin(PlanPackageBeginEventArgs args)
> {
> base.OnPlanPackageBegin(args);
>
> if (args.PackageId == "MPWI_Agent_x86")
> {
> if (Bitness.Is64BitOperatingSystem)
> args.State = RequestState.Absent;
> }
> else if (args.PackageId == "MPWI_Agent_x64")
> {
> if (!Bitness.Is64BitOperatingSystem)
> args.State = RequestState.Absent;
> }
> }
>
>
> On Wed, Oct 31, 2012 at 5:21 PM, StevenOgilvie  wrote:
>
> > Hi all,
> >
> > I have a product that installs a 32 bit version and 64 bit version
> > installer
> > (two .msi)
> > I have a custom action in product.wxs that determines the "bitness" of
> > Microsoft Outlook (whether the user installed 32 bit or 64 bit version of
> > Outlook, our product is an add-in).
> >
> > so I have 2 msi's, but only 1 should kick off from burn, can you write
> > custom actions in Bundle.wxs?
> >
> > if so what would I set the condition sequence to? i.e.
> > 
> >   NOT
> > Installed
> > 
> > 
> >   NOT
> > Installed
> > 
> >
> > thanks,
> >
> > Steve
> >
> >
> >
> > --
> > View this message in context:
> >
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/custom-actions-in-burn-tp7581691.html
> > Sent from the wix-users mailing list archive at Nabble.com.
> >
> >
> >
> --
> > Everyone hates slow websites. So do we.
> > Make your web apps faster with AppDynamics
> > Download AppDynamics Lite for free today:
> > http://p.sf.net/sfu/appdyn_sfd2d_oct
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
>
> --
> LogMeIn Central: Instant, anywhere, Remote PC access and management.
> Stay in control, update software, and manage PCs from one command center
> Diagnose problems and improve visibility into emerging IT issues
> Automate, monitor and manage. Do more in less time with Central
> http://p.sf.net/sfu/logmein12331_d2d
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>



-- 
virtually,

   Rob Mensching
   http://RobMensching.com LLC
--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] custom actions in burn?

2012-11-02 Thread Igor Brejc
Hi,

I have the same thing (two MSIs, one 32 and the other 64 bit). I'm using
the managed bootstrapper with override of OnPlanPackageBegin() method to
control which one gets installed, without the need for custom actions:

protected override void
OnPlanPackageBegin(PlanPackageBeginEventArgs args)
{
base.OnPlanPackageBegin(args);

if (args.PackageId == "MPWI_Agent_x86")
{
if (Bitness.Is64BitOperatingSystem)
args.State = RequestState.Absent;
}
else if (args.PackageId == "MPWI_Agent_x64")
{
if (!Bitness.Is64BitOperatingSystem)
args.State = RequestState.Absent;
}
}


On Wed, Oct 31, 2012 at 5:21 PM, StevenOgilvie  wrote:

> Hi all,
>
> I have a product that installs a 32 bit version and 64 bit version
> installer
> (two .msi)
> I have a custom action in product.wxs that determines the "bitness" of
> Microsoft Outlook (whether the user installed 32 bit or 64 bit version of
> Outlook, our product is an add-in).
>
> so I have 2 msi's, but only 1 should kick off from burn, can you write
> custom actions in Bundle.wxs?
>
> if so what would I set the condition sequence to? i.e.
> 
>   NOT
> Installed
> 
> 
>   NOT
> Installed
> 
>
> thanks,
>
> Steve
>
>
>
> --
> View this message in context:
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/custom-actions-in-burn-tp7581691.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_sfd2d_oct
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] custom actions in burn?

2012-10-31 Thread Hoover, Jacob
There is no such thing as a CustomAction in the context of burn. If you can't 
use a combination of the existing searches 
(Registry/Component/Directory/Product/File) you either need to extend the 
existing BA/UX or write your own, neither of which are trivial. 

-Original Message-
From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] 
Sent: Wednesday, October 31, 2012 11:48 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] custom actions in burn?

Looks like there's a simple registry search. Have you seen this ?
http://stackoverflow.com/questions/2203980/detect-whether-office-2010-is-32bi
t-or-64bit-via-the-registry


-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
Sent: 31 October 2012 16:38
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] custom actions in burn?

So from your answer it sounds like you cannot really use  in 
burn?

I have 2007/2010/2013 Outlook and 32 bit/64 bit checking for the bitness isn't 
simple, we have a custom action dll that does that for us and returns a MSI 
property (which I use in the MSI)

Steve

-Original Message-
From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com]
Sent: October-31-12 12:29 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] custom actions in burn?

I imagine that a Burn custom action would be part of the code of a custom 
bootstrapper application that would set a variable during the appropriate 
event. Could you not use a util:product search or utilL:registry search to 
determine which outlook is installed ? Save you a lot of work unless you've 
already got a custom BA.

-Original Message-
From: StevenOgilvie [mailto:sogil...@msn.com]
Sent: 31 October 2012 16:21
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] custom actions in burn?

Hi all,

I have a product that installs a 32 bit version and 64 bit version installer 
(two .msi) I have a custom action in product.wxs that determines the "bitness" 
of Microsoft Outlook (whether the user installed 32 bit or 64 bit version of 
Outlook, our product is an add-in).

so I have 2 msi's, but only 1 should kick off from burn, can you write custom 
actions in Bundle.wxs? 

if so what would I set the condition sequence to? i.e.

  NOT 
Installed


  NOT 
Installed


thanks,

Steve



--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/custom-actions-
in-burn-tp7581691.html
Sent from the wix-users mailing list archive at Nabble.com.

-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
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.


-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free 
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
Wi

Re: [WiX-users] custom actions in burn?

2012-10-31 Thread Steven Ogilvie
Once again Peter, thank you!

Awesome...

STeve

-Original Message-
From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] 
Sent: October-31-12 12:48 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] custom actions in burn?

Looks like there's a simple registry search. Have you seen this ?
http://stackoverflow.com/questions/2203980/detect-whether-office-2010-is-32bi
t-or-64bit-via-the-registry


-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
Sent: 31 October 2012 16:38
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] custom actions in burn?

So from your answer it sounds like you cannot really use  in 
burn?

I have 2007/2010/2013 Outlook and 32 bit/64 bit checking for the bitness isn't 
simple, we have a custom action dll that does that for us and returns a MSI 
property (which I use in the MSI)

Steve

-Original Message-
From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com]
Sent: October-31-12 12:29 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] custom actions in burn?

I imagine that a Burn custom action would be part of the code of a custom 
bootstrapper application that would set a variable during the appropriate 
event. Could you not use a util:product search or utilL:registry search to 
determine which outlook is installed ? Save you a lot of work unless you've 
already got a custom BA.

-Original Message-
From: StevenOgilvie [mailto:sogil...@msn.com]
Sent: 31 October 2012 16:21
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] custom actions in burn?

Hi all,

I have a product that installs a 32 bit version and 64 bit version installer 
(two .msi) I have a custom action in product.wxs that determines the "bitness" 
of Microsoft Outlook (whether the user installed 32 bit or 64 bit version of 
Outlook, our product is an add-in).

so I have 2 msi's, but only 1 should kick off from burn, can you write custom 
actions in Bundle.wxs? 

if so what would I set the condition sequence to? i.e.

  NOT 
Installed


  NOT 
Installed


thanks,

Steve



--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/custom-actions-
in-burn-tp7581691.html
Sent from the wix-users mailing list archive at Nabble.com.

-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
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.


-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free 
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] custom actions in burn?

2012-10-31 Thread Peter Shirtcliffe
Looks like there's a simple registry search. Have you seen this ?
http://stackoverflow.com/questions/2203980/detect-whether-office-2010-is-32bi
t-or-64bit-via-the-registry


-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com] 
Sent: 31 October 2012 16:38
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] custom actions in burn?

So from your answer it sounds like you cannot really use 
in burn?

I have 2007/2010/2013 Outlook and 32 bit/64 bit checking for the bitness
isn't simple, we have a custom action dll that does that for us and returns a
MSI property (which I use in the MSI)

Steve

-Original Message-
From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com]
Sent: October-31-12 12:29 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] custom actions in burn?

I imagine that a Burn custom action would be part of the code of a custom
bootstrapper application that would set a variable during the appropriate
event. Could you not use a util:product search or utilL:registry search to
determine which outlook is installed ? Save you a lot of work unless you've
already got a custom BA.

-Original Message-
From: StevenOgilvie [mailto:sogil...@msn.com]
Sent: 31 October 2012 16:21
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] custom actions in burn?

Hi all,

I have a product that installs a 32 bit version and 64 bit version installer
(two .msi) I have a custom action in product.wxs that determines the
"bitness" of Microsoft Outlook (whether the user installed 32 bit or 64 bit
version of Outlook, our product is an add-in).

so I have 2 msi's, but only 1 should kick off from burn, can you write custom
actions in Bundle.wxs? 

if so what would I set the condition sequence to? i.e.

  NOT
Installed


  NOT
Installed


thanks,

Steve



--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/custom-actions-
in-burn-tp7581691.html
Sent from the wix-users mailing list archive at Nabble.com.

-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
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.


-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] custom actions in burn?

2012-10-31 Thread Peter Shirtcliffe
Nope.  You can spot what's allowed in Burn by tracing up through the Parents
section of the help. In the case of CustomAction, the parents are Fragment,
Module and Product. Technically, you can have Fragments in Burn but you'd
expect to see Bundle listed as well if it was.

-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com] 
Sent: 31 October 2012 16:38
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] custom actions in burn?

So from your answer it sounds like you cannot really use 
in burn?

I have 2007/2010/2013 Outlook and 32 bit/64 bit checking for the bitness
isn't simple, we have a custom action dll that does that for us and returns a
MSI property (which I use in the MSI)

Steve

-Original Message-
From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com]
Sent: October-31-12 12:29 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] custom actions in burn?

I imagine that a Burn custom action would be part of the code of a custom
bootstrapper application that would set a variable during the appropriate
event. Could you not use a util:product search or utilL:registry search to
determine which outlook is installed ? Save you a lot of work unless you've
already got a custom BA.

-Original Message-
From: StevenOgilvie [mailto:sogil...@msn.com]
Sent: 31 October 2012 16:21
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] custom actions in burn?

Hi all,

I have a product that installs a 32 bit version and 64 bit version installer
(two .msi) I have a custom action in product.wxs that determines the
"bitness" of Microsoft Outlook (whether the user installed 32 bit or 64 bit
version of Outlook, our product is an add-in).

so I have 2 msi's, but only 1 should kick off from burn, can you write custom
actions in Bundle.wxs? 

if so what would I set the condition sequence to? i.e.

  NOT
Installed


  NOT
Installed


thanks,

Steve



--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/custom-actions-
in-burn-tp7581691.html
Sent from the wix-users mailing list archive at Nabble.com.

-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
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.


-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] custom actions in burn?

2012-10-31 Thread Steven Ogilvie
So from your answer it sounds like you cannot really use  in 
burn?

I have 2007/2010/2013 Outlook and 32 bit/64 bit checking for the bitness isn't 
simple, we have a custom action dll that does that for us and returns a MSI 
property (which I use in the MSI)

Steve

-Original Message-
From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] 
Sent: October-31-12 12:29 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] custom actions in burn?

I imagine that a Burn custom action would be part of the code of a custom 
bootstrapper application that would set a variable during the appropriate 
event. Could you not use a util:product search or utilL:registry search to 
determine which outlook is installed ? Save you a lot of work unless you've 
already got a custom BA.

-Original Message-
From: StevenOgilvie [mailto:sogil...@msn.com]
Sent: 31 October 2012 16:21
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] custom actions in burn?

Hi all,

I have a product that installs a 32 bit version and 64 bit version installer 
(two .msi) I have a custom action in product.wxs that determines the "bitness" 
of Microsoft Outlook (whether the user installed 32 bit or 64 bit version of 
Outlook, our product is an add-in).

so I have 2 msi's, but only 1 should kick off from burn, can you write custom 
actions in Bundle.wxs? 

if so what would I set the condition sequence to? i.e.

  NOT 
Installed


  NOT 
Installed


thanks,

Steve



--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/custom-actions-
in-burn-tp7581691.html
Sent from the wix-users mailing list archive at Nabble.com.

-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
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.


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free 
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] custom actions in burn?

2012-10-31 Thread Peter Shirtcliffe
I imagine that a Burn custom action would be part of the code of a custom
bootstrapper application that would set a variable during the appropriate
event. Could you not use a util:product search or utilL:registry search to
determine which outlook is installed ? Save you a lot of work unless you've
already got a custom BA.

-Original Message-
From: StevenOgilvie [mailto:sogil...@msn.com] 
Sent: 31 October 2012 16:21
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] custom actions in burn?

Hi all,

I have a product that installs a 32 bit version and 64 bit version installer
(two .msi) I have a custom action in product.wxs that determines the
"bitness" of Microsoft Outlook (whether the user installed 32 bit or 64 bit
version of Outlook, our product is an add-in).

so I have 2 msi's, but only 1 should kick off from burn, can you write custom
actions in Bundle.wxs? 

if so what would I set the condition sequence to? i.e.

  NOT
Installed


  NOT
Installed


thanks,

Steve



--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/custom-actions-
in-burn-tp7581691.html
Sent from the wix-users mailing list archive at Nabble.com.

-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
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.


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users