[WiX-users] Problem with Patch Creation

2007-07-03 Thread darrenstone
I am attempting to build a patch that is uninstallable but am not having any joy so far. I am using Wix version 2 and my patch file is as follows: Wix xmlns= http://schemas.microsoft.com/wix/2003/01/wi http://schemas.microsoft.com/wix/2003/01/wi; PatchCreation

Re: [WiX-users] ICE38 and ICE43 error messages - what am I doing wrong ?

2007-07-03 Thread Tony Johnson
Mike, Thanks for the info - great explanation. Cheers Tony _ From: Mike Dimmick [mailto:[EMAIL PROTECTED] Sent: 02 July 2007 20:22 To: 'Tony Johnson'; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] ICE38 and ICE43 error messages - what am I doing wrong ?

[WiX-users] deffered custom actions

2007-07-03 Thread aashish_raina
i know how to send a property to my dll and print it from message box. But now i want to pass the path which user has selected to my property and so that i get it in my dll. plz help. If any one knows ,in that case i can share the code. DISCLAIMER == This e-mail may contain

Re: [WiX-users] deffered custom actions

2007-07-03 Thread fiordean dacian
Try something like this: CustomAction Id=CA1 Property=CA2 Value=[INSTALLDIR]/ CustomAction Id=CA2 BinaryKey=MyDll Execute=deferred DllEntry=MyFunc/ InstallExecuteSequence ... Custom Action=CA1 After=.../ Custom Action=CA2 After=CA1/ ... /InstallExecuteSequence Dacian -

[WiX-users] Fw: deffered custom actions

2007-07-03 Thread fiordean dacian
So your MessageBox displays the name of the property (which is PATH) instead of C:\Program Files\Product Name, right? Make sure your property is all upercase (like PATH and not Path or anything else). Dacian - Original Message From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: fiordean

Re: [WiX-users] version numbering

2007-07-03 Thread Patrick Steele
Thanks for that! I defined some variables at the top of my file like so: ?define MatadorVersionNumberExternal=2.3 ? ?define MatadorVersionNumberInstaller=230 ? ... Package Comments='Matador is a registered trademark of FBBT Limited' Compressed='yes' Description='Matador

Re: [WiX-users] Fw: deffered custom actions

2007-07-03 Thread fiordean dacian
Post your questions on the list pls. There are more chances for you to get help. I'm not sure about that one, you can use a property for your control and reference it from your CA to check its value: Control Id='MyRadioButton' ...Property='ARCHITECTURE' You can refer ARCHITECTURE within the CA

Re: [WiX-users] version numbering

2007-07-03 Thread Simon Dahlbacka
yes, the @InstallerVersion attribute refers to the version of *Windows Installer* needed to install your package, not the version of your package so you shouldn't be changing that... On 7/3/07, Patrick Steele [EMAIL PROTECTED] wrote: Thanks for that! I defined some variables at the top of my

Re: [WiX-users] Problem with Patch Creation

2007-07-03 Thread Bob Arnson
[EMAIL PROTECTED] wrote: --Specified AllowRemoval to be yes. --I have Installer version 3 on my machine. --Both MSI's from which the patch was built have *InstallerVersion=300 *specified. --The patch only updates two existing files, it does not change the structure of the package. The actual

Re: [WiX-users] Installed App Fails To Launch When Non-Default Directory Is Chosen

2007-07-03 Thread Bob Arnson
McGoogus McGrapple wrote: If you look at the pasted mark up below you'll see that my executable is put in the C:\Program Files\MyAppDirectory\ directory unless the user chooses a different directory. Then the value of INSTALLDIR is changed. How are you changing it? You have to use

Re: [WiX-users] Error while trying to build with Crystal Reports XIr2 - Any ideas ?

2007-07-03 Thread DexterSinister
Bob Arnson-6 wrote: Mergemod.dll is a black box so it's impossible to know exactly what's different. WiX v3 also uses the Vista SDK so any problems are going to affect it too. It's either a bug in mergemod.dll or bad merge modules. ** Thanks Bob ... I kinda figured that

[WiX-users] Why isn't this registry entry removed

2007-07-03 Thread carlH
I need to remove a registry entry on install that may or may not exist. I found a thread on this forum that said a good way to do this is using this method, but it fails to remove the entry. What have I done wrong? Directory Id=TARGETDIR Name=SourceDir Directory Id=ProgramFilesFolder

[WiX-users] 学习原理及和培训师的角色定位

