Re: [WiX-users] Burn binder variables

2012-04-13 Thread Rob Mensching
Not today but it is an interesting request. Open a bug for now to get it on
the radar... might have to wait until v3.7... might slip into v3.6.

On Wed, Apr 11, 2012 at 1:52 PM, Neil Sleightholm n...@x2systems.comwrote:

 What I tend to do with my WiX msi is to set the msi version to the version
 of the primary file I am installing e.g.:
?define Version = !(bind.fileVersion.MyApplication.exe)
 ?

 What I would like to do is make the version of the msi the version of the
 burn bundle, is anything like that possible?

 Thanks

 Neil

 Neil Sleightholm
 X2 Systems Limited
 n...@x2systems.commailto:n...@x2systems.com


 --
 Better than sec? Nothing is better than sec when it comes to
 monitoring Big Data applications. Try Boundary one-second
 resolution app monitoring today. Free.
 http://p.sf.net/sfu/Boundary-dev2dev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




-- 
virtually, Rob Mensching - http://RobMensching.com LLC
--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Burn binder variables

2012-04-11 Thread Neil Sleightholm
What I tend to do with my WiX msi is to set the msi version to the version of 
the primary file I am installing e.g.:
?define Version = !(bind.fileVersion.MyApplication.exe) ?

What I would like to do is make the version of the msi the version of the burn 
bundle, is anything like that possible?

Thanks

Neil

Neil Sleightholm
X2 Systems Limited
n...@x2systems.commailto:n...@x2systems.com

--
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Burn VS2010 variables

2012-01-30 Thread Dieter Lunn
Does burn support variables in a bundle like the setup does? I have
added my custom bootstrapper and MSI as references and used the
variables, it compiles; however when running the installer it just
shows the splash screen before dying. Below are the bundle and burn
log.

?xml version=1.0 encoding=UTF-8?
Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
Bundle Name=Fend Reports Version=1.0.0.0 Manufacturer=***
UpgradeCode=cd19a42a-1973-4671-96b0-545c5b8ae3f6
SplashScreenSourceFile=SplashScreen.bmp
BootstrapperApplicationRef 
Id=ManagedBootstrapperApplicationHost
Payload SourceFile=BootstrapperCore.config/

Payload SourceFile=$(var.Fend.UX.TargetPath)/
Payload SourceFile=NetfxLicense.rtf/
/BootstrapperApplicationRef

Chain
PackageGroupRef Id=Netfx4Full/

RollbackBoundary /

MsiPackage Vital=yes Name=data\Fend.Setup.msi
SourceFile=$(var.Fend.Setup.TargetPath) /
/Chain
/Bundle
/Wix

