[WiX-users] Want to trap combo box event

2011-01-23 Thread Vijay Agarwal
Hi, I am using wix installer for one of my product and want to implement something in which I have a screen having a combo box. What I want to do is that on selection of an item in the combo box another control on the same screen should be displayed or hidden. How can I achieve that? To be cle

Re: [WiX-users] Question about creating a bootstrap to launch the MSI with Reinstall parameters

2011-01-23 Thread David Borneman
Actually, let me back up a second. The whole reason I created this question is that the RemoveExistingProducts action is just not working. The "upgrade" succeeds, but it leaves multiple entries in the Add/Remove Programs CP. I went thru literally dozens of attempts with different settings for Upg

Re: [WiX-users] Uninstallation removes nothing

2011-01-23 Thread Thorsten Tarrach
That is interesting. However I did not use the cleanup tool on that machine until I had the problem. Next time I will monitor the component count closely and as soon as the problem occurs I will come back here with the registry entries. > -Original Message- > From: Pally Sandher [mailto:pa

Re: [WiX-users] Question about creating a bootstrap to launch the MSI with Reinstall parameters

2011-01-23 Thread Blair
That requires a bootstrapper that knows something about Windows Installer. Even for minor changes a Major Upgrade is often the simplest option. If you are trying to minimize the changes during upgrades, consider a Major Upgrade with late scheduling of RemoveExistingProducts. -Blair -Original

[WiX-users] Need help on Custom message logging using WIX

2011-01-23 Thread Hareendra Ikkurthi (Accenture)
Hi, I have built an MSI using WIX. I'm trying to create a log for the installer where I can log User-friendly messages instead of verbose logging by enabling a property. I have seen couple of articles on Session. Log() but seems it can't fulfill my requirement. I don't see there is a no mechanis

Re: [WiX-users] Custom Actions & UAC

2011-01-23 Thread Christopher Painter
Here's a couple back articles from my archives on the subject: http://blog.deploymentengineering.com/2006/10/vista-deferred-ca-consideration.html http://blog.deploymentengineering.com/2008/05/welcome-back-sebackupprivilege.html   Christopher Painter, Author of Deployment Engineering Blog Have

Re: [WiX-users] Custom Actions & UAC

2011-01-23 Thread Blair
I haven't used LoadUserProfile in installations because it wreaks havoc with roaming profiles (which some enterprises use), so I haven't personally had a need for that privilege. I do know that some privileges where enabled by default on earlier OSs and still present yet disabled on newer ones, so

Re: [WiX-users] Var's building vars?

2011-01-23 Thread Blair
I just walked through the code and figured out a way to do it with a preprocessor extension, but I didn't come up with a way to do it directly. The WiX preprocessor was inspired by the C/C++ preprocessor, but WiX doesn't include tokenization which is how this is performed in C's preprocessor. -Bl

[WiX-users] Feature not pre-selected

2011-01-23 Thread Rune Moberg
I have a bunch of features. Some of them do not contain any file resources, they're just there as a convenience to help the customer get a few services up and running. Given: I expected that "MM2" would

Re: [WiX-users] 64 Bit program files folder

2011-01-23 Thread Rune Moberg
On Sun, Jan 23, 2011 at 5:58 PM, Rob Mensching wrote: > Installing your program to "Program Files (x86)" isn't about looking good or > being grown up. It just means that you have a 32-bit program. There is > nothing wrong with that. For example, all of the WiX toolset installs to > "Program Files

Re: [WiX-users] 64 Bit program files folder

2011-01-23 Thread Rob Mensching
Installing your program to "Program Files (x86)" isn't about looking good or being grown up. It just means that you have a 32-bit program. There is nothing wrong with that. For example, all of the WiX toolset installs to "Program Files (x86)" as does almost all of Visual Studio. Nothing wrong with

Re: [WiX-users] 64 Bit program files folder

2011-01-23 Thread Rune Moberg
On Sun, Jan 23, 2011 at 12:02 AM, Blair wrote: > If you wish to install your AnyCPU binaries in 64-bit spaces, you need a > 64-bit MSI (yes, use the -arch switch, that is the correct approach). > Realize that an MSI marked 64-bit cannot be installed on a 32-bit system, so > you will need another M