2007-07-03 Thread 回复:
━━━ TTT企业培训师培训 开课日期:2007年7月20-22日 地点:上海 开课日期:2007年8月10-12日 地点:深圳 开课日期:2007年11月2-4日 地点:广州 【培训费用】3600元 【主办公司】 众 人 行 管 理 咨 询 机 构 深圳总部电话:0755-26075265 26075429 26075365 22008632 81069646 上海办事处电话:021-51875149 北京办事处电话:010-51293353 传真:

[WiX-users] selected features on major upgrade

2007-07-03 Thread John Lalande
After re-writing our InstallShield installer in WiX, my team leader would like a major upgrade to default to the previously installed feature set as he seen with the IS installer. Is this something my WiX-based installer should be doing by default and I simply missed something? Or does it

Re: [WiX-users] version numbering

2007-07-03 Thread Simon Dahlbacka
please keep this on the mailinglist.. And no, I don't have any good answer to your question other than looking in docs and trial and horror On 7/3/07, Patrick Steele [EMAIL PROTECTED] wrote: Ah! I see. Ok so how do I know what version I require? I'm using Wix v3.

Re: [WiX-users] Installing dotnet framework along with your MSI package

2007-07-03 Thread Pierson Lee (Volt)
It should complete. You'll need to find the flags to do it silently but you are right, there is no guarantee when it will complete or that it will finish if it encounters an error. From: sanjay bhaskar [mailto:[EMAIL PROTECTED] Sent: Monday, July 02, 2007 6:13 PM To: Pierson Lee (Volt);

Re: [WiX-users] Installed App Fails To Launch When Non-Default Directory Is Chosen

