Re: [WiX-users] Uninstall fails when callingNetFxScheduleNativeImage

2008-11-29 Thread Bob Arnson
John Vottero wrote:
> Is the "Action start 16:35:47: NetFxScheduleNativeImage." log text the result 
> of calling WcaProgressMessage?  That would confirm that I'm reading my way 
> through the source code correctly.
>   

I don't think so -- I think that's coming straight from MSI when it 
invokes the CA. See 
https://blogs.msdn.com/heaths/archive/2008/02/12/debugging-custom-actions-leaked-handles.aspx
 
for a list of what the handle types are. I'd suggest using /L*vx! as 
your logging switches; the ! tells MSI to flush each log line as it's 
written, which might show the "Action start" message earlier, before the 
record-creation log lines.

-- 
sig://boB
http://joyofsetup.com/



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Problem with more then one SetProperty line with same id

2008-11-29 Thread Bob Arnson
Christian Wernung - Simtra AeroTech AB wrote:
> The problem seems to be that wix gives the CA a name that includes the
> property name. Can I change this?
>   

Yes, use CustomAction directly. SetProperty is a wrapper for simpler cases.

-- 
sig://boB
http://joyofsetup.com/



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to add Splash screen

2008-11-29 Thread Bob Arnson
Plamen Terziev wrote:
> I am trying to add Splash screen instead of the first progress bar dialog
> that appears when I start the installer msi file. I searched thoruh the
> documentation but didn't find out anything. Is there any way to add splash
> screen before starting the install wizard?
>   

You can add a dialog to InstallUISequence that's shown during the 
processing of actions like AppSearch. Otherwise, MSI shows its own 
"loading" dialog while it opens the .msi file and initializes the UI.

-- 
sig://boB
http://joyofsetup.com/



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] cannot find VCProjectEngine (again, ignore the previous one if it went through)

2008-11-29 Thread Bob Arnson
Jason Ding wrote:
> I got this warning when build the Wix project which was created by using
> Visual Studio 2008 and .Net Framework 3.5. It is looking for
> VCProjectEngine and Visual Studio 2005.
>   

Are you trying to refer to project variables from a VS2008 .vcproj? If 
so, that's not supported (yet); doing so creates a dependency on .NET 
3.5, which we don't otherwise require.

> By the way, I am using Wix 3.0.4513.
>   

I'd suggest trying this with the latest weekly build from 
http://wix.sourceforge.net/releases/.

-- 
sig://boB
http://joyofsetup.com/



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WiX v3.0 beta coming soon

2008-11-29 Thread Bob Arnson
See 
http://robmensching.com/blog/archive/2008/11/29/WiX-v3-toolset-end-of-the-Beta-imminent.aspx
 
and http://www.joyofsetup.com/2008/11/29/wix-v30-beta-coming-soon/ for 
details.

-- 
sig://boB
http://joyofsetup.com/



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] UninstallDriverPackages failing

2008-11-29 Thread Bob Arnson
John Lalande wrote:
> DIFXAPP: ERROR 0x2 encountered while opening persistent-info key for
> component '{B97A869E-A464-4A2D-9D29-38214A90C0DC}'
>   

As I recall, DifxApp writes some data to the registry, so it fails if 
users "clean" their registry. I'd suggest trying a repair, to see if 
DifxApp will re-write the registry data.

-- 
sig://boB
http://joyofsetup.com/



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Silent Repair

2008-11-29 Thread Raj P
Yes I tried the given command. But it had one issue,
It creates the missing files, but the corrupted files won't be replaced with
the correct one.

The solution that I found was, (though repair custom action was not
implemented)
msiexec /fecmus setupfile.msi

(it does the repair i.e. missing files will be recreated and the corrupted
files will also be replaced with the original one).

  Thanks for your
support,
 Raj
Note: this command has to be executed once the msi was installed.


On Wed, Nov 19, 2008 at 12:34 PM, Eitan Behar <[EMAIL PROTECTED]> wrote:

