Re: [WiX-users] x86 MSI registry search Win64

2011-03-04 Thread Christopher Painter
Hmm, it's working now.  I must have wired something up incorrectly.   --- Christopher Painter, of Deployment Engineering Blog Have a hot tip, know a secret or read a really good thread that deserves attention? E-Mail Me - Original Message From: Christopher Painter To: wix-users@lists.

[WiX-users] x86 MSI registry search Win64

2011-03-04 Thread Christopher Painter
I'm working on an MSI ( x86 platform ) that bootstraps  SQL CE 3.5 x86 and x64 ( per Microsoft both should be installed ) and then installs a .NET Client ( Any CPU ). Typically I like to "double gate" my prereq checks via AppSearch/LaunchConditions on the event  that the EXE is skipped and the

[WiX-users] adding file to the 3rd party directory

2011-03-04 Thread Mr Dimitri Klyachko
I have a task to add a file to a directory that appears after the 3rd party software has been installed. I am using to get the installation path and How do I pass Directory name from 3RDPARTYPROGRAM_PATH Value to 'GetDirectory'? Would

Re: [WiX-users] ConfigureIIs won't create app pool alone (bug or by design)

2011-03-04 Thread John Robbins
PS: From Yan Sklyarenko: I've recently faced this issue myself and here's even an easier work around: Just place elements for IIsWebSite and IIsWebAddress tables, and the application pool will be created successfully. So, no need to define a fake website. -- Yan John Wintellect http://www.wi

Re: [WiX-users] ConfigureIIs won't create app pool alone (bug or by design)

2011-03-04 Thread John Robbins
Yep, known bug: http://sourceforge.net/tracker/?func=detail&aid=3185104&group_id=105970&atid=642714 Looks like it's fixed in 3.6.1502.0 John Wintellect http://www.wintellect.com +1-877-968-5528 -Original Message- From: Maillet, Ed [mailto:email...@unum.com] Sent: Friday, March 04, 201

[WiX-users] ConfigureIIs won't create app pool alone (bug or by design)

2011-03-04 Thread Maillet, Ed
Hey all, The ConfigurationIIs CA requires one of the following tables in order to run: (from the source) IIsWebSite, IIsFilter, IIsProperty, IIsWebServiceExtension This presents a problem with an MSI needing to only create an app pool since only the IIsAppPool table gets created. That a bug?

Re: [WiX-users] Installation path of Adobe/Return a value from aCustomAction

2011-03-04 Thread David Watson
I don't think the version key that you are using is very reliable, I don't have it on my machine but I do have the InstallPath. Msdn states that the reglocator key column is of the type regPath which is formatted so properties should be usable, but I don't think you can guarantee the search order

Re: [WiX-users] Determine VC Runtime and Patch Level during Install

2011-03-04 Thread Yaroslav Lobachevski
Do it like this. The third version number is different for every "patch level". -- What You Don't Know About Data Connectivity CAN Hurt You This paper provides an overview

Re: [WiX-users] Installation path of Adobe/Return a value from a CustomAction

2011-03-04 Thread bradley.jones
I'm able to copy a file using the custom action, letting the Custom Action (in this case an .exe) handle the entire process. I'm still wondering if there's a way to use the Property Id's and Registry Search to handle this. What is the best practice for determining an installation path that cou

Re: [WiX-users] Can a Custom Actions be reused?

2011-03-04 Thread David Watson
I'm not sure what you are trying to achieve, the windows installer service already logs during these events and you can write to the log from custom actions... All you need to do is pass the /l parameter... See also http://support.microsoft.com/kb/223300 -Original Message- From: Hareend

Re: [WiX-users] How to read binary file content using c#custom action???

2011-03-04 Thread Dan Vasilov
You may want to take a look at http://blogs.msdn.com/b/icumove/archive/2009/06/23/custom-action-using-wix-r eading-from-the-binary-table.aspx. Also http://www.installsite.org/pages/en/msi/ca.htm lists an example " Streaming a File From the Binary Table". 'if the siz

Re: [WiX-users] Executing CA after InstallFiles

2011-03-04 Thread vunder
I found that to get data from CustomActionData property I need to set propetry which named same as a CA: But I steel cannot mo

[WiX-users] Can a Custom Actions be reused?

2011-03-04 Thread Hareendra Ikkurthi (Accenture)
Hi, I'm trying to implement a Wix custom logging mechanism in our existing Wix Setup project. To do this I have written a Logger.exe using a C#. It takes command line string and logs in to file. I have created a custom action to invoke the Logger.exe with command line string, using WixCA a

Re: [WiX-users] How to read binary file content using c#custom action???

2011-03-04 Thread Simon Chromow
What I don't understand, is how to get the file from the binary table. Could you give me an example? What means 'if the size of the file allows' ? Is there a maximum file size for this? Windows Explorer says the file has 6KB. -Ursprüngliche Nachricht- Von: Dan Vasilov [mailto:d...@rms.ro]

[WiX-users] Custom Actions during/post install and uninstall

2011-03-04 Thread Sameer Arora
Am reading the tramontana tutorial - one of the best online I have to say. Just need some clarification from WIX practitioners about custom actions (in C# preferably): - Can one perform custom actions during and post installation and uninstallation ? - I guess custom action post uninstall may not

Re: [WiX-users] How to read binary file content using c# custom action???

2011-03-04 Thread Dan Vasilov
In .NET you will use a BinaryReader or File.ReadAllBytes, if the size of the file allows. Does this answer your question? Dan -Original Message- From: Simon Chromow [mailto:simon.chro...@bewotec.de] Sent: Friday, March 04, 2011 1:05 PM To: wix-users@lists.sourceforge.net Subject

Re: [WiX-users] Launch exe after install WITH Command line

2011-03-04 Thread Thom Leigh
Set the ExeCommand attribute of your LaunchApplication CustomAction: -Original Message- From: Michael Tissington [mailto:michael_tissing...@ciqual.com] Sent: 04 March 2011 11:03 To: 'General discussion for Windows Installer XML toolset.' Subject: [WiX-users] Launch exe after install W

Re: [WiX-users] Executing CA after InstallFiles

2011-03-04 Thread vunder
Any idea's? Any examples? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Executing-CA-after-InstallFiles-tp6076921p6088101.html Sent from the wix-users mailing list archive at Nabble.com.

[WiX-users] How to read binary file content using c# custom action???

2011-03-04 Thread Simon Chromow
Hi wix-users, Does anybody know, how to read content from a specific binary file using a c# custom-action? Thanks for your efforts Simon -- What You Don't Know About Data Connectivity CAN Hurt You This paper provide

[WiX-users] Launch exe after install WITH Command line

2011-03-04 Thread Michael Tissington
I have used WixShellExecTarget to launch an exe at the end of our install. However I need to be able to specify command line arguments. How can a launch an exe with command line arguments? Thanks, Michael -- What You Do

[WiX-users] custom actions after reboot

2011-03-04 Thread Matthew Slane
Hi, I've got a property that checks whether MSMQ is available and custom actions to install it if it isn't. I've also got MsmqExtension working to create queues. I haven't got them working together. The installer works nicely if MSMQ is already installed, otherwise it installs the program bu