[WiX-users] Noob creating a Custom Action in Wix 3.8

2014-03-06 Thread Eric Stott
I have created a custom action assembly. It compiles. However when I reference it in the Wix project and when compiling it throws the error: The Product element contains an unhandled extension element 'awesome:SuperElement'. Please ensure that the extension for elements in the

Re: [WiX-users] Burn LaunchTarget - possible to specify HTTP-URL?

2014-03-06 Thread Tobias Erichsen
Hi again... works like a charm... Tobias Von: Bryan Wolf [brw...@jackhenry.com] Gesendet: Mittwoch, 5. März 2014 17:31 Bis: General discussion about the WiX toolset. Betreff: Re: [WiX-users] Burn LaunchTarget - possible to specify HTTP-URL? The Launch

Re: [WiX-users] read a regkey with special permission

2014-03-06 Thread Pavan Konduru
Hi Nan, Before running your custom action , run another custom action that will pass that property to your custom action(set that as immediate). Something like this: Where the value is the one that you want from the session, here I used INSTALLLOCATION, so put there your own property. Make

Re: [WiX-users] Upgrade and side by side with the same installer

2014-03-06 Thread Pavan Konduru
Hi Jacob, Thank you for your inputs. When you say Custom BA do you mean in the bootstrapper? The WIX upgrade functionality does the following am assuming automatically for us: --Uninstall the previous version(files and registry keys) --Use the upgrading property to run our custom actions

Re: [WiX-users] read a regkey with special permission

2014-03-06 Thread Nan Zang
Pavan, Thank you for the suggestion. But my problem is a little bit complicated. The value I need for the custom action can be only fetched through a deferred custom action. I will get the value from deferred custom action. Now, I need find a way either to pass the value back to

Re: [WiX-users] read a regkey with special permission

2014-03-06 Thread Phil Wilson
What else have you got in the way of searches? If this is your only AppSearch then just have it in the Execute sequence. I've not tried this, but AppSearch in the execute sequence should be elevated and may be able to read that registry item. --- Phil Wilson On Thu, Mar 6, 2014 at

[WiX-users] util:CloseApplication and EndSessionMessage

2014-03-06 Thread Tom Brezinski
I'm trying to use CloseApplication with the EndSessionMessage option and am not experiencing the expected result. By default in OnClose my application asks if the user is sure they want to close. So I added handlers for WM_QUERYENDSESSION to return TRUE and WM_ENDSESSION to close the program

Re: [WiX-users] Upgrade and side by side with the same installer

2014-03-06 Thread Hoover, Jacob
Yes, CustomBA meaning custom bootstrapper. You would in fact be deploying solely side by side installs with the BA knowing about all previous side by side installs. That being said, I would agree with John Coopers assessment of it not being a good architecture. However you asked if it's

Re: [WiX-users] Upgrade and side by side with the same installer

2014-03-06 Thread Pavan Konduru
Hi John, Thank you for your inputs. Looks like things would get pretty complicated when Hotfixes and patches will be involved. The problem is the product architecture supports different versions residing side-by-side. Been pulling my hair out to see how to make this work. How about creating 2

Re: [WiX-users] read a regkey with special permission

2014-03-06 Thread Pavan Konduru
Nan, From where are you getting that value from? Is it a registry value? Will be useful if you post the code you have written so far. --Pavan -Original Message- From: Nan Zang [mailto:naz...@microsoft.com] Sent: Thursday, March 06, 2014 10:41 AM To: General discussion about the WiX

Re: [WiX-users] Upgrade and side by side with the same installer

2014-03-06 Thread Bryan Wolf
Another way of looking at what John is suggesting is considering that you probably want to take a step back a moment and focus more on version 3 and less on version 2. You're looking at some sort of super-linear number of installations you're going to have to support; all those permutations on

Re: [WiX-users] Upgrade and side by side with the same installer

2014-03-06 Thread Pavan Konduru
Hi Bryan, Thank you for your inputs. The product is installed for all users(per machine). All users have access to any installed versions of the product on the machine. Am not sure if this will make life easier! The upgrade/side-by-side was being supported through Installanywhere

Re: [WiX-users] Upgrade and side by side with the same installer

2014-03-06 Thread Bryan Wolf
My thoughts were more focused on what the product actually supports in terms of side-by-side and less of what MSI can do for you. Once you establish what the product does, it'll be easier to model your installer better. E.g. Visual Studio is basically sandboxed off but some features (like

Re: [WiX-users] util:CloseApplication and EndSessionMessage

2014-03-06 Thread Rob Mensching
There was a WM_ENDSESSION bug fixed in v3.9 -Original Message- From: Tom Brezinski [mailto:to...@networkinstruments.com] Sent: Thursday, March 6, 2014 10:54 AM To: General discussion about the WiX toolset. Subject: [WiX-users] util:CloseApplication and EndSessionMessage I'm trying to

[WiX-users] How to pick the installation folder passed in the UI

2014-03-06 Thread Suvrajyoti Panda
Hi All, Could anybody please let me know how i can pick directory that the user chooses to install the application to to and use it in the Product name? Regards, Suvra Jyoti -- Subversion Kills Productivity. Get off

[WiX-users] Fwd: How to pick the installation folder passed in the UI

2014-03-06 Thread Suvrajyoti Panda
I am using the install dir as below: Property Id=WIXUI_INSTALLDIR Value=TORT / where TORT is the id of the directory where the installation is taking place. Original Message Subject:[WiX-users] How to pick the installation folder passed in the UI Date: Fri, 07 Mar

[WiX-users] Burn does not show close application warning during uninstall

2014-03-06 Thread Tobias Erichsen
Hi everyone, I got a small problem during uninstall of my application. If I install/uninstall just with an MSI on W7 for example, I get the dialog that some applications must be closed before continuing install. When I use that MSI within my burn-bootstrapper, this dialog does not appear. Do I