Re: [WiX-users] WixNetFxExtension / how to check for .NET 3.5 SP1?

2009-06-22 Thread Yan Sklyarenko
See Advanced WiX Topics > Standard Custom Actions > WixNetfxExtension
article in WiX.chm.
You'll work with NETFRAMEWORK35 and NETFRAMEWORK35_SP_LEVEL properties
to check your prerequisite correctly.

-- Yan

-Original Message-
From: Lloyd Dupont [mailto:l...@galador.net] 
Sent: Sunday, June 21, 2009 5:37 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] WixNetFxExtension / how to check for .NET 3.5 SP1?

I downloaded the source of Wix 3.0.5419 and did a project search for
"NETFRAMEWORK35"
But I found it nowhere!

Actually I was wondering how to check for the .NET 3.5SP1.
NETFRAMEWORK35SP
and
NETFRAMEWORK35SP1
both seems to fail...

--
Are you an open source citizen? Join us for the Open Source Bridge
conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference:
$250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebrid
ge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Re-using a component multiple times in different features

2009-06-22 Thread hegsie

Hi,
I have a situation where I have multiple features that all perform the same
piece of SQL on a database, rather than have to copy the the SqlString
command multiple times, I was wondering if there is a way to do this using
the ComponentGroup element.. the SQL looks similar to...

exec sp_addlogin '[ComputerName].[FEATURENAME]', '[PASSWORD]',
'THEDATABASE', 'us_english'

Also is there some way to set the FEATURENAME property for each usage of
this SQL in a feature?
Cheers



-- 
View this message in context: 
http://n2.nabble.com/Re-using-a-component-multiple-times-in-different-features-tp3131775p3131775.html
Sent from the wix-users mailing list archive at Nabble.com.


--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Re-using a component multiple times in different features

2009-06-22 Thread hegsie

Hi,
I have a situation where I have multiple features that all perform the same
piece of SQL on a database, rather than have to copy the the SqlString
command multiple times, I was wondering if there is a way to do this using
the ComponentGroup element.. the SQL looks similar to...

exec sp_addlogin '[ComputerName].[FEATURENAME]', '[PASSWORD]',
'THEDATABASE', 'us_english'

Also is there some way to set the FEATURENAME property for each usage of
this SQL in a feature?
Cheers



-- 
View this message in context: 
http://n2.nabble.com/Re-using-a-component-multiple-times-in-different-features-tp3131776p3131776.html
Sent from the wix-users mailing list archive at Nabble.com.


--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Re-using a component multiple times in different features

2009-06-22 Thread hegsie

Hi,
I have a situation where I have multiple features that all perform the same
piece of SQL on a database, rather than have to copy the the SqlString
command multiple times, I was wondering if there is a way to do this using
the ComponentGroup element.. the SQL looks similar to...

exec sp_addlogin '[ComputerName].[FEATURENAME]', '[PASSWORD]',
'THEDATABASE', 'us_english'

Also is there some way to set the FEATURENAME property for each usage of
this SQL in a feature?
Cheers



-- 
View this message in context: 
http://n2.nabble.com/Re-using-a-component-multiple-times-in-different-features-tp3131777p3131777.html
Sent from the wix-users mailing list archive at Nabble.com.


--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Re-using a component multiple times in different features

2009-06-22 Thread Yan Sklyarenko
Here's the extract of the MSI docs:
"Components can be shared by two or more features, that is, the same
component can be referred to by more than one feature."

http://msdn.microsoft.com/en-us/library/aa368579(VS.85).aspx

-- Yan

-Original Message-
From: hegsie [mailto:heg...@gmail.com] 
Sent: Monday, June 22, 2009 11:49 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Re-using a component multiple times in different
features


Hi,
I have a situation where I have multiple features that all perform the
same
piece of SQL on a database, rather than have to copy the the SqlString
command multiple times, I was wondering if there is a way to do this
using
the ComponentGroup element.. the SQL looks similar to...

exec sp_addlogin '[ComputerName].[FEATURENAME]', '[PASSWORD]',
'THEDATABASE', 'us_english'

Also is there some way to set the FEATURENAME property for each usage of
this SQL in a feature?
Cheers



-- 
View this message in context:
http://n2.nabble.com/Re-using-a-component-multiple-times-in-different-fe
atures-tp3131775p3131775.html
Sent from the wix-users mailing list archive at Nabble.com.



--
Are you an open source citizen? Join us for the Open Source Bridge
conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference:
$250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebrid
ge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Re-using a component multiple times in different features

2009-06-22 Thread hegsie

In this case then does that component get actioned multiple times or just
the once for all referenced features?

On Mon, Jun 22, 2009 at 10:12 AM, Yan Sklyarenko (via Nabble) <
ml-user+60382-221122...@n2.nabble.com
> wrote:

> Here's the extract of the MSI docs:
> "Components can be shared by two or more features, that is, the same
> component can be referred to by more than one feature."
>
> http://msdn.microsoft.com/en-us/library/aa368579(VS.85).aspx
>
> -- Yan
>
> -Original Message-
> From: hegsie 
> [mailto:heg...@...]
>
> Sent: Monday, June 22, 2009 11:49 AM
> To: 
> wix-us...@...
> Subject: [WiX-users] Re-using a component multiple times in different
> features
>
>
> Hi,
> I have a situation where I have multiple features that all perform the
> same
> piece of SQL on a database, rather than have to copy the the SqlString
> command multiple times, I was wondering if there is a way to do this
> using
> the ComponentGroup element.. the SQL looks similar to...
>
> exec sp_addlogin '[ComputerName].[FEATURENAME]', '[PASSWORD]',
> 'THEDATABASE', 'us_english'
>
> Also is there some way to set the FEATURENAME property for each usage of
> this SQL in a feature?
> Cheers
>
>
>
> --
> View this message in context:
> http://n2.nabble.com/Re-using-a-component-multiple-times-in-different-fe
> atures-tp3131775p3131775.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
>
> 
> --
> Are you an open source citizen? Join us for the Open Source Bridge
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebrid
> ge.org
> ___
> WiX-users mailing list
> wix-us...@...
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
> --
>
> Are you an open source citizen? Join us for the Open Source Bridge
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
>
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> wix-us...@...
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
> --
>  This email is a reply to your post @
> http://n2.nabble.com/Re-using-a-component-multiple-times-in-different-features-tp3131775p3131844.html
> You can reply by email or by visting the link above.
>
>


-- 
The significant problems we face cannot be solved by the same level of
thinking that created them.
-- Albert Einstein

blog:http://bensafricanadventure.blogspot.com
phone: +447767-322-122

-- 
View this message in context: 
http://n2.nabble.com/Re-using-a-component-multiple-times-in-different-features-tp3131775p3131884.html
Sent from the wix-users mailing list archive at Nabble.com.
--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Re-using a component multiple times in different features

2009-06-22 Thread Kim Gybels

> In this case then does that component get actioned multiple times or just
> the once for all referenced features?
>
Just once.

--

*Kim Gybels
Software Developer
* kim.gyb...@metris.com 
Tel: +32 16 74 01 01
Fax: +32 16 74 01 02



* Metris Europe
* Interleuvenlaan 86
3001 Leuven
Belgium
www.metris.com 




This message and any attachment are privileged, confidential and contain 
private information. If you are not the addressee named above any disclosure, 
reproduction, copying, distribution, or other dissemination or use of this 
communication is prohibited. If you have received this transmission in error, 
please notify the sender immediately and destroy this e-mail. Metris does not 
guarantee that the integrity of this communication has been maintained or that
this communication is free of viruses, interceptions or interference, and shall 
not be liable for the improper or incomplete transmission of the information 
contained in this communication nor for any delay in its receipt or damage to 
your system. Incoming and outgoing email communications may be monitored by 
Metris, as permitted by applicable law and regulations.

--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Re-using a component multiple times in different features

2009-06-22 Thread Ben Hegarty
What I really need is for the component to be action-ed for each of the
features that are selected, because the feature name is going to be
different for each one...Is this even possible or do I need to basically
duplicate the sql for each feature..

On Mon, Jun 22, 2009 at 10:34 AM, Kim Gybels  wrote:

>
> > In this case then does that component get actioned multiple times or just
> > the once for all referenced features?
> >
> Just once.
>
> --
>
> *Kim Gybels
> Software Developer
> * kim.gyb...@metris.com 
> Tel: +32 16 74 01 01
> Fax: +32 16 74 01 02
>
>
>
> * Metris Europe
> * Interleuvenlaan 86
> 3001 Leuven
> Belgium
> www.metris.com 
>
>
>
>
> This message and any attachment are privileged, confidential and contain
> private information. If you are not the addressee named above any
> disclosure, reproduction, copying, distribution, or other dissemination or
> use of this communication is prohibited. If you have received this
> transmission in error, please notify the sender immediately and destroy this
> e-mail. Metris does not guarantee that the integrity of this communication
> has been maintained or that
> this communication is free of viruses, interceptions or interference, and
> shall not be liable for the improper or incomplete transmission of the
> information contained in this communication nor for any delay in its receipt
> or damage to your system. Incoming and outgoing email communications may be
> monitored by Metris, as permitted by applicable law and regulations.
>
>
> --
> Are you an open source citizen? Join us for the Open Source Bridge
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
>
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>



-- 
The significant problems we face cannot be solved by the same level of
thinking that created them.
-- Albert Einstein

blog:http://bensafricanadventure.blogspot.com
phone: +447767-322-122
--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] MakeSfxCA do not copy file version from C# assembly to output dll.

2009-06-22 Thread Dov Kleinman
Hi,

I am using MakeSfxCA utility (Wix 3.0) to create a DLL with CSharp custom 
actions. Recently I have noticed that this DLL has the file version info 
exactly as the SDK "sfxca.dll" . I have tested it with both build #5217 & #5332 
. When reverting the SDK in use to build #4827 I have gained the normal 
behavior of copying the version info form the C# DLL to the output DLL.
Anybody else encountered this issue?

Thanks,
Dov

