Re: [WiX-users] major update which must uninstall previous installations with support of selection per user/per machine

2011-12-07 Thread Peter Shirtcliffe
The MSI team recommend that you create separate MSIs for per-user and per-machine because they are hard to create correctly. If you are using only MSI v5, there is better support for dual-purpose packages. http://msdn.microsoft.com/en-us/library/dd408068%28VS.85%29.aspx The log entry tells you

Re: [WiX-users] Downloading an MsiPackage with Burn

2011-12-07 Thread John Cooper
In answer to the first question, I believe you currently need it when you build the bootstrapper as it extracts some info from the package. For the second, I believe it will work, but I have no experience with that. As to the third, I believe they're the same except that the ARP properties

Re: [WiX-users] DIFxAPP and Properties question

2011-12-07 Thread Tobias S
Personally I tend to set AddRemovePrograms=no to prevent drivers from showing up in ARP. Mean otherwise the user could uninstall the drivers while leaving back the application which IMHO makes no sense. Back to your question AFAIK configuring the ARP entries is done inside the DifX driver.

Re: [WiX-users] Wix Uninstall - MaintenanceTypeDlg, VerifyReadyDlg Dialog sequence is Shown Twice

2011-12-07 Thread Robert Hermann
I made up a test installer that has the Welcome Dlg, License Dlg, a simple custom dialog and then the rest of the standard dialogs. I install it and then run the install again to uninstall .. from the same command window (cmd.ex), I still get the same scenario ... 1.

[WiX-users] Creating HKLM\Microsoft\Windows\CurrentVersion\Uninstall

2011-12-07 Thread wigyxz-p...@yahoo.com
I would like for my wix-generated install to create the various registry entries under HKLM\Microsoft\Windows\CurrentVersion\Uninstall\{Product-code} MSDN seems to indicate that these keys are updated by the Windows Installer service (see link below), but my installs created with Wix don't seem

Re: [WiX-users] Creating HKLM\Microsoft\Windows\CurrentVersion\Uninstall

2011-12-07 Thread Peter Shirtcliffe
http://msdn.microsoft.com/en-us/library/windows/desktop/aa368032%28v=vs.85%29 .aspx -Original Message- From: wigyxz-p...@yahoo.com [mailto:wigyxz-p...@yahoo.com] Sent: 07 December 2011 16:57 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Creating

Re: [WiX-users] DIFxAPP and Properties question

2011-12-07 Thread Robert Randall
Thanks. I did exactly that and the ARP* properties are working just fine. I love this thing ;-) On Wed, Dec 7, 2011 at 10:00 AM, Tobias S tobias.s1...@gmail.com wrote: Personally I tend to set AddRemovePrograms=no to prevent drivers from showing up in ARP. Mean otherwise the user could

[WiX-users] Copy other file when checkbox is checked?

2011-12-07 Thread Matej Kurpel
Hello all, I got a task of modifying an existing WiX installer. The files are copied in batches (File elements inside DirectoryRef elements) and one of these files (let's name it file.txt) should be modified if a checkbox was checked in one of the installer screens. I was able to create the

Re: [WiX-users] Copy other file when checkbox is checked?

2011-12-07 Thread Peter Shirtcliffe
Create 2 components, 1 component for each text file. Give them * guids. Use the same File element's Name attribute in both components but point the File Source attributes at different versions of the text file in each component. Add a condition to each component: one component's condition should

Re: [WiX-users] Creating HKLM\Microsoft\Windows\CurrentVersion\Uninstall

2011-12-07 Thread wigyxz-p...@yahoo.com
Turns out my problem was that the key was being created, but under the HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall key so I didn't see where it went. The installer was built and installed on Windows 7 64 bit, but I hadn't set the Platform='x64' value in my Package ... 

[WiX-users] Building Burn

2011-12-07 Thread Brad Wildenborg
So I've been running in circles trying to build burn, and always end up with the following error: [readregistry] Registry Path Not Found! - key='Software\Microsoft\VisualStudio\VSIP\10.0\';hive='LocalMachine'; The only other person experiencing this problem with 3.6 ended up not building at all,

Re: [WiX-users] Uninstall stops Explorer but doesn't restart it

2011-12-07 Thread Brad Lemings
How do I force Windows Install to restart Explorer after it kills it? -Original Message- From: Bob Arnson [mailto:b...@joyofsetup.com] Sent: Monday, October 17, 2011 8:39 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Uninstall stops Explorer but doesn't restart it

Re: [WiX-users] Downloading an MsiPackage with Burn

2011-12-07 Thread David Keaveny
Many thanks for that; I added the various flavours of the prerequisites to my package (when you have 25+ dependencies already in your source tree, what's four more?!), and now it builds nicely. On 8 December 2011 01:07, John Cooper jocoo...@jackhenry.com wrote: In answer to the first question, I

Re: [WiX-users] Copy other file when checkbox is checked?

2011-12-07 Thread Matej Kurpel
Thank you, it works! Only two questions: First, is it possible to retain checkbox state when user is launching the installer when application is already installed and the user chooses Change? Second is that, now I am getting two warnings on build of installer: ICE30: The target file

[WiX-users] Can't use property expansion in Control-Publish

2011-12-07 Thread Nevskiy, Alexander
Hi All! Here is my xml: ... Binary Id=CustomActionDLL SourceFile=msicca.dll / CustomAction Id=CustomViewReadme BinaryKey=CustomActionDLL DllEntry=CustomViewReadme Return=ignore / Property Id=CustomSerialValidateProp Value=CustomViewReadme / ... UI ... Dialog ... Control Id=NextButton