[WiX-users] Help with driver installation needed

2008-10-16 Thread cybranQAI
Hi,

 

I need to install 3 Drivers (one minifilter driver and two other system
drivers). None of them is signed.

 

Can I use the Difxapp-Extension of Wix v3 for that?

What is necessary to use that Extension?

 

Thanks

 

 

-
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] Possible bug, All of UI in Fragment included in MSI without UIRef

2008-10-16 Thread Rob Mensching
The linker pulls in complete "sections".  A Fragment creates one section.  
Thus, if you reference anything in a Fragment everything the Fragment is 
included in your output.  If you want very granular inclusion of code, make 
appropriately small Fragments.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2008 21:28
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Possible bug, All of UI in Fragment included in MSI 
without UIRef

I am creating sets of dialogs in a wixlib project.  In it I am creating Dialogs 
inside of UI element contained in a Fragment.

Merely linking to the wixlib causes all of the dialogs to be included in the 
MSI without event using a UIRef or DialogRef element.

This is not what I want.  I would like to pick the individual dialogs using a 
DialogRef (and not a UIRef that references the entire UI element in the 
Fragment) to reference ONLY select dialogs.

Is there a bug?  I am using version 3.0.4153.0. Are there problems with this 
build?

Any help appreciated,
ajgreen

-
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] Detect the version of already installed product.

2008-10-16 Thread Sergey Abakumoff

Howdy gang,
In my installer I need to notify user if the previous version of product is
installed and show the version number. I was hoping that I can find the
already installed version number in PATCHFOUND property I use in
UpgradeVersion stuff:

  
  

However, the value of property is just some GUID.
I know the way I can accomplish this task - call the custom action that
executes the external program that loads the installed assembly and returns
it's version number, likely the assembly version is the same as the
installed product version. However this way is not straightforward . I am
sure that Wix has the way to detect the already installed version number,
just can't find it.
Can anyone help me? 
-- 
View this message in context: 
http://n2.nabble.com/Detect-the-version-of-already-installed-product.-tp1344094p1344094.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


[WiX-users] FW: [ wix-Bugs-1992202 ] Allow IIS SiteId to be set

2008-10-16 Thread Neil Sleightholm
>> Rob Mensching (robmen)
>> Moving to WiX v4.  We just aren't going to nail this now.

Is there any way I could change your mind on this. As far as I am concerned 
this is a critical bug and stops my adoption of v3 in one of my clients. The 
key problem is that it makes it impossible to use WiX to deploy to Web farms as 
the site ID must be the same on all servers.


Neil


-Original Message-
From: SourceForge.net [mailto:[EMAIL PROTECTED] 
Sent: 16 October 2008 22:58
To: [EMAIL PROTECTED]
Subject: [ wix-Bugs-1992202 ] Allow IIS SiteId to be set

Bugs item #1992202, was opened at 2008-06-12 09:36
Message generated for change (Comment added) made by robmen
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1992202&group_id=105970

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: extensions
>Group: v4.0
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Neil Sleightholm (nsleigh)
Assigned to: Nobody/Anonymous (nobody)
Summary: Allow IIS SiteId to be set

Initial Comment:
When you use WiX to create a new website in IIS 6 it creates it with an 
Identifier or Site Id of one more than the last website that was created (this 
is the same as IIS 5). If you create it manually then IIS sets the Identifier 
to a number based on the hash of the site name - the algorithm for this is 
explained here on Mike Poulson's blog:
http://blogs.msdn.com/mpoulson/archive/2006/03/06/544893.aspx. To summarise it 
creates the hash and then if that Identifier is in use it just adds one until 
it finds an unused Identifier.

This method of creating Identifier's based on the hash of the name is very 
useful when you have a farm of servers as it means that the Identifier is not 
dependent on the order in which installs are run. For in house websites you can 
arrange for the website names to have unique hash values and be sure that all 
servers in a farm are identical and even build servers with a subset of the 
sites that again are identical to the original install. The identifier is also 
used for log file path, so on a farm of servers it helps if the logs are all in 
known folders. This Id is also used as the key to the session state so must be 
the same on all servers.

I think the website creation needs a parameter for SiteId which by default 
works as it currently does to avoid breaking existing installs. It should be 
possible to set this to default (as it works now), iis6hash or a specific 
numeric value.

I have attached a modified v2 scaweb.cpp that implements the IIS6 hashing 
method.




--

Comment By: Rob Mensching (robmen)
Date: 2008-10-16 14:58

Message:
Moving to WiX v4.  We just aren't going to nail this now.

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1992202&group_id=105970
-
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] Possible bug, All of UI in Fragment included in MSI without UIRef

2008-10-16 Thread greenaj
I am creating sets of dialogs in a wixlib project.  In it I am creating Dialogs 
inside of UI element contained in a Fragment.

Merely linking to the wixlib causes all of the dialogs to be included in the 
MSI without event using a UIRef or DialogRef element.  

This is not what I want.  I would like to pick the individual dialogs using a 
DialogRef (and not a UIRef that references the entire UI element in the 
Fragment) to reference ONLY select dialogs.  

Is there a bug?  I am using version 3.0.4153.0. Are there problems with this 
build?

Any help appreciated,
ajgreen

-
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] Failed to read IISWebs Table. (-2147024891)

2008-10-16 Thread Rob Mensching
IIS7 pretty much broke everything.  They changed the access on the objects to 
require admin privileges to even read the metabase.  There is a bug open on 
this issue already... it requires a significant reworking of all of the IIS 
code.

-Original Message-
From: Dylan Moline (Volt) [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2008 17:40
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Failed to read IISWebs Table. (-2147024891)

I am getting this error when attempting to install my MSI on server2k8.

I have IIS6 Metabase installed.

If I run it from an elevated command prompt w/ msiexec /I foo.msi it installs 
properly.

It also installs with no errors on win2k3

I am wondering why I can't install it with just a double click while logged in 
as the administrator. Does it have to do w/ the UAC on server? Or is this 
expected behavior. Trying to make this as user friendly of a UI as possible :)

Thanks

~Dylan

-
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] Failed to read IISWebs Table. (-2147024891)

2008-10-16 Thread Dylan Moline (Volt)
I am getting this error when attempting to install my MSI on server2k8.

I have IIS6 Metabase installed.

If I run it from an elevated command prompt w/ msiexec /I foo.msi it installs 
properly.

It also installs with no errors on win2k3

