[WiX-users] MSI won't install on XP

2014-10-21 Thread Fyodor Koryazhkin
Hi, The key error from the log file is: Error 1906. Failed to cache package C:\WINDOWS\Installer\1377ad.msi. Error: -2147287038. More possibly this indicates some system error: 1. There is some error with XP image you use (try to install on other XP computer that has different image i.e. do not us

[WiX-users] When to call CustomAction

2014-10-21 Thread Fyodor Koryazhkin
Hi, If you include in your installation some IIS configuration then WIX framework adds ConfigureIIS action to the sequence. You can do the following: 1. You specify "after ConfigureIIS" in your action. 2. You can add ConfigureIIS action to your InstallExecuteSequence in any place after InstallFiles

[WiX-users] Unable to get install button to enable

2014-10-21 Thread garymonk
Hi, I have an installer that will install either a client only, or both the client and the server. The way I determine which one to install is by having a custom ui with two check boxes. A variable is set and checked in the chain to decide if one or both (client and server) is to be installed. Whe

Re: [WiX-users] Installed application after the upgrade

2014-10-21 Thread Jeremiahf
Here is the condition you can use http://wixtoolset.org/documentation/manual/v3/howtos/redistributables_and_install_checks/block_install_on_os.html Here is the link to diff. OS versions. http://msdn.microsoft.com/library/aa370556.aspx On Tue, Oct 21, 2014 at 3:56 PM, Baris Caglar wrot

Re: [WiX-users] Installed application after the upgrade

2014-10-21 Thread Carter Young
If a customer upgrades their OS, your Application will stay installed, and will run in compatibility mode. Upon Uninstall/Reinstall, your condition will be met and your Application won't install. To see this functionality in action Download a copy of the Windows Upgrade Adviser. You'll g

Re: [WiX-users] MSI won't install on XP

2014-10-21 Thread Jeremiahf
You didn't happen to have it open in orca when you ran the installer did you? On Tue, Oct 21, 2014 at 5:14 PM, Christopher Fraser wrote: > I'm using WiX 3.8 and I don't use .Net (in this, at least). > > On 21/10/14 23:09, Carter Young wrote: > > What Version of WiX are you using and if your App

Re: [WiX-users] MSI won't install on XP

2014-10-21 Thread Jeremiahf
I have run my installers on xp with that version number of 200 and it was fine. XP w/ SP3 Someone correct me if I am wrong but shouldn't both of these be unique? (I'm not saying this is the problem.) On Tue, Oct 21, 2014 at 4:43 PM, Christopher Fraser wrote: > On 21/10/14 22:18, John C

[WiX-users] Installed application after the upgrade

2014-10-21 Thread Baris Caglar
Hello, first time question: I am trying to limit my application to Windows Vista and 7, and want it to be removed by the OS during an upgrade to higher OS. Is this even possible? Is marking Condition with versionNT enough for this, or is there another condition that needs to be set? Thanks,

Re: [WiX-users] MSI won't install on XP

2014-10-21 Thread Christopher Fraser
I'm using WiX 3.8 and I don't use .Net (in this, at least). On 21/10/14 23:09, Carter Young wrote: > What Version of WiX are you using and if your App uses the .Net > Framework, what version is that? > > Quoting Christopher Fraser : > >> On 21/10/14 22:18, John Cooper wrote: >>> What version of Wi

Re: [WiX-users] MSI won't install on XP

2014-10-21 Thread Carter Young
What Version of WiX are you using and if your App uses the .Net Framework, what version is that? Quoting Christopher Fraser : > On 21/10/14 22:18, John Cooper wrote: >> What version of Windows Installer Service is installed on the XP >> box and what version does the MSI require? Post-Vista

Re: [WiX-users] MSI won't install on XP

2014-10-21 Thread Christopher Fraser
On 21/10/14 22:18, John Cooper wrote: > What version of Windows Installer Service is installed on the XP box and what > version does the MSI require? Post-Vista generally uses 5.0. XP often has > 3.0, although it can be upgraded to 4.5. Hmmm ... msiexec says 3.0. I installed 4.5 and got exact

Re: [WiX-users] MSI won't install on XP

