Re: [WiX-users] Using Paraffin with TFS

2012-10-30 Thread John Robbins
As the author of Paraffin I must warn you that running Paraffin as part of your 
build will potentially cause problems with component GUIDs and minor updates. 
(I'm required to say that because if you screw up future upgrades, don't blame 
me).

Anyway, TFS Build and the OutputDir problem is well known, though for web 
applications it's kind of nice that a build only includes what you need on the 
web server. Jason Stangroome has written about an approach to fix the problem 
with TFS 2012 Build: 
http://blog.codeassassin.com/2012/05/10/override-the-tfs-team-build-outdir-property-net-4-5/.

Hope it helps!

John
Co-founder - Wintellect
@JohnWintellect | 
Blog
+1-206-321-7341

On Oct 30, 2012, at 8:13 PM, David Gardiner 
mailto:da...@gardiner.net.au>> wrote:

(question also posted to
http://stackoverflow.com/questions/13133387/using-paraffin-with-tfs)

I have a solution that has a number of Wix projects that I'd like to use
Paraffin for maintaining the list of included files.

>From what I understand, you'd normally point Paraffin at the various bin
folders to collect all the files.

When TFS builds a solution, it overrides the OutDir/OutputPath msbuild
property, which results in all the build outputs going to a common Binaries
directory, rather than each project's bin folder.

So how do people use Paraffin in this scenario?

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


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


Re: [WiX-users] Localizing component GUIDs

2012-10-30 Thread Rob Mensching
Use autogenerated GUIDs and don't worry about it. 

On Tue, Oct 30, 2012 at 9:52 PM, Nick Ramirez  wrote:

> Oh, glad I asked then. The way that I've done localizable text in software
> has been to use a satellite assembly. In that case, I think that each set
> of
> localized strings gets its own assembly (if I am remembering that
> correctly). Maybe best practice is to include all of these assemblies in
> the
> install, but possibly only install the "extra" language assemblies if some
> optional Feature is selected. (In that case, localization variables
> probably
> aren't necessary and everything is handled by including components in the
> proper features.)
>
> I just thought that there might be a situation where someone would want to
> change the GUID on a component if the MSI is built for a different
> language?
> If that ever happens (and it may not), is using a localization variable not
> the best way to go about switching the GUID on a component? I'm a little
> out
> of my depth here. Is this something that isn't really ever done?
>
>
>
> --
> View this message in context:
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Localizing-component-GUIDs-tp7581681p7581684.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_sfd2d_oct
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>



-- 
virtually,

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


Re: [WiX-users] Localizing component GUIDs

2012-10-30 Thread Nick Ramirez
Oh, glad I asked then. The way that I've done localizable text in software
has been to use a satellite assembly. In that case, I think that each set of
localized strings gets its own assembly (if I am remembering that
correctly). Maybe best practice is to include all of these assemblies in the
install, but possibly only install the "extra" language assemblies if some
optional Feature is selected. (In that case, localization variables probably
aren't necessary and everything is handled by including components in the
proper features.)

I just thought that there might be a situation where someone would want to
change the GUID on a component if the MSI is built for a different language?
If that ever happens (and it may not), is using a localization variable not
the best way to go about switching the GUID on a component? I'm a little out
of my depth here. Is this something that isn't really ever done?



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Localizing-component-GUIDs-tp7581681p7581684.html
Sent from the wix-users mailing list archive at Nabble.com.

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


Re: [WiX-users] Localizing component GUIDs

2012-10-30 Thread Rob Mensching
Yes. Loc variables are not intended to be used the way you are doing them.

On Tue, Oct 30, 2012 at 9:23 PM, Nick Ramirez  wrote:

> This is not a big issue, really just something I stumbled on and am curious
> about. If I use a localization variable in a component's GUID, like this:
>
> /
>
> /
>
> And then add a .wxl file:
>
> /
>  xmlns="http://schemas.microsoft.com/wix/2006/localization";>
>   * Localizable="no">{872EAAB7-BDE1-4EF4-89C6-97664705CB0F}*
> /
>
> I've noticed that if the GUID in the .wxl has the curly braces, everything
> works. If it doesn't have the curly braces, I get the error:
>
> ICE03: Invalid GUID string (Be sure GUID is all UPPER case)
>
>
> Does this have to do with localization variables just being inserted
> "as-is"
> into the MSI, whereas if WiX were to know you were giving it a GUID, it
> would add the curly braces by using the ToString("B")? I found this code is
> called during compilation (but I am assuming, not linking?):
>
> Uuid.NewUuid(namespaceGuid, value,
> false).ToString("B").ToUpper(CultureInfo.InvariantCulture);
>
> where the string called "value" is known to be a GUID. I guess I am really
> just trying to learn if there is an absence of modification to localization
> variables?
>
>
>
>
>
> --
> View this message in context:
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Localizing-component-GUIDs-tp7581681.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_sfd2d_oct
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>



-- 
virtually,

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


[WiX-users] Localizing component GUIDs

2012-10-30 Thread Nick Ramirez
This is not a big issue, really just something I stumbled on and am curious
about. If I use a localization variable in a component's GUID, like this:

/
   
/

And then add a .wxl file:

/
http://schemas.microsoft.com/wix/2006/localization";>
  *{872EAAB7-BDE1-4EF4-89C6-97664705CB0F}*
/

I've noticed that if the GUID in the .wxl has the curly braces, everything
works. If it doesn't have the curly braces, I get the error:

ICE03: Invalid GUID string (Be sure GUID is all UPPER case)


Does this have to do with localization variables just being inserted "as-is"
into the MSI, whereas if WiX were to know you were giving it a GUID, it
would add the curly braces by using the ToString("B")? I found this code is
called during compilation (but I am assuming, not linking?):

Uuid.NewUuid(namespaceGuid, value,
false).ToString("B").ToUpper(CultureInfo.InvariantCulture);

where the string called "value" is known to be a GUID. I guess I am really
just trying to learn if there is an absence of modification to localization
variables?





--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Localizing-component-GUIDs-tp7581681.html
Sent from the wix-users mailing list archive at Nabble.com.

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


[WiX-users] Using Paraffin with TFS

2012-10-30 Thread David Gardiner
(question also posted to
http://stackoverflow.com/questions/13133387/using-paraffin-with-tfs)

I have a solution that has a number of Wix projects that I'd like to use
Paraffin for maintaining the list of included files.

>From what I understand, you'd normally point Paraffin at the various bin
folders to collect all the files.

When TFS builds a solution, it overrides the OutDir/OutputPath msbuild
property, which results in all the build outputs going to a common Binaries
directory, rather than each project's bin folder.

So how do people use Paraffin in this scenario?

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


Re: [WiX-users] util:RegistrySearch default value

2012-10-30 Thread Rob Mensching
I don't know that it is a bug (it's a reasonable behavior)... but the
ability to have a default value is certainly a reasonable feature request.

On Tue, Oct 30, 2012 at 7:55 AM, Neil Sleightholm wrote:

> It doesn't seem to work, it undefines the variable if the registry value
> doesn't exist.
>
> So this is what I am trying:
>  bal:Overridable="yes" />
>  Variable="Test" />
>
> It I run the bundle and look in the log I see this:
> [2080:1F4C][2012-10-30T14:49:33]: Initializing numeric variable 'Test' to
> value '1'
>
> But if the registry value doesn't exist at the end of the log file where
> the variables are listed "Test" is missing.
>
> As a workaround I am having to do this:
>  bal:Overridable="yes" />
>  Result="exists" Variable="TestSearch" />
>  Variable="Test" Condition="TestSearch" />
>
> Is this a bug?
>
> Neil
>
> -Original Message-
> From: Rob Mensching [mailto:r...@robmensching.com]
> Sent: 30 October 2012 13:55
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] util:RegistrySearch default value
>
> Does it work if you define the Variable and give it a value? The
> RegistrySearch runs later and should update it.
>
> On Mon, Oct 29, 2012 at 3:05 PM, Neil Sleightholm  >wrote:
>
> > Is it possible to set a variable to a default value if a registry
> > value doesn't exist  when using the util:RegistrySearch in a bundle
> > like you can with Properties and RegistrySearch in an MSI?
> >
> > Neil
> >
> > Neil Sleightholm
> > X2 Systems Limited
> > n...@x2systems.com
> >
> >
> > --
> >  The Windows 8 Center - In partnership with Sourceforge Your
> > idea - your app - 30 days.
> > Get started!
> > http://windows8center.sourceforge.net/
> > what-html-developers-need-to-know-about-coding-windows-8-metro-style-a
> > pps/ ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
>
>
>
> --
> virtually,
>
>Rob Mensching
>http://RobMensching.com LLC
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics Download AppDynamics Lite for
> free today:
> http://p.sf.net/sfu/appdyn_sfd2d_oct
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_sfd2d_oct
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>