I am wondering why I can't install it with just a double click while logged in 
as the administrator. Does it have to do w/ the UAC on server? Or is this 
expected behavior. Trying to make this as user friendly of a UI as possible :)

Thanks

~Dylan

-
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] Help with SqlDatabase element...

2008-10-16 Thread Vidya Kukke
Not as far as we can tell. Like I mentioned if I provide the same server name 
in uppercase it works.
I am using SQL Server 2005 SP2 and Wix version 3.0.4318.0.

-Original Message-
From: Michael Osmond [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2008 3:31 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Help with SqlDatabase element...

Vidya,

The error number translates to 80004005 which I think is an Access
Denied type error.  I must say I am not sure why changing the case of
the server name would cause this.  Is anything else different when you
get this error, other than case?


Michael

-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED]
Sent: Friday, 17 October 2008 8:25 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Help with SqlDatabase element...

This is the error string reported in the log.
Error -2147467259: failed to create SQL database: , error
detail: unknown error.

Thanks
Vidya

-Original Message-
From: Michael Osmond [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2008 3:18 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Help with SqlDatabase element...

Vidya,

I have never seen this, server names should be case insensitive

What is the actual error text thrown by WIX?

Michael


-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED]
Sent: Friday, 17 October 2008 7:13 AM
To: General discussion for Windows Installer XML toolset.
Cc: Douglas Gong
Subject: Re: [WiX-users] Help with SqlDatabase element...

Did'nt see any response for this? Anyone seen a similar error?

-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 3:09 PM
To: General discussion for Windows Installer XML toolset.
Cc: Douglas Gong
Subject: Re: [WiX-users] Help with SqlDatabase element...

Sorry for not being clear.

What I meant was the value I provide for my public property [SQLSERVER]
i.e,

If the value of [SQLSERVER] is set to 'myservername' then the Wix throws
an error during DB creation.
However if [SQLSERVER] is set to 'MYSERVERNAME' the DB is created
successfully.

Where myservername is a valid name of my machine.

Can't see how the casing on the value matters/affecting SqlDatabase
creation.

Is this clearer?

Regards,
Vidya

-Original Message-
From: Ian Elliott (Excell Data Corporation)
[mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 2:07 PM
To: General discussion for Windows Installer XML toolset.
Cc: Douglas Gong
Subject: Re: [WiX-users] Help with SqlDatabase element...

If you specify the property name with lower case letters then it is no
longer a public property and can't be passed in via command line. I
assume you are passing these values in so that might explain what is
going on.

There is some good info here on properties:
http://bonemanblog.blogspot.com/2005/06/all-about-properties.html


-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 1:58 PM
To: wix-users@lists.sourceforge.net
Cc: Douglas Gong
Subject: [WiX-users] Help with SqlDatabase element...

Hi,

I am using Wix 3.0.4318.0 for creating a Database. The code snippet is
as follows:-



I noticed that when I specify the sqlserver name in lowercase I get an
error during DB Creation. The message is "Unspecified error" thrown by
Wix. Providing the same server name in Uppercase works without any
issues.

What is the cause for this? Should I be adding/taking care of this?

Thanks in advance.

Regards,
Vidya

-
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-con

Re: [WiX-users] Help with SqlDatabase element...

2008-10-16 Thread Michael Osmond
Vidya,

The error number translates to 80004005 which I think is an Access
Denied type error.  I must say I am not sure why changing the case of
the server name would cause this.  Is anything else different when you
get this error, other than case?


Michael

-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED] 
Sent: Friday, 17 October 2008 8:25 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Help with SqlDatabase element...

This is the error string reported in the log.
Error -2147467259: failed to create SQL database: , error
detail: unknown error.

Thanks
Vidya

-Original Message-
From: Michael Osmond [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2008 3:18 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Help with SqlDatabase element...

Vidya,

I have never seen this, server names should be case insensitive

What is the actual error text thrown by WIX?

Michael


-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED]
Sent: Friday, 17 October 2008 7:13 AM
To: General discussion for Windows Installer XML toolset.
Cc: Douglas Gong
Subject: Re: [WiX-users] Help with SqlDatabase element...

Did'nt see any response for this? Anyone seen a similar error?

-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 3:09 PM
To: General discussion for Windows Installer XML toolset.
Cc: Douglas Gong
Subject: Re: [WiX-users] Help with SqlDatabase element...

Sorry for not being clear.

What I meant was the value I provide for my public property [SQLSERVER]
i.e,

If the value of [SQLSERVER] is set to 'myservername' then the Wix throws
an error during DB creation.
However if [SQLSERVER] is set to 'MYSERVERNAME' the DB is created
successfully.

Where myservername is a valid name of my machine.

Can't see how the casing on the value matters/affecting SqlDatabase
creation.

Is this clearer?

Regards,
Vidya

