Re: [WiX-users] Publish several events with condition.

2009-05-06 Thread Sergey Abakumoff
Thanks you very much, it worked like a charm. Richard-45 wrote: > > > Windows Installer doesn't realize that the property value has changed > inside your custom action. The workaround is to add a control event > after the DoAction event that sets the property to itself, i.e. > , then do your

[WiX-users] InstallUISequence and InstallExecuteSequence

2009-05-06 Thread Hukumchand Shah
Hi All, I have some number custom actions say 10 custom actions. I am calling 5 of them from InstallUISequence and 5 custom actions(deffered) from InstallExecuteSequence. I am not understanding that which custom actions execute first. so i am facing lots of problems here. can some one tell me how

Re: [WiX-users] Modifying MSI database during installation help!

2009-05-06 Thread Curtis Jewell
On Wed, 06 May 2009 18:41 -0700, "DONG LEE" wrote: > Hi guys, > > So I am trying to edit MSI tables (component table, file table, ...) from > a > custom action while the MSI is being run. > Following are the attempts I've made, and so far I have failed miserably. > And I am attempting this becaus

Re: [WiX-users] Modifying MSI database during installation help!

2009-05-06 Thread Rob Mensching
You can only add Temporary rows (and add temporary columns, I think) to existing tables from a CustomAction. DONG LEE wrote: > Hi guys, > > So I am trying to edit MSI tables (component table, file table, ...) from a > custom action while the MSI is being run. > Following are the attempts I've mad

[WiX-users] Modifying MSI database during installation help!

2009-05-06 Thread DONG LEE
Hi guys, So I am trying to edit MSI tables (component table, file table, ...) from a custom action while the MSI is being run. Following are the attempts I've made, and so far I have failed miserably. And I am attempting this because it needs to be customized after being shipped, in runtime based

Re: [WiX-users] wix uninstall dialog

2009-05-06 Thread Michael Urman
On Wed, May 6, 2009 at 19:39, Bob Arnson wrote: > > It's the shell that runs uninstalls with basic UI. Even less likely to > change. > Truly. However Windows Installer could theoretically add support for customizing the basic UI experience without requiring the shell to change. -- Michael Urman

Re: [WiX-users] wix uninstall dialog

2009-05-06 Thread Bob Arnson
Rob Mensching wrote: > That's a Windows Installer decision. If it changes, it'll change because > of them, not the WiX toolset. > It's the shell that runs uninstalls with basic UI. Even less likely to change. -- sig://boB http://joyofsetup.com/ ---

Re: [WiX-users] DEBUG: Error 2753: The File 'DropDatabases.cmd' is not marked for installation.

2009-05-06 Thread Bob Arnson
Vuchuru, Surekha (SBT US EXT) wrote: > I am trying to do a silent installation of our product and it gives and > error saying that a particular cmd file is not marked for installation. > Can anyone explain me what this means and what can be done to avoid this > error...Normal installation of the sa

Re: [WiX-users] Register dll for COM vsdrpCOM

2009-05-06 Thread Wilson, Phil
I believe that's the VS setting that runs RegCap behind your back, imports the generated .reg file, and adds any typelib information into the MSI file. Look at the WiX tool Heat, that's a close equivalent. Phil Wilson -Original Message- From: Hugo Vale [mailto:hugov...@gmail.com] Se

Re: [WiX-users] Cleaning up a messy InstallShield

2009-05-06 Thread lesterbangs
Thanks for the helpful pointers. I've since written a C# program that does the check for the old InstallShield install, runs it if found and cleans up the leftover garbage. Now I would like to follow your suggestion of putting this utility in a custom bootstrapper for the new MSI so I can be sur

Re: [WiX-users] DEBUG: Error 2753: The File 'DropDatabases.cmd' is not marked for installation.

2009-05-06 Thread Wilson, Phil
This usually means that the file is being used for a custom action of the type "a program installed with the product" but the file isn't actually being installed. Perhaps this is because it's in a feature or component not marked for installation, sometimes it can be that the file is already on t

[WiX-users] Register dll for COM vsdrpCOM

2009-05-06 Thread Hugo Vale
Hi guys, I'm converting a setup from Visual Studio Setup to Wix. One of the files in this setup has the property register as vsdrpCOM, how can I do the same in Wix? Thanks in advance, Hugo -- The NEW KODAK i700 Series S