> did u try: msiexec /i "setupfile.msi" /qn REINSTALL=ALL REINSTALLMODE=vomus
> ?
>
>
>
> On Tue, Oct 7, 2008 at 5:02 AM, Sandeep Gautam (HCL Technologies Ltd) <
> [EMAIL PROTECTED]> wrote:
>
> > Hi ,
> >
> > How can I do silent repair. I am running msiexec with option /f nothing
> is
> > happening.No Custom action is not executing.
> >
> > Please help.
> >
> > Regards
> > -Sandeep
> >
> > -
> > This SF.Net email is sponsored by the Moblin Your Move Developer's
> > challenge
> > Build the coolest Linux based applications with Moblin SDK & win great
> > prizes
> > Grand prize is a trip for two to an Open Source event anywhere in the
> world
> > http://moblin-contest.org/redirect.php?banner_id=100&url=/
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] App~Search query

2008-11-29 Thread Rob Mensching
Yes.

-Original Message-
From: Sean Farrow [mailto:[EMAIL PROTECTED]
Sent: Saturday, November 29, 2008 08:54
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] App~Search query

Hi:
Ok do appSearches come before Launch conditions?
Cheers
Sean.

-Original Message-
From: Rob Mensching [mailto:[EMAIL PROTECTED]
Sent: 29 November 2008 16:41
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] App~Search query

AppSearch searches and sets Properties.  LaunchConditions abort nstalls.

-Original Message-
From: Sean Farrow [mailto:[EMAIL PROTECTED]
Sent: Saturday, November 29, 2008 08:36
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] App~Search query

Hi Rob:
I don't want to write a custom action, if I can help it, but my quandary
is when is a message show? Is I for every appSearch tha fails?
Chers
Sean.

-Original Message-
From: Rob Mensching [mailto:[EMAIL PROTECTED]
Sent: 29 November 2008 16:24
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] App~Search query

Why would you want to write a CustomAction if the Windows Installer
provides fully tested functionality?  CustomActions are statistically
the most fragile part of an install.

-Original Message-
From: Sean Farrow [mailto:[EMAIL PROTECTED]
Sent: Saturday, November 29, 2008 08:20
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] App~Search query

Hi:
I am in the process of coding a msi. I need to search for multiple
applications and only display a message and about the installation if
none of the applications are found. Am I better off using an AppSearch
element or using a custom action and settings properties?
Any help apreciated.
SEan.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge Build the coolest Linux based applications with Moblin SDK &
win great prizes Grand prize is a trip for two to an Open Source event
anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



-
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge Build the coolest Linux based applications with Moblin SDK &
win great prizes Grand prize is a trip for two to an Open Source event
anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


__ Information from ESET NOD32 Antivirus, version of virus
signature database 3650 (20081128) __

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com



__ Information from ESET NOD32 Antivirus, version of virus
signature database 3650 (20081128) __

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com



-
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge Build the coolest Linux based applications with Moblin SDK &
win great prizes Grand prize is a trip for two to an Open Source event
anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



-
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge Build the coolest Linux based applications with Moblin SDK &
win great prizes Grand prize is a trip for two to an Open Source event
anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


__ Information from ESET NOD32 Antivirus, version of virus
signature database 3650 (20081128) __

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com



__ Information from ESET NOD32 Antivirus, version of virus
signature database 3650 (20081128) __

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&ur

Re: [WiX-users] App~Search query

2008-11-29 Thread Sean Farrow
Hi: 
Ok do appSearches come before Launch conditions?
Cheers
Sean. 

-Original Message-
From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: 29 November 2008 16:41
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] App~Search query

AppSearch searches and sets Properties.  LaunchConditions abort nstalls.

-Original Message-
From: Sean Farrow [mailto:[EMAIL PROTECTED]
Sent: Saturday, November 29, 2008 08:36
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] App~Search query

Hi Rob:
I don't want to write a custom action, if I can help it, but my quandary
is when is a message show? Is I for every appSearch tha fails?
Chers
Sean.

-Original Message-
From: Rob Mensching [mailto:[EMAIL PROTECTED]
Sent: 29 November 2008 16:24
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] App~Search query

Why would you want to write a CustomAction if the Windows Installer
provides fully tested functionality?  CustomActions are statistically
the most fragile part of an install.

