[WiX-users] Custom UI

2009-03-05 Thread Lee Baker
Hi All, I am trying to setup a custom UI for an installer and I have run into a problem that I don't seem to be able to find a way around. I am trying to give the user the ability to enter their Private Key (which is in xml and rather long) which is saved in the config file in my application. There

Re: [WiX-users] Verify the installation mode is silent or not.

2009-03-05 Thread sandun css
Hi Brian, Thanks for the reply. I could get it done using the UILevel property. :) But, I am still unable to run the console application silently. Any idea ? Thanks, Sandun On Thu, Mar 5, 2009 at 9:10 PM, Brian Simoneau < bsimon...@freedomscientific.com> wrote: > You can use the UILevel proper

[WiX-users] Best Way to Reference CustomTables In An External File

2009-03-05 Thread jnewton
I have a variety of MSIs that all include the same several custom tables. I would like to move this custom table to some type of WiX Library and then just have the MSIs reference this table and add in their own rows. I've actually structured it so that the MSIs just create some list that the custo

Re: [WiX-users] Custom Action/DTF and determin if immediate or deferred

2009-03-05 Thread Shenhua GU
It's determined by how you define your custom action in the wix files. -Original Message- From: Mark Knutson [mailto:markknut...@hotmail.com] Sent: Friday, March 06, 2009 8:26 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Custom Action/DTF and determin if immediate or deferre

[WiX-users] Installing to a Different Drive

2009-03-05 Thread Rob Jones
Running Wix v 3.0.4721. I fire off my msi with my own bootstrapper code, and I would like to be able to have my installation go to a different drive (other than the system drive) via a commandline parameter that is passed to msiexec. Here is a snippet of the wxs code I’m currently using:

Re: [WiX-users] Custom Action/DTF and determin if immediate or deferred

2009-03-05 Thread Jason Ginchereau
Use Session.GetMode(InstallRunMode) -- it's just a very thin wrapper around the MsiGetMode Win32 API (http://msdn.microsoft.com/en-us/library/aa370125.aspx) -Original Message- From: Mark Knutson [mailto:markknut...@hotmail.com] Sent: Thursday, March 05, 2009 4:26 PM To: wix-users@lists.s

[WiX-users] Custom Action/DTF and determin if immediate or deferred

2009-03-05 Thread Mark Knutson
Using DTF, how do you determine if the custom action is being executed as either immediate or as deferred? Thanks -- Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA -OSBC tackles the

Re: [WiX-users] Passing data between deferred custom actions

2009-03-05 Thread Jason Ginchereau
Actually, you shouldn't have to worry about that. Any semicolons in your data will be automatically escaped (doubled) and unescaped as necessary for serialization. -Original Message- From: John Nannenga [mailto:john.nanne...@microsoft.com] Sent: Friday, February 20, 2009 10:01 AM To: Ge

Re: [WiX-users] sending CustomAction output to stdout

2009-03-05 Thread Reddy, Mallikarjun (GWM-CAI)
Try >> for >> -Original Message- From: phillip_sid...@dellteam.com [mailto:phillip_sid...@dellteam.com] Sent: Thursday, March 05, 2009 4:17 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] sending CustomAction output to stdout So I have this CustomAction that performs a databa

Re: [WiX-users] Trying to use util:CloseApplication to close Outlook

2009-03-05 Thread Castro, Edwin (Hillsboro)
Sounds like you might be missing a reference to WixUtilExtension.dll Edwin G. Castro Software Developer - Staff Electronic Banking Services Fiserv Office: 503-746-0643 Fax: 503-617-0291 www.fiserv.com Please consider the environment before printing this e-mail > -Original Message- > Fro

[WiX-users] Trying to use util:CloseApplication to close Outlook

2009-03-05 Thread David Bartmess
I'm trying to close any open Outlook session, but I'm getting the following error on the code below: http://schemas.microsoft.com/wix/2006/wi"; xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";> 1 . . . The Product element contains an unhandled extension element

[WiX-users] Error message when installing certificate - is this a WIX bug ?

