Re: [WiX-users] Is it possible to install a 32-bit COM server DLL under ProgramFiles64Folder?

2010-03-07 Thread Sebastian Brand
This should work as long as your installation is running on a x64 Windows. Best regards, Sebastian Brand http://blog.sebastianbrand.com -Original Message- From: Paul Baker [mailto:paulbak...@gmail.com] Sent: Sunday, March 07, 2010 02:23 To: wix-users@lists.sourceforge.net Subject: Re:

Re: [WiX-users] Creating files from user input

2010-03-07 Thread Blair
Windows Installer has built-in support for files that can be manipulated with the WritePrivateProfileString and related Win32 functions. WiX supplies custom actions for XML-based files. Any other file type would require you to supply your own custom action(s). -Original Message- From:

Re: [WiX-users] Reinstall not updating correct registry value.

2010-03-07 Thread Tony Juricic
One way of avoiding overwrite by the default value during Change is to store INSTALLDIR value in the Registry as the part of custom action that is conditionally executed only on fresh install (i.e. Installed property) -Original Message- From: Sachin Dubey [mailto:sachin.du...@live.com]

[WiX-users] Localization Questions

2010-03-07 Thread Christopher Painter
I've never done much by way of localization and while I'm trying to read every help topic and blog article I can find, I was wondering if there are any experts in this area who have experience with WiX, Merge Modules and hopefully InstallShield, who would be willing to have a detailed

Re: [WiX-users] Wix uninstall problem

2010-03-07 Thread thurein
I have found out the problem, it was because of the msi version installed on the installing machine. Registry values are not writing on the msi version 3.1 machine, so, I upgrade to 4.5 (msi version) and now its working. Thanks -- View this message in context:

Re: [WiX-users] iis extension (fail while processing the website -2147024883 )

2010-03-07 Thread thurein
The root of my problem was the msi version installed on the user's machine, because, my installer is using Registry Value to maintain the port no and the RegistryValue mechanism is not working correctly with msi 3.1 version, so I updated to msi 4.5 and now it is working. Thanks -- View this

[WiX-users] Ensuring an MSI can only be installed per-machine

2010-03-07 Thread Paul Baker
I have set the Package/@InstallScope attribute in my WiX source file to perMachine. As I understand things, this sets the ALLUSERS property to 1. This effectively causes my MSI to default to a per-machine installation, but does not entirely prevent per-user installs since ALLUSERS can be

Re: [WiX-users] Ensuring an MSI can only be installed per-machine

2010-03-07 Thread Thorsten Schöning
Guten Tag Paul Baker, am Montag, 8. März 2010 um 06:13 schrieben Sie: -- If I only ever want my installer to be used per-machine, is it recommended that I do something to try and prevent users overriding ALLUSERS? I wouldn't spend to much effort in trying to prevent the user from doing things