--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WixNetFxExtension / how to check for .NET 3.5 SP1?

2009-06-22 Thread Lloyd Dupont
Thanks,
That's great!

I also would like to know, how could I help myself with the sources?
To my bewilderment, when I looked at the sources and did a solution wide 
search for "NETFRAMEWORK35" nothing came up!

- Original Message - 
From: "Yan Sklyarenko" 
To: "General discussion for Windows Installer XML toolset." 

Sent: Monday, June 22, 2009 5:35 PM
Subject: Re: [WiX-users] WixNetFxExtension / how to check for .NET 3.5 SP1?


> See Advanced WiX Topics > Standard Custom Actions > WixNetfxExtension
> article in WiX.chm.
> You'll work with NETFRAMEWORK35 and NETFRAMEWORK35_SP_LEVEL properties
> to check your prerequisite correctly.
>
> -- Yan
>
> -Original Message-
> From: Lloyd Dupont [mailto:l...@galador.net]
> Sent: Sunday, June 21, 2009 5:37 AM
> To: wix-users@lists.sourceforge.net
> Subject: [WiX-users] WixNetFxExtension / how to check for .NET 3.5 SP1?
>
> I downloaded the source of Wix 3.0.5419 and did a project search for
> "NETFRAMEWORK35"
> But I found it nowhere!
>
> Actually I was wondering how to check for the .NET 3.5SP1.
> NETFRAMEWORK35SP
> and
> NETFRAMEWORK35SP1
> both seems to fail...
> 
> --
> Are you an open source citizen? Join us for the Open Source Bridge
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebrid
> ge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
> --
> Are you an open source citizen? Join us for the Open Source Bridge 
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference: 
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
> 


--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WixNetFxExtension / how to check for .NET 3.5 SP1?

2009-06-22 Thread John Nannenga

...\wix\src\ext\NetFxExtension\wixlib\NetFxExtension.wxs


-Original Message-
From: Lloyd Dupont [mailto:l...@galador.net] 
Sent: Monday, June 22, 2009 6:14 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] WixNetFxExtension / how to check for .NET 3.5 SP1?

Thanks,
That's great!

I also would like to know, how could I help myself with the sources?
To my bewilderment, when I looked at the sources and did a solution wide 
search for "NETFRAMEWORK35" nothing came up!

- Original Message - 
From: "Yan Sklyarenko" 
To: "General discussion for Windows Installer XML toolset." 

Sent: Monday, June 22, 2009 5:35 PM
Subject: Re: [WiX-users] WixNetFxExtension / how to check for .NET 3.5 SP1?


> See Advanced WiX Topics > Standard Custom Actions > WixNetfxExtension
> article in WiX.chm.
> You'll work with NETFRAMEWORK35 and NETFRAMEWORK35_SP_LEVEL properties
> to check your prerequisite correctly.
>
> -- Yan
>
> -Original Message-
> From: Lloyd Dupont [mailto:l...@galador.net]
> Sent: Sunday, June 21, 2009 5:37 AM
> To: wix-users@lists.sourceforge.net
> Subject: [WiX-users] WixNetFxExtension / how to check for .NET 3.5 SP1?
>
> I downloaded the source of Wix 3.0.5419 and did a project search for
> "NETFRAMEWORK35"
> But I found it nowhere!
>
> Actually I was wondering how to check for the .NET 3.5SP1.
> NETFRAMEWORK35SP
> and
> NETFRAMEWORK35SP1
> both seems to fail...
> 
> --
> Are you an open source citizen? Join us for the Open Source Bridge
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebrid
> ge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
> --
> Are you an open source citizen? Join us for the Open Source Bridge 
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference: 
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
> 


--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Re-using a component multiple times in differentfeatures

2009-06-22 Thread Chad Petersen
Of course each feature name is different, duplicate feature names aren't 
allowed, but if the end user chooses more than one feature to install on a 
given machine you don't really want the same exact SQL running multiple times 
on that machine, do you? I'd think no matter how many features they choose to 
install you'd only want to run the SQL once on that system.
 
Chad



From: Ben Hegarty [mailto:heg...@gmail.com]
Sent: Mon 6/22/2009 2:49 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Re-using a component multiple times in 
differentfeatures



What I really need is for the component to be action-ed for each of the
features that are selected, because the feature name is going to be
different for each one...Is this even possible or do I need to basically
duplicate the sql for each feature..

On Mon, Jun 22, 2009 at 10:34 AM, Kim Gybels  wrote:

>
> > In this case then does that component get actioned multiple times or just
> > the once for all referenced features?
> >
> Just once.
>
> --
>
> *Kim Gybels
> Software Developer
> * kim.gyb...@metris.com 
> Tel: +32 16 74 01 01
> Fax: +32 16 74 01 02
>
>
>
> * Metris Europe
> * Interleuvenlaan 86
> 3001 Leuven
> Belgium
> www.metris.com 
>
>
>
>
> This message and any attachment are privileged, confidential and contain
> private information. If you are not the addressee named above any
> disclosure, reproduction, copying, distribution, or other dissemination or
> use of this communication is prohibited. If you have received this
> transmission in error, please notify the sender immediately and destroy this
> e-mail. Metris does not guarantee that the integrity of this communication
> has been maintained or that
> this communication is free of viruses, interceptions or interference, and
> shall not be liable for the improper or incomplete transmission of the
> information contained in this communication nor for any delay in its receipt
> or damage to your system. Incoming and outgoing email communications may be
> monitored by Metris, as permitted by applicable law and regulations.
>
>
> --
> Are you an open source citizen? Join us for the Open Source Bridge
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
>
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>