[WiX-users] DEBUG: Error 2753: The File 'DropDatabases.cmd' is not marked for installation.

2009-05-06 Thread Vuchuru, Surekha (SBT US EXT)
Hello All, I am trying to do a silent installation of our product and it gives and error saying that a particular cmd file is not marked for installation. Can anyone explain me what this means and what can be done to avoid this error...Normal installation of the same msi works fine though. Than

Re: [WiX-users] What in the world is "transaction mode"?

2009-05-06 Thread Rob Mensching
No such thing as an "installation session" when using MsiOpenDatabase(). Karma wrote: > Thank you, I appreciate that . And once we do MsiDatabaseCommit(), will the > change be persisted onto the msi file permanently, or would the change be > valid only for the duration of the current installation

Re: [WiX-users] Dialog Modification or Redirection Examples needed

2009-05-06 Thread Rob Mensching
http://wix.sourceforge.net/manual-wix3/WixUI_index.htm MacDiarmid, James D wrote: > Thanks for the info Brian, unfortunately it really didn't tell me > anything. > > -Original Message- > From: Brian Rogers [mailto:rogers.br...@gmail.com] > Sent: Wednesday, May 06, 2009 1:45 PM > To: Genera

Re: [WiX-users] MSI Factory

2009-05-06 Thread MacDiarmid, James D
Unfortunately, I don't have the luxury of time to learn it on those terms and we don't have Visual Studio, so I'm kind of stuck between a rock and a hard place. -Original Message- From: Brian Bakkebo [mailto:bbakk...@gmail.com] Sent: Wednesday, May 06, 2009 3:38 PM To: General discussio

Re: [WiX-users] MSI Factory

2009-05-06 Thread Brian Bakkebo
Hi James, just my two cents here... I had used a trial of MSI Factory(wix version) a long time ago when wix was around 2.0, but then I opted to learn wix instead with the help of WixEdit at first. Bottom line is once I learned Wix I found I dont need msi factory or wixAware, IMHO. Perhaps these p

Re: [WiX-users] What in the world is "transaction mode"?

2009-05-06 Thread Karma
Thank you, I appreciate that . And once we do MsiDatabaseCommit(), will the change be persisted onto the msi file permanently, or would the change be valid only for the duration of the current installation session? Rob Mensching-6 wrote: > > It means your changes to the MSI database won't be pe

Re: [WiX-users] Dialog Modification or Redirection Examples needed

2009-05-06 Thread MacDiarmid, James D
Thanks for the info Brian, unfortunately it really didn't tell me anything. -Original Message- From: Brian Rogers [mailto:rogers.br...@gmail.com] Sent: Wednesday, May 06, 2009 1:45 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Dialog Modification

Re: [WiX-users] Publish several events with condition.

2009-05-06 Thread Richard
Windows Installer doesn't realize that the property value has changed inside your custom action. The workaround is to add a control event after the DoAction event that sets the property to itself, i.e. , then do your remaining events that use the Licensed property in their condition. -- "The Dir

Re: [WiX-users] Dialog Modification or Redirection Examples needed

2009-05-06 Thread Brian Rogers
Hey James, You can look into the WiX source to see how different WiX UIs are made. That might be a good way to start. FeatureTree http://wix.cvs.sourceforge.net/viewvc/wix/wix/src/ext/UIExtension/wixlib/WixUI_FeatureTree.wxs?view=markup Advanced http://wix.cvs.sourceforge.net/viewvc/wix/wix/src/

[WiX-users] Setupbld - bitmap option seems to be ignored (WiX 3.0.5217.0)

2009-05-06 Thread Jacques Eloff
Hi I'm using setupbld and the default stub (setup.exe). When I run the command using the -bitmap switch, the dialog in the EXE that displays the license has a large option piece of real estate on the left. Is this where the bitmap is intended to go? I've tried using the bitmaps that's part of the

[WiX-users] Dialog Modification or Redirection Examples needed

2009-05-06 Thread MacDiarmid, James D
Can anyone point me to any tutorials or examples on how to modify the dialogs? For instance, I'd like to remove the dialog that gives a choice for the setup type and have it go straight to custom install? Thanks, Jim

Re: [WiX-users] wix uninstall dialog

2009-05-06 Thread Rob Mensching
That's a Windows Installer decision. If it changes, it'll change because of them, not the WiX toolset. Yu, Brian wrote: > Is it still the case where we cannot custom uninstallation? > > > > On 10/5/06, Bob Arnson <[EMAIL PROTECTED]> wrote: > > >> Alex Mendes da Costa wrote: >> > > >>>

