Re: [WiX-users] Property value not changing properly

2010-03-04 Thread Alex Wernecke
Fantastic. Thanks for your help, got it working. Regards, Alex -Original Message- From: Lisa Gracias [mailto:lisathelugubri...@gmail.com] Sent: Wednesday, March 03, 2010 2:49 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Property value not

Re: [WiX-users] Creating a Major Upgrade Patch

2010-03-04 Thread Pally Sandher
That's what made me feel like a total clown. I normally test the hell out of my MSI's on my virtual machines by doing things like making fake future patches upgrades to ensure they'll be fine if (when) we need to release an update in the future. I guess you can't really know success until you've

Re: [WiX-users] How do I: Generate a Complete Installer usingCommand-Line Tools

2010-03-04 Thread Pally Sandher
Package Elements are children of Product Elements (http://wix.sourceforge.net/manual-wix3/wix_xsd_package.htm). That's what the error is essentially saying. You've tried to put a Package Element under the WiX element. You may want to get a basic knowledge of WiX before you try building entire

Re: [WiX-users] If certain version (or higher) of Java's JDK isinstalled, continue, else download install latest JDK

2010-03-04 Thread Pally Sandher
Windows Installer won't allow concurrent installations as it's a transactional system. Use a bootstrapper. Also WiX != Windows Installer. WiX is a tool for making MSI's. Windows Installer does all the actual installation work. Palbinder Sandher Software Deployment IT Administrator T: +44 (0)

Re: [WiX-users] Auto-generated vs statically assigned GUIDs

2010-03-04 Thread Pally Sandher
If you want to ship updates as MSP's (Small Update or Minor Upgrade in Microsoft terminology) don't use auto-generated GUIDs. If you're only ever going to ship updates as MSI's (Major Upgrades) you need to change the Product Code every time anyway so auto-generating is fine. See -

Re: [WiX-users] File from local location

2010-03-04 Thread Pally Sandher
The CopyFile element should do what want. http://wix.sourceforge.net/manual-wix3/wix_xsd_copyfile.htm Palbinder Sandher Software Deployment IT Administrator T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate with the Virtual Environment**

Re: [WiX-users] Nested installation of downloaded prerequisites

2010-03-04 Thread Pally Sandher
I've seen people pushing MSI building packages which have buttons on UI pages to launch stuff like .NET Framework installers, XNA etc. during the InstallUISequence to bypass this issue. Personally I'd never do this as when a sys admin pushes your package out across their domain your app could

Re: [WiX-users] Info 2888. Executing the Binary view failed

2010-03-04 Thread Pally Sandher
Make sure your RTF is a 'plain' RTF. Easiest way to do that is open it in Wordpad save it. If you created or edited it in Microsoft Word it will have a load of extra formatting all over it which causes problems in ScrollableText Controls. Are you using a stock WiX UI or a Custom/Customized one?

Re: [WiX-users] Pause the PrepareDlg dialog?

2010-03-04 Thread Tabmow
Bob Arnson-6 wrote: On 3/2/2010 10:21 AM, Tabmow wrote: I know the PrepareDlg pops up (modeless dialog) briefly at very beginning, but is there a way to 'pause' it there or slow it down from disappearing so fast? I want to check one thing out on the layout and it disappears too fast

Re: [WiX-users] Info 2888. Executing the Binary view failed

2010-03-04 Thread BSR PHANI
hi Sandher, Thanks for your valuable input, i'll follow the steps you suggested. we are following the customized approach to load EULA to our dialogs. Thanks, Phani On Thu, Mar 4, 2010 at 5:57 PM, Pally Sandher pally.sand...@iesve.comwrote: Make sure your RTF is a 'plain' RTF. Easiest way to

Re: [WiX-users] Merge Module versioning, or equivalent

2010-03-04 Thread admiristrator
Hi Bob, I guess I'm completely missing how to version files then. I don't find any attributes or child elements of component or file that seem related. I'm not aware of any consistent file-versioning aspect of the windows file systems. Also, I expect a need to version non-files, such as

Re: [WiX-users] Merge Module versioning, or equivalent

2010-03-04 Thread Pally Sandher
You're basically asking if the Component Rules exist if so how do they work. See http://msdn.microsoft.com/en-us/library/aa370561.aspx the pages its last paragraph links to. Rob M wrote some very good blogs regarding the above which I'd recommend as further reading

[WiX-users] Conditionally Install Component if Registry Key Exists

2010-03-04 Thread Brendan Rice
I have a component I need to install only if a registry key exists which means an application has been installed. I need to assign the value of the registry key (it is a directory) to a property then use this property to copy files from. I have the following script so far but get an error The

[WiX-users] Conditionally Install Component if Registry Key Exists

2010-03-04 Thread Brendan Rice
I have a component I need to install only if a registry key exists which means an application has been installed. I need to assign the value of the registry key (it is a directory) to a property then use this property to copy files from. I have the following script so far but get an error The

[WiX-users] ora_aspnet install

2010-03-04 Thread Scharp, Craig
Hi, We have been using wix to create installs for a while now and all is working nicely. However, I now have to create a new install for our new oracle customers. I'm trying to find the best way to run the aspnet oracle scripts that will install the ora_aspnet tables, views, roles Prior

Re: [WiX-users] IIS WebServiceExtension removed on repair

2010-03-04 Thread pmdarrow
pmdarrow wrote: Something weird is happening - when I enable an IIS Web Service Extension using the following: Component Id=EnableAspNet Guid=B45DFBD5-073F-4B0B-8C65-57BE57683300 Directory=INSTALLDIR CreateFolder / iis:WebServiceExtension Id=ASPExtension Group=ASP.NET

[WiX-users] Wix 3.5 Build error

2010-03-04 Thread David Largen
My team has upgraded to Visual Studio 2010, TFS 2010 and MSBuild 2010 and I have installed the 3.5.1426 on a new build and development box but I am receiving the following candle error. C:\Program Files (x86)\MSBuild\Microsoft\WiX\v3.5\Wix2010.targets - 2 error(s), 0 warning(s), View Log File

[WiX-users] Conditional FeatureTree Features

2010-03-04 Thread Arun Perregatturv
Hi, I am using WIXUI_FeatureTree with removal of License and including a custom dialog which has 3 radiogroups. Based on the radio group selection I have display the feature set in the feature tree. Is it possible? Let me show. Custom Dialog - Server Database Server COM Server

[WiX-users] Wix 3.5 - current state of Burn

2010-03-04 Thread Jacques Eloff
Hi What is the current state of Burn (I'm running 3.5.1419.0) ? I'm looking to produce a bootstrapper fairly urgently that could perform the following: - Embed three MSIs - Run silently - Only install specific MSIs based on a set of launch conditions that are not in the MSIs themselves, but

[WiX-users] Problem with XmlConfig

2010-03-04 Thread Richard Fine
Hi, I've got a package that is a plug-in for another product. When I install the plug-in, I want it to modify the app.config file for the primary product to register itself; similarly I want it to deregister itself on uninstall. I've got this all working except for the uninstall part. In my

Re: [WiX-users] Merge Module versioning, or equivalent

2010-03-04 Thread admiristrator
Ok, thanks for the links. I'm going to be working through them, but at first glance, I can tell I still need a hint. I can't tell if you're suggesting that if I understood Component Rules, I'd know that what I'm looking to do violates those rules. Is that what you're saying? More generally, is

[WiX-users] Combobox Display Question/Problem

2010-03-04 Thread Kevin Garman
Hi, I'm trying to use a combobox on a dialog with the following code: Control Id='cmbLocale' Type='ComboBox' X='122' Y='91' Width='100' Height='13' Property='SET_LOCALE' ComboBox Property='SET_LOCALE' ListItem Text='English (UK)' Value='en-uk' / ListItem

[WiX-users] Customizing the ARP entry

2010-03-04 Thread Kevin Garman
Hi, I have an installer with many instance transforms. During install the user is prompted for a free form string to identify the instance. Is there a way to perhaps append this string to the entry in ARP? For example, if my app is called 'MyApp', during install I'd like the user to be able

Re: [WiX-users] Customizing the ARP entry

2010-03-04 Thread Kevin Garman
Nevermind, I found it. I can do it with a custom action setting ProductName...somehow I thought I tried that but it's working. Thanks, Kevin Hi, I have an installer with many instance transforms. During install the user is prompted for a free form string to identify the instance. Is

[WiX-users] Do not remove registry values on uninstall

2010-03-04 Thread Alex Ivanoff
How do I author registry values so they do not get removed on uninstall? -- Download Intel#174; Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune

[WiX-users] SetupBld - quiet install defaults to passive install

2010-03-04 Thread Jacques Eloff
Hi I create a chained installer using SetupBld using a commandline like the one below setupbld.exe -mi MSI1.msi -mi MSI2.msi -mi MSI3 -title Foo -setup obj\chained\tempsrc\setup.exe -license docs\EULA.rtf -out MySetup.exe When I launch the exe using /quiet, I still get a progress bar and the

Re: [WiX-users] SetupBld - quiet install defaults to passive install

2010-03-04 Thread Jacques Eloff
Okay, so after digging through the code, I noticed that when generating the bootstrapper using the -mi option, setup.exe does something interesting: if (pPackage-dwAttributes SETUP_INSTALL_CHAIN_IGNORE_FAILURES) { dwUiLevelPackage |= INSTALLUILEVEL_PROGRESSONLY; // don't throw any scary error

Re: [WiX-users] Pass selected Features as parameters to custom action

2010-03-04 Thread Asiri Wanigarathne
thanks mate you are spot on schdule it after CostFinalize and it worked fine. Regards, Asiri Wanigarathne On 4 March 2010 13:06, jnanneng john.nanne...@microsoft.com wrote: Costing operations haven't occurred at the time the CA is being scheduled so the feature state items are not set,

Re: [WiX-users] Problem with XmlConfig

2010-03-04 Thread Bob Arnson
On 3/4/2010 3:50 PM, Richard Fine wrote: MSI (s) (48:34) [19:55:31:273]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIBFC7.tmp, Entrypoint: ExecXmlConfig What's after that line? There should be a bit of logging if it couldn't process an XmlConfig row. -- sig://boB

Re: [WiX-users] Conditional FeatureTree Features

2010-03-04 Thread Bob Arnson
On 3/4/2010 3:17 PM, Arun Perregatturv wrote: I am using WIXUI_FeatureTree with removal of License and including a custom dialog which has 3 radiogroups. Based on the radio group selection I have display the feature set in the feature tree. Is it possible? Yes. Use AddLocal and Remove

Re: [WiX-users] Conditionally Install Component if Registry Key Exists

2010-03-04 Thread Bob Arnson
On 3/4/2010 11:32 AM, Brendan Rice wrote: File Id=fileToCopy.dat Name=fileToCopy.dat Source=[MYTESTDIR]fileToCopy.dat CopyFile Id=fileToCopy.datCopy DestinationProperty=WEBSERVICEBINFOLDER / /File If you want to copy a file that's

Re: [WiX-users] Creating a Major Upgrade Patch

2010-03-04 Thread Bob Arnson
On 3/4/2010 5:52 AM, Pally Sandher wrote: I guess you can't really know success until you've failed. Well, you know it *really* well then.g -- sig://boB http://joyofsetup.com/ -- Download Intel#174; Parallel

Re: [WiX-users] Wix 3.5 Build error

2010-03-04 Thread Bob Arnson
On 3/4/2010 2:33 PM, David Largen wrote: C:\Program Files (x86)\MSBuild\Microsoft\WiX\v3.5\Wix2010.targets (1730): The specified task executable location C:\Program Files (x86)\Windows Installer XML v3\bin\candle.exe is invalid. Do you get this error from new projects or just upgraded

Re: [WiX-users] Do not remove registry values on uninstall

2010-03-04 Thread Lisa Gracias
Setting Action=create should do it. Refer to: http://wix.sourceforge.net/manual-wix3/wix_xsd_registrykey.htm On Fri, Mar 5, 2010 at 4:13 AM, Alex Ivanoff alex.ivan...@shavlik.comwrote: How do I author registry values so they do not get removed on uninstall?

Re: [WiX-users] Nested installation of downloaded prerequisites

2010-03-04 Thread Lisa Gracias
Thanks for the inputs, everyone. Pally I'll take a look at dotnetinstaller. On Thu, Mar 4, 2010 at 5:34 PM, Pally Sandher pally.sand...@iesve.comwrote: I've seen people pushing MSI building packages which have buttons on UI pages to launch stuff like .NET Framework installers, XNA etc. during

Re: [WiX-users] launch on exit

2010-03-04 Thread Andy.Kruger
I'm trying to launch an exe this way on windows Vista with UAC enabled. But the exe doesn't seems to be launching. Mine is a c# exe and I'm using an admin manifest to tell that it requires elevation. Shouldn't it show the UAC dialog with Allow and Cancel options upon launch?? - Andy MSI

Re: [WiX-users] launch on exit

2010-03-04 Thread Sascha Beaumont
What do you mean by this way? ;) Here's a working fragment copied straight from our current release... Fragment CustomAction Id=SetLaunchApplicationTarget Property=WixShellExecTarget Value=[#$(var.launchapplication)] / CustomAction Id=LaunchApplication

[WiX-users] WiX training in Europe

2010-03-04 Thread Jean-Yves Reutter
Hi, Does anybody know whether training courses about WiX are available somewhere in Europe? Regards JY -- Sicherer, schneller und einfacher. Die aktuellen Internet-Browser - jetzt kostenlos herunterladen! http://portal.gmx.net/de/go/chbrowser