--
The significant problems we face cannot be solved by the same level of
thinking that created them.
-- Albert Einstein

blog:http://bensafricanadventure.blogspot.com 
 
phone: +447767-322-122
--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Documenting installation packages

2009-06-22 Thread Chad Petersen
I wrote some VBScript that I call "Files by Feature" that I run against the 
resultant MSI file. It opens the database and dumps a list of each file that is 
in each feature to a CSV file that I can then open in Excel. It's basically a 
manifest of what gets installed.
 
Otherwise, the XML seems fairly self-documenting to me, provided you used Id 
names that have some relevent meaning.
 
I guess each person could have unique needs, though.
 
Chad



From: lesterbangs [mailto:datapa...@gmail.com]
Sent: Fri 6/19/2009 9:19 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Documenting installation packages




+1 on this... something like C#'s XML Documentation or Sandcastle for WiX
would be huge.

Seeing that WiX projects are just XML files, probably the solution would
involve some sort of XSL translation.


DexterSinister wrote:
>
> How are folks here documenting their installation packages ?
>
> Are there any automated tools for doing this ... ?
>
> If you're doing this manually, what information are you
> capturing ... and how are you presenting it ? [charts /
> spreadsheet type table(s) / ???]
>
> I'm working on this issue ... and there doesn't seem to
> be much info available.
>
> Any help greatly appreciated, I'll share my results with
> this mailing list when I'm done ...
>
> Thanks in advance,
>
> -dmm
>
>

--
View this message in context: 
http://n2.nabble.com/Documenting-installation-packages-tp3120479p3120661.html
Sent from the wix-users mailing list archive at Nabble.com.


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] DIFXAPP: ERROR - The operating system you are running on is not supported.

2009-06-22 Thread June Bell
Hi,

I used WiX v3.0 RC2 build (v3.0.5217.0) to build my installation package.  I
was trying to install the package on an evaluation copy of Windows Server
2008 R2 Server Core, but got the following error:

DIFXAPP: ERROR - The operating system you are running on is not supported.
Only Windows 2000, Windows XP, Windows Server 2003 and Windows codenamed
Longhorn are supported.

By the way, I was able to install the same package on an evaluation copy of
Windows Server 2008 R2 Enterprise Edition.

Has anyone seen this?  Does WiX v3.0 support Windows Server 2008 R2 Server
Core?

Thanks,
June
--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WixNetFxExtension / how to check for .NET 3.5 SP1?

2009-06-22 Thread Lloyd Dupont
Thanks!
It's slowly starting to make sense now! :)

That said, curiously, I couldn't open the NetFxExtension.wixproj :(
But no matter, I opened the .wxs and get some inkling of what's going on 
now! :)



- Original Message - 
From: "John Nannenga" 
To: "General discussion for Windows Installer XML toolset." 

Sent: Monday, June 22, 2009 11:57 PM
Subject: Re: [WiX-users] WixNetFxExtension / how to check for .NET 3.5 SP1?


>
> ...\wix\src\ext\NetFxExtension\wixlib\NetFxExtension.wxs
>
>
> -Original Message-
> From: Lloyd Dupont [mailto:l...@galador.net]
> Sent: Monday, June 22, 2009 6:14 AM
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] WixNetFxExtension / how to check for .NET 3.5 
> SP1?
>
> Thanks,
> That's great!
>
> I also would like to know, how could I help myself with the sources?
> To my bewilderment, when I looked at the sources and did a solution wide
> search for "NETFRAMEWORK35" nothing came up!
>
> - Original Message - 
> From: "Yan Sklyarenko" 
> To: "General discussion for Windows Installer XML toolset."
> 
> Sent: Monday, June 22, 2009 5:35 PM
> Subject: Re: [WiX-users] WixNetFxExtension / how to check for .NET 3.5 
> SP1?
>
>
>> See Advanced WiX Topics > Standard Custom Actions > WixNetfxExtension
>> article in WiX.chm.
>> You'll work with NETFRAMEWORK35 and NETFRAMEWORK35_SP_LEVEL properties
>> to check your prerequisite correctly.
>>
>> -- Yan
>>
>> -Original Message-
>> From: Lloyd Dupont [mailto:l...@galador.net]
>> Sent: Sunday, June 21, 2009 5:37 AM
>> To: wix-users@lists.sourceforge.net
>> Subject: [WiX-users] WixNetFxExtension / how to check for .NET 3.5 SP1?
>>
>> I downloaded the source of Wix 3.0.5419 and did a project search for
>> "NETFRAMEWORK35"
>> But I found it nowhere!
>>
>> Actually I was wondering how to check for the .NET 3.5SP1.
>> NETFRAMEWORK35SP
>> and
>> NETFRAMEWORK35SP1
>> both seems to fail...
>> 
>> --
>> Are you an open source citizen? Join us for the Open Source Bridge
>> conference!
>> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
>> $250.
>> Need another reason to go? 24-hour hacker lounge. Register today!
>> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebrid
>> ge.org
>> ___
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>
>> --
>> Are you an open source citizen? Join us for the Open Source Bridge
>> conference!
>> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
>> $250.
>> Need another reason to go? 24-hour hacker lounge. Register today!
>> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
>> ___
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>
>>
>
>
> --
> Are you an open source citizen? Join us for the Open Source Bridge 
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference: 
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
> --
> Are you an open source citizen? Join us for the Open Source Bridge 
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference: 
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
> 


