[WiX-users] Locating helper files to use outside Wix

2012-09-10 Thread Natalie Carr
Hi I would like to have a file in the ProjectDir that does not get installed but it helps with the installation. I need to call this file in a C++ Custom Action, where would I locate it? Is there a such a directory/property? Kind Regards, Natalie Carr

Re: [WiX-users] Locating helper files to use outside Wix

2012-09-10 Thread Steven Ogilvie
Oh if you could let me know as well :) STeve -Original Message- From: Natalie Carr [mailto:natalie.c...@measuresoft.com] Sent: September-10-12 6:46 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Locating helper files to use outside Wix Hi I would like to have a file in the

Re: [WiX-users] util:ProductSearch

2012-09-10 Thread Hoover, Jacob
Logged it (https://sourceforge.net/tracker/?func=detailaid=3566307group_id=105970atid=642714) as a 3.7 documentation bug. Thanks, Jacob -Original Message- From: Bob Arnson [mailto:b...@joyofsetup.com] Sent: Sunday, September 09, 2012 5:26 PM To: wix-users@lists.sourceforge.net

Re: [WiX-users] Locating helper files to use outside Wix

2012-09-10 Thread Hoover, Jacob
You'd need to put it in the Binary table, and then extract it in your custom action before interacting with it. It's easy enough to get the file in to the table (Binary .../), but extracting it will take a bit of leg work. I don't believe there is any automated/existing code to extract the

Re: [WiX-users] Locating helper files to use outside Wix

2012-09-10 Thread Peter Shirtcliffe
This is a bit old now but should still be relevant http://blogs.msdn.com/b/icumove/archive/2009/06/23/custom-action-using-wix-re ading-from-the-binary-table.aspx If you can use C# DTF custom actions, this is done for you. -Original Message- From: Hoover, Jacob

[WiX-users] how do you add to the ActionText table...

2012-09-10 Thread StevenOgilvie
Hello, I have a bunch of MergeModules that are installing files running custom actions etc... I would like to add ActionText so when the custom actions run it provides the user with info... How do I add to the ActionText table within WIX? thanks in advance, Steve -- View this message

[WiX-users] problem using merge module dependency...

2012-09-10 Thread StevenOgilvie
Hi all, I have decided to use merge modules for all of the file set, since we have some files that are shared and will be easier to update/upgrade later on… I have 4 Services Merge modules that are installed to c:\program files\Company\Product\Services\ Service 1.. Service2.. Service3..

Re: [WiX-users] how do you add to the ActionText table...

2012-09-10 Thread Peter Shirtcliffe
UI ProgressText Action=EncryptPropertiesEncrypting sensitive information./ProgressText /UI -Original Message- From: StevenOgilvie [mailto:sogil...@msn.com] Sent: 10 September 2012 16:30 To: wix-users@lists.sourceforge.net Subject: [WiX-users] how do you add to the

Re: [WiX-users] how do you add to the ActionText table...

2012-09-10 Thread Steven Ogilvie
Thank you! -Original Message- From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] Sent: September-10-12 12:14 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] how do you add to the ActionText table... UI ProgressText

Re: [WiX-users] WiX Bootstrapper Bundle creating uninstall shortcut in program files

2012-09-10 Thread jaczjill
Hey all, I am really stuck here..! If any one knows that how to create a un-install shortcut of an application in start menu- program files i.e. same as it is available in add\remove programs. I am not getting the product code of Bundle (dynamically generated on the run time). Can we make the

[WiX-users] running a msi via a custom action...

2012-09-10 Thread StevenOgilvie
I am trying to run a MSI that I have installed onto the desktop (via a custom action) but I get a MSI error 1603… I have run the code via a cmd line after the install has finished and it works properly, I just don’t understand why it doesn’t work via the custom action?? CustomAction:

Re: [WiX-users] ia64 libraries are missing in WiX 3.6 SDK

2012-09-10 Thread Vazhenin, Maksim
Thanks for quick resolution of the problem! -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: Friday, September 07, 2012 9:13 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] ia64 libraries are missing in WiX 3.6 SDK Fixed.

Re: [WiX-users] running a msi via a custom action...

2012-09-10 Thread Phil Wilson
Recursive MSI installs don't work (an oversimplification, but a complete explanation is too complex). General approaches are to use Burn to install them separately, or to have one be a prerequisite for the other. This restriction is why VC Redist runtimes and other MSI-based setups are never run

Re: [WiX-users] running a msi via a custom action...

2012-09-10 Thread Chris Lord
Steven, It sounds like you are calling one MSI from another. This is not a Windows Installer recommended practice. If you need to install two MSI's for your application, you should consider using a bootloader such as Burn to install them one at a time. Hope that helps Chris -Original

Re: [WiX-users] running a msi via a custom action...

2012-09-10 Thread Steven Ogilvie
Sorry for the false alarm, Figured it out myself... I had the property named one thing but was calling the deferred customaction with a different Id than the property name hence it didn’t work :) Steve -Original Message- From: StevenOgilvie [mailto:sogil...@msn.com] Sent:

Re: [WiX-users] running a msi via a custom action...