[27E8:0ED8][2012-01-30T11:40:26]: Burn v3.6.2520.0, path:
C:\Users\Dieter\Documents\Visual Studio
2010\Projects\Fend\Fend.Boot\bin\Release\Fend.Boot.exe, cmdline: ''
[27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
'WixBundleLog' to value
'C:\Users\Dieter\AppData\Local\Temp\Fend_Reports_20120130114026.log'
[27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
'WixBundleName' to value 'Fend Reports'
[27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
'WixBundleOriginalSource' to value 'C:\Users\Dieter\Documents\Visual
Studio 2010\Projects\Fend\Fend.Boot\bin\Release\Fend.Boot.exe'
[27E8:0ED8][2012-01-30T11:40:26]: Loading managed bootstrapper application.
[27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to create
the managed bootstrapper application.
[27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to create UX.
[27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to load UX.
[27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed while running
[27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to run per-user mode.

Dieter Lunn
http://ubiety.ca

--
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Burn VS2010 variables

2012-01-30 Thread Rob Mensching
If you mean preprocessor variables? Yes, those are the same (they are
handled by the preprocess which runs before the compiler).  You might try
running dark -x dumpfolder path\to\bundle.exe and see what is in the
manifest. It is possible your preprocessor variable is not resolving to
what you think it is. smile/

On Mon, Jan 30, 2012 at 10:33 AM, Dieter Lunn coder2...@gmail.com wrote:

 Does burn support variables in a bundle like the setup does? I have
 added my custom bootstrapper and MSI as references and used the
 variables, it compiles; however when running the installer it just
 shows the splash screen before dying. Below are the bundle and burn
 log.

 ?xml version=1.0 encoding=UTF-8?
 Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
Bundle Name=Fend Reports Version=1.0.0.0 Manufacturer=***
 UpgradeCode=cd19a42a-1973-4671-96b0-545c5b8ae3f6
 SplashScreenSourceFile=SplashScreen.bmp
BootstrapperApplicationRef
 Id=ManagedBootstrapperApplicationHost
Payload SourceFile=BootstrapperCore.config/

Payload SourceFile=$(var.Fend.UX.TargetPath)/
Payload SourceFile=NetfxLicense.rtf/
/BootstrapperApplicationRef

Chain
PackageGroupRef Id=Netfx4Full/

RollbackBoundary /

MsiPackage Vital=yes Name=data\Fend.Setup.msi
 SourceFile=$(var.Fend.Setup.TargetPath) /
/Chain
/Bundle
 /Wix

 [27E8:0ED8][2012-01-30T11:40:26]: Burn v3.6.2520.0, path:
 C:\Users\Dieter\Documents\Visual Studio
 2010\Projects\Fend\Fend.Boot\bin\Release\Fend.Boot.exe, cmdline: ''
 [27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
 'WixBundleLog' to value
 'C:\Users\Dieter\AppData\Local\Temp\Fend_Reports_20120130114026.log'
 [27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
 'WixBundleName' to value 'Fend Reports'
 [27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
 'WixBundleOriginalSource' to value 'C:\Users\Dieter\Documents\Visual
 Studio 2010\Projects\Fend\Fend.Boot\bin\Release\Fend.Boot.exe'
 [27E8:0ED8][2012-01-30T11:40:26]: Loading managed bootstrapper application.
 [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to create
 the managed bootstrapper application.
 [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to create UX.
 [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to load UX.
 [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed while running
 [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to run per-user
 mode.

 Dieter Lunn
 http://ubiety.ca


 --
 Try before you buy = See our experts in action!
 The most comprehensive online learning library for Microsoft developers
 is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
 Metro Style Apps, more. Free future releases when you subscribe now!
 http://p.sf.net/sfu/learndevnow-dev2
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




-- 
virtually, Rob Mensching - http://RobMensching.com LLC
--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Burn VS2010 variables

2012-01-30 Thread Dieter Lunn
How does burn determine the class to run? The name of the dll? If so
can it be set in configuration?

Dieter Lunn
http://ubiety.ca



On Mon, Jan 30, 2012 at 10:45 PM, Rob Mensching r...@robmensching.com wrote:
 If you mean preprocessor variables? Yes, those are the same (they are
 handled by the preprocess which runs before the compiler).  You might try
 running dark -x dumpfolder path\to\bundle.exe and see what is in the
 manifest. It is possible your preprocessor variable is not resolving to
 what you think it is. smile/

 On Mon, Jan 30, 2012 at 10:33 AM, Dieter Lunn coder2...@gmail.com wrote:

 Does burn support variables in a bundle like the setup does? I have
 added my custom bootstrapper and MSI as references and used the
 variables, it compiles; however when running the installer it just
 shows the splash screen before dying. Below are the bundle and burn
 log.

 ?xml version=1.0 encoding=UTF-8?
 Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
        Bundle Name=Fend Reports Version=1.0.0.0 Manufacturer=***
 UpgradeCode=cd19a42a-1973-4671-96b0-545c5b8ae3f6
 SplashScreenSourceFile=SplashScreen.bmp
                BootstrapperApplicationRef
 Id=ManagedBootstrapperApplicationHost
                        Payload SourceFile=BootstrapperCore.config/

                        Payload SourceFile=$(var.Fend.UX.TargetPath)/
                        Payload SourceFile=NetfxLicense.rtf/
                /BootstrapperApplicationRef

                Chain
                        PackageGroupRef Id=Netfx4Full/

                        RollbackBoundary /

                        MsiPackage Vital=yes Name=data\Fend.Setup.msi
 SourceFile=$(var.Fend.Setup.TargetPath) /
                /Chain
        /Bundle
 /Wix

 [27E8:0ED8][2012-01-30T11:40:26]: Burn v3.6.2520.0, path:
 C:\Users\Dieter\Documents\Visual Studio
 2010\Projects\Fend\Fend.Boot\bin\Release\Fend.Boot.exe, cmdline: ''
 [27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
 'WixBundleLog' to value
 'C:\Users\Dieter\AppData\Local\Temp\Fend_Reports_20120130114026.log'
 [27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
 'WixBundleName' to value 'Fend Reports'
 [27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
 'WixBundleOriginalSource' to value 'C:\Users\Dieter\Documents\Visual
 Studio 2010\Projects\Fend\Fend.Boot\bin\Release\Fend.Boot.exe'
 [27E8:0ED8][2012-01-30T11:40:26]: Loading managed bootstrapper application.
 [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to create
 the managed bootstrapper application.
 [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to create UX.
 [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to load UX.
 [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed while running
 [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to run per-user
 mode.

 Dieter Lunn
 http://ubiety.ca


 --
 Try before you buy = See our experts in action!
 The most comprehensive online learning library for Microsoft developers
 is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
 Metro Style Apps, more. Free future releases when you subscribe now!
 http://p.sf.net/sfu/learndevnow-dev2
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




 --
 virtually, Rob Mensching - http://RobMensching.com LLC
 --
 Keep Your Developer Skills Current with LearnDevNow!
 The most comprehensive online learning library for Microsoft developers
 is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
 Metro Style Apps, more. Free future releases when you subscribe now!
 http://p.sf.net/sfu/learndevnow-d2d
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Burn VS2010 variables

2012-01-30 Thread Rob Mensching
Assembly attribute.

// Identifies the class that derives from BootstrapperApplication and is
the BA class that gets
// instantiated by the interop layer
[assembly: BootstrapperApplication(typeof(WixBA))]

On Mon, Jan 30, 2012 at 9:00 PM, Dieter Lunn coder2...@gmail.com wrote:

 How does burn determine the class to run? The name of the dll? If so
 can it be set in configuration?

 Dieter Lunn
 http://ubiety.ca



 On Mon, Jan 30, 2012 at 10:45 PM, Rob Mensching r...@robmensching.com
 wrote:
  If you mean preprocessor variables? Yes, those are the same (they are
  handled by the preprocess which runs before the compiler).  You might try
  running dark -x dumpfolder path\to\bundle.exe and see what is in the
  manifest. It is possible your preprocessor variable is not resolving to
  what you think it is. smile/
 
  On Mon, Jan 30, 2012 at 10:33 AM, Dieter Lunn coder2...@gmail.com
 wrote:
 
  Does burn support variables in a bundle like the setup does? I have
  added my custom bootstrapper and MSI as references and used the
  variables, it compiles; however when running the installer it just
  shows the splash screen before dying. Below are the bundle and burn
  log.
 
  ?xml version=1.0 encoding=UTF-8?
  Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
 Bundle Name=Fend Reports Version=1.0.0.0
 Manufacturer=***
  UpgradeCode=cd19a42a-1973-4671-96b0-545c5b8ae3f6
  SplashScreenSourceFile=SplashScreen.bmp
 BootstrapperApplicationRef
  Id=ManagedBootstrapperApplicationHost
 Payload SourceFile=BootstrapperCore.config/
 
 Payload SourceFile=$(var.Fend.UX.TargetPath)/
 Payload SourceFile=NetfxLicense.rtf/
 /BootstrapperApplicationRef
 
 Chain
 PackageGroupRef Id=Netfx4Full/
 
 RollbackBoundary /
 
 MsiPackage Vital=yes
 Name=data\Fend.Setup.msi
  SourceFile=$(var.Fend.Setup.TargetPath) /
 /Chain
 /Bundle
  /Wix
 
  [27E8:0ED8][2012-01-30T11:40:26]: Burn v3.6.2520.0, path:
  C:\Users\Dieter\Documents\Visual Studio
  2010\Projects\Fend\Fend.Boot\bin\Release\Fend.Boot.exe, cmdline: ''
  [27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
  'WixBundleLog' to value
  'C:\Users\Dieter\AppData\Local\Temp\Fend_Reports_20120130114026.log'
  [27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
  'WixBundleName' to value 'Fend Reports'
  [27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
  'WixBundleOriginalSource' to value 'C:\Users\Dieter\Documents\Visual
  Studio 2010\Projects\Fend\Fend.Boot\bin\Release\Fend.Boot.exe'
  [27E8:0ED8][2012-01-30T11:40:26]: Loading managed bootstrapper
 application.
  [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to create
  the managed bootstrapper application.
  [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to create UX.
  [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to load UX.
  [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed while running
  [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to run
 per-user
  mode.
 
  Dieter Lunn
  http://ubiety.ca
 
 
 
 --
  Try before you buy = See our experts in action!
  The most comprehensive online learning library for Microsoft developers
  is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
  Metro Style Apps, more. Free future releases when you subscribe now!
  http://p.sf.net/sfu/learndevnow-dev2
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users
 
 
 
 
  --
  virtually, Rob Mensching - http://RobMensching.com LLC
 
 --
  Keep Your Developer Skills Current with LearnDevNow!
  The most comprehensive online learning library for Microsoft developers
  is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
  Metro Style Apps, more. Free future releases when you subscribe now!
  http://p.sf.net/sfu/learndevnow-d2d
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users


 --
 Keep Your Developer Skills Current with LearnDevNow!
 The most comprehensive online learning library for Microsoft developers
 is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
 Metro Style Apps, more. Free future releases when you subscribe now!
 http://p.sf.net/sfu/learndevnow-d2d
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




-- 
virtually, Rob 

Re: [WiX-users] Burn VS2010 variables

2012-01-30 Thread Dieter Lunn
Thanks. I completely forgot that part.

Dieter Lunn
http://ubiety.ca



On Mon, Jan 30, 2012 at 11:10 PM, Rob Mensching r...@robmensching.com wrote:
 Assembly attribute.

 // Identifies the class that derives from BootstrapperApplication and is
 the BA class that gets
 // instantiated by the interop layer
 [assembly: BootstrapperApplication(typeof(WixBA))]

 On Mon, Jan 30, 2012 at 9:00 PM, Dieter Lunn coder2...@gmail.com wrote:

 How does burn determine the class to run? The name of the dll? If so
 can it be set in configuration?

 Dieter Lunn
 http://ubiety.ca



 On Mon, Jan 30, 2012 at 10:45 PM, Rob Mensching r...@robmensching.com
 wrote:
  If you mean preprocessor variables? Yes, those are the same (they are
  handled by the preprocess which runs before the compiler).  You might try
  running dark -x dumpfolder path\to\bundle.exe and see what is in the
  manifest. It is possible your preprocessor variable is not resolving to
  what you think it is. smile/
 
  On Mon, Jan 30, 2012 at 10:33 AM, Dieter Lunn coder2...@gmail.com
 wrote:
 
  Does burn support variables in a bundle like the setup does? I have
  added my custom bootstrapper and MSI as references and used the
  variables, it compiles; however when running the installer it just
  shows the splash screen before dying. Below are the bundle and burn
  log.
 
  ?xml version=1.0 encoding=UTF-8?
  Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
         Bundle Name=Fend Reports Version=1.0.0.0
 Manufacturer=***
  UpgradeCode=cd19a42a-1973-4671-96b0-545c5b8ae3f6
  SplashScreenSourceFile=SplashScreen.bmp
                 BootstrapperApplicationRef
  Id=ManagedBootstrapperApplicationHost
                         Payload SourceFile=BootstrapperCore.config/
 
                         Payload SourceFile=$(var.Fend.UX.TargetPath)/
                         Payload SourceFile=NetfxLicense.rtf/
                 /BootstrapperApplicationRef
 
                 Chain
                         PackageGroupRef Id=Netfx4Full/
 
                         RollbackBoundary /
 
                         MsiPackage Vital=yes
 Name=data\Fend.Setup.msi
  SourceFile=$(var.Fend.Setup.TargetPath) /
                 /Chain
         /Bundle
  /Wix
 
  [27E8:0ED8][2012-01-30T11:40:26]: Burn v3.6.2520.0, path:
  C:\Users\Dieter\Documents\Visual Studio
  2010\Projects\Fend\Fend.Boot\bin\Release\Fend.Boot.exe, cmdline: ''
  [27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
  'WixBundleLog' to value
  'C:\Users\Dieter\AppData\Local\Temp\Fend_Reports_20120130114026.log'
  [27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
  'WixBundleName' to value 'Fend Reports'
  [27E8:0ED8][2012-01-30T11:40:26]: Setting string variable
  'WixBundleOriginalSource' to value 'C:\Users\Dieter\Documents\Visual
  Studio 2010\Projects\Fend\Fend.Boot\bin\Release\Fend.Boot.exe'
  [27E8:0ED8][2012-01-30T11:40:26]: Loading managed bootstrapper
 application.
  [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to create
  the managed bootstrapper application.
  [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to create UX.
  [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to load UX.
  [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed while running
  [27E8:0ED8][2012-01-30T11:40:26]: Error 0x80131508: Failed to run
 per-user
  mode.
 
  Dieter Lunn
  http://ubiety.ca
 
 
 
 --
  Try before you buy = See our experts in action!
  The most comprehensive online learning library for Microsoft developers
  is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
  Metro Style Apps, more. Free future releases when you subscribe now!
  http://p.sf.net/sfu/learndevnow-dev2
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users
 
 
 
 
  --
  virtually, Rob Mensching - http://RobMensching.com LLC
 
 --
  Keep Your Developer Skills Current with LearnDevNow!
  The most comprehensive online learning library for Microsoft developers
  is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
  Metro Style Apps, more. Free future releases when you subscribe now!
  http://p.sf.net/sfu/learndevnow-d2d
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users


 --
 Keep Your Developer Skills Current with LearnDevNow!
 The most comprehensive online learning library for Microsoft developers
 is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
 Metro Style Apps, more. Free future releases when you subscribe now!
 http://p.sf.net/sfu/learndevnow-d2d
 

[WiX-users] Burn and variables

2011-12-20 Thread Gilles QUERRET
Hello,


I'm using burn to create an install bundle, and I'd like to pass
variables from the command line to ExePackage InstallCommand. A
shortened version of my WXS file is :
Wix
 Bundle
  ExePackage Source=setup.exe InstallCommand=-psc_s [MYVAR]
 /Bundle
/Wix
I'm using MyBundle.exe MYVAR=foo /quiet to install the bundle, but
when using process explorer, setup.exe is never thrown with my
variable set.
Is there something wrong in the InstallCommand syntax ? Or in the
MyBundle.exe command line ?


Thanks a lot !

-- 
Gilles QUERRET

--
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
http://p.sf.net/sfu/intel-appdev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Burn and variables

2011-12-20 Thread Ian Williams
Command line variables given to the bundle are passed to the BA.  The WixStdBA 
currently does not turn them into variables that you can use in your bundle. 

-Original Message-
From: Gilles QUERRET [mailto:g.quer...@gmail.com] 
Sent: Tuesday, December 20, 2011 7:11 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Burn and variables

Hello,


I'm using burn to create an install bundle, and I'd like to pass variables from 
the command line to ExePackage InstallCommand. A shortened version of my WXS 
file is :
Wix
 Bundle
  ExePackage Source=setup.exe InstallCommand=-psc_s [MYVAR]  /Bundle 
/Wix I'm using MyBundle.exe MYVAR=foo /quiet to install the bundle, but 
when using process explorer, setup.exe is never thrown with my variable set.
Is there something wrong in the InstallCommand syntax ? Or in the MyBundle.exe 
command line ?


Thanks a lot !

--
Gilles QUERRET

--
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create new or 
port existing apps to sell to consumers worldwide. Explore the Intel AppUpSM 
program developer opportunity. appdeveloper.intel.com/join 
http://p.sf.net/sfu/intel-appdev ___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users






--
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
http://p.sf.net/sfu/intel-appdev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Burn and variables

2011-12-20 Thread Gilles QUERRET
Thanks for your answer. Is this a planned feature to add parameters to
*Package installCommand ?


Gilles

On Tue, Dec 20, 2011 at 7:31 PM, Ian Williams iawil...@microsoft.com wrote:
 Command line variables given to the bundle are passed to the BA.  The 
 WixStdBA currently does not turn them into variables that you can use in your 
 bundle.

 -Original Message-
 From: Gilles QUERRET [mailto:g.quer...@gmail.com]
 Sent: Tuesday, December 20, 2011 7:11 AM
 To: wix-users@lists.sourceforge.net
 Subject: [WiX-users] Burn and variables

 Hello,


 I'm using burn to create an install bundle, and I'd like to pass variables 
 from the command line to ExePackage InstallCommand. A shortened version of my 
 WXS file is :
 Wix
  Bundle
  ExePackage Source=setup.exe InstallCommand=-psc_s [MYVAR]  /Bundle 
 /Wix I'm using MyBundle.exe MYVAR=foo /quiet to install the bundle, but 
 when using process explorer, setup.exe is never thrown with my variable set.
 Is there something wrong in the InstallCommand syntax ? Or in the 
 MyBundle.exe command line ?


 Thanks a lot !

 --
 Gilles QUERRET

 --
 Write once. Port to many.
 Get the SDK and tools to simplify cross-platform app development. Create new 
 or port existing apps to sell to consumers worldwide. Explore the Intel 
 AppUpSM program developer opportunity. appdeveloper.intel.com/join 
 http://p.sf.net/sfu/intel-appdev 
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users






 --
 Write once. Port to many.
 Get the SDK and tools to simplify cross-platform app development. Create
 new or port existing apps to sell to consumers worldwide. Explore the
 Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
 http://p.sf.net/sfu/intel-appdev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users



-- 
Gilles QUERRET

Riverside Software
15d route de Bellevue • 69440 Mornant • France
Mob : +33 662.525.532

--
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
http://p.sf.net/sfu/intel-appdev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users