Re: [WiX-users] Question about "Customizing Built-in WixUI Dialog Sets" topic

2009-06-12 Thread Andres Juarez
Please dismiss, I have figured it out. thanks > From: andresj_...@hotmail.com > To: wix-users@lists.sourceforge.net > Date: Thu, 11 Jun 2009 21:23:04 -0700 > Subject: Re: [WiX-users] Question about "Customizing Built-in WixUI Dialog > Sets" topic > > > Hi Bob. > > I am at a lost here. >

Re: [WiX-users] Welcome dialog in the WixUI_Advanced

2009-06-12 Thread Andres Juarez
Please dismiss, I have figured it out. > From: andresj_...@hotmail.com > To: wix-users@lists.sourceforge.net > Date: Fri, 12 Jun 2009 07:15:22 -0700 > Subject: Re: [WiX-users] Welcome dialog in the WixUI_Advanced > > > one more curiosity related to this. > > I am seeing that int the WIXUI_Fea

Re: [WiX-users] Trying to execute an exe file during or after my install

2009-06-12 Thread Jacques Eloff
Hi Jim You still need to schedule the action. For example, Jacques On Fri, Jun 12, 2009 at 2:15 PM, MacDiarmid, James D < james.macdiar...@eds.com> wrote: > > I added the following code in my install with the intention that it > would execute the exe file at some point, but it's not working

Re: [WiX-users] How to get the current directory of msi is running from?

2009-06-12 Thread Jirong Hu
Hi Phil The SourceDir worked. Thanks a lot. Jirong -Original Message- From: Wilson, Phil [mailto:phil.wil...@wonderware.com] Sent: Thursday, June 11, 2009 4:53 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] How to get the current directory of msi i

[WiX-users] Trying to execute an exe file during or after my install

2009-06-12 Thread MacDiarmid, James D
I added the following code in my install with the intention that it would execute the exe file at some point, but it's not working. Is there anything I could be missing? Thanks, Jim -- Crystal Reports - New

[WiX-users] Preventing apps from closing during silent upgrades

2009-06-12 Thread Tim Haloun
Hi All, I've written a browser plugin and have encountered what seems an intractable problem with upgrades. When upgrading on XP, silent installs would handle in-use files either by doing a rename and replace on reboot, or writing over them anyway, depending on how they were held. On Vista thoug

Re: [WiX-users] Drop SQL Server database during uninstall

2009-06-12 Thread Michael Osmond
Hello Mary, Romeo Try the following: 1. Create a SqlDatabase for Master, that is not under a component (so its just a reference) 2. Under you component for the target database, but not under the SqlDatabase entry for that database, add a SqlString which is run against Master, executed on uni

[WiX-users] Registering Complus Components

2009-06-12 Thread MacDiarmid, James D
When registering COM+ components, should the elements and associated elements be used or should the registry information be exported using Heat? ...or should both be used? Thanks, Jim -- Crystal Reports - New Free Runti

[WiX-users] How much of a web application deployment process should be packaged in a WiX MSI?

2009-06-12 Thread Kai Chung Lui
Hi all, I'm reviewing the design of one of my clients' web application. One thing in their system that stood out was a very long document that explains every manual step of setting up their web app on a clean server. They currently have an MSI for the web app built using a VS deployment project,

Re: [WiX-users] Windows service and minor upgrade.

2009-06-12 Thread Rob Mensching
It looks like your repair/minor upgrade is replacing the good values with blanks. Which makes sense. The verbose log file should show you the value for those properties. If you don't remember them they'll be lost. Fiorillo Nicola wrote: > Dear all, > In my wix configuration file I install a wind

Re: [WiX-users] How to selectively NOT install file if file already exists on system

2009-06-12 Thread Christopher Painter
Rob- I hear you, but I've been at way too many companies where if the setup developer tries to follow this advice he will be perceived by management and development as contrary or difficult. The reality is we don't have the power to say the customer isn't right. Chris Christopher Painte

[WiX-users] Windows service and minor upgrade.

2009-06-12 Thread Fiorillo Nicola
Dear all, In my wix configuration file I install a windows service given account information through the GUI and filling some properties (SERVICE_DOMAIN, SERVICE_USERNAME, and SERVICE_PASSWORD). Here the snippet: It works fine for install and uninstall. My problem is that when I hav

Re: [WiX-users] SqlDatabase trusted connection

2009-06-12 Thread Rob Mensching
You'd have to modify the .wixlib. Neil Sleightholm wrote: > Sorry used the incorrect term, I meant allow the SqlDatabase custom > action to run non impersonated (like you can with the > element). > > Neil > > -Original Message- > From: Bob Arnson [mailto:b...@joyofsetup.com] > Sent: 12 Ju

Re: [WiX-users] How to create Event Log in Wix

2009-06-12 Thread Rob Mensching
You can create an event log using the EventSource element. Prabhakaran Paulraj wrote: > Hi Everyone, > > I am newbie to Wix. I needed to create an Event Log for the Wix Installation > package to find the status of the components installed. > I went through many but nothing was useful. > > Is ther

Re: [WiX-users] Need help in updating the properties file (xml file)