-- 
virtually,

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


Re: [WiX-users] Burn and MsiProperty

2012-10-30 Thread Rob Mensching
The BA can do this. The wixstdba does.

On Tue, Oct 30, 2012 at 7:28 AM, Hoover, Jacob
wrote:

> I have a need to allow customers to customize the behavior of the "main"
> MSI my bundle is installing. Is it possible to configure burn in such a way
> that a command line parameter can be passed to a MsiProperty (via  Name="Foo" Overridable="yes" /> ) but then only pass the MsiProperty if
> it's value is defined? If the engine currently doesn't support this, I
> don't think it would be that difficult to modify the MsiProperty schema to
> allow a SuppressEmpty attribute to not pass the parameter if the value is
> an empty string. Also, would burn support a transform in this manner as
> long as it is only changing public properties?
>
> Thanks,
> Jacob
>
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_sfd2d_oct
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>



-- 
virtually,

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


Re: [WiX-users] WiX 3.5 and WiX 3.6 coexistance on one build machine

2012-10-30 Thread Rob Mensching
WiX v3.x is not side-by-side when installed. That's why we support the
binaries.zip as Neil pointed out.

On Tue, Oct 30, 2012 at 10:00 AM, Neil Sleightholm wrote:

> Not sure I follow, this does allow you to have both versions on the host,
> you don't have to put it in source control.
>
> Neil
>
> -Original Message-
> From: Vazhenin, Maksim [mailto:maksim.vazhe...@emc.com]
> Sent: 30 October 2012 16:09
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] WiX 3.5 and WiX 3.6 coexistance on one build
> machine
>
> I know about this approach but I'm interested if there is a way to install
> both versions on the host.
> Not to store it in source control.
> As I see 3.6 removes 3.5 traces. For me it makes more sense to have
> ability to have different versions of WiX installed on one host, like VS...
> To not introduce problems for developers supporting old products which use
> 3.5 and new products which use 3.6.
>
> -Maksim
>
> -Original Message-
> From: Neil Sleightholm [mailto:n...@x2systems.com]
> Sent: Tuesday, October 30, 2012 7:27 PM
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] WiX 3.5 and WiX 3.6 coexistance on one build
> machine
>
> See here http://wix.sourceforge.net/manual-wix3/daily_builds.htm for one
> approach.
>
> Neil
>
> -Original Message-
> From: Vazhenin, Maksim [mailto:maksim.vazhe...@emc.com]
> Sent: 30 October 2012 15:20
> To: General discussion for Windows Installer XML toolset.
> Subject: [WiX-users] WiX 3.5 and WiX 3.6 coexistance on one build machine
>
> Hi All,
>
> Is there a way to have both WiX 3.5 and 3.6 versions installed on one
> build machine?
>
> Thanks,
> Maksim
>
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics Download AppDynamics Lite for
> free today:
> http://p.sf.net/sfu/appdyn_sfd2d_oct
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics Download AppDynamics Lite for
> free today:
> http://p.sf.net/sfu/appdyn_sfd2d_oct
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics Download AppDynamics Lite for
> free today:
> http://p.sf.net/sfu/appdyn_sfd2d_oct
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_sfd2d_oct
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>



