Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-11-28 Thread dileep s
Hi Blair, Thank you for the information.. Can you give some example to call the BootStrapper Install action using PFN_BOOTSTRAPPER_APPLICATION_CREATE method . Please help me... Thanks in advance On Thu, Nov 28, 2013 at 2:20 PM, Blair Murri wrote: > When your PFN_BOOTSTRAPPER_APPLICATION_CR

Re: [WiX-users] Cannot create patch using 3.7/3.8 when original MSI built with 3.5

2013-11-28 Thread Rob Goodridge
> Torch.exe -nologo -p -xi "PATCHCHK_en-us.wixpdb" "\PATCHCHK_en-us.wixpdb" > -out "\PATCHCHK.wixmst" > > error TRCH0279 : The table definition of 'WixVariable' in the target > database does not match the table definition in the updated database. A > transform requires that the target database sche

Re: [WiX-users] Upgrades

2013-11-28 Thread Michael Ogilvie
Hello Phil, Thanks for the info. >From the log files it looks like it uninstalls the stuff twice. >From the install logs of the MSI it goes through the uninstall then the install then it looks like Burn also uninstalls the old version. just does not make sense. Thank you, Michael Ogilvie --

Re: [WiX-users] Localization of a Bootstrapper (Messages of bal:Condition) [P]

2013-11-28 Thread Steven Ogilvie
Classification: Public http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-Localization-Identifiers-Duplicated-td7586776.html http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Using-burn-for-installer-localization-td7583910.html -Original Message- From: Nicolás

Re: [WiX-users] Localization of a Bootstrapper (Messages of bal:Condition) [P]

2013-11-28 Thread Nicolás Alvarez
The tutorial was written before Burn even existed, how would it help? -- Nicolás 2013/11/28 Steven Ogilvie : > Classification: Public > Look at the WIX tutorial: http://wix.tramontana.co.hu/tutorial/localization > > > -Original Message- > From: nianderneves [mailto:niander.ne...@gmail.co

Re: [WiX-users] Localization of a Bootstrapper (Messages of bal:Condition) [P]

2013-11-28 Thread Steven Ogilvie
Classification: Public Look at the WIX tutorial: http://wix.tramontana.co.hu/tutorial/localization -Original Message- From: nianderneves [mailto:niander.ne...@gmail.com] Sent: November-28-13 11:40 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Localization of a Bootstrapp

Re: [WiX-users] WiX v3.8 released!

2013-11-28 Thread Bob Arnson
The final build number is 3.8.1128.0. On 28-Nov-13 11:48, Nicolás Alvarez wrote: > 2013/11/28 Rob Mensching : >> WiX v3.8 released: http://wixtoolset.org/releases/v3.8/stable >> >> Read more about it here: >> http://robmensching.com/blog/posts/2013/11/28/wix-v3.8-released >> >> A big thank you to

Re: [WiX-users] WiX v3.8 released!

2013-11-28 Thread Nicolás Alvarez
2013/11/28 Rob Mensching : > WiX v3.8 released: http://wixtoolset.org/releases/v3.8/stable > > Read more about it here: > http://robmensching.com/blog/posts/2013/11/28/wix-v3.8-released > > A big thank you to all the new contributors that helped make this the best > release of the WiX toolset yet

Re: [WiX-users] WiX v3.8 released! [P]

2013-11-28 Thread Steven Ogilvie
Classification: Public Awesome news Rob... Can two versions of WIX co-exist on a build machine? i.e. 3.7 and 3.8 Thanks, Steve -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: November-28-13 11:39 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] WiX

Re: [WiX-users] Localization of a Bootstrapper (Messages of bal:Condition) [P]

2013-11-28 Thread nianderneves
Tank you for your response. However, I think that the correct would be: !(loc.InstallConditionWrongPrivileges). Nevertheless, that is not the point. If I do what you did for more than one language wix will say that there is more than one string with the same ID so I can't make more than one wxl. D

[WiX-users] WiX v3.8 released!

2013-11-28 Thread Rob Mensching
WiX v3.8 released: http://wixtoolset.org/releases/v3.8/stable Read more about it here: http://robmensching.com/blog/posts/2013/11/28/wix-v3.8-released A big thank you to all the new contributors that helped make this the best release of the WiX toolset yet.

Re: [WiX-users] Localization of a Bootstrapper (Messages of bal:Condition) [P]

2013-11-28 Thread Steven Ogilvie
Classification: Public In the bundle.wxs Privileged Then in the wxl file I have the string: [WixBundleName] requires administrator privileges. You would need to create that string for each language Steve -Original Message- From: nianderneves [mailto:niander.ne...@gmail.com

[WiX-users] Localization of a Bootstrapper (Messages of bal:Condition)

2013-11-28 Thread nianderneves
Hi, I'm using the StandardBootstrapperApplication.RtfLicense and I got the localization like this: That works perfectly. However I'm using some conditions with the tag . Like this: Condition <> 1 I need to Localize the message shown by this condition. How can I do this? Tha

[WiX-users] Unable to switch ASP.NET to version 4.0

2013-11-28 Thread Suvrajyoti Panda
Hi All, I am trying to set the asp.net version to 4.0. I have below piece of code in my product.wxs : Switch ASP.NET to version 4.0: ASPNETREGIIS AND NOT Installed The installer gets created but throws the below error : I beli

[WiX-users] [WIX]: How to add ListView control using themes

2013-11-28 Thread dileep s
Hi All, How to add ListView control in themes file? I have create ListView control in HyperlinkTheme.xml Book1 Book2 Next Is building correctly. When I ran the bootstrapper.exe it doesnot show any UI. I think its got corrupted? How to add ListView control using themes? Can an

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-11-28 Thread Blair Murri
When your PFN_BOOTSTRAPPER_APPLICATION_CREATE method (prototyped in the IBootstrapperApplication.h file) was called that you used to create your UI, you were passed an IBootstrapperEngine pointer. You call the engine methods directly on that interface pointer (which is defined in the IBootstrap

Re: [WiX-users] info about VSProjectOutput

2013-11-28 Thread Blair Murri
I don't recognize it but a Bing search turned up this page: http://portals.altiris.com/portals/13/sdk/smp%207.0/SolutionDev/UnderstandingAndCreatingInstallationsUsingWIX.html -Blair > Date: Thu, 28 Nov 2013 11:12:21 +0530 > From: subrat.w...@gmail.com > To: wix-users@lists.sourceforge.net > Su

Re: [WiX-users] RegistrySearch/@Win64 bug?

2013-11-28 Thread Blair Murri
The -arch command-line argument is what sets the default value of @Win64 on things like the RegistrySearch and Component elements, not the Package/@Platform attribute. That is a doc bug. Please file it so we get it corrected. -Blair > Date: Wed, 27 Nov 2013 19:46:10 +0200 > From: igor@g

Re: [WiX-users] util:XmlFile hide logging of sensitive information

2013-11-28 Thread Blair Murri
That bug now lives here: http://wixtoolset.org/issues/3859/ > From: ilir...@gmail.com > Date: Wed, 27 Nov 2013 11:07:14 +0100 > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] util:XmlFile hide logging of sensitive information > > Updating MSI sounds really hack-y way to do it, ei