Re: [WiX-users] User cancels bootstrapper install after .NET reqirement installed - app shows up in ARP

2015-02-27 Thread victorwhiskey
Thank you js69! -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/User-cancels-bootstrapper-install-after-NET-reqirement-installed-app-shows-up-in-ARP-tp7599185p7599399.html Sent from the wix-users mailing list archive at Nabble.com.

Re: [WiX-users] using a custom action to read properties from a XML file

2015-02-27 Thread Phill Hogland
Have you seen: http://www.codeproject.com/Articles/865604/Writing-a-Wix-Extension-to-Read-XML-Files I have not used the above, but I think the idea is to use it to read the XML into a property, and then later to use the wix supplied XmlConfig to modify an XML. -- View this message in context:

Re: [WiX-users] using a custom action to read properties from a XML file

2015-02-27 Thread Hoover, Jacob
Or use Burn and a managed BA, where you can do it without a CA and pass it as a property to the MSI. -Original Message- From: Davis, Jeff [mailto:jda...@nanometrics.com] Sent: Friday, February 27, 2015 11:07 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] using

Re: [WiX-users] using a custom action to read properties from a XML file

2015-02-27 Thread Davis, Jeff
Jeremiahf, I like your approach. I'll write the C# code to do what I want it to do and then figure out how to make it a CA. Instead of trying to write a CA to do what I want. Jeff -Original Message- From: Jeremiahf [mailto:jeremi...@gmail.com] Sent: Thursday, February 26, 2015

Re: [WiX-users] using a custom action to read properties from a XML file

2015-02-27 Thread Davis, Jeff
I did see this but didn't consider it since it appears to be too advanced for me. -Original Message- From: Phill Hogland [mailto:phogl...@rimage.com] Sent: Friday, February 27, 2015 4:54 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] using a custom action to read

Re: [WiX-users] braces need to be escaped in properties?

2015-02-27 Thread Nir Bar
Check this article on escaping characters in formatted values: https://msdn.microsoft.com/en-us/library/aa368609%28v=vs.85%29.aspx Specifically for your question: - Square brackets ([ ]) or curly braces ({ }) with no matching pair are left in the text. - If a substring is enclosed in

Re: [WiX-users] using a custom action to read properties from a XML file

2015-02-27 Thread Nir Bar
I have a WiX extension that supports setting XML values into MSI properties. Its an open-source project: https://bitbucket.org/nirbar1/panelswwixextension To use it you should: 1. Clone the repository. 2. Update to the latest default branch 3. Build PanelSwWixExtension project in

Re: [WiX-users] How to localize appearance of a dialog using localization variables?

2015-02-27 Thread Nir Bar
You can define your own localization string loc.RTL that will be either yes or no. Nir -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot

Re: [WiX-users] WSX file contains extra files?

2015-02-27 Thread Phill Hogland
.targets files are MSBuild scripts. https://msdn.microsoft.com/en-us/library/ms164312.aspx MSBuild is used by VS and by wix. In fact each project file (.csproj or .wixproj) is a .targets file, as the .targets extension is just a 'default' extension for a MSBuild script file. A developer can

Re: [WiX-users] Registry keys not written even though log shows it

2015-02-27 Thread Phill Hogland
Expanding on #1 above, I think you are seeing the varied results of not following the only one resource per component recommendation. Author each registry action into a separate component and make the registry value the Keypath of that component.

Re: [WiX-users] WSX file contains extra files?

2015-02-27 Thread assassinator27
Okay so that's why it might be heat that is causing my problem with vs complaining about having extra files. I need to either let heat pull the file into the wix installer or explicitly specify inclusion of the file in the wix installer. Thanks again for your help. From: Phill Hogland [via

Re: [WiX-users] how to auto-update like ClickOnce in WIX

2015-02-27 Thread Kurt Schenk
Hi Is there an update to the information that Rob shared on Feb 2014? What is possible today? http://sourceforge.net/p/wix/mailman/message/31962990/ It's not hard but there is nothing built into WiX toolset today to do it. There is a feature under development to do self-update for bundles that

Re: [WiX-users] how to auto-update like ClickOnce in WIX

2015-02-27 Thread Hoover, Jacob
Still not supported directly in the toolset but it doesn't take much to do it. I have a modified WixStdBA here https://github.com/jchoover/wix3/tree/develop-3.9-WixStdBA If you are using your own BA, you can model it after the changes I made to Wix's own BA in

Re: [WiX-users] LGHT0094 when adding a child bundle to a parent bundle chain

2015-02-27 Thread Phill Hogland
This turned out to be a typo (confusing to similar business abbreviations XMS and XSM) in my chain authoring. Sorry for the noise. -- View this message in context:

Re: [WiX-users] WSX file contains extra files?

2015-02-27 Thread Phill Hogland
I would not draw that conclusion, but I don't have enough information. My guess is that you have a MSBuild script which is building some application project (maybe in VS or not) and that there is an 'output' folder full of generated files. Then my guess is that, as part of building the wix

Re: [WiX-users] Registry keys not written even though log shows it

2015-02-27 Thread Phill Hogland
Here is a fragment from a project which sets the AppPath keys. Each action is in a separate Component with the KeyPath on the registry action, rather than the Component Directory. Fragment ComponentGroup Id=AppPath Directory=FooDir Component RegistryValue Root=HKMU

Re: [WiX-users] Upgrade issue

2015-02-27 Thread Jeremiahf
You owe us all a beer! JK! Glad you figured it out. J On Fri, Feb 27, 2015 at 4:52 PM, Steve-Ogilvie steven.ogil...@titus.com wrote: Sigh... False alarm.. I am an IDIOT... I put code in to ensure a 2nd running Bootstrapper isn't running... duh... so on uninstall of the Bootstrapper it

Re: [WiX-users] using a custom action to read properties from a XML file

2015-02-27 Thread Davis, Jeff
What does use Burn and a managed BA mean? What would that look like? Jeff -Original Message- From: Hoover, Jacob [mailto:jacob.hoo...@greenheck.com] Sent: Friday, February 27, 2015 9:30 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] using a custom action

Re: [WiX-users] Upgrade issue

2015-02-27 Thread Jeremiahf
Or whatever the context is. I don't have my code in front of me. Sorry for the chatter. J On Fri, Feb 27, 2015 at 4:46 PM, Jeremiahf jeremi...@gmail.com wrote: What does your InstallExecuteSequence look like? Do you have RemoveOldVersion in it? On Fri, Feb 27, 2015 at 4:08 PM, Steve-Ogilvie

Re: [WiX-users] Upgrade issue

2015-02-27 Thread Steve-Ogilvie
I could really use some help with this... -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Upgrade-issue-tp7599324p7599393.html Sent from the wix-users mailing list archive at Nabble.com.

Re: [WiX-users] Upgrade issue

2015-02-27 Thread Jeremiahf
What does your InstallExecuteSequence look like? Do you have RemoveOldVersion in it? On Fri, Feb 27, 2015 at 4:08 PM, Steve-Ogilvie steven.ogil...@titus.com wrote: I could really use some help with this... -- View this message in context:

Re: [WiX-users] Upgrade issue

2015-02-27 Thread Steve-Ogilvie
Sigh... False alarm.. I am an IDIOT... I put code in to ensure a 2nd running Bootstrapper isn't running... duh... so on uninstall of the Bootstrapper it quits (because it is the 2nd one) and doesn't remove it self... Guess I didn't think of upgrades... will have to think of how to distinguish