-- 
virtually,

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


Re: [WiX-users] FW: Windows 8

2012-10-30 Thread Peter Shirtcliffe
You need to write your program as a Windows Store App if you want control of
the picture (as far as we know).

-Original Message-
From: Michael Ogilvie [mailto:michael.ogil...@pixelink.com] 
Sent: 30 October 2012 16:41
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] FW: Windows 8

Are you sure, from what I have found the tile picture is a png not a icon.

Is there any way to change the tile size of the shortcut?


Thank you,
Michael Ogilvie

-Original Message-
From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com]
Sent: Tuesday, October 30, 2012 11:39 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] FW: Windows 8

It's the shortcut icon. See the Shortcut element.

-Original Message-
From: Michael Ogilvie [mailto:michael.ogil...@pixelink.com]
Sent: 30 October 2012 14:34
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] FW: Windows 8

Does anybody know how to change the pic for your file shortcut on the
new windows 8 metro startmenu? 

 

 

Thank you,

Michael Ogilvie

 


-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
SDL PLC confidential, all rights reserved.
If you are not the intended recipient of this mail SDL requests and requires
that you delete it without acting upon or copying any of its contents, and we
further request that you advise us.
SDL PLC is a public limited company registered in England and Wales.
Registered number: 02675207.
Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire
SL6 7DY, UK.



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

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

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