-Original Message-
From: Ian Elliott (Excell Data Corporation)
[mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 2:07 PM
To: General discussion for Windows Installer XML toolset.
Cc: Douglas Gong
Subject: Re: [WiX-users] Help with SqlDatabase element...

If you specify the property name with lower case letters then it is no
longer a public property and can't be passed in via command line. I
assume you are passing these values in so that might explain what is
going on.

There is some good info here on properties:
http://bonemanblog.blogspot.com/2005/06/all-about-properties.html


-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 1:58 PM
To: wix-users@lists.sourceforge.net
Cc: Douglas Gong
Subject: [WiX-users] Help with SqlDatabase element...

Hi,

I am using Wix 3.0.4318.0 for creating a Database. The code snippet is
as follows:-



I noticed that when I specify the sqlserver name in lowercase I get an
error during DB Creation. The message is "Unspecified error" thrown by
Wix. Providing the same server name in Uppercase works without any
issues.

What is the cause for this? Should I be adding/taking care of this?

Thanks in advance.

Regards,
Vidya

-
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



-
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge Build the coolest Linux based applicati

Re: [WiX-users] Help with SqlDatabase element...

2008-10-16 Thread Vidya Kukke
This is the error string reported in the log.
Error -2147467259: failed to create SQL database: , error detail: 
unknown error.

Thanks
Vidya

-Original Message-
From: Michael Osmond [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2008 3:18 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Help with SqlDatabase element...

Vidya,

I have never seen this, server names should be case insensitive

What is the actual error text thrown by WIX?

Michael


-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED]
Sent: Friday, 17 October 2008 7:13 AM
To: General discussion for Windows Installer XML toolset.
Cc: Douglas Gong
Subject: Re: [WiX-users] Help with SqlDatabase element...

Did'nt see any response for this? Anyone seen a similar error?

-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 3:09 PM
To: General discussion for Windows Installer XML toolset.
Cc: Douglas Gong
Subject: Re: [WiX-users] Help with SqlDatabase element...

Sorry for not being clear.

What I meant was the value I provide for my public property [SQLSERVER]
i.e,

If the value of [SQLSERVER] is set to 'myservername' then the Wix throws
an error during DB creation.
However if [SQLSERVER] is set to 'MYSERVERNAME' the DB is created
successfully.

Where myservername is a valid name of my machine.

Can't see how the casing on the value matters/affecting SqlDatabase
creation.

Is this clearer?

Regards,
Vidya

-Original Message-
From: Ian Elliott (Excell Data Corporation)
[mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 2:07 PM
To: General discussion for Windows Installer XML toolset.
Cc: Douglas Gong
Subject: Re: [WiX-users] Help with SqlDatabase element...

If you specify the property name with lower case letters then it is no
longer a public property and can't be passed in via command line. I
assume you are passing these values in so that might explain what is
going on.

There is some good info here on properties:
http://bonemanblog.blogspot.com/2005/06/all-about-properties.html


-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 1:58 PM
To: wix-users@lists.sourceforge.net
Cc: Douglas Gong
Subject: [WiX-users] Help with SqlDatabase element...

Hi,

I am using Wix 3.0.4318.0 for creating a Database. The code snippet is
as follows:-



I noticed that when I specify the sqlserver name in lowercase I get an
error during DB Creation. The message is "Unspecified error" thrown by
Wix. Providing the same server name in Uppercase works without any
issues.

What is the cause for this? Should I be adding/taking care of this?

Thanks in advance.

Regards,
Vidya

-
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



-
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
Bu

Re: [WiX-users] Linq to MSI

2008-10-16 Thread Almer

Hi guys,

can i ask some questions? how it looks with cooperation with Bart? Because i
am already on my school project ( working on some better solution for
creating .msi packages similar to Orca but more sophisticated - like
AdminStudio etc... but under GPL because finally it's students project:) )
and i want to provide LINQ to MSI. I tried ADO.NET but LINQ suits me better,
from earlier experience i like it much more.

So...did it move fwd somewhere? How it will end? Or better , can somebody
give me Bart's contact? Or tell me state of "project"? If it will be
necessary i can make this isue as my graduate project, maybe in small piece
and if it will have success and some support i can make it fully MSI
supporting.

Almer



Jason Ginchereau wrote:
> 
> I've contacted Bart.. He happens to work just one building over from me.
> We're going to meet this week to discuss possible future collaboration on
> LINQ to MSI.
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Christopher
> Painter
> Sent: Saturday, June 14, 2008 8:20 AM
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] Linq to MSI
> 
> Should someone tell him about DTF?
> 
> I was once working on a MSI Provider for ADO.NET 2.0 ... I guess Linq is
> the way to go now.
> 
> Christopher Painter, Author of Deployment Engineering Blog
> Have a hot tip, know a secret or read a really good thread that deserves
> attention? E-Mail Me
> 
> 
> --- On Sat, 6/14/08, Martin MacPherson <[EMAIL PROTECTED]> wrote:
> 
>> From: Martin MacPherson <[EMAIL PROTECTED]>
>> Subject: [WiX-users] Linq to MSI
>> To: "General discussion for Windows Installer XML toolset."
>> 
>> Date: Saturday, June 14, 2008, 5:36 AM
>> Don't know if anyone has come across this yet but Bart
>> De Smet is doing a
>> series of articles around creating a Linq provider for MSI:
>>
>> http://communities.bartdesmet.net/blogs/bart/archive/2008/06/06/linq-to-msi-part-0-introduction.aspx
>>
>> http://communities.bartdesmet.net/blogs/bart/archive/2008/06/13/linq-to-msi-part-1-interop.aspx
> 
> 
> -
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://sourceforge.net/services/buy/index.php
> ___
> 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/Linq-to-MSI-tp712336p1343036.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


Re: [WiX-users] Help with SqlDatabase element...

2008-10-16 Thread Michael Osmond
Vidya,

I have never seen this, server names should be case insensitive

What is the actual error text thrown by WIX?

Michael


-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED] 
Sent: Friday, 17 October 2008 7:13 AM
To: General discussion for Windows Installer XML toolset.
Cc: Douglas Gong
Subject: Re: [WiX-users] Help with SqlDatabase element...

Did'nt see any response for this? Anyone seen a similar error?

-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 3:09 PM
To: General discussion for Windows Installer XML toolset.
Cc: Douglas Gong
Subject: Re: [WiX-users] Help with SqlDatabase element...

Sorry for not being clear.

What I meant was the value I provide for my public property [SQLSERVER]
i.e,

If the value of [SQLSERVER] is set to 'myservername' then the Wix throws
an error during DB creation.
However if [SQLSERVER] is set to 'MYSERVERNAME' the DB is created
successfully.

Where myservername is a valid name of my machine.

Can't see how the casing on the value matters/affecting SqlDatabase
creation.

Is this clearer?

Regards,
Vidya

-Original Message-
From: Ian Elliott (Excell Data Corporation)
[mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 2:07 PM
To: General discussion for Windows Installer XML toolset.
Cc: Douglas Gong
Subject: Re: [WiX-users] Help with SqlDatabase element...

If you specify the property name with lower case letters then it is no
longer a public property and can't be passed in via command line. I
assume you are passing these values in so that might explain what is
going on.

There is some good info here on properties:
http://bonemanblog.blogspot.com/2005/06/all-about-properties.html


-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 1:58 PM
To: wix-users@lists.sourceforge.net
Cc: Douglas Gong
Subject: [WiX-users] Help with SqlDatabase element...

Hi,

I am using Wix 3.0.4318.0 for creating a Database. The code snippet is
as follows:-



I noticed that when I specify the sqlserver name in lowercase I get an
error during DB Creation. The message is "Unspecified error" thrown by
Wix. Providing the same server name in Uppercase works without any
issues.

What is the cause for this? Should I be adding/taking care of this?

Thanks in advance.

Regards,
Vidya

-
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



-
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] Component Condition

2008-10-16 Thread Sandeep Gautam (HCL Technologies Ltd)

   DBINSTALL
   
  
  
  
 
  



 
Please find the code snippet. I have tried this also, but always on repair, 
this component is executing and giving DB already exists. I want to skip with 
this error.

Regards
Sandeep
-Original Message-
From: Ian Elliott (Excell Data Corporation) [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2008 2:27 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Component Condition

What conditions have you tried on the component? Have you tried "NOT Installed"?

Are you creating the database with SqlDatabase tag? If so, please paste your 
code for that tag.


-Original Message-
From: Sandeep Gautam (HCL Technologies Ltd) [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2008 2:06 PM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] Component Condition

Hi,

I want to execute one component only at the time of installation. I don't want 
to execute on repair and remove.
This component will create one data base. I don't to do anything with DB on 
repair.

I have tried so many option but could not successful.

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] Component Condition

2008-10-16 Thread Ian Elliott (Excell Data Corporation)
What conditions have you tried on the component? Have you tried "NOT Installed"?

Are you creating the database with SqlDatabase tag? If so, please paste your 
code for that tag.


-Original Message-
From: Sandeep Gautam (HCL Technologies Ltd) [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2008 2:06 PM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] Component Condition

Hi,

I want to execute one component only at the time of installation. I don't want 
to execute on repair and remove.
This component will create one data base. I don't to do anything with DB on 
repair.

I have tried so many option but could not successful.

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


Re: [WiX-users] Help with SqlDatabase element...

2008-10-16 Thread Vidya Kukke
Did'nt see any response for this? Anyone seen a similar error?

-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 3:09 PM
To: General discussion for Windows Installer XML toolset.
Cc: Douglas Gong
Subject: Re: [WiX-users] Help with SqlDatabase element...

Sorry for not being clear.

What I meant was the value I provide for my public property [SQLSERVER] i.e,

If the value of [SQLSERVER] is set to 'myservername' then the Wix throws an 
error during DB creation.
However if [SQLSERVER] is set to 'MYSERVERNAME' the DB is created successfully.

Where myservername is a valid name of my machine.

Can't see how the casing on the value matters/affecting SqlDatabase creation.

Is this clearer?

Regards,
Vidya

-Original Message-
From: Ian Elliott (Excell Data Corporation) [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 2:07 PM
To: General discussion for Windows Installer XML toolset.
Cc: Douglas Gong
Subject: Re: [WiX-users] Help with SqlDatabase element...

If you specify the property name with lower case letters then it is no longer a 
public property and can't be passed in via command line. I assume you are 
passing these values in so that might explain what is going on.

There is some good info here on properties:
http://bonemanblog.blogspot.com/2005/06/all-about-properties.html


-Original Message-
From: Vidya Kukke [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2008 1:58 PM
To: wix-users@lists.sourceforge.net
Cc: Douglas Gong
Subject: [WiX-users] Help with SqlDatabase element...

Hi,

I am using Wix 3.0.4318.0 for creating a Database. The code snippet is as 
follows:-



I noticed that when I specify the sqlserver name in lowercase I get an error 
during DB Creation. The message is "Unspecified error" thrown by Wix. Providing 
the same server name in Uppercase works without any issues.

What is the cause for this? Should I be adding/taking care of this?

Thanks in advance.

Regards,
Vidya
-
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


-
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] Component Condition

2008-10-16 Thread Sandeep Gautam (HCL Technologies Ltd)
Hi,

I want to execute one component only at the time of installation. I don't want 
to execute on repair and remove.
This component will create one data base. I don't to do anything with DB on 
repair.

I have tried so many option but could not successful.

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


Re: [WiX-users] How to provide warnings when overwrite an existing file

2008-10-16 Thread Wilson, Phil
There isn't a feature like that. It would be impossible to manage for installs 
where every file gets replaced by one with a higher version. Since it's 
understood that new versions replace older versions and that (where it matters) 
the replacement offers the same functionality as the prior version a warning 
has little point.

Phil Wilson


-Original Message-
From: Rob Mensching [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2008 4:29 PM
To: [EMAIL PROTECTED]; General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] How to provide warnings when overwrite an existing file

Is that possible with the Windows Installer?  I'm not sure I've heard of a 
feature like that.

-Original Message-
From: Michael Lin [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2008 16:25
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] How to provide warnings when overwrite an existing file

Hi,

I want to create a setup msi such that it will give warnings to the user if the 
file being copied is not newer than the existing one on the directory.

Can this be done in Wix?

Thanks,

Michael




-
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


[WiX-users] Resetting Visual Studio Addins

2008-10-16 Thread [EMAIL PROTECTED]
Our product includes a Visual Studio addin.  For the most part everything
works fine, but occasionally we need to reset the addin.  Visual Studio
documents the /resetaddin option to do this:

devenv /resetaddin MyAddin.Connect

We can include the command in our documentation, but it would be much cooler
to "do the right thing" automatically in our installer.  Unfortunately in
addition to resetting the addin, the command also brings up the IDE.  I can
force the IDE to exit by adding "/command exit" to the command line, but
that results in the IDE window flashing up onto the screen and then going
away.

I've managed to get this into our Wix script with the following entries:

  

  
 
  

CustomAction doesn't appear to have any way to influence the initial window
state, and even if I try to from the command line with

start /min devenv /resetaddin MyAddin.Connect /command exit

I get the window flash.  Can anybody suggest any way to suppress the display
of the IDE window?

Thanks.

- Barry
-
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] WindowsFolder Property is not resolved properly inside merge module

2008-10-16 Thread Wilson, Phil
The Custom Action Rob is referring to should be a type 51 that sets 
WindowsFolder.msm guid stuff to [WindowsFolder]

Phil Wilson


-Original Message-
From: Rob Mensching [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 15, 2008 9:01 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] WindowsFolder Property is not resolved properly inside 
merge module

MSI SDK says properties should be modularized.  That's the correct way to use 
them.  When merged there should have been a custom action added to your install 
to set them correctly.  It's a silly design but that is the design.

-Original Message-
From: Swadhin Sonowal [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 15, 2008 01:12
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] WindowsFolder Property is not resolved properly inside 
merge module

Hi

WindowsFolder Property is resolved to empty string inside merge module.

The wix code snippet where it is looking for the standard WindowsFolder 
property is

  http://in.msn.com/coxandkings
-
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] What's wrong with this syntax?