-Original Message-
From: Sean Farrow [mailto:[EMAIL PROTECTED]
Sent: Saturday, November 29, 2008 08:20
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] App~Search query

Hi:
I am in the process of coding a msi. I need to search for multiple
applications and only display a message and about the installation if
none of the applications are found. Am I better off using an AppSearch
element or using a custom action and settings properties?
Any help apreciated.
SEan.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge Build the coolest Linux based applications with Moblin SDK &
win great prizes Grand prize is a trip for two to an Open Source event
anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



-
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge Build the coolest Linux based applications with Moblin SDK &
win great prizes Grand prize is a trip for two to an Open Source event
anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


__ Information from ESET NOD32 Antivirus, version of virus
signature database 3650 (20081128) __

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com



__ Information from ESET NOD32 Antivirus, version of virus
signature database 3650 (20081128) __

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com



-
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge Build the coolest Linux based applications with Moblin SDK &
win great prizes Grand prize is a trip for two to an Open Source event
anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



-
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge Build the coolest Linux based applications with Moblin SDK &
win great prizes Grand prize is a trip for two to an Open Source event
anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
 

__ Information from ESET NOD32 Antivirus, version of virus
signature database 3650 (20081128) __

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com
 
 

__ Information from ESET NOD32 Antivirus, version of virus
signature database 3650 (20081128) __

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com
 

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] App~Search query

2008-11-29 Thread Rob Mensching
AppSearch searches and sets Properties.  LaunchConditions abort nstalls.

-Original Message-
From: Sean Farrow [mailto:[EMAIL PROTECTED]
Sent: Saturday, November 29, 2008 08:36
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] App~Search query

Hi Rob:
I don't want to write a custom action, if I can help it, but my quandary
is when is a message show? Is I for every appSearch tha fails?
Chers
Sean.

-Original Message-
From: Rob Mensching [mailto:[EMAIL PROTECTED]
Sent: 29 November 2008 16:24
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] App~Search query

Why would you want to write a CustomAction if the Windows Installer
provides fully tested functionality?  CustomActions are statistically
the most fragile part of an install.

-Original Message-
From: Sean Farrow [mailto:[EMAIL PROTECTED]
Sent: Saturday, November 29, 2008 08:20
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] App~Search query

Hi:
I am in the process of coding a msi. I need to search for multiple
applications and only display a message and about the installation if
none of the applications are found. Am I better off using an AppSearch
element or using a custom action and settings properties?
Any help apreciated.
SEan.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge Build the coolest Linux based applications with Moblin SDK &
win great prizes Grand prize is a trip for two to an Open Source event
anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



-
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge Build the coolest Linux based applications with Moblin SDK &
win great prizes Grand prize is a trip for two to an Open Source event
anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


__ Information from ESET NOD32 Antivirus, version of virus
signature database 3650 (20081128) __

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com



__ Information from ESET NOD32 Antivirus, version of virus
signature database 3650 (20081128) __

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] App~Search query

2008-11-29 Thread Sean Farrow
Hi Rob: 
I don't want to write a custom action, if I can help it, but my quandary
is when is a message show? Is I for every appSearch tha fails?
Chers
Sean.

-Original Message-
From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: 29 November 2008 16:24
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] App~Search query

Why would you want to write a CustomAction if the Windows Installer
provides fully tested functionality?  CustomActions are statistically
the most fragile part of an install.

-Original Message-
From: Sean Farrow [mailto:[EMAIL PROTECTED]
Sent: Saturday, November 29, 2008 08:20
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] App~Search query

Hi:
I am in the process of coding a msi. I need to search for multiple
applications and only display a message and about the installation if
none of the applications are found. Am I better off using an AppSearch
element or using a custom action and settings properties?
Any help apreciated.
SEan.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge Build the coolest Linux based applications with Moblin SDK &
win great prizes Grand prize is a trip for two to an Open Source event
anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



-
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge Build the coolest Linux based applications with Moblin SDK &
win great prizes Grand prize is a trip for two to an Open Source event
anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
 

__ Information from ESET NOD32 Antivirus, version of virus
signature database 3650 (20081128) __

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com
 
 

