[WiX-users] Component condition ignored during Upgrade

2008-09-26 Thread Pamela Alvarez
Hi Guys, I really need some help!. I made 3 installers (1.0.1.0 -> v1, 1.0.2.0 ->v2, 1.0.3.0 ->v3) each is a full installer and also a major upgrade of the previous installer. As part of my installation I add a virtual Directory for IIS5 and IIS6 as a part of a component(Comp_VirtualDir) and a

Re: [WiX-users] Insert error

2008-09-26 Thread Richard
> I'm using DTF to insert a new row into an empty CustomAction table. I'm > using the following block of code : > > RunMSIQuery(txtMSI.Text, "INSERT INTO `CustomAction` (`Action`, `Type`, > `Source`, `Target`) VALUES ('VisionappSecurityGroup', 51, > 'SecurityGroup', 'v-[NtName]')" > > public stat

Re: [WiX-users] Wix Add Dialog to prompt for username and pwd

2008-09-26 Thread Richard
In article <[EMAIL PROTECTED]>, "Yu, Brian" <[EMAIL PROTECTED]> writes: > I tried the following settings to generate a user and give it admin > rights but failed miserably > I don't see the new user created. Please help I don't see anything wrong with the markup; what does the log say? --

Re: [WiX-users] How to Skip Licence Aggrement Dialog from FreatureTree UI

2008-09-26 Thread Richard
The basic problem here is that when you set up conditions on a Next button to take you to one of N possible dialogs, you have to set up reverse conditions on the Back button of the N dialogs to take you back to the appropriate dialog based on the condition. As the number of dialogs and conditions

Re: [WiX-users] newbie question about removing files created by application

2008-09-26 Thread Chad Petersen
RemoveFiles is defaulting to a sequence before InstallFiles, which is likely all happening prior to your functionality. I think the best approach is to use some other functionality to remove the files, although you could modify the sequence and try to get it to perform the RemoveFiles AFTER your fu

Re: [WiX-users] newbie question about removing files created by application

2008-09-26 Thread kkmca
kkmca wrote: > > I have some birt functionality that creates a number of files and > directories under web inf that remain after uninstall. > > I understand that i need to explicitly remove the files. I understand that > the removefiles node requires a component parent and since these files >

Re: [WiX-users] DTF Dependency Detection

2008-09-26 Thread Jason Ginchereau
A fix for the "error : An item with the same key has already been added" is in this week's build, 3.0.4526 or later. -Original Message- From: Jason Ginchereau [mailto:[EMAIL PROTECTED] Sent: Thursday, September 25, 2008 3:26 PM To: Jacek Dudziak; 'General discussion for Windows Installer

Re: [WiX-users] Has anybody got this to work??

2008-09-26 Thread Rob Mensching
No. -Original Message- From: CHarker [mailto:[EMAIL PROTECTED] Sent: Friday, September 26, 2008 05:05 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Has anybody got this to work?? Rob Funny you should mention "reboot", although not connected I did experiment with the foll

Re: [WiX-users] Insert error

2008-09-26 Thread Rob Mensching
You can only add Temporary rows in a CustomAction -Original Message- From: Powell, Simon [mailto:[EMAIL PROTECTED] Sent: Friday, September 26, 2008 06:37 To: wix-users@lists.sourceforge.net Subject: [WiX-users] FW: Insert error Hi, I'm using DTF to insert a new row into an empty CustomAc

Re: [WiX-users] Certificate install to local machine fails with code 26352

2008-09-26 Thread Rob Mensching
I doubt overwrite will help. Can you get a log file from a failure? That will go a long way to diagnosing the problem. -Original Message- From: Chris Bardon [mailto:[EMAIL PROTECTED] Sent: Friday, September 26, 2008 07:22 To: General discussion for Windows Installer XML toolset. Subject

Re: [WiX-users] Basing a dialog sequence on WixUI_Minimal

2008-09-26 Thread BOB1981
Hi, I see you are trying to access a Control NEXT in WelcomeEulaDlg and actually there is no "Next" Control in this dialog... controls available in WelcomeEulaDlg are only:- Bitmap, LicenseAcceptedCheckBox, Back, Install, InstallNoShield, Cancel, Title, LicenseText, Print,BottomLine. Try using

Re: [WiX-users] Wix Add Dialog to prompt for username and pwd

2008-09-26 Thread Yu, Brian
Hi Richard I tried the following settings to generate a user and give it admin rights but failed miserably I don't see the new user created. Please help -Original Message- From: [EMAIL PROTE

[WiX-users] Certificate install to local machine fails with code 26352

2008-09-26 Thread Chris Bardon
I've had some users complain about a problem with an installer that attempts to add a certificate to the trusted root cert store. I added a component to my setup that looks like this: CERTPATH Most of the time, this works fine, and the root CA cert is put in the local m

[WiX-users] Basing a dialog sequence on WixUI_Minimal

2008-09-26 Thread Adam Connelly
Hi, I'm building an installer and it was going good until I wanted to add a new dialog. I now want my installer to be able to install some "extensions" into a third party application directory, and therefore want to have a dialog that allows users to specify the installation directory. I'm us

Re: [WiX-users] How to Skip Licence Aggrement Dialog from FreatureTree UI

2008-09-26 Thread BOB1981
HI Neil, I think you meant to type "WelcomeDlg" as value of the attribute, am i right? if you notice i have rewired the back button to WelcomeDlg can u explain me little detail what are you suggesting. Thanks PS:- and yeah i tried "LicenseAgreementDlg" , but it gives me the following error

[WiX-users] An issue with Perf Counters in wixV2

2008-09-26 Thread Mukesh Agrawal
Hi I am successfully able to register/unregister my performance counters using WixV2. But, there occurs a problem when I abort the uninstallation. An error message comes up "Failed to register DLL with perfmon (-2147024894 )". Any clue what this problem is? Is this an issue with WixV2 itself? T

[WiX-users] FW: Insert error

2008-09-26 Thread Powell, Simon
Hi, I'm using DTF to insert a new row into an empty CustomAction table. I'm using the following block of code : RunMSIQuery(txtMSI.Text, "INSERT INTO `CustomAction` (`Action`, `Type`, `Source`, `Target`) VALUES ('VisionappSecurityGroup', 51, 'SecurityGroup', 'v-[NtName]')" public static bool

Re: [WiX-users] How to Skip Licence Aggrement Dialog from FreatureTree UI

2008-09-26 Thread Neil Sleightholm
You might also find this blog useful: http://neilsleightholm.blogspot.com/2008/08/customised-uis-for-wix.html. Neil Neil Sleightholm X2 Systems Limited [EMAIL PROTECTED] From: BOB1981 [mailto:[EMAIL PROTECTED] Sent: Fri 26/09/200

Re: [WiX-users] How to Skip Licence Aggrement Dialog from FreatureTree UI

2008-09-26 Thread Neil Sleightholm
I don't think you have rewired the back buttons, this one is probably the problem: NOT Installed Neil Neil Sleightholm X2 Systems Limited [EMAIL PROTECTED] From: BOB1981 [mailto:[EMAIL PROTECTED] Sent: Fri 26/09/2008 14:04 To: wix

Re: [WiX-users] How to Skip Licence Aggrement Dialog from FreatureTree UI

2008-09-26 Thread BOB1981
Hi All, I do got this done But, i dont know something is wrong in the sequence, i added the following in my Product.wxs 1 NOT Installed above code does compiles and the MSi package when installing does not show a license aggrement, as i have change the Value attributes of

Re: [WiX-users] How to Skip Licence Aggrement Dialog from FreeTree UI

2008-09-26 Thread BOB1981
HI All, Anobody know anything about this, please m waiting. Thanks... BOB1981 wrote: > > Hi All, > > I do got this done But, i dont know something is wrong in the sequence, i > added the following in my Product.wxs > > > >Value="CustomizeDlg">1 >Value="WelcomeDlg" Orde

[WiX-users] Resending: Add Remove Programs: Need to suppress fatal error message

2008-09-26 Thread Nimisha Saboo
Hi, Resending as I got no replies. Any pointers on this will be really helpful. Thanks, Nimisha -- Forwarded message -- From: Nimisha Saboo <[EMAIL PROTECTED]> Date: Thu, Sep 25, 2008 at 6:34 PM Subject: Add Remove Programs: Need to suppress fatal error message To: wix-users@list

Re: [WiX-users] Has anybody got this to work??

2008-09-26 Thread CHarker
Rob Funny you should mention "reboot", although not connected I did experiment with the following tag in the file and it has very odd behaviour. Sometimes it insists on a reboot, sometimes not. If you ignore the reboot request everything installs correctly. Any connection? Cliff Rob Mensc