2009-03-05 Thread Joe Osman
I am installing a certificate to the root certificate authority as well as adding the same certificate to the IIS Server. During the installation I get the error: Failed to write data to metabase key. (-2147023584 /LM/W3SVC/1/ ) I am using WIX3.0 on Windows server 2008 , IIS 7.0 The erro

[WiX-users] sending CustomAction output to stdout

2009-03-05 Thread Phillip_Sidari
So I have this CustomAction that performs a database synchronization and I would like to take the output and put it in a log file: I tried adding the following, but it does not seem to like ">>". Am I missing something simple? Of course if I execute the resultant command manually it w

Re: [WiX-users] Advice on Click Through technology wanted

2009-03-05 Thread Bob Arnson
Bob Arnson wrote: > ClickOnce is a WiX/MSI solution for the same scope of problem that > ClickOnce aims to solve. > Click*Through* is a WiX/MSI solution for the same scope of problem that ClickOnce aims to solve. -- sig://boB http://joyofsetup.com/ -

Re: [WiX-users] Problem running app from Module

2009-03-05 Thread Bob Arnson
Taras Ko wrote: > > Do you need to use WixShellExec to launch the app? If not, just use a CustomAction with FileKey. Otherwise, try SuppressModularization, but be aware that means your module will conflict with any other WixShellExecTarget. -- sig://boB http://joyofsetup.com/ --

Re: [WiX-users] Advice on Click Through technology wanted

2009-03-05 Thread Bob Arnson
Neil Sleightholm wrote: > I was under the impression that ClickThrough was an implementation of > ClickOnce but I may be wrong. > ClickOnce is a WiX/MSI solution for the same scope of problem that ClickOnce aims to solve. -- sig://boB http://joyofsetup.com/ ---

Re: [WiX-users] Advice on Click Through technology wanted

2009-03-05 Thread Neil Sleightholm
I was under the impression that ClickThrough was an implementation of ClickOnce but I may be wrong. Neil -Original Message- From: Phil Sayers [mailto:p...@cds-am.net] Sent: 05 March 2009 18:38 To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Advice on

[WiX-users] Fragment Templates

2009-03-05 Thread Castro, Edwin (Hillsboro)
I have a scenario where I have a fragment I want to repeat numerous times with just a few parameters changed (for differences in names, GUIDs, etc). I don't think WiX provides a template-like facility so I was wondering how people manage similar scenarios. Right now I'm debating whether I shoul

[WiX-users] Problem running app from Module

2009-03-05 Thread Taras Ko
Tray.exe application is installed from Module part of installation. I need to run it after installing. Yes, the code is: Not Installed This works fine in main element but not in (.msm file) containing the file. The reason is simple: property WixShellExecTarget for a module is regis

Re: [WiX-users] Is this a bug of WIX?

2009-03-05 Thread Bob Arnson
Rob Hamflett wrote: > Yes, but it's a copy with the cabs ripped out of it. I can't imagine that > exceeds 200M. MSI always reserves space for temporary, secure copies of the MSI, including CABs. This is one reason Windows warns when you get low on space on drive C. -- sig://boB http://joyo

Re: [WiX-users] Advice on Click Through technology wanted

2009-03-05 Thread Phil Sayers
I'm not in a position to help, but clarification about whether the original poster meant to say "Click Once" Or "Click Through" would be helpful before this discussion goes a lot further. -Original Message- From: Neil Sleightholm [mailto:n...@x2systems.com] Sent: Thursday, March 05, 2

Re: [WiX-users] Passing data between deferred custom actions

2009-03-05 Thread Christopher Karper
1.) session["PropertyName"] will access the property you're looking for. 2.) Call session.DoAction("ActionName", CAData) 3.) I don't know that you can. Can't you just put that in the CAData? Chris On Thu, Mar 5, 2009 at 1:19 PM, mkk wrote: > > I have a few questions. > > 1. In my immediate

Re: [WiX-users] Passing data between deferred custom actions

