Re: [WiX-users] Installation doesn't progress at all

2015-03-02 Thread Balaji R
Hi, I'm 100% sure about calling plan() action, is there no other solutions for this ? Regards, Balaji -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Installation-doesn-t-progress-at-all-tp7599147p7599430.html Sent from the wix-users mailing list

Re: [WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Sean Hall
They aren't exactly there, Burn strips off the parts of the command line that it recognizes so the Command doesn't have "/s" it has "Display.None" which has other aliases. Marco, are you asking for the ability to get /h or /s? Or are you using those as examples of Burn automatically handling com

Re: [WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Rob Mensching
They are there. Off the top of my head, "/h" maps to InstallAction.Help and "/s" maps to "Display.Quiet". You can ignore the standard and make them mean whatever you want them to mean... although that's awfully weird and not at all recommended. __

Re: [WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Marco Tognacci
But the commands like /h or /s don't arrive in the Command parse function available in the BurnApplication as they are processed from the Base class and update the State of the application, for the variables defined in the Burn Bundle there is not a way or a special syntax for let the base class

Re: [WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Rob Mensching
The Command object is all parsed for you, ready to go. Just use it. _ Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: Marco Tognacci [mailto:mark...@live.it] Sent: Monday, Ma

Re: [WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Marco Tognacci
Is there a built in way for passing the value of a Burn Variable as command line options in managed custom Burn setup?Or I need to parse manualli the command lines args and then read the properties and the write them manually? Thanks. > Date: Mon, 2 Mar 2015 15:44:49 -0700 > From: phogl...@rima

Re: [WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Phill Hogland
This thread details the switches (without digging in the source). Your mba can use the Command object (Command.Display) to determine if Burn

Re: [WiX-users] burn and upgrades

2015-03-02 Thread Steve-Ogilvie
is there a way in the burn.sln to detect if it is an upgrade or not? sample code I am using: // ** Is Bootstrapper EXE running? PROCESSENTRY32 entry; entry.dwSize = sizeof(PROCESSENTRY32); hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, NULL); int iCount =

Re: [WiX-users] Issue with Upgrade/Install

2015-03-02 Thread Rob Mensching
When a tester told me he used MsiZap on a computer, I told him to format his machine before filing another setup bug. _ Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: Nir B

Re: [WiX-users] burn and upgrades

2015-03-02 Thread Rob Mensching
Comes in on the Command. ___ FireGiant | Dedicated support for the WiX toolset | http://www.firegiant.com/ -Original Message- From: Steve-Ogilvie [mailto:steven.ogil...@titus.com] Sent: Monday, March 2, 2015 12:48 PM To: w

[WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Marco Tognacci
I have a Burn setup package, using a custom WPF interface.I need to pass some arguments using command line: For example I want to set to 10 the value for the variable option and run the setup in silent mode.The /s option is processed by Burn system, but not the variable, I need to parse the comm

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

2015-03-02 Thread Nir Bar
You can use the localization UI element to overide these attributes in specific cultures. See http://wixtoolset.org/documentation/manual/v3/xsd/wixloc/ui.html -- Nir Freelance Developer. -- Dive into the World of Parallel

Re: [WiX-users] Issue with Upgrade/Install

2015-03-02 Thread Phill Hogland
Consider the information here before using MsiZap. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Issue-with-Upgrade-Ins

[WiX-users] burn and upgrades

2015-03-02 Thread Steve-Ogilvie
Hi folks, quick question... MSI can use the property "WIX_UPGRADE_DETECTED" to determine if an upgrade is in progress, does burn have a similar property to determine if an upgrade is happening with the Bootstrapper? if not then what is the point of having the UpgradeCode in the bundle? thanks,

Re: [WiX-users] Issue with Upgrade/Install

2015-03-02 Thread Nir Bar
As a last resort you could use MsiZap to remove the old product from Windows Installer registry locations. That would leave the registry without any trace of the previous product. -- Nir Freelance Developer. -- Dive into

Re: [WiX-users] Issue with Upgrade/Install

2015-03-02 Thread Phil Wilson
What happens if you just uninstall the older product? Does that require the source too? If it does, then I'd tackle that issue to simplify it. There could be an unconditional ResolveSource action (can't see that in the log though); or the cached MSI file is missing so it wants the original MSI fil

[WiX-users] Issue with Upgrade/Install

2015-03-02 Thread Ashish Agarwal
Hello Everyone, We are facing an issue during an upgrade of our Product on one of the user machines. 1. While upgrading, a popup asking for the location to the previous installer keeps showing up after which the upgrade fails. 2. Even after removing the previous version from the Add/Remove Programs

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

2015-03-02 Thread Kurt Schenk
Ok thanks very much Jacob. -Original Message- From: Hoover, Jacob [mailto:jacob.hoo...@greenheck.com] Sent: Friday, February 27, 2015 10:51 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] how to auto-update like ClickOnce in WIX Still not supported directly in t