2008-10-16 Thread Wilson, Phil
I think you need to qualify the field to say . WHERE `Property`.`Property` 
= 'REBOOT'

Phil Wilson

-Original Message-
From: Powell, Simon [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2008 6:57 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] What's wrong with this syntax?

Hi,

I get this error message, but I can't see what's wrong with the syntax.

"SQL query syntax invalid or unsupported. Database: target.msi. Could
not load table 'Property' in SQL query: SELECT `Property` FROM
`Property` WHERE `Property`='REBOOT'"

Below is the line of code :

IList PropList = MsiDb.ExecuteQuery(sQuery, InProp.Property);

The source and Target msi files are very basic (based on Schema.msi).
The only difference in the Target msi is an extra entry in the Property
table.

Please help.

Regards
Simon Powell



--
This e-mail is confidential and the information contained in it may be 
privileged.  It should not be read, copied or used by anyone other than the 
intended recipient.  If you have received it in error, please contact the 
sender immediately by telephoning +44 (0)20 7623 8000 or by return email, and 
delete the e-mail and do not disclose its contents to any person.  We believe, 
but do not warrant, that this e-mail and any attachments are virus free, but 
you must take full responsibility for virus checking.  Please refer to 
http://www.dresdnerkleinwort.com/disc/email/ and read our e-mail disclaimer 
statement and monitoring policy.

