Re: [WiX-users] Bootstrap conditioned on OSbittage

2015-07-09 Thread Matt O'Connell
. Registered in Scotland No. > SC151456 > Registered Office - Helix Building, West Of Scotland Science Park, Glasgow > G20 0SP > Email Disclaimer > > > -Original Message- > From: Matt O'Connell [mailto:techsupport...@gmail.com] > Sent: 09 July 2015 11:

Re: [WiX-users] Bootstrap conditioned on OSbittage

2015-07-09 Thread Matt O'Connell
out > acting upon or copying any of its contents, and we further request that you > advise us. > > SDL PLC is a public limited company registered in England and Wales. > Registered number: 02675207. > Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire SL6 &

Re: [WiX-users] Bootstrap conditioned on OSbittage

2015-07-09 Thread Matt O'Connell
16, Hoover, Jacob wrote: > My first question would be "why". What do you need to do that you can't at > least allow your bundle be in the chain and let burn do its work before > deferring to your final exe installer? > > -Original Message- > From: Matt O'Con

Re: [WiX-users] Bootstrap conditioned on OSbittage

2015-07-08 Thread Matt O'Connell
to bundle (and conditionalise) the exes but hide the bundle's ARP entry and expose the third party exes ARP entries? If so could the user could use that to repair/uninstall so it effectively wouldn't appear that the package had been 'bundled'? Many Thanks On 17 June 2015 at 12:36, M

[WiX-users] Bootstrap conditioned on OSbittage

2015-06-17 Thread Matt O'Connell
I've got a third party exe with 2 versions to bootstrap based on OS bittage, our current setup code only does this for MSIs. I've found how to do this with burn bundle but don't need the bundleness of it as per this http://stackoverflow.com/questions/30010837/i-dont-want-install-a-bootstrapper-

[WiX-users] WixShellExec and app window appearing behind other windows

2014-10-10 Thread Matt O'Connell
Many moons ago we stopped adding a 'launch the installed app' check box to our final dialog as we had intermittent issues with the launched app window appearing behind other windows as per this WiX mailing list issue from 2005: http://sourceforge.net/p/wix/mailman/message/11428915/ We didn't imp

Re: [WiX-users] How to hide a file in WXS configuration file ?

2014-10-09 Thread Matt O'Connell
http://wixtoolset.org/documentation/manual/v3/xsd/wix/file.html (use Hidden attribute) On 09/10/2014 07:55, Fabrice MAUPIN wrote: > Hello everybody, > > > > This is an extract of my WXS configuration file : > > > > > > > >Source="app\resources\_dt.xs

Re: [WiX-users] Possible to install vcruntimes first in MSI?

2014-10-07 Thread Matt O'Connell
Create a stub msi and merge into that? On 06/10/2014 19:07, shannon wrote: > Using an msi output only, is it possible to install prereq's first via wix? > Specifically, I need to install the VC2008/2013 runtimes, and these must be > completed before the product install begins or the install will fa

Re: [WiX-users] SECREPAIR: CryptAcquireContext: Could not create the default key container

2014-08-27 Thread Matt O'Connell
For those without a support contract, where's the most visible place to post? msdn forums (clickonce and setup & deployment projects, I've never found an MSI one...) or microsoft.public.platformsdk.msi newsgroup? The installer team blog would've been a good place but its not updated anymore..

Re: [WiX-users] SECREPAIR: CryptAcquireContext: Could not create the default key container

2014-08-26 Thread Matt O'Connell
> of a Bundle, some other mechanism? > > ___ > FireGiant | Dedicated support for the WiX toolset | > http://www.firegiant.com/ > > -Original Message- > From: Matt O'Connell [mailto:techsupport...@

Re: [WiX-users] SECREPAIR: CryptAcquireContext: Could not create the default key container

2014-08-26 Thread Matt O'Connell
:47:26:862]: SECREPAIR: Failed to create hash for the install source files MSI (s) (28:BC) [10:47:26:862]: SECUREREPAIR: SecureRepair Failed. Error code: 3e5F6C634B8 Error 997 being the Windows error 'Overlapped I/O operation is in progress.' On 26/08/2014 11:05, Matt O'Connell

Re: [WiX-users] SECREPAIR: CryptAcquireContext: Could not create the default key container

2014-08-26 Thread Matt O'Connell
We've started seeing this a lot recently. Installed the kb on to Win 7 and Win 8 VMs but it didn't replicate it. Our customers with the issue are usually running some sort of antivirus and we presumed it's some kind of conflict with that but we've had no success with disabling Anti-virus with ms

Re: [WiX-users] offline install

2014-03-28 Thread Matt O'Connell
FYI, I had to this issue today and copying the ProjectAggregator2.msi next to my wix3.7.exe worked. (I have both VS 2005 and 2008) Log entries for failure: [105C:11BC][2014-03-28T15:42:31]i000: Caching bundle from: 'C:\Users\MOCONN~1.SER\AppData\Local\Temp\{963ac4b4-a882-4471-8db9-c4adc7b42dc4}\