Re: [WiX-users] Speeding up the light

2009-05-06 Thread Rob Mensching
What part is slow? Try running with verbose switch on and see what is taking the time. Also, what version of the WiX toolset are you using? Bob Arnson wrote: > Riyaz Mogharabin wrote: > >> The process of creating the MSI file for my company product takes about 90 >> minutes to complete. How ca

[WiX-users] WiX wxs script with option to install on Selecting current-user or all-users install.

2009-05-06 Thread Abraham Mathew
I need a complete WiX script that can be build. It had 1. Welcome 2. EULA 3. Install Folder 4. Selecting current-user or all-users install 5. Install 6. Finish I hope I'm not asking for too much, I just need a single wxs file cause its for a simple application, also I need an

[WiX-users] wix uninstall dialog

2009-05-06 Thread Yu, Brian
Is it still the case where we cannot custom uninstallation? On 10/5/06, Bob Arnson <[EMAIL PROTECTED]> wrote: > Alex Mendes da Costa wrote: > > I'm working on setting up an installer using WiX. When I uninstall > > my product, there's a dialog box displayed that just has a progress bar. >

Re: [WiX-users] TabSkip dosn't work

2009-05-06 Thread Bob Arnson
xubutian wrote: > Disabled="no" TabSkip="yes" Text="!(loc.WixUIBack)"> > 1 > > Disabled="no" TabSkip="yes" Text="!(loc.WixUINext)"> > 1 > > > The problem is tab key is still working on these two buttons. > What do the Control_Next column values for these two rows turn into? -- sig://b

Re: [WiX-users] Smart Cabbing and Patches

2009-05-06 Thread Bob Arnson
carlldev wrote: > But what I want to know is whether a patch (produced using WiX) will patch > all of the files if I only specify one, or whether I need to specify all the > files in their different locations for them all to be patched. > The latter: Smart cabbing is just about storage, not the

Re: [WiX-users] [WiX-Users] Error on WiX v3.0.4909.0 when using IIS on Windows 2003 - ID: 2508955

2009-05-06 Thread Bob Arnson
Mathieu Belin wrote: > I'm working with the Wix 3.0.5006.0, can you confirm that the bug is already > fixed and in which version ? Upgrade to WiX v3.0 RC2 or the latest weekly release for the latest fixes. -- sig://boB http://joyofsetup.com/ --

Re: [WiX-users] Custom Action ?

2009-05-06 Thread Bob Arnson
Connatic wrote: > That would explain why i have been unable to get the custom action to work. > Not really. A custom action can display arbitrary UI; what's not supported is trying to "double-pump" the MSI UI. When you say that the install just ends, that means the CA returned an error code.

Re: [WiX-users] Speeding up the light

2009-05-06 Thread Bob Arnson
Riyaz Mogharabin wrote: > The process of creating the MSI file for my company product takes about 90 > minutes to complete. How can I speed this up? > Here's one way: http://www.joyofsetup.com/2008/03/29/wix-performance-tip-use-multiple-cabinets/ -- sig://boB http://joyofsetup.com/ --

Re: [WiX-users] Building MSIs for automated deployment

2009-05-06 Thread Bob Arnson
David Keaveny wrote: > number being incremented at the beginning of each sprint (for instance, this > sprint the package version is 1.0.6, next sprint it will be 1.0.7), but the > deployment is currently a manual process; someone has to uninstall the old > versions and install the new versions. >

Re: [WiX-users] Custom Action ?

2009-05-06 Thread Connatic
Thanks for the reply's guys, That would explain why i have been unable to get the custom action to work. I know this is a very messy way of doing things, but i am still being asked to find a solution to the fact Windows Installer does not have a Network folder browser. ...So i am still pursuing

[WiX-users] [WiX-Users] Error on WiX v3.0.4909.0 when using IIS on Windows 2003 - ID: 2508955

2009-05-06 Thread Mathieu Belin
Hi, I think, I have the same problem -> http://sourceforge.net/tracker/index.php?func=detail&aid=2508955&group_id=105970&atid=642714 ConfigureIIsExec: A matching web object in memory was found, but the web object in memory has no associated base ConfigureIIsExec: Error 0x80070002: Failed to fin