2014-10-21 Thread John Cooper
What version of Windows Installer Service is installed on the XP box and what version does the MSI require? Post-Vista generally uses 5.0. XP often has 3.0, although it can be upgraded to 4.5. -- John Merryweather Cooper Senior Software Engineer | Enterprise Service Applications | Continuing

[WiX-users] MSI won't install on XP

2014-10-21 Thread Christopher Fraser
Hello, When I try and install my MSI on XP I get an error code 2260. I works just fine on Windows 7 and 8. Any ideas? From the msiexec log: MSI (s) (44:DC) [19:13:57:281]: Executing op: ActionStart(Name=RegisterProduct,Description=Registering product,Template=[1]) Action 19:13:57: RegisterPr

Re: [WiX-users] When to call CustomAction

2014-10-21 Thread John Cooper
Why are you re-inventing the wheel? Util:XmlFile and Util:XmlConfig are quite serviceable and give you full rollback support. Scheduling depends. There's no one magic value. Since you should be using a deferred action, you'll be limited to the range after CostFinalize to before InstallFinali

[WiX-users] When to call CustomAction

2014-10-21 Thread Brian Enderle
I am trying to run a CA after setting up a website to modify the web.config file based on the IIS version being used. What should I use for the "After" value (in the InstallExecuteSequence) to make sure the CustomAction executes after the website is installed? Here is the code I am using: ...

Re: [WiX-users] Directory ID character case - Does it matter

2014-10-21 Thread Tunney, Stephen
It would behove me to ask if this would be welcome in WiX 4 as a new feature or should I just have it be another custom extension function that we have for our in-house development? Stephen Tunney Nuance Communications, Inc. Solutions Architect, Imaging Division Waterloo, Ontario, Canada stephe

Re: [WiX-users] Directory ID character case - Does it matter

2014-10-21 Thread John Cooper
No, but it would have to qualify as one of the easier ones to write. -- John Merryweather Cooper Senior Software Engineer | Enterprise Service Applications | Continuing Development Jack Henry & Associates, Inc.® | Lenexa, KS  66214 | Ext: 431050 |jocoo...@jackhenry.com -Original Message-

Re: [WiX-users] Directory ID character case - Does it matter

2014-10-21 Thread Tunney, Stephen
Thank you for your fast response, John. Now the next question. I have a pattern below. The language however is really derived from the locale (ex. "en-US, fr-FR, etc."). I pull the Language out in a CA and each component has a LANGUAGE="en" inside of it. I would like to leverage this for our

Re: [WiX-users] The state of Update/@Location

2014-10-21 Thread Nick Ramirez
Thanks Jacob, that sounds like really good work on your part. I will follow the link to learn more about it, and it will be nice to eventually see that in the standard BA. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/The-state-of-Update-Location

Re: [WiX-users] The state of Update/@Location

2014-10-21 Thread Hoover, Jacob
In 3.9, only the engine was updated to support it. I have a fork with a working WixStdBA that implements what I needed to get updates working, but I've not gotten it reviewed nor submitted for 3.10 as of yet. I believe https://github.com/jchoover/wix3/tree/develop-3.9-WixStdBA would give you a

Re: [WiX-users] Directory ID character case - Does it matter

2014-10-21 Thread John Cooper
1) Yes 2) Public Properties (those that can be altered on the command line and/or (with the Secure attribute) will pass to/from the UI and Execute sequences MUST be all upper case. -- John Merryweather Cooper Senior Software Engineer | Enterprise Service Applications | Continuing Development Ja

[WiX-users] The state of Update/@Location

2014-10-21 Thread Nick Ramirez
Can anyone say what the current state of the Update element that goes into a Bundle is? http://wixtoolset.org/documentation/manual/v3/xsd/wix/update.html Does it work, currently, with the standard BA? Or would someone have to write their own to take advantage of detecting an updating MSI package

[WiX-users] Directory ID character case - Does it matter

2014-10-21 Thread Tunney, Stephen
Hey everyone, I've got a large number of directories and files that look like this (pseudo code): And the list of language-specific binaries conti

Re: [WiX-users] Removing bundle from ARP

2014-10-21 Thread vorsichtdiekurve
Thanks, that was it. I have been calling both actions (install and uninstall) all the time. Now i do not call install when it's desired to uninstall the product. The bundle entry is getting removed from ARP :) . -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2