2009-06-12 Thread Rob Mensching
XPath is very touchy when it comes to namespaces. It's actually down right maddening. I recommend playing with the XPath queries outside of your install to get them right. You'll probably be surprised by the syntax necessary. I always am (and never can remember it, it's so funny looking). Uday

Re: [WiX-users] Wix installer for java applications.

2009-06-12 Thread Rob Mensching
The Windows Installer installs files and registry keys and other such things on Windows. Shouldn't matter the programming language used underneath. WiX just builds Windows Installer packages. rahul.ekb...@sungard.com wrote: > Hi, > > Can we create installer for Java based projects using Wix. How

Re: [WiX-users] How to selectively NOT install file if file already exists on system

2009-06-12 Thread Rob Mensching
1. The customer is not always right. Its hard enough to get developers to care about setup and sustainability (which is actually going to be your problem here). Users don't want to even care about setup and they shouldn't have to. However, I don't know how you can "delight the customer" if your

Re: [WiX-users] How to selectively NOT install file if file already exists on system

2009-06-12 Thread Christopher Painter
I’m curious, in a real world, how do you make developers change their application design and how do you prevent people from modifying the files after you install them? I do understand exactly where Rob is coming from. Unfortunatly I’ve seen way too many .NET systems that are designed exactly

[WiX-users] Multi language msi

2009-06-12 Thread Gilad Israeli
Hello So I've been trying to create a single msi that supports multiple languages. I've managed to create a patch with torch between the default language and the the others I need to support. Now do I have to use "msidb" to merge the transforms into the main msi or can I used come combination of

Re: [WiX-users] How to selectively NOT install file if file already exists on system

2009-06-12 Thread David Bartmess
1. I agree. But that's what the customer has convinced our PM to do. I'd rather have it selected from the code to be included from a non-install directory. 2. The components and component groups are being created via Paraffin, so I have no control over the condition of the component, unless I go

Re: [WiX-users] Welcome dialog in the WixUI_Advanced

2009-06-12 Thread Andres Juarez
one more curiosity related to this. I am seeing that int the WIXUI_Featuretree, this dialog behaves diferently, it has the next buttom. If I open the FeatureTree file, it uses the same than the AdvanceUI one, this is, both of them are modeless and the next buttom is "disabled=yes" so, how i

[WiX-users] Need help in updating the properties file (xml file)

2009-06-12 Thread Uday Kumar
Hi, I am trying to update my properties file (xml) by xquery and with wix-Util:xmlFile functionality. Problem: Not able to update properties file if xmlns="urn:Microsoft.VisualStudio.Data.Schema.Project.SqlCmdVars"> exists in the root node. If I remove this node I am able to update

Re: [WiX-users] CA from merge module not in InstallExecuteSequence table of msi

2009-06-12 Thread Antony Walmsley
I have another merge module that adds custom actions after CostFinalize so I thought there might be a clash somewhere. I removed this other working module from the installer and the new custom action showed up with no problems. When I added it back in, the problem re-appeared. I noticed I was gett

[WiX-users] How to create Event Log in Wix

2009-06-12 Thread Prabhakaran Paulraj
Hi Everyone, I am newbie to Wix. I needed to create an Event Log for the Wix Installation package to find the status of the components installed. I went through many but nothing was useful. Is there anyway to acheive this? Prabhakaran ---

[WiX-users] Wix installer for java applications.

2009-06-12 Thread Rahul.Ekbote
Hi, Can we create installer for Java based projects using Wix. How it is feasible compare to other Java installer? Can it works for following requirements 1) Installing latest java version on user's machine. 2) Calling some service which is dependent on .jar files or calls .jar file?

[WiX-users] Drop SQL Server database during uninstall

2009-06-12 Thread Maryann Fernandes
Hi, I want to do a similar thing. I want to provide an option for deleting database during uninstallation. I added a checkbox to prompt the user, and bound the checkbox to a property, but I don't know how to drop the database if the property is true. The "droponuninstall" attribute on SqlDatabase

Re: [WiX-users] MergeModules vs. WixLib

2009-06-12 Thread Heath Stewart
Wixlibs are just a collection of compiled outputs and binaries. When you include them in your project, you must reference something from them (unlike MSMs that are merged in regardless of the target product). As if you used different fragments - one that defined a Component and another in your prod

Re: [WiX-users] Inconsistent modification date time of Patched Binary on different timezone.

2009-06-12 Thread Heath Stewart
The timestamps in a file are not changed during install (only if a file was actually created by, say, a custom action during installation). There are no standard ways of changint the timestamps; to do so is non-standard. Is there some specific reason it matters? Perhaps we can help you determine a

Re: [WiX-users] Need examples For Major, Minor, Build a nd Revison changes‏

2009-06-12 Thread Heath Stewart
There are a number of examples in wix.chm (that installs with the product, and is availalbe online at http://wix.sourceforge.net) that show how to create small update and minor upgrade patches, as well as major upgrade products. You can also ship small update and minor upgrade products but it's not

Re: [WiX-users] MergeModules vs. WixLib

2009-06-12 Thread karthik.shenoy
Hi All, I want to create an project with wix Lib instead of using WiX merge module. Where can I find any information on WiX lib projects. Can I include Files, registry information in WiX Libs. I created a sample project as mentioned below in WiXlib and gave the reference to same in MSI in