--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Prevent "files in use" dialog?

2009-06-22 Thread Han Sheng
hi Stefan,

the best u can do is use the /passive mode instead of /qb

u won't be able to cancel the progress... but it is unattended... cheers!!!

-tony

--
From: "Stefan Kuhr" 
Sent: Sunday, June 21, 2009 4:30 AM
To: 
Subject: Re: [WiX-users] Prevent "files in use" dialog?

>
> Hi Alex,
>
>
>
> Alex Shevchuk-2 wrote:
>>
>>> However what I would like to have is no dialog but restart of the app.
>>
>>
>> Hi Stefan,
>>
>> This blog post
>> (http://blogs.msdn.com/windows_installer_team/archive/2006/12/11/windows-ins
>> taller-and-restart-manager-msi-files-in-use-v2.aspx) explains the 
>> behavior
>> in different UI modes.  Looks like what you want is possible only in "No
>> UI"
>> mode.
>>
>
> Yes sure. Maybe I forgot to mention that everything works quite nicely if 
> I
> run msiexec with /qn. But management would like to see the /qb scenario 
> with
> progress bars to run in an unattended mode and unfortunately this dialog 
> is
> killing the unattended scenario.
>
> -- 
> Stefan Kuhr
>
>
> -- 
> View this message in context: 
> http://n2.nabble.com/Prevent-%22files-in-use%22-dialog--tp3115333p3126129.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
>
> --
> Are you an open source citizen? Join us for the Open Source Bridge 
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference: 
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 

--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Re-using a component multiple times in differentfeatures

2009-06-22 Thread Dirk Räder
Sure thing he doesn't want the EXACT same SQL-statement repeatedly. The
statement mentioned in the first mail contained some properties, which are
to be replaced for each call of the statement. Especially the feature's
name, which is used as a login name.

2009/6/22 Chad Petersen 

> Of course each feature name is different, duplicate feature names aren't
> allowed, but if the end user chooses more than one feature to install on a
> given machine you don't really want the same exact SQL running multiple
> times on that machine, do you? I'd think no matter how many features they
> choose to install you'd only want to run the SQL once on that system.
>
> Chad
>
> 
>
> From: Ben Hegarty [mailto:heg...@gmail.com]
> Sent: Mon 6/22/2009 2:49 AM
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] Re-using a component multiple times in
> differentfeatures
>
>
>
> What I really need is for the component to be action-ed for each of the
> features that are selected, because the feature name is going to be
> different for each one...Is this even possible or do I need to basically
> duplicate the sql for each feature..
>
> On Mon, Jun 22, 2009 at 10:34 AM, Kim Gybels 
> wrote:
>
> >
> > > In this case then does that component get actioned multiple times or
> just
> > > the once for all referenced features?
> > >
> > Just once.
> >
> > --
> >
> > *Kim Gybels
> > Software Developer
> > * kim.gyb...@metris.com 
> > Tel: +32 16 74 01 01
> > Fax: +32 16 74 01 02
> >
> >
> >
> > * Metris Europe
> > * Interleuvenlaan 86
> > 3001 Leuven
> > Belgium
> > www.metris.com 
> >
> >
> >
> >
> > This message and any attachment are privileged, confidential and contain
> > private information. If you are not the addressee named above any
> > disclosure, reproduction, copying, distribution, or other dissemination
> or
> > use of this communication is prohibited. If you have received this
> > transmission in error, please notify the sender immediately and destroy
> this
> > e-mail. Metris does not guarantee that the integrity of this
> communication
> > has been maintained or that
> > this communication is free of viruses, interceptions or interference, and
> > shall not be liable for the improper or incomplete transmission of the
> > information contained in this communication nor for any delay in its
> receipt
> > or damage to your system. Incoming and outgoing email communications may
> be
> > monitored by Metris, as permitted by applicable law and regulations.
> >
> >
> >
> --
> > Are you an open source citizen? Join us for the Open Source Bridge
> > conference!
> > Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> > $250.
> > Need another reason to go? 24-hour hacker lounge. Register today!
> >
> >
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
>
>
>
> --
> The significant problems we face cannot be solved by the same level of
> thinking that created them.
> -- Albert Einstein
>
> blog:http://bensafricanadventure.blogspot.com <
> http://bensafricanadventure.blogspot.com/>
> phone: +447767-322-122
>
> --
> Are you an open source citizen? Join us for the Open Source Bridge
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
>
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
>
>
> --
> Are you an open source citizen? Join us for the Open Source Bridge
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
>
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___