Dresdner Kleinwort is the trading name of the investment banking division of 
Dresdner Bank AG, and operates through Dresdner Bank AG, Dresdner Kleinwort 
Limited and their affiliated or associated companies.  Dresdner Bank AG is a 
company incorporated in Germany with limited liability and registered in 
England (registered no. FC007638, place of business 30 Gresham Street, London 
EC2V 7PG), and is authorised by the German Federal Financial Supervisory 
Authority and by the Financial Services Authority ('FSA') and regulated by the 
FSA for the conduct of designated business in the UK.  Dresdner Kleinwort 
Limited is a company incorporated in England (registered no. 551334, registered 
office 30 Gresham Street, London EC2V 7PG), and is authorised and regulated by 
the FSA.

-
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] Use of ComponentGroup and "Duplicate symbol 'WixComponentGroup:xxx' found."

2008-10-16 Thread Nic Barden
Thanks very much for the help everyone,

 

Rob you were right I think that something was being referenced twice.  I'm
not sure if I managed to do it (not sure if you can when VS is calling the
WiX libs for you?) or if it was VS playing funny buggers.

Either way, I de-referenced the project and closed VS and then re-added
(with possibly some other mucking around in between) but I think this is
what fixed it.

 

Cheers

 

---

 

Re: [WiX-users] Use of ComponentGroup and "Duplicate symbol
'WixComponentGroup:xxx' found."

From: Nic Barden <[EMAIL PROTECTED]> - 2008-10-15 15:00

 

Hi Eitan,

 

 

 

I am not explicitly referencing it in the wxs file, I simply have a project

reference to the wixlib file that the project that contains the fragment

generates.

 

This is my understanding of how you should do this, and it will

automatically get pulled in. Is that correct?

 

 

 

Cheers

 

 

 

---

 

Re: [WiX-users] Use of ComponentGroup and "Duplicate symbol

'WixComponentGroup:xxx' found."

 

From: Eitan Behar <[EMAIL PROTECTED]> - 2008-10-15 14:23 

 

Hi Nic,

 

 

 

Your code looks right, how are you refering to the wix fragment?

 

 

 

Rgrds,

 

 

 

Eitan

 

 

 

 

 

 

 

On Wed, Oct 15, 2008 at 3:05 PM, Nic Barden <[EMAIL PROTECTED]> wrote:

 

 

 

> Hi,

 

> 

 

> I am trying to wrap my  contents inside a  like

 

> this forum post says:

 

> 

 

> 

 

> 

http://n2.nabble.com/Multiple-Wxs-Merge-in-Visual-Studio--td701023.html#a701

 

> 024

 

> 

 

> 

 

> 

 

> I am still unsure of the best design for this, but I would ideally like

the

 

> main installer to be the only place where the APPLICATIONROOTDIRECTORY is

 

> specified.

 

> 

 

> So I have one wxs file with a fragment like this:

 

> 

 

> 

 

> 

 

> http://schemas.microsoft.com/wix/2006/wi";>

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

>  DiskId="1">

 

> 

 

> ...

 

> 

 

> 

 

> 

 

> ...

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> Then I have the main wxs file like this:

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

>  Name="MyApplication" />

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

>  ConfigurableDirectory=" APPLICATIONROOTDIRECTORY ">

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> 

 

> This results in a compilation error: "Duplicate symbol

 

> 'WixComponentGroup:Project1Files' found."

 

> 

 

> What is the issue here - have they been included due to both the

 

> DirectoryRef and also the Feature? I am not sure how to bundle the

 

> Components into the ComponentGroup without including them in a directory,

 

> as

 

> they expect a directory to be set.

 

> 

 

> Also, should the  Name="MyApplication" /> definition contain anything if all the contents

 

> have

 

> already been added via the Fragments?

 

> 

 

> 

 

> 

 

> Thanks

 

> 

 

> -

 

> 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

 

> [EMAIL PROTECTED]

 

> https://lists.sourceforge.net/lists/listinfo/wix-users 

 

 

 

 

 

 Re: [WiX-users] Use of ComponentGroup and "Duplicate symbol
'WixComponentGroup:xxx' found."

From: Eitan Behar <[EMAIL PROTECTED]> - 2008-10-15 15:43

 

Just for the sake of trying...remove the lib reference, and include the

fragment directly to the project...

 

 

 

On Wed, Oct 15, 2008 at 4:54 PM, Nic Barden <[EMAIL PROTECTED]> wrote:

 

> Hi Eitan,

> 

> 

> 

> I am not explicitly referencing it in the wxs file, I simply have a
project

> reference to the wixlib file that the project that contains the fragment

> generates.

> 

> This is my understanding of how you should do this, and it will

> automatically get pulled in. Is that correct?

> 

> 

> 

> Cheers

> 

> 

> 

> ---

> 

> Re: [WiX-users] Use of ComponentGroup and "Duplicate symbol

> 'WixComponentGroup:xxx' found."

> 

> From: Eitan Behar <[EMAIL PROTECTED]> - 2008-10-15 14:23

> 

> Hi Nic,

> 

> 

> 

> Your code looks right, how are you refering to the wix fragment?

> 

> 

> 

> Rgrds,

> 

> 

> 

> Eitan

> 

> 

> 