2009-03-05 Thread mkk
I have a few questions. 1. In my immediate custom action, how do I get the property value in DTF (C#). 2. In my immediate custom action after stuffing the CustomActionData how do I serialize it out to the name of the property of the immediate custom action. 3. In my defferred custom action, how

Re: [WiX-users] Advice on Click Through technology wanted

2009-03-05 Thread Neil Sleightholm
I have a similar application to yours although we don't deliver across the web but internally from a server installed on the client site. There is some information on using clickonce with VB6 here http://msdn.microsoft.com/en-us/library/aa697430(VS.80).aspx, I got something to work but it wasn't at

Re: [WiX-users] msi on vista background copy

2009-03-05 Thread Moradi, Ari
Hi Calin, I don't think I've ever seen any documentation in the Windows Installer SDK on these particular issues, but here's a blog post that talks about the problem with cab files and digital signatures: http://blogs.msdn.com/astebner/archive/2006/12/03/uac-prompt-from-unidentified-publisher-ap

[WiX-users] Advice on Click Through technology wanted

2009-03-05 Thread Rob Series
Hi Guys, I wonder if you could give some advice on installer technology. We are a small company with a number of products based on VB6. Our flagship product comprises about 20 (VB6) ActiveX dlls and a couple of ActiveX .exe servers and about 500 resource files. A typical install is between 200 an

Re: [WiX-users] msi on vista background copy

2009-03-05 Thread Calin Iaru
Thanks Ari, If you have an official link that explains this, I would greatly appreciate it. Otherwise I will search for one - I don't doubt what you are saying only need this to be filed in a proper way. Best regards, Calin - Original Message - From: "Moradi, Ari" To: "Gener

Re: [WiX-users] Verify the installation mode is silent or not.

2009-03-05 Thread Brian Simoneau
You can use the UILevel property. http://msdn.microsoft.com/en-us/library/aa372096(VS.85).aspx -Brian Simoneau -Original Message- From: sandun css [mailto:sandun...@gmail.com] Sent: Thursday, March 05, 2009 5:26 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Verify the inst

Re: [WiX-users] msi on vista background copy

2009-03-05 Thread Moradi, Ari
Windows Installer will always keep a copy of your MSI file in %WINDIR%\Installer. It needs it there to repair and uninstall the MSI. The copy it keeps has any embedded cabs removed. But I seem to remember that it copies the entire MSI file to the Installer folder, then removes the embedded c

[WiX-users] msi on vista background copy

2009-03-05 Thread Calin Iaru
I build my MSI with WiX. The problem I see on Vista is that the MSI file is copied to a temporary folder or system folder before installing it. If I have a laptop with 5400 rpms, then that can take awhile - and I see this with lots of installers. 1) How can I prevent this? Some setup apps (usual

[WiX-users] Noel Anderton/DG/Prudential is out of the office.

2009-03-05 Thread noel . anderton
I will be out of the office starting 03/05/2009 and will not return until 03/21/2009. I will respond to your message when I return. -- Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA -OSBC

[WiX-users] Verify the installation mode is silent or not.

2009-03-05 Thread sandun css
Hi, My installer launches a 'Windows Forms Application' when the user presses the installation finish button. But if the installer is executed in the silent mode, (msiexec /i installer.msi /q) I don't want to launch that application. In the silent mode I have to execute a console application sile

Re: [WiX-users] Is this a bug of WIX?

2009-03-05 Thread Rob Hamflett
Shenhua GU wrote: > I believe that Windows will keep a copy of your msi in C:\Windows\Installer. Yes, but it's a copy with the cabs ripped out of it. I can't imagine that exceeds 200M. Having said that, I've just had a quick look in my %WINDIR%\Installer folder and I have a few >200MB patch f

Re: [WiX-users] Is this a bug of WIX?

2009-03-05 Thread Shenhua GU
I believe that Windows will keep a copy of your msi in C:\Windows\Installer. -Original Message- From: xfishxi [mailto:xfis...@yeah.net] Sent: Thursday, March 05, 2009 5:43 PM To: wix-users Subject: [WiX-users] Is this a bug of WIX? Hi all I find a problem with WIX, I made a installer by w

[WiX-users] Is this a bug of WIX?

2009-03-05 Thread xfishxi
Hi all I find a problem with WIX, I made a installer by wix, when I install our product(it requires 300M on the hard drive), the problem is coming. My C drive's free space is 200M, My D drive's free space is 6G, so i select the destination folder on D drive, but the install process still can no