Re: [WiX-users] WiX 3.5 and WiX 3.6 coexistance on one build machine

2012-10-30 Thread Neil Sleightholm
Not sure I follow, this does allow you to have both versions on the host, you 
don't have to put it in source control.

Neil

-Original Message-
From: Vazhenin, Maksim [mailto:maksim.vazhe...@emc.com] 
Sent: 30 October 2012 16:09
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] WiX 3.5 and WiX 3.6 coexistance on one build machine

I know about this approach but I'm interested if there is a way to install both 
versions on the host.
Not to store it in source control.
As I see 3.6 removes 3.5 traces. For me it makes more sense to have ability to 
have different versions of WiX installed on one host, like VS...
To not introduce problems for developers supporting old products which use 3.5 
and new products which use 3.6.

-Maksim

-Original Message-
From: Neil Sleightholm [mailto:n...@x2systems.com]
Sent: Tuesday, October 30, 2012 7:27 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] WiX 3.5 and WiX 3.6 coexistance on one build machine

See here http://wix.sourceforge.net/manual-wix3/daily_builds.htm for one 
approach.

Neil

-Original Message-
From: Vazhenin, Maksim [mailto:maksim.vazhe...@emc.com]
Sent: 30 October 2012 15:20
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] WiX 3.5 and WiX 3.6 coexistance on one build machine

Hi All,

Is there a way to have both WiX 3.5 and 3.6 versions installed on one build 
machine?

Thanks,
Maksim

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

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


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

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


Re: [WiX-users] FW: Windows 8

2012-10-30 Thread Michael Ogilvie
Are you sure, from what I have found the tile picture is a png not a
icon.

Is there any way to change the tile size of the shortcut?


Thank you,
Michael Ogilvie

-Original Message-
From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] 
Sent: Tuesday, October 30, 2012 11:39 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] FW: Windows 8

It's the shortcut icon. See the Shortcut element.

-Original Message-
From: Michael Ogilvie [mailto:michael.ogil...@pixelink.com]
Sent: 30 October 2012 14:34
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] FW: Windows 8

Does anybody know how to change the pic for your file shortcut on the
new windows 8 metro startmenu? 

 

 

Thank you,

Michael Ogilvie

 


-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for
free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
SDL PLC confidential, all rights reserved.
If you are not the intended recipient of this mail SDL requests and
requires that you delete it without acting upon or copying any of its
contents, and we further request that you advise us.
SDL PLC is a public limited company registered in England and Wales.
Registered number: 02675207.
Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire
SL6 7DY, UK.



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

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


Re: [WiX-users] WiX 3.5 and WiX 3.6 coexistance on one build machine

2012-10-30 Thread Vazhenin, Maksim
I know about this approach but I'm interested if there is a way to install both 
versions on the host.
Not to store it in source control.
As I see 3.6 removes 3.5 traces. For me it makes more sense to have ability to 
have different versions of WiX installed on one host, like VS...
To not introduce problems for developers supporting old products which use 3.5 
and new products which use 3.6.

-Maksim

-Original Message-
From: Neil Sleightholm [mailto:n...@x2systems.com] 
Sent: Tuesday, October 30, 2012 7:27 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] WiX 3.5 and WiX 3.6 coexistance on one build machine