> 

> 

> 

> 

> On Wed, Oct 15, 2008 at 3:05 PM, Nic Barden <[EMAIL PROTECTED]> wrote:

> 

> 

> 

> > Hi,

> 

> >

> 

> > I am trying to wrap my  contents inside a 
like

> 

> > this forum post says:

> 

> >

> 

> >

> 

> >

> 

>
http://n2.nabble.com/Multiple-Wxs-Merge-in-Visual-Studio--td701023.html#a701

> 

> > 024

> 

> >

> 

> >

> 

> >

> 

> > I am

Re: [WiX-users] hi

2008-10-16 Thread Chad Miles
You can do a property/regsearch for IIS v5/6/7:

Key="SYSTEM\CurrentControlSet\Services\W3SVC\Parameters" Name="MajorVersion"
Root="HKLM"
Same for MySQL:


Key="SOFTWARE\MySQL" Name="MajorVersion" Root="HKLM"
Same for .NET 20


Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v2.0.50727"

I would say use those regsearches nested in properties then provide launch
conditions so the install will fail if none of the req's are satisfied.
(I don't know how well a nested install would work if IIS isn't installed by
the way.  Never done a nested install, but have been told to avoid them like
the plague.)

To install services, WiX supports w/ /

If you want to edit the XML config files on the fly, like say the user
enters in info in the UI sequence, you can always use  to
accomplish that

And as far as creating tables and sprocs, you'd have to probably write up
the scripts to do so, then use /

Sounds like WiX has everything you need.

I did an install once very similar to this.
On Thu, Oct 16, 2008 at 1:49 PM, solata <[EMAIL PROTECTED]> wrote:

> hi.
>
> i need to make installer for my project, and i'm wondering if wix is the
> right solution for me.
>
> i read the tutorial, but i'm not sure if wix will be able to do all i need,
> so i decided to ask here.
>
> my project consists of two parts.
> 1) service
> 2) web service [for configuration, monitoring ...]
>
> its written in c# (visual studio 2005), and its dependend upon folowing :
> - mysql (for my database)
> - IIS (webservice )
> - .NET 2.0
>
> i would like to make my isntaller suitable for every user, so this is how
> i would like it to go :
>
> -- check if IIS is installed, if not install it [start installing, ask for
> windows cd ...]
> -- check if .NET 2 framework is installed, if not install it [run .NET
> setup]
> -- check if mysql 4 or 5 is isntalled, if not install it [run mysql setup]
>
> -- install my service and webservice
> -- edit configuration files for both of them (connection string)
> -- create tables and pšrocedures in mysql
> -- start service
>
> so  i know i can install service and webservice, run the service,
> edit config files (they are xml), i also know that i can check for .net,
> and install it  but how about the other things ?
> how to check if mysql is isntalled, how to create tables ? how to install
> IIS ?
>
> is this only possible with writting custom dll actions ?
>
> one idea is that i use the visual studios WEB SETUP and normal setup,
> as normal setup auto checks and installs .NET , and web setup auto
> installs webservice, and checks for iis, then i could write helper app
> to edit config files and create tables. but 1) its not realy nice way, and
> 2) how could i get properties as [INSTALLDIR] from my wix to the helper
> utility, and "subinstallers"?
> how can i run installation of mysql in the middle of my wix install ?
>
>
> ok i know i sound confused, and that there are a lot of questions ...
> well  i still hope somebody can give me some answers and point
> me into the right direction
>
> thank you very much
>
>
>
>
> -
> 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] CreateTransformSummaryInfo Error

2008-10-16 Thread Jason Ginchereau
Do you have one of the databases open in Orca (or another tool) while running 
your code?

-Original Message-
From: Powell, Simon [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2008 6:52 AM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] CreateTransformSummaryInfo Error

Hi,

If I use the following line of DTF code :

targetDb.CreateTransformSummaryInfo(sourceDb, transformFile,
TransformErrors.AddExistingTable, TransformValidations.Product);

I get the following error :

This installation package could not be opened.  Contact the
application vendor to verify that this is a valid Windows Installer
package.

The source and Target msi files are very basic (based on Schema.msi).
The only difference in the Target msi is an extra entry in the Property
table.

What I'm ultimately trying to achieve, is the ability to modify existing
MSTs and automate application of our company's packaging standards.

Regards
Simon Powell




-
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] hi

2008-10-16 Thread solata
hi.

i need to make installer for my project, and i'm wondering if wix is the right 
solution for me.

i read the tutorial, but i'm not sure if wix will be able to do all i need,
so i decided to ask here.

my project consists of two parts.
1) service
2) web service [for configuration, monitoring ...]

its written in c# (visual studio 2005), and its dependend upon folowing :
- mysql (for my database)
- IIS (webservice )
- .NET 2.0

i would like to make my isntaller suitable for every user, so this is how
i would like it to go :

-- check if IIS is installed, if not install it [start installing, ask for 
windows cd ...]
-- check if .NET 2 framework is installed, if not install it [run .NET setup]
-- check if mysql 4 or 5 is isntalled, if not install it [run mysql setup]

-- install my service and webservice
-- edit configuration files for both of them (connection string)
-- create tables and pšrocedures in mysql
-- start service

so  i know i can install service and webservice, run the service,
edit config files (they are xml), i also know that i can check for .net, and 
install it  but how about the other things ?
how to check if mysql is isntalled, how to create tables ? how to install IIS ?

is this only possible with writting custom dll actions ?

one idea is that i use the visual studios WEB SETUP and normal setup,
as normal setup auto checks and installs .NET , and web setup auto
installs webservice, and checks for iis, then i could write helper app
to edit config files and create tables. but 1) its not realy nice way, and
2) how could i get properties as [INSTALLDIR] from my wix to the helper
utility, and "subinstallers"?
how can i run installation of mysql in the middle of my wix install ?


ok i know i sound confused, and that there are a lot of questions ...
well  i still hope somebody can give me some answers and point
me into the right direction

thank you very much


  

-
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] Build from command line

2008-10-16 Thread Alex Ivanoff
This is what I ended up doing.


-Original Message-
From: John Hall [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2008 10:52
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Build from command line


> So you are saying it is not possible?

I don't know; I'm no expert. Rather than pass in two variables embedded
in 'MyVariable' can you not just pass Name1 and Name2 as variables in
their own right?

 
   
 

And then

 msbuild myinstall.wixproj /p:Name1=value1 /p:Name2=value2

Regards,
John


-
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] Build from command line