[WiX-users] VIsta: Disable Registry Virtualization

2009-06-22 Thread Maxim Sadovski

Hi All,

I have a hard time finding whether it's possible to disable Vista 
Virtualization for registry keys created under HKLM\Software during 
instalation? Programmatically it is done by calling NTDLL export 
NtSetInformationKey() - but, in my case, the best way to achieve this is within 
Wix installation scripts. If it is not possible I guess the other solution is 
to create a custom action DLL...

I appreciate your responses.

Best regards, Maxim



  

--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] VIsta: Disable Registry Virtualization

2009-06-22 Thread Simon Dahlbacka
shouldn't you just add a manifest to your executable?

On Mon, Jun 22, 2009 at 6:25 PM, Maxim Sadovski wrote:

>
> Hi All,
>
> I have a hard time finding whether it's possible to disable Vista
> Virtualization for registry keys created under HKLM\Software during
> instalation? Programmatically it is done by calling NTDLL export
> NtSetInformationKey() - but, in my case, the best way to achieve this is
> within Wix installation scripts. If it is not possible I guess the other
> solution is to create a custom action DLL...
>
> I appreciate your responses.
>
> Best regards, Maxim
>
>
>
>
>
>
> --
> Are you an open source citizen? Join us for the Open Source Bridge
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
>
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] VIsta: Disable Registry Virtualization

2009-06-22 Thread Maxim Sadovski

Thanks for the reply.

Unfortunately there are no executables, we ship a set of DLLs that operate on 
certain registry keys under HKLM\Software...

--- On Mon, 6/22/09, Simon Dahlbacka  wrote:

> From: Simon Dahlbacka 
> Subject: Re: [WiX-users] VIsta: Disable Registry Virtualization
> To: "General discussion for Windows Installer XML toolset." 
> 
> Date: Monday, June 22, 2009, 10:36 AM
> shouldn't you just add a manifest to
> your executable?
> 
> On Mon, Jun 22, 2009 at 6:25 PM, Maxim Sadovski 
> wrote:
> 
> >
> > Hi All,
> >
> > I have a hard time finding whether it's possible to
> disable Vista
> > Virtualization for registry keys created under
> HKLM\Software during
> > instalation? Programmatically it is done by calling
> NTDLL export
> > NtSetInformationKey() - but, in my case, the best way
> to achieve this is
> > within Wix installation scripts. If it is not possible
> I guess the other
> > solution is to create a custom action DLL...
> >
> > I appreciate your responses.
> >
> > Best regards, Maxim
> >
> >
> >
> >
> >
> >
> >
> --
> > Are you an open source citizen? Join us for the Open
> Source Bridge
> > conference!
> > Portland, OR, June 17-19. Two days of sessions, one
> day of unconference:
> > $250.
> > Need another reason to go? 24-hour hacker lounge.
> Register today!
> >
> > http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
> --
> Are you an open source citizen? Join us for the Open Source
> Bridge conference!
> Portland, OR, June 17-19. Two days of sessions, one day of
> unconference: $250.
> Need another reason to go? 24-hour hacker lounge. Register
> today!
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 


  

--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Re-using a component multiple times indifferentfeatures

2009-06-22 Thread Chad Petersen
Ah, then duplicate the SQL for each Feature, I suppose. Sounds a bit odd to me, 
but each installer is unique.

-Original Message-
From: Dirk Räder [mailto:d...@raeder.cc] 
Sent: Monday, June 22, 2009 8:05 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Re-using a component multiple times indifferentfeatures

Sure thing he doesn't want the EXACT same SQL-statement repeatedly. The
statement mentioned in the first mail contained some properties, which are
to be replaced for each call of the statement. Especially the feature's
name, which is used as a login name.

2009/6/22 Chad Petersen 

