Re: [WiX-users] Major upgrade: a few files are not installed

2015-04-13 Thread Rob Mensching
You should root cause why higher version Components exist on the machine since you scheduled upgrade early. _ Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: Lukas Rieger [mai

Re: [WiX-users] Major upgrade: a few files are not installed

2015-04-13 Thread Lukas Rieger
Sorry, I forgot to mention that I am using Burn as Bootstrapper, so I can't control the REINSTALLMODE Thank you, Lukas Von:Joel Budreau An: lrie...@nemetschek-engineering.at Kopie: "General discussion about the WiX toolset." Datum: 13.04.2015 23:21 Betreff:Re: [WiX-users]

Re: [WiX-users] Major upgrade: a few files are not installed

2015-04-13 Thread Joel Budreau
You could pass REINSTALLMODE=amus so that all files are overwritten by the newer MSI - https://msdn.microsoft.com/en-us/library/aa371182%28v=vs.85%29.aspx > On Apr 13, 2015, at 9:36 AM, Lukas Rieger > wrote: > > I have the same issue as described here: > http://stackoverflow.com/questions/151

Re: [WiX-users] Verb localization

2015-04-13 Thread Nir Bar
That's strange... Verb table's Command field is documented to have Formatted type which expands properties. Can you check the Command field of Verb table in

Re: [WiX-users] Burn and chaining multiple MSIs and detecting proper states for each MSI

2015-04-13 Thread Rob Mensching
Hmm, now I'm confused. What is the issue now? You can certainly override the default planning of packages in your chain via your BA. Not clear how that solves the original issue. _ Short replies here. Complete answers over there: http:

Re: [WiX-users] How can I prevent Bundle from overriding MSI Upgrade Code?

2015-04-13 Thread Rob Mensching
Note: keeping the source around to minimize source resolution issues is one of the most broken things about fire-and-forget bootstrappers. Burn solves this by maintaining a presence in ARP. _ Short replies here. Complete answers over t

Re: [WiX-users] Burn and chaining multiple MSIs and detecting proper states for each MSI

2015-04-13 Thread victorwhiskey
I'm not sure either. Just gasping... Can I manually check for Version numbers and such to determine if I should upgrade or not in the BA? Maybe from DetectPackageComplete? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-and-chaining-multipl

Re: [WiX-users] Burn and chaining multiple MSIs and detecting proper states for each MSI

2015-04-13 Thread Rob Mensching
Not clear to me how that would help. _ Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: victorwhiskey [mailto:victorhwhis...@yahoo.com] Sent: Monday, April 13, 2015 8:29 AM To:

Re: [WiX-users] How can I prevent Bundle from overriding MSI Upgrade Code?

2015-04-13 Thread Rob Mensching
Not today: http://robmensching.com/blog/posts/2012/6/25/b-is-for-bundle-and-thats-good-enough-for-me/ _ Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: ben.lemond [mailto:ben.

Re: [WiX-users] Burn and chaining multiple MSIs and detecting proper states for each MSI

2015-04-13 Thread victorwhiskey
Or can I set the REINSTALLMODE MSI property to vmous or vamus of A on upgrade? Thanks victorwhiskey wrote > Rob, > > The structure is similar to plugins where A is the main app and B and C > are "plugins". We don't want to have the user have to install A > separately, so I'm trying to bundle A

Re: [WiX-users] Verb localization

2015-04-13 Thread eklekt
It has no effect:( Now I see "[NEW_VERB_COMMAND]" in context menu. Any Ideas? Here is small example of using it. http://schemas.microsoft.com/wix/2006/wi";>

Re: [WiX-users] MSI packages download and Firewall/Proxy settings

2015-04-13 Thread Hoover, Jacob
If your browser is getting a 403 without ever prompting for authentication, then I'm at a loss as to what you'd expect WiX to be able to do. If the server would respond with a 401/407 code, then the engine would prompt for credentials. Are you sure you have the URL correct? Is this firewall/p

Re: [WiX-users] How can I prevent Bundle from overriding MSI Upgrade Code?

2015-04-13 Thread ben.lemond
Is there a feature that allows you to chain multiple installations (say .net framework and an msi) in one installer but does not create a "bundle product". It would be the equivalent of a script that installs multiple pieces and those pieces are the only things that remain. Thanks, [Descript

Re: [WiX-users] Verb localization

2015-04-13 Thread Nir Bar
You should use . - Nir Bar Freelance Developer Mail: nir@panel-sw.com Web: www.panel-sw.com - C++ On Windows, Linux and Embedded Platforms - WiX & InstallShield -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Verb-localization

Re: [WiX-users] How can I prevent Bundle from overriding MSI Upgrade Code?

2015-04-13 Thread Nir Bar
Add/Remove Programs shows Bundle-A's version, not MSI-A's. Even if you install 3/4/5 MSI's in a single bundle, only the bundle will be visible in ARP. You can change this to display the MSI alongside the bundle in ARP using MsiPackage

[WiX-users] Major upgrade: a few files are not installed

2015-04-13 Thread Lukas Rieger
I have the same issue as described here: http://stackoverflow.com/questions/15138731/wix-major-upgrade-not-installing-all-files After a major upgrade a few files are missing. After a repair, they reapper, and with a clean install, they are also correctly installed. The log contains Disallowing in

Re: [WiX-users] Burn and chaining multiple MSIs and detecting proper states for each MSI

2015-04-13 Thread victorwhiskey
Rob, The structure is similar to plugins where A is the main app and B and C are "plugins". We don't want to have the user have to install A separately, so I'm trying to bundle A (or A') with B and C. This is where I'm running into problems where if B and C are out there, and they don't install in

Re: [WiX-users] How can I prevent Bundle from overriding MSI Upgrade Code?

2015-04-13 Thread ben.lemond
Let's take out the fact that I have multiple different applications(products) that I want to install and focus on one. My problem is this: What I have: I have a product.wxs that I build as an MSI with a specific version and upgrade code. (MSI-A) I then have a bundle.wxs that I build that contai

Re: [WiX-users] MSI packages download and Firewall/Proxy settings

2015-04-13 Thread Mohamed Yasir
Hi, I am using Custom BA. While trying to browse downloadlink in browser, it shown below error. "Failed to load resource: the server responded with a status of 403 (Forbidden)" Regards, Mohamed Yasir K -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabb

Re: [WiX-users] MSI packages download and Firewall/Proxy settings

2015-04-13 Thread Hoover, Jacob
So you are using WixStdBA or a custom BA? Do you know what the filter/proxy/firewall is responding with? What happens when you try to browse the exact same download link within the browser? From: Mohamed Yasir [yasirmohame...@gmail.com] Sent: Monday, Ap

Re: [WiX-users] Verb localization

2015-04-13 Thread eklekt
Nir, thanks for ypu answer. But how I can lounch MSI with correct mst file from bootstraper? About Property. I can't use property for it. I tried it. But when I use Property name in command attribute. It is not replaced by its value. ... Command is "NEW_VERB_COMMAND"

Re: [WiX-users] MSI packages download and Firewall/Proxy settings

2015-04-13 Thread Mohamed Yasir
Hi, Could you please update any idea on this? Regards, Mohamed Yasir K -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/MSI-packages-download-and-Firewall-Proxy-settings-tp7599503p7599920.html Sent from the wix-users mailing list archive at Nab