Re: [WiX-users] MsiNTProductType support in wix bundle?

2014-01-15 Thread Matt O'Connell
Sorry that's wrong please disregard. On 15/01/2014 14:50, Matt O'Connell wrote: > Use NOT VersionNT64 as below: > > > > (VersionNT = 501 AND ServicePackLevel>=3 AND NOT (VersionNT64)) > OR (VersionNT = 502 AND ServicePackLevel>=2 AND NOT (VersionNT64))

Re: [WiX-users] MsiNTProductType support in wix bundle?

2014-01-15 Thread Matt O'Connell
Use NOT VersionNT64 as below: (VersionNT = 501 AND ServicePackLevel>=3 AND NOT (VersionNT64)) OR (VersionNT = 502 AND ServicePackLevel>=2 AND NOT (VersionNT64)) OR (VersionNT >= 600) On 15/01/2014 14:24, Goran Malovic wrote: > Hi, > > I have a requirement to set minimum OS requirement

Re: [WiX-users] Howto override variables from a file using MSBuild/VS2012

2013-10-08 Thread Matt O'Connell
and then build the 'main' >> installer project where I have a 'ifndef variable' which will override if >> the variable exists already (and so if you just call the main installer >> wixproj you get the defaults). Is this feasible, or is there a better way

[WiX-users] Howto override variables from a file using MSBuild/VS2012

2013-10-07 Thread Matt O'Connell
ready (and so if you just call the main installer wixproj you get the defaults). Is this feasible, or is there a better way to do this? Thanks Matt O'Connell -- October Webinars: Code for Performance Free Intel we

Re: [WiX-users] Patch issue

2012-10-15 Thread Matt O'Connell
Use the version lying technique: Change the version of this FileId to 10.1.1 in your patch upgrade image by editing the msi in orca. Then re-build the patch pointing to your edited MSI. When the patch installs on top of the localised version it won't matter that the transform has removed this a

[WiX-users] Error applying Everyone permisisons to key using LockPermsisions table

2012-09-24 Thread Matt O'Connell
I have a 64-Bit MSI that needs to set reg permisions on some keys via the LcokPermissions table (my 32-Bit MSI still uses subinacl in a CA). It is having a reproducable error that I need to fix. I have 2 registry entires in referenced in my LockPermissions table. Both set to 'Everyone' with Gen

Re: [WiX-users] Changing product name at install time

2012-08-31 Thread Matt O'Connell
That's not what I've found. I've got a custom action running which changes our ProductName at install time in WiX 3.5. It is one our first actions in our InstallExecuteSequence and seems to work. All the Actions before it need to not reference [ProductName] or else get the 'wrong' result. Can

Re: [WiX-users] Best way to remove a feature in another installed app at install time

2012-08-21 Thread Matt O'Connell
pretty odd as well. > Shared registry keys that point at paths are often susceptible to this > problem. Although, I can't say I quite understand your upgrade path if you > don't use major upgrades. Is the user expected to remove the old product on > their own? > On Tue, Au

[WiX-users] Best way to remove a feature in another installed app at install time

2012-08-21 Thread Matt O'Connell
Hi WiX users I've got a product B that shares a (hidden) feature with it's predecessor A. If I install A over B the registry we use toggles back the the old app location. Since we may want to have update B's feature at some point this is bad. My company doesn't like to uninstall the old produc

Re: [WiX-users] Patch to update version of installed product?

2012-07-18 Thread Matt O'Connell
Small updates do not require changing the product code! This forces a major update and thus your update is massive:-) . All msi file have a package code which should probably be left to generate automatically. This should be changed in any event. As an aside, if you can find a reason to update

Re: [WiX-users] Patch to update version of installed product?

2012-07-18 Thread Matt O'Connell
WholeFilesOnly="yes" change to "no" Order="2" change to "1" patch runnup issue - did you change the package code for the updated msi? On 18/07/2012 12:34, Farrukhw wrote: > Thanks all for your replies. I've just posted my resultant patch script here: > http://windows-installer-xml-wix-toolset.6

Re: [WiX-users] Wix Weekly Builds?

2012-01-23 Thread Matt O'Connell
Many Thanks. The new WiX home page is great (as WiX deserves). Just in case you don't know already (non www) wixtoolset.org still points to old redirect page. Matt O'Connell On 21/01/2012 07:51, Rob Mensching wrote: > Just: http://robmensching.com/blog/posts/2012/1/20/The-wixtools

Re: [WiX-users] UK Localization

2011-12-21 Thread Matt O'Connell
> I cant remember ever seeing a > specific UK version of any software that I've installed Install anySerif App (you get a choice). -- Write once. Port to many. Get the SDK and tools to simplify cr