> Of course each feature name is different, duplicate feature names aren't
> allowed, but if the end user chooses more than one feature to install on a
> given machine you don't really want the same exact SQL running multiple
> times on that machine, do you? I'd think no matter how many features they
> choose to install you'd only want to run the SQL once on that system.
>
> Chad
>
> 
>
> From: Ben Hegarty [mailto:heg...@gmail.com]
> Sent: Mon 6/22/2009 2:49 AM
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] Re-using a component multiple times in
> differentfeatures
>
>
>
> What I really need is for the component to be action-ed for each of the
> features that are selected, because the feature name is going to be
> different for each one...Is this even possible or do I need to basically
> duplicate the sql for each feature..
>
> On Mon, Jun 22, 2009 at 10:34 AM, Kim Gybels 
> wrote:
>
> >
> > > In this case then does that component get actioned multiple times or
> just
> > > the once for all referenced features?
> > >
> > Just once.
> >
> > --
> >
> > *Kim Gybels
> > Software Developer
> > * kim.gyb...@metris.com 
> > Tel: +32 16 74 01 01
> > Fax: +32 16 74 01 02
> >
> >
> >
> > * Metris Europe
> > * Interleuvenlaan 86
> > 3001 Leuven
> > Belgium
> > www.metris.com 
> >
> >
> >
> >
> > This message and any attachment are privileged, confidential and contain
> > private information. If you are not the addressee named above any
> > disclosure, reproduction, copying, distribution, or other dissemination
> or
> > use of this communication is prohibited. If you have received this
> > transmission in error, please notify the sender immediately and destroy
> this
> > e-mail. Metris does not guarantee that the integrity of this
> communication
> > has been maintained or that
> > this communication is free of viruses, interceptions or interference, and
> > shall not be liable for the improper or incomplete transmission of the
> > information contained in this communication nor for any delay in its
> receipt
> > or damage to your system. Incoming and outgoing email communications may
> be
> > monitored by Metris, as permitted by applicable law and regulations.
> >
> >
> >
> --
> > Are you an open source citizen? Join us for the Open Source Bridge
> > conference!
> > Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> > $250.
> > Need another reason to go? 24-hour hacker lounge. Register today!
> >
> >
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
>
>
>
> --
> The significant problems we face cannot be solved by the same level of
> thinking that created them.
> -- Albert Einstein
>
> blog:http://bensafricanadventure.blogspot.com <
> http://bensafricanadventure.blogspot.com/>
> phone: +447767-322-122
>
> --
> Are you an open source citizen? Join us for the Open Source Bridge
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
>
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
>
>
> --
> Are you an open source citizen? Join us for the Open Source Bridge
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
>
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>

[WiX-users] How to build a C# custom action project in CoreXT

2009-06-22 Thread Lian Jiang
Hi,

I am using CoreXT and Wix3.5. A custom action project (*.csproj) cannot be 
built in the CoreXt.

Does anyone have such experience and let me know how to do it?

Appreciate your help.


Thanks
Lian


--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] VIsta: Disable Registry Virtualization

2009-06-22 Thread Curtis Jewell
You can still add manifests to your dll's. I've had to do it for other
reasons, I wonder if it'd work for you.

On Mon, 22 Jun 2009 08:48 -0700, "Maxim Sadovski"
 wrote:
> 
> Thanks for the reply.
> 
> Unfortunately there are no executables, we ship a set of DLLs that
> operate on certain registry keys under HKLM\Software...
> 
> --- On Mon, 6/22/09, Simon Dahlbacka  wrote:
> 
> > From: Simon Dahlbacka 
> > Subject: Re: [WiX-users] VIsta: Disable Registry Virtualization
> > To: "General discussion for Windows Installer XML toolset." 
> > 
> > Date: Monday, June 22, 2009, 10:36 AM
> > shouldn't you just add a manifest to
> > your executable?
> > 
> > On Mon, Jun 22, 2009 at 6:25 PM, Maxim Sadovski 
> > wrote:
> > 
> > >
> > > Hi All,
> > >
> > > I have a hard time finding whether it's possible to
> > disable Vista
> > > Virtualization for registry keys created under
> > HKLM\Software during
> > > instalation? Programmatically it is done by calling
> > NTDLL export
> > > NtSetInformationKey() - but, in my case, the best way
> > to achieve this is
> > > within Wix installation scripts. If it is not possible
> > I guess the other
> > > solution is to create a custom action DLL...
> > >
> > > I appreciate your responses.
> > >
> > > Best regards, Maxim
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > --
> > > Are you an open source citizen? Join us for the Open
> > Source Bridge
> > > conference!
> > > Portland, OR, June 17-19. Two days of sessions, one
> > day of unconference:
> > > $250.
> > > Need another reason to go? 24-hour hacker lounge.
> > Register today!
> > >
> > > http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> > > ___
> > > WiX-users mailing list
> > > WiX-users@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/wix-users
> > >
> > --
> > Are you an open source citizen? Join us for the Open Source
> > Bridge conference!
> > Portland, OR, June 17-19. Two days of sessions, one day of
> > unconference: $250.
> > Need another reason to go? 24-hour hacker lounge. Register
> > today!
> > http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> > 
> 
> 
>   
> 
> --
> Are you an open source citizen? Join us for the Open Source Bridge
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
--
Curtis Jewell
swords...@csjewell.fastmail.us

%DCL-E-MEM-BAD, bad memory
-VMS-F-PDGERS, pudding between the ears

[I use PC-Alpine, which deliberately does not display colors and pictures in 
HTML mail]


--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] What is the best way to troubleshoot an installer?

2009-06-22 Thread MacDiarmid, James D

I'm looking through the install.log file, and I'm seeing a lot of stuff
however I don't know what any of it means.  Is there anything that can
offer any help in decyphering   it?

Thanks,
Jim


--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to build a C# custom action project in CoreXT

2009-06-22 Thread Lian Jiang
Please ignore.

Problem solved.

Thanks
Lian

-Original Message-
From: Lian Jiang
Sent: Monday, June 22, 2009 12:43 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: How to build a C# custom action project in CoreXT

Hi,