2008-10-16 Thread John Hall

> So you are saying it is not possible?

I don't know; I'm no expert. Rather than pass in two variables embedded in 
'MyVariable' can you not just pass Name1 and Name2 as variables in their own 
right?

 
   
 

And then

 msbuild myinstall.wixproj /p:Name1=value1 /p:Name2=value2

Regards,
John

-
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 3 - LGHT0130 primary key duplicated in Registry

2008-10-16 Thread ben
Hello,

I've read through all the wix-users responses (and am fully aware that it
has been covered many times), but I am still unsuccessful in getting my
assembly registered correctly. Note that I'm not a .Net programmer - my role
is to assemble installers - so apologies if some of this is FAQ material.

I have a .Net COM service whose manual registration as follows works OK:

regasm SystemServices.dll /codebase


However I would prefer not to run a CustomAction to perform a regasm on
this.

Sending the output to a reg file gives entries such as:


HKEY_CLASSES_ROOT\System.SoapClient.ActionItemServiceSoapBinding]
@="System.SoapClient.ActionItemServiceSoapBinding"

[HKEY_CLASSES_ROOT\System.SoapClient.ActionItemServiceSoapBinding\CLSID]
@="{CB7F123F-19B7-4963-9D48-2A18655135CB}"

[HKEY_CLASSES_ROOT\CLSID\{CB7F123F-19B7-4963-9D48-2A18655135CB}]
@="System.SoapClient.ActionItemServiceSoapBinding"

[HKEY_CLASSES_ROOT\CLSID\{CB7F123F-19B7-4963-9D48-2A18655135CB}\InprocServer
32]
@="mscoree.dll"
"ThreadingModel"="Both"
"Class"="System.SoapClient.ActionItemServiceSoapBinding"
"Assembly"="SystemServices, Version=5.8.0.0, Culture=neutral,
PublicKeyToken=0c9936e17310ce71"
"RuntimeVersion"="v2.0.50727"
"CodeBase"="file:///C:/Program Files/Company/System
5.8.0.69/Client/SystemServices.dll"

[HKEY_CLASSES_ROOT\CLSID\{CB7F123F-19B7-4963-9D48-2A18655135CB}\InprocServer
32\5.8.0.0]
"Class"="System.SoapClient.ActionItemServiceSoapBinding"
"Assembly"="SystemServices, Version=5.8.0.0, Culture=neutral,
PublicKeyToken=0c9936e17310ce71"
"RuntimeVersion"="v2.0.50727"
"CodeBase"="file:///C:/Program Files/Company/System
5.8.0.69/Client/SystemServices.dll"

[HKEY_CLASSES_ROOT\CLSID\{CB7F123F-19B7-4963-9D48-2A18655135CB}\ProgId]
@="System.SoapClient.ActionItemServiceSoapBinding"

[HKEY_CLASSES_ROOT\CLSID\{CB7F123F-19B7-4963-9D48-2A18655135CB}\Implemented
Categories\{62C8FE65-4EBB-45E7-B440-6E39B2CDBF29}]



Running Heat on my DLL gives me:
























But I get the error about the duplicate key in Registry when compiling.

Note that I have another 1100 entries much like the above.

My question is simple. What do I need to change in the WiX file to get the
system to register things in the same was as regasm /codebase? Will adding a
new unique ID to RegistryValue resolve this? I'm happy to postprocess the
heat output if necessary.

If this is a bug in Heat - what is needed to resolve the bug so we can get
it fixed?

Many thanks for any pointers.

Ben



-
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] Program dependencies on uninstall

2008-10-16 Thread EPoon

I've created several installs now using WiX for various programs and I have a
problem where they are dependent on each others files.  They do use some of
the same files but each has their own copy in their respective install
directories.  The problem comes when I uninstall one of them I'm met with a
dialog that says "The following applications should be closed before
continuing the installation:" and it lists off the other programs that are
running.  I may be overlooking a simple fix but if anyone could point me in
the correct direction to stop it from doing this it would be greatly
appreciated.
-- 
View this message in context: 
http://n2.nabble.com/Program-dependencies-on-uninstall-tp1341544p1341544.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


Re: [WiX-users] Build from command line

2008-10-16 Thread Alex Ivanoff
So you are saying it is not possible?


-Original Message-
From: John Hall [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2008 03:08
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Build from command line

Could you not just pass in Name1 and Name2 seperately?

Regards,
John

> -Original Message-
> From: Alex Ivanoff [mailto:[EMAIL PROTECTED]
> Sent: 15 October 2008 18:13
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] Build from command line
>
> It still does not work for me. In my case MyVariable has ";" in it:
>
> MyBariable=Name1=Value1%3bName2=value2
>
>
> -Original Message-
> From: John Hall [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, October 15, 2008 03:29
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] Build from command line
>
> > Let me rephrase. How do I specify preprocessor variables
> when I build
> > from command line with MSBuild?
> >
> > msbuild myinstall.wixproj /p:???
>
> I've modified by wixproj file to take parameters from the
> commandline and pass them into WiX:
>
> You need to add something like this to the BeforeBuild target:
>
>  Value="MyVariable=$(MyVariable);$(DefineConstants)">
>   
> 
>
> And then you can do:
>
> msbuild myinstall.wixproj /p:MyVariable=
>
> Regards,
> John
>
> --
> --
> -
> 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

-
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] What's wrong with this syntax?

2008-10-16 Thread Powell, Simon
Hi,
 
I get this error message, but I can't see what's wrong with the syntax.
 
"SQL query syntax invalid or unsupported. Database: target.msi. Could
not load table 'Property' in SQL query: SELECT `Property` FROM
`Property` WHERE `Property`='REBOOT'"
 
Below is the line of code :
 
IList PropList = MsiDb.ExecuteQuery(sQuery, InProp.Property);
 
The source and Target msi files are very basic (based on Schema.msi).
The only difference in the Target msi is an extra entry in the Property
table.
 
Please help.
 
Regards
Simon Powell
 


--
This e-mail is confidential and the information contained in it may be 
privileged.  It should not be read, copied or used by anyone other than the 
intended recipient.  If you have received it in error, please contact the 
sender immediately by telephoning +44 (0)20 7623 8000 or by return email, and 
delete the e-mail and do not disclose its contents to any person.  We believe, 
but do not warrant, that this e-mail and any attachments are virus free, but 
you must take full responsibility for virus checking.  Please refer to 
http://www.dresdnerkleinwort.com/disc/email/ and read our e-mail disclaimer 
statement and monitoring policy.