2007-07-03 Thread McGoogus McGrapple
YES! That was it! Thank you so much. I've been banging my head against a wall on this one for a while. I couldn't for the life of me find a solution on the net. Below is the changed markup in my exit dialog for any who experience the same issue. (I saw a lot of the same questions in

Re: [WiX-users] selected features on major upgrade

2007-07-03 Thread Mike Dimmick
The MigrateFeatureStates action does this. You have to set MigrateFeatures to 'yes' in the corresponding UpgradeVersion element. I think it will only work if the features have the same names. WiX schedules the MigrateFeatureStates action in the UI and Execute sequences if at least one

Re: [WiX-users] selected features on major upgrade

2007-07-03 Thread John Lalande
Mike, that certainly does the trick. Thanks!!! On 7/3/07, Mike Dimmick [EMAIL PROTECTED] wrote: The MigrateFeatureStates action does this. You have to set MigrateFeatures to 'yes' in the corresponding UpgradeVersion element. I think it will only work if the features have the same names.

[WiX-users] Error using WixVariable

2007-07-03 Thread Mark.Farmer
I can't seem to figure out why I cannot use WixVariable. I keep getting : CNDL0005 : The Product element contains an unexpected child element 'WixVariable'. Product Id=248E08FF-D7C4-46ED-8D4D-601C67FE0AFD Language=1033 Manufacturer=!(wix.Manufacturer) Name=!(wix.ProductName)

[WiX-users] where to download msival2.exe?

2007-07-03 Thread Charles Wan-Calo
Hi, All wix-users, I was trying to download msival2.exe to check my installer. I went to microsoft download center a few days ago. I spent a lot of time searching for Installer SDK for XP. All I could find was Developer SDKs for Vista. Finally I decided to download (BIG download) and

Re: [WiX-users] where to download msival2.exe?

2007-07-03 Thread Vincent Ho
I downloaded the Windows 2003 Platform SDK from the following link: http://www.microsoft.com/downloads/details.aspx?familyid=A55B6B43-E24F-4EA3-A93E-40C0EC4F68E5displaylang=en After you installed it, there should be a MsiVal2.Msi under the Bin folder. Cheers, Vince Charles Wan-Calo wrote:

Re: [WiX-users] Error using WixVariable

2007-07-03 Thread Mike Dimmick
WixVariable is new in WiX 3.0. Are you still using 2.0? Sorry, I don't know the exact version number in which WixVariable was added. -- Mike Dimmick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: 03 July 2007 19:57 To:

[WiX-users] How to debug a CustomAction 1723 error on dll invocation?

2007-07-03 Thread Carter Sanders
Hi- I have a custom action I execute on uninstall, and it fails popping a dialog saying A DLL required for this install to complete could not be run (from msiexec log)- MSI (s) (F8:18) [15:35:49:202]: Creating MSIHANDLE (2) of type 790542 for thread 1560 MSI (s) (F8:2C) [15:35:49:202]: Invoking

[WiX-users] Feature Install Level base on external CABs

2007-07-03 Thread Vincent Ho
Hi, I'm currently making an installer that uses multiple external CABs. Features are disabled depending on which CAB files are in the same directory as the MSI package. This way, I can have one MSI package and ship different set of CABs to each clients. So, for each CAB file I search for it in

Re: [WiX-users] Error using WixVariable

2007-07-03 Thread Mark.Farmer
A.that'll do it. Thanks. -Original Message- From: Mike Dimmick [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 03, 2007 2:23 PM To: Mark Farmer; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Error using WixVariable WixVariable is new in WiX 3.0. Are you still using

Re: [WiX-users] Error using WixVariable

2007-07-03 Thread Mark.Farmer
Does anyone know a good way to accomplish the following? I need the ProductName variable to be inside another property value. But I keep getting Install [ProductName] to: as the result. I've tried !(wix.ProductName) and got the same results. I am using version 2.0 (for arguments sakewe

Re: [WiX-users] Error using WixVariable

2007-07-03 Thread Mike Dimmick
Use a Type 51 Custom Action to set a property to a formatted value. Example: CustomAction Id=SetDestinationDialogInstallText Property=DestinationDialogInstallText Value=Install [ProductName] to: / and schedule it somewhere in the UI sequence before your first dialog is shown, using the

Re: [WiX-users] How do I submit code? Do you want my changes?

2007-07-03 Thread Neil Sleightholm
Rob Thank you for taking the time to respond to my little rant J and for adding my code change to the release (hopefully I will have more for you soon). Neil From: Rob Mensching [mailto:[EMAIL PROTECTED] Sent: 28 June 2007 07:53 To: Neil Sleightholm; wix-users@lists.sourceforge.net

Re: [WiX-users] where to download msival2.exe?

2007-07-03 Thread Charles Wan-Calo
Thanks! I found it. BTW, the installer ran so fast (or was it because I clicked Next too fast?) that I didn't see where the install dir was. I had to do a search to find it. The install dir was C:\Program Files\msival2 -

Re: [WiX-users] Feature Install Level base on external CABs

2007-07-03 Thread Rob Mensching
AFAIK, No. Admin images are always exploded. You scenario is a little unusual. I'm a little surprised it works as well as it does. smile/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Vincent Ho Sent: Tuesday, July 03, 2007 12:26 PM To:

Re: [WiX-users] How to debug a CustomAction 1723 error on dll invocation?

2007-07-03 Thread Rob Mensching
Does your CustomAction have dependencies on the machine that get removed during uninstall? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carter Sanders Sent: Tuesday, July 03, 2007 12:25 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] How to debug a CustomAction 1723

Re: [WiX-users] where to download msival2.exe?

2007-07-03 Thread Bob Arnson
Charles Wan-Calo wrote: I was trying to download msival2.exe to check my installer. You can get the same effect from smoke.exe in WiX v3. -- sig://boB http://joyofsetup.com/ - This SF.net email is sponsored by DB2

Re: [WiX-users] version numbering

2007-07-03 Thread Bob Arnson
Simon Dahlbacka wrote: And no, I don't have any good answer to your question other than looking in docs and trial and horror On 7/3/07, * Patrick Steele* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Ah! I see. Ok so how do I know what version I require? I'm using

Re: [WiX-users] Error while trying to build with Crystal Reports XIr2 - Any ideas ?

2007-07-03 Thread Bob Arnson
DexterSinister wrote: For now, I'm going back to v2.0.5213.0 ... since the merge module issue is more important to me than the other fixes that differentiate the two releases. I mention it because we have no plans to revert back to the old version of the SDK -- in fact, we'll likely keep

Re: [WiX-users] Installed App Fails To Launch When Non-Default Directory Is Chosen

2007-07-03 Thread Bob Arnson
McGoogus McGrapple wrote: YES! That was it! Thank you so much. I've been banging my head against a wall on this one for a while. I couldn't for the life of me find a solution on the net. Below is the changed markup in my exit dialog for any who experience the same issue. (I saw a lot

Re: [WiX-users] Fw: deffered custom actions

2007-07-03 Thread aashish_raina
actually i am selection a value from radio button (Architecture ) which is (x86)(x64). Now i want to send this selected value through my Property to my Dll. I tried that publish ,,It helped partially.. what happened is that i have in my radio button 1 for x86 2 for x64

[WiX-users] Setting UILevel in Wix

2007-07-03 Thread Man, Shirley
Hi, Is there a way to set UILevel to 5, so uninstall can always run in Full UI mode? The reason for this is I need to disable the Ignore button in the FilesInUse dialog, but the change is only reflected in Full UI mode. Uninstalling from Add/Remove Program will still show the Ignore