See here http://wix.sourceforge.net/manual-wix3/daily_builds.htm for one 
approach.

Neil

-Original Message-
From: Vazhenin, Maksim [mailto:maksim.vazhe...@emc.com]
Sent: 30 October 2012 15:20
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] WiX 3.5 and WiX 3.6 coexistance on one build machine

Hi All,

Is there a way to have both WiX 3.5 and 3.6 versions installed on one build 
machine?

Thanks,
Maksim

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

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


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


Re: [WiX-users] FW: Windows 8

2012-10-30 Thread Peter Shirtcliffe
It's the shortcut icon. See the Shortcut element.

-Original Message-
From: Michael Ogilvie [mailto:michael.ogil...@pixelink.com] 
Sent: 30 October 2012 14:34
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] FW: Windows 8

Does anybody know how to change the pic for your file shortcut on the
new windows 8 metro startmenu? 

 

 

Thank you,

Michael Ogilvie

 

-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
SDL PLC confidential, all rights reserved.
If you are not the intended recipient of this mail SDL requests and requires 
that you delete it without acting upon or copying any of its contents, and we 
further request that you advise us.
SDL PLC is a public limited company registered in England and Wales.  
Registered number: 02675207.
Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire SL6 7DY, 
UK.


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


Re: [WiX-users] WiX 3.5 and WiX 3.6 coexistance on one build machine

2012-10-30 Thread Neil Sleightholm
See here http://wix.sourceforge.net/manual-wix3/daily_builds.htm for one 
approach.

Neil

-Original Message-
From: Vazhenin, Maksim [mailto:maksim.vazhe...@emc.com] 
Sent: 30 October 2012 15:20
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] WiX 3.5 and WiX 3.6 coexistance on one build machine

Hi All,

Is there a way to have both WiX 3.5 and 3.6 versions installed on one build 
machine?

Thanks,
Maksim

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

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


[WiX-users] WiX 3.5 and WiX 3.6 coexistance on one build machine

2012-10-30 Thread Vazhenin, Maksim
Hi All,

Is there a way to have both WiX 3.5 and 3.6 versions installed on one build 
machine?

Thanks,
Maksim

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


Re: [WiX-users] util:RegistrySearch default value

2012-10-30 Thread Neil Sleightholm
It doesn't seem to work, it undefines the variable if the registry value 
doesn't exist.

So this is what I am trying:



It I run the bundle and look in the log I see this:
[2080:1F4C][2012-10-30T14:49:33]: Initializing numeric variable 'Test' to value 
'1'

But if the registry value doesn't exist at the end of the log file where the 
variables are listed "Test" is missing.

As a workaround I am having to do this:




Is this a bug?

Neil

-Original Message-
From: Rob Mensching [mailto:r...@robmensching.com] 
Sent: 30 October 2012 13:55
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] util:RegistrySearch default value

Does it work if you define the Variable and give it a value? The RegistrySearch 
runs later and should update it.

On Mon, Oct 29, 2012 at 3:05 PM, Neil Sleightholm wrote:

> Is it possible to set a variable to a default value if a registry 
> value doesn't exist  when using the util:RegistrySearch in a bundle 
> like you can with Properties and RegistrySearch in an MSI?
>
> Neil
>
> Neil Sleightholm
> X2 Systems Limited
> n...@x2systems.com
>
>
> --
>  The Windows 8 Center - In partnership with Sourceforge Your 
> idea - your app - 30 days.
> Get started!
> http://windows8center.sourceforge.net/
> what-html-developers-need-to-know-about-coding-windows-8-metro-style-a
> pps/ ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>



--
virtually,

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

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


[WiX-users] FW: Windows 8

2012-10-30 Thread Michael Ogilvie
Does anybody know how to change the pic for your file shortcut on the
new windows 8 metro startmenu? 

 

 

Thank you,

Michael Ogilvie

 

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


[WiX-users] Burn and MsiProperty