__ Information from ESET NOD32 Antivirus, version of virus
signature database 3650 (20081128) __

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com
 

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] setupbld, bootstrappers and command line parameters (msicl)

2008-11-29 Thread Rob Mensching
1.  If you sign the assignment agreement then, yeah, I'd take a change to 
setupbld/setupexe.  Those features are essentially "outside" of WiX v3 so we're 
not being as hardcore about the changes going in, yet.  When you get to that 
stage, please send the patch to wix-devs.

2.  My expectation is that WiX v3.5 happens during 2009.  The hope is that WiX 
v3 bugs ramp down hard and so we can spend some focused time on the 
bootstrapper that got cut from WiX v3.0.  Burn (the bootstrapper) was a hard 
cut from WiX v3 but looking at the bug count and stability of the core toolset 
and extensions I think it was worth it.  Currently, the only thing in WiX v3.5 
is burn development, that's why I hope we can get it to RC quality by the end 
of 2009.  WiX v4 will start sometime 2010 since I expect WiX v3.0 to be all 
done end of 2009.

An updated roadmap about all of this is coming soon.  I've just been focused on 
killing the last few extension bugs.  Can you tell what we're focused on?  


-Original Message-
From: carlldev [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 27, 2008 01:39
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] setupbld, bootstrappers and command line parameters 
(msicl)


Thanks Rob.  I'd be willing to contribute to the project and make the change
if we could include it in v3.0.
Is that something you might consider? It should only be a small change...

Out of interest, where does 3.5 fit in the roadmap? I read your post on the
roadmap at
http://robmensching.com/blog/archive/2008/06/06/Proposed-adjustments-the-WiX-v2-and-WiX-v3-roadmap.aspx
and there is no clear indication of what 3.5 will contain, nor when it's
planned for. Or am I missing something?


Rob Mensching-2 wrote:
>
> Yes.  Well, actually, more likely WiX v3.5 with burn will supersede the
> functionality completely.  All of the ClickThrough related work moved to
> WiX v4.
>
> -Original Message-
> From: carlldev [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 26, 2008 07:22
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] setupbld, bootstrappers and command line
> parameters (msicl)
>
>
> I've logged this bug on SourceForge as
>
> Bootstrapper cannot take command line parameters with spaces - ID: 2229894
>
> Rob has changed the Group property to v4.0. Does this mean we have to wait
> for Wix 4.0 before we see a change to this?
> --
> View this message in context:
> http://n2.nabble.com/setupbld%2C-bootstrappers-and-command-line-parameters-%28msicl%29-tp1464124p1581153.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
>
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>

--
View this message in context: 
http://n2.nabble.com/setupbld%2C-bootstrappers-and-command-line-parameters-%28msicl%29-tp1464124p1584601.html
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] App~Search query

2008-11-29 Thread Rob Mensching
Why would you want to write a CustomAction if the Windows Installer provides 
fully tested functionality?  CustomActions are statistically the most fragile 
part of an install.

-Original Message-
From: Sean Farrow [mailto:[EMAIL PROTECTED]
Sent: Saturday, November 29, 2008 08:20
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] App~Search query

Hi:
I am in the process of coding a msi. I need to search for multiple
applications and only display a message and about the installation if
none of the applications are found. Am I better off using an AppSearch
element or using a custom action and settings properties?
Any help apreciated.
SEan.
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] App~Search query

2008-11-29 Thread Sean Farrow
Hi: 
I am in the process of coding a msi. I need to search for multiple
applications and only display a message and about the installation if
none of the applications are found. Am I better off using an AppSearch
element or using a custom action and settings properties? 
Any help apreciated.
SEan.
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] File deletion query

2008-11-29 Thread Rob Mensching
It's automatic.

-Original Message-
From: Sean Farrow [mailto:[EMAIL PROTECTED]
Sent: Saturday, November 29, 2008 02:16
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] File deletion query

Hi:
When the installation creates files, arethese files deleted
duringuninstallation automatically?, or isthere an option to dothis?
Cheers
Sean.
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] File deletion query

2008-11-29 Thread Sean Farrow
Hi: 
When the installation creates files, arethese files deleted
duringuninstallation automatically?, or isthere an option to dothis?
Cheers
Sean.
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users