I am using CoreXT and Wix3.5. A custom action project (*.csproj) cannot be 
built in the CoreXt.

Does anyone have such experience and let me know how to do it?

Appreciate your help.


Thanks
Lian


--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to build a C# custom action project in CoreXT

2009-06-22 Thread Richard

In article 
,
Lian Jiang   writes:

> I am using CoreXT and Wix3.5. A custom action project (*.csproj) cannot be bu
ilt in the CoreXt.

What's CoreXT?  Googling doesn't seem to yield anything useful in the
first couple of pages, unless you're talking about java.
-- 
"The Direct3D Graphics Pipeline" -- DirectX 9 draft available for download
  

Legalize Adulthood! 

--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to build a C# custom action project in CoreXT

2009-06-22 Thread Christopher Painter

You have to know the secret handshake. :-)

It's a homebrewed inhouse build tool that MSFT uses.   The funny thing is you 
see help wanted ads for positions at Microsoft where they then say that 
fimiliarity with the clients in-house tools is required.  Hmmm... too funny.



--- On Mon, 6/22/09, Richard  wrote:

> From: Richard 
> Subject: Re: [WiX-users] How to build a C# custom action project in CoreXT
> To: wix-users@lists.sourceforge.net
> Date: Monday, June 22, 2009, 4:10 PM
> 
> In article 
> ,
>     Lian Jiang  
> writes:
> 
> > I am using CoreXT and Wix3.5. A custom action project
> (*.csproj) cannot be bu
> ilt in the CoreXt.
> 
> What's CoreXT?  Googling doesn't seem to yield
> anything useful in the
> first couple of pages, unless you're talking about java.
> -- 
> "The Direct3D Graphics Pipeline" -- DirectX 9 draft
> available for download
>       
> 
>         Legalize Adulthood! 
> 
> --
> Are you an open source citizen? Join us for the Open Source
> Bridge conference!
> Portland, OR, June 17-19. Two days of sessions, one day of
> unconference: $250.
> Need another reason to go? 24-hour hacker lounge. Register
> today!
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 


  

--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to build a C# custom action project in CoreXT

2009-06-22 Thread Chad Petersen
I can add to the conversation that CoreXT is an internal MS-only build
environment. This blog has some details.

http://blogs.msdn.com/clichten/archive/2005/06/07/DDCPX-Aftermarket-Solu
tions.aspx

-Original Message-
From: Richard [mailto:legal...@xmission.com] 
Sent: Monday, June 22, 2009 2:11 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] How to build a C# custom action project in
CoreXT


In article
,
Lian Jiang   writes:

> I am using CoreXT and Wix3.5. A custom action project (*.csproj)
cannot be bu
ilt in the CoreXt.

What's CoreXT?  Googling doesn't seem to yield anything useful in the
first couple of pages, unless you're talking about java.
-- 
"The Direct3D Graphics Pipeline" -- DirectX 9 draft available for
download
  

Legalize Adulthood! 


--
Are you an open source citizen? Join us for the Open Source Bridge
conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference:
$250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebrid
ge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] What is the best way to troubleshoot an installer?

2009-06-22 Thread Brian Rogers
Hey Jim,

Try the link below or breakout the RegEx 

Wilogutl.exe
http://msdn.microsoft.com/en-us/library/aa372811(VS.85).aspx

Thanks,

Brian Rogers
"Intelligence removes complexity." - Me
http://icumove.spaces.live.com


On Mon, Jun 22, 2009 at 1:09 PM, MacDiarmid, James D <
james.macdiar...@eds.com> wrote:

>
> I'm looking through the install.log file, and I'm seeing a lot of stuff
> however I don't know what any of it means.  Is there anything that can
> offer any help in decyphering   it?
>
> Thanks,
> Jim
>
>
>
> --
> Are you an open source citizen? Join us for the Open Source Bridge
> conference!
> Portland, OR, June 17-19. Two days of sessions, one day of unconference:
> $250.
> Need another reason to go? 24-hour hacker lounge. Register today!
>
> http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Multiple Files in one component vs a single file per component

2009-06-22 Thread Brian Rogers
Hey Jim,

This is one issue. I don't have the full description right now.

Do you have one file per component? If not, which one is the keypath and
which one are you updating. If you are not updating the keypath, nothing in
the component will be updated.

http://blogs.msdn.com/pmarcu/archive/2007/06/28/sample-patch.aspx

Thanks,

Brian Rogers
"Intelligence removes complexity." - Me
http://icumove.spaces.live.com


On Fri, Jun 19, 2009 at 7:48 AM, MacDiarmid, James D <
james.macdiar...@eds.com> wrote:

>
> What is the impact patch/fix on doing an upgrade/patch/fix if I have
> multiple files in one component versus having a single file per
> component?   I remember reading something about this but I can't seem to
> locate it now.
>
> Thanks,
> Jim
>
>
>
> --
> Crystal Reports - New Free Runtime and 30 Day Trial
> Check out the new simplified licensing option that enables unlimited
> royalty-free distribution of the report engine for externally facing
> server and web deployment.
> http://p.sf.net/sfu/businessobjects
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users