2012-10-30 Thread Hoover, Jacob
I have a need to allow customers to customize the behavior of the "main" MSI my 
bundle is installing. Is it possible to configure burn in such a way that a 
command line parameter can be passed to a MsiProperty (via  ) but then only pass the MsiProperty if it's value is 
defined? If the engine currently doesn't support this, I don't think it would 
be that difficult to modify the MsiProperty schema to allow a SuppressEmpty 
attribute to not pass the parameter if the value is an empty string. Also, 
would burn support a transform in this manner as long as it is only changing 
public properties?

Thanks,
Jacob

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


Re: [WiX-users] util:RegistrySearch default value

2012-10-30 Thread Rob Mensching
Does it work if you define the Variable and give it a value? The
RegistrySearch runs later and should update it.

On Mon, Oct 29, 2012 at 3:05 PM, Neil Sleightholm wrote:

> Is it possible to set a variable to a default value if a registry value
> doesn't exist  when using the util:RegistrySearch in a bundle like you can
> with Properties and RegistrySearch in an MSI?
>
> Neil
>
> Neil Sleightholm
> X2 Systems Limited
> n...@x2systems.com
>
>
> --
> The Windows 8 Center - In partnership with Sourceforge
> Your idea - your app - 30 days.
> Get started!
> http://windows8center.sourceforge.net/
> what-html-developers-need-to-know-about-coding-windows-8-metro-style-apps/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>



-- 
virtually,

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


Re: [WiX-users] How to load liberary(dll) from custom action?

2012-10-30 Thread Peter Shirtcliffe
Is this a per-user or per-machine installer ? Are you loading the dll
dynamically ? Are you specifying the full path ? The current directory for a
custom action is, I think, System32.
Installing something to TEMP is a bit odd. TEMP is a per-user location and
will vary depending on installation context and the phase of installation (in
script or not). A verbose log will tell you exactly where things are being
installed to.
If you're using DTF C# custom actions, it can unpack dependencies for you. If
you're using C++ you can extract files from the binary table in your custom
action. Both approaches have been discussed on the list.

-Original Message-
From: tzleon [mailto:tzl...@gmail.com] 
Sent: 30 October 2012 08:39
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] How to load liberary(dll) from custom action?

Hi,

I need to create a sqlite database in my installation, so I have to load the
splite3.dll file in the custom action which contain in my msi file. But the
problem is how to processing this?
I tried to install the splite3.dll to the temporary folder, but the custom
action could not find the file after the "InstallFinalize" action, why? And
how to process it correctly?



--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-load-lib
erary-dll-from-custom-action-tp7581660.html
Sent from the wix-users mailing list archive at Nabble.com.

-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
SDL PLC confidential, all rights reserved.
If you are not the intended recipient of this mail SDL requests and requires 
that you delete it without acting upon or copying any of its contents, and we 
further request that you advise us.
SDL PLC is a public limited company registered in England and Wales.  
Registered number: 02675207.
Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire SL6 7DY, 
UK.


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


Re: [WiX-users] Minor upgrade

2012-10-30 Thread Peter Shirtcliffe
Are you using the correct command line to install it ?
http://msdn.microsoft.com/en-us/library/windows/desktop/aa367575%28v=vs.85%29
.aspx


-Original Message-
From: Chaitanya [mailto:chaita...@pointcross.com] 
Sent: 30 October 2012 05:59
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] Minor upgrade

Hi

Iam trying minor upgrade.i changed package code and product version.

But still its not working.just guide me where iam doing wrong.

Thank you,

Chaitanya.

 

-
-
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free
today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
SDL PLC confidential, all rights reserved.
If you are not the intended recipient of this mail SDL requests and requires 
that you delete it without acting upon or copying any of its contents, and we 
further request that you advise us.
SDL PLC is a public limited company registered in England and Wales.  
Registered number: 02675207.
Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire SL6 7DY, 
UK.


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


[WiX-users] How to load liberary(dll) from custom action?

2012-10-30 Thread tzleon
Hi,

I need to create a sqlite database in my installation, so I have to load the
splite3.dll file in the custom action which contain in my msi file. But the
problem is how to processing this?
I tried to install the splite3.dll to the temporary folder, but the custom
action could not find the file after the "InstallFinalize" action, why? And
how to process it correctly?



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-load-liberary-dll-from-custom-action-tp7581660.html
Sent from the wix-users mailing list archive at Nabble.com.

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