Dresdner Kleinwort is the trading name of the investment banking division of 
Dresdner Bank AG, and operates through Dresdner Bank AG, Dresdner Kleinwort 
Limited and their affiliated or associated companies.  Dresdner Bank AG is a 
company incorporated in Germany with limited liability and registered in 
England (registered no. FC007638, place of business 30 Gresham Street, London 
EC2V 7PG), and is authorised by the German Federal Financial Supervisory 
Authority and by the Financial Services Authority ('FSA') and regulated by the 
FSA for the conduct of designated business in the UK.  Dresdner Kleinwort 
Limited is a company incorporated in England (registered no. 551334, registered 
office 30 Gresham Street, London EC2V 7PG), and is authorised and regulated by 
the FSA.  

-
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] CreateTransformSummaryInfo Error

2008-10-16 Thread Powell, Simon
Hi,
 
If I use the following line of DTF code :
 
targetDb.CreateTransformSummaryInfo(sourceDb, transformFile,
TransformErrors.AddExistingTable, TransformValidations.Product);
 
I get the following error :
 
This installation package could not be opened.  Contact the
application vendor to verify that this is a valid Windows Installer
package.
 
The source and Target msi files are very basic (based on Schema.msi).
The only difference in the Target msi is an extra entry in the Property
table.
 
What I'm ultimately trying to achieve, is the ability to modify existing
MSTs and automate application of our company's packaging standards.
 
Regards
Simon Powell
 


--
This e-mail is confidential and the information contained in it may be 
privileged.  It should not be read, copied or used by anyone other than the 
intended recipient.  If you have received it in error, please contact the 
sender immediately by telephoning +44 (0)20 7623 8000 or by return email, and 
delete the e-mail and do not disclose its contents to any person.  We believe, 
but do not warrant, that this e-mail and any attachments are virus free, but 
you must take full responsibility for virus checking.  Please refer to 
http://www.dresdnerkleinwort.com/disc/email/ and read our e-mail disclaimer 
statement and monitoring policy.

Dresdner Kleinwort is the trading name of the investment banking division of 
Dresdner Bank AG, and operates through Dresdner Bank AG, Dresdner Kleinwort 
Limited and their affiliated or associated companies.  Dresdner Bank AG is a 
company incorporated in Germany with limited liability and registered in 
England (registered no. FC007638, place of business 30 Gresham Street, London 
EC2V 7PG), and is authorised by the German Federal Financial Supervisory 
Authority and by the Financial Services Authority ('FSA') and regulated by the 
FSA for the conduct of designated business in the UK.  Dresdner Kleinwort 
Limited is a company incorporated in England (registered no. 551334, registered 
office 30 Gresham Street, London EC2V 7PG), and is authorised and regulated by 
the FSA.  

-
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] Installing a managed assembly with external(!) manifest into the GAC

2008-10-16 Thread ACKH

Hi all,

Is it possible to install a managed assembly together with an external
manifest into the GAC? First I thought the following WiX code would do this:


  
  


Actually it compiles just fine but during the installation a message box
pops up that states:

"Error writing to file test.dll.manifest. Verify that you have access to
that directory.

The log file shows the following error:
MSI (s) (28:DC) [11:27:17:828]: Executing op:
AssemblyCopy(SourceName=9vfdzd5e.man|test.dll.manifest,SourceCabKey=test.dll.manifest.2F002201_1263_45D8_BCF6_177A798CDEB2,DestName=test.dll.manifest,Attributes=512,FileSize=372,PerTick=32768,,VerifyMedia=1,ComponentId={88679446-A145-493A-BCEA-BFE645E6F5A0},IsManifest=1,,,AssemblyMode=0,)
MSI (s) (28:DC) [11:27:17:828]: Source for file
'test.dll.manifest.2F002201_1263_45D8_BCF6_177A798CDEB2' is compressed
MSI (s) (28:B0) [11:27:17:828]: Assembly Error:The module '%1' was expected
to contain an assembly manifest.
MSI (s) (28:B0) [11:27:17:828]: Note: 1: 1935 2:  3: 0x80131018 4: IStream
5: Commit 6:  
MSI (s) (28:DC) [11:27:17:828]: Note: 1: 1304 2: test.dll.manifest 
MSI (s) (28:DC) [11:27:17:828]: Note: 1: 2205 2:  3: Error 
MSI (s) (28:DC) [11:27:17:828]: Note: 1: 2228 2:  3: Error 4: SELECT
`Message` FROM `Error` WHERE `Error` = 1304 
MSI (c) (CC:C4) [11:27:17:843]: Font created.  Charset: Req=0, Ret=0, Font:
Req=MS Shell Dlg, Ret=MS Shell Dlg

My manifest (test.dll.manifest) for the managed test.dll looks like this:



  

  

  


The reason for the external manifest is that the dll is delivered by an
external vendor. The assembly is already signed and therefore I can't embed
the manifest into the assembly.

What am I doing wrong? Isn't it possible to store external manifests in the
Global assembly Cache?

Thanks!

-- 
View this message in context: 
http://n2.nabble.com/Installing-a-managed-assembly-with-external%28%21%29-manifest-into-the-GAC-tp1340404p1340404.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


Re: [WiX-users] Build from command line

2008-10-16 Thread John Hall
Could you not just pass in Name1 and Name2 seperately?

Regards,
John

> -Original Message-
> From: Alex Ivanoff [mailto:[EMAIL PROTECTED]
> Sent: 15 October 2008 18:13
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] Build from command line
>
> It still does not work for me. In my case MyVariable has ";" in it:
>
> MyBariable=Name1=Value1%3bName2=value2
>
>
> -Original Message-
> From: John Hall [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, October 15, 2008 03:29
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] Build from command line
>
> > Let me rephrase. How do I specify preprocessor variables
> when I build
> > from command line with MSBuild?
> >
> > msbuild myinstall.wixproj /p:???
>
> I've modified by wixproj file to take parameters from the
> commandline and pass them into WiX:
>
> You need to add something like this to the BeforeBuild target:
>
>  Value="MyVariable=$(MyVariable);$(DefineConstants)">
>   
> 
>
> And then you can do:
>
> msbuild myinstall.wixproj /p:MyVariable=
>
> Regards,
> John
>
> --
> --
> -
> 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