Re: [WiX-users] Adding a custom action to 3dparty msi package

2014-09-29 Thread Phill Hogland
I would take the last approach. The other suggestions are not viable so far as I am aware. I have a 3rd party msi for which I chain a pre3rdParty msi and a post3rdparty msi for similar reasons, so it is certainly possible to do your last suggestion, depending on your details. -- View this

Re: [WiX-users] Adding a custom action to 3dparty msi package

2014-09-29 Thread Hoover, Jacob
Could you not use a transform to inject the CA (and scheduling) into their MSI? Assuming you are the one controlling the install/uninstall, that would be the cleanest approach I can think of. -Original Message- From: Phill Hogland [mailto:phogl...@rimage.com] Sent: Monday, September

[WiX-users] WiX Upgrade Questions

2014-09-29 Thread Joshua Linker
I have an application that was originally installed using a Visual Studio Installer project. I have authored a WiX replacement with a Major Upgrade Feature. I have two questions regarding it. When the original application was installed it allowed the user to choose where to install it. Is it

Re: [WiX-users] WiX Upgrade Questions

2014-09-29 Thread John Cooper
If you used the remember pattern for your install location property, http://robmensching.com/blog/posts/2010/5/2/the-wix-toolsets-remember-property-pattern/, then yes. Otherwise, not so much. If the service no longer starts, it has a bug or there's a problem with your service authoring. A

Re: [WiX-users] WiX Upgrade Questions

2014-09-29 Thread Joshua Linker
I do not have the remember property set as the original installation was not authored by me and did not use WiX. If the user chooses a different location, is the Service automatically updated with the new location or is this dependent on the Authoring? I am now going to look over your authoring

Re: [WiX-users] KB2918614

2014-09-29 Thread roberthyang
Aha ! This would explain what we have been seeing: if the install is done after KB2918614, then the repair is successful. If the install was done prior to KB2918614, then the repair for SQL Server CE 3.5 SP2 x64 fails. The difference in the log is as follows : MSI (s) (50:CC) [12:30:26:258]:

Re: [WiX-users] How to execute a custom action after dialog showed [P]

2014-09-29 Thread Steven Ogilvie
Classification: Public Hi, You can search the question within the WIX user list or in google... http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Execute-Custom-Action-after-dialog-td6028632.html

Re: [WiX-users] Adding a custom action to 3dparty msi package

2014-09-29 Thread Marco Tognacci
Can you explain with details how to use a transform to inject the custom action in the msi? From: jacob.hoo...@greenheck.com To: wix-users@lists.sourceforge.net Date: Mon, 29 Sep 2014 14:21:16 + Subject: Re: [WiX-users] Adding a custom action to 3dparty msi package Could you not use a

Re: [WiX-users] Adding a custom action to 3dparty msi package

2014-09-29 Thread Hoover, Jacob
http://blogs.technet.com/b/alexshev/archive/2008/02/15/from-msi-to-wix-part-7-customizing-installation-using-transforms.aspx In effect, you are using the MST to modify the in memory DB at runtime as opposed to updating and deploying a modified version. -Original Message- From: Marco

[WiX-users] Upgraded DevExpress now and getting Class element's server attribute not found

2014-09-29 Thread Sofling76
Hi, I've been trying to understand why I'm getting below error after upgrading DevExpress controls? error CNDL0044: The Class element's ForeignServer or Server attribute was not found ; one of these is required. [blah:\setup.build] This is the setup.build: ?xml version=1.0 encoding=utf-8?

[WiX-users] Shortcuts and full desktops

2014-09-29 Thread Keith.Douglas
I noticed that one of my installation packages (which I was internally testing prior to sending it for testing more broadly) seemingly failed to install its shortcuts because there were too many icons on the desktop (in grid mode) already. (I figured this bizarreness out by cleaning some stuff

[WiX-users] Driver not being installed in driver store?

2014-09-29 Thread Christopher Fraser
Hello, I'm experiencing a strange issue with my WIX-based driver installer whereby the install appears to work but the driver is absent from the Windows driver store (as seen with pnputil). Refreshing the driver installer from the remove programs control panel re-inserts the driver back into

Re: [WiX-users] Adding a custom action to 3dparty msi package

2014-09-29 Thread Phill Hogland
I tried to create a transform, but in my situation I ran into the limitation that a transform can only modify information in persisted tables. http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/torch-create-transform-td7594463.html#a7594624 -- View this message in context:

Re: [WiX-users] Driver not being installed in driver store?

2014-09-29 Thread Nicolás Alvarez
2014-09-29 20:42 GMT-03:00 Christopher Fraser chr...@goop.org: Does anyone have any thoughts or suggestions? A cut down version of my .wxs project is attached. Attachments don't make it to the mailing list. Upload your .wxs to a pastebin or some file sharing service and post a link. --

Re: [WiX-users] Adding a custom action to 3dparty msi package

2014-09-29 Thread Hoover, Jacob
And what do you need to modify that isn't in a table? I haven't tried this myself but it should just be as easy as: Insert a row into The Binary table containing the CA DLL. Insert a record into the CustomActionTable. Insert a row into the InstallUISequence/InstallExecuteSequence tables.