2012-09-10 Thread Steven Ogilvie
Thanks Chris and Phil, Ya :( figured that out, at least the custom action ran... it just didn't install the msi :) Looking at burn Steve -Original Message- From: Chris Lord [mailto:chris.l...@atterotech.com] Sent: September-10-12 1:09 PM To: wix-users Subject: Re: [WiX-users] running

[WiX-users] Tying .NET bootstrapper into existing WiX project

2012-09-10 Thread Ed and Beth Brey
I have a run-of-the-mill .NET app with a simple existing WiX project. I'm trying to include Burn into the project to get the goodness of .NET framework bootstrapping. The app only needs .NET 4.0, so I'd like to install nothing if .NET 4.0 or 4.5 is present, or .NET 4.5 if neither are present

Re: [WiX-users] Tying .NET bootstrapper into existing WiX project

2012-09-10 Thread Steven Ogilvie
I check for .NET4 FULL via this: Chain ExePackage Id=DotNetFx40 DisplayName=Microsoft .NET Framework 4 SourceFile=..\PreReqs\dotNetFx40_Full_x86_x64.exe InstallCommand=/passive /norestart InstallCondition=Installed OR NETFRAMEWORK40FULL Permanent=yes/ Then I have this

Re: [WiX-users] Tying .NET bootstrapper into existing WiX project

2012-09-10 Thread Ed and Beth Brey
I was planning to use PackageGroupRef Id=NetFx45Web/ instead of ExePackage Is that correct? And what do I put after the PackageGroupRef in the Chain so reference by product's installation? Do I have to create two separate projects in VS2012, one for the MSI and one for the bootstrapper?

[WiX-users] Wix Burn helloworld example

2012-09-10 Thread vchauras
I have read the documentation of bundle from source code. I couldn't get a simple burn example worked out. My bundle.wxs file is: ?xml version=1.0 encoding=UTF-8? Wix xmlns=http://schemas.microsoft.com/wix/2006/wi; Bundle

[WiX-users] WixSTDBA: Large MSI and ActionData feedback

2012-09-10 Thread Hoover, Jacob
When using Burn to deploy a rather large MSI (over 27k components), the WixSTDBA doesn't provide granular enough feedback. I was pondering adding ActionData messaging so the end user would be aware that the install hasn't hung. Would this be a valid feature request with an associated patch? If

Re: [WiX-users] Bootstrapper Upgrade Issue

2012-09-10 Thread Tim Comport
I noticed that the bug suggested to be related had been closed, so I tried this again with WiX 3.6.3303.1. The problem is still there. Just to re-iterate: 1. Bundle major upgrade (where 1 or more packages are unchanged, and 1 or more are major upgrades) 2. If any of the packages schedule a

Re: [WiX-users] Wix Burn helloworld example

2012-09-10 Thread Rob Mensching
What version of the WiX toolset are you running? Is there more information in the msbuild log file? On Mon, Sep 10, 2012 at 3:12 PM, vchauras vivekchauras...@gmail.com wrote: I have read the documentation of bundle from source code. I couldn't get a simple burn example worked out. My

Re: [WiX-users] Tying .NET bootstrapper into existing WiX project

2012-09-10 Thread Rob Mensching
You do need separate projects. One project builds the MSI. The other project builds the Bundle. The Bundle references the output of the MSI package using the MsiPackage element. The Chain is an ordered list so put things in the order you desire. Making it easy to wrap a single MSI with a Bundle

Re: [WiX-users] Bootstrapper Upgrade Issue

2012-09-10 Thread Rob Mensching
Ahh, I think this may be the wixstdba trying to avoid a restart-infinite-loop. After a restart the wixstdba tells the engine to skip packages that were installed before the restart so that they do not inadvertently cause a restart again. That's my current guess anyway. The original logs you

Re: [WiX-users] Wix Burn helloworld example

2012-09-10 Thread vchauras
I am using wix3.6.exe on my machine. The log file is all I have. Actually i googled the problem before posting here and ran into one thread (similar to this problem) where you only replied asking for msbuild -fl output. Hence I attached that output. -- View this message in context:

Re: [WiX-users] problem using merge module dependency...

2012-09-10 Thread Rob Mensching
Unless you're sharing Merge Modules with other (non-WiX based) installation tools then I highly recommend using .wixlibs instead of Merge Modules: http://www.robmensching.com/blog/posts/2008/10/10/What-are-.wixlibs-and-why-would-you-use-them That said, the dependency information between Merge

Re: [WiX-users] Wix Burn helloworld example

2012-09-10 Thread Rob Mensching
If you go to ProgramsFeatures, what is the full version of the WiX toolset that you have? The attachment seems to have been lost. Can you provide all the error information from the log file directly in the email? On Mon, Sep 10, 2012 at 9:51 PM, vchauras vivekchauras...@gmail.com wrote: I am

[WiX-users] Burn: Really weird upgrade problem.

2012-09-10 Thread Miss Parker
Hi all! I have a really strange upgrade problem that I could use some help with. Please. :) I've implemented my own bootstrapper application, but when I started this project I made a simple BA (that was based on WixBA) just for testing. When I use my test BA, I can upgrade without any problems