Re: [WiX-users] Creating an installer through the command line

2012-06-28 Thread Dan Muller
Awesome, thank you very much. I think that it is all figured out now -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Creating-an-installer-through-the-command-line-tp7579149p7579177.html Sent from the wix-users mailing list archive at Nabble.com. --

Re: [WiX-users] Creating an installer through the command line

2012-06-27 Thread Dan Muller
Before reading this post i did do a search for msbuild and found it in my .NET folders, and i have a copy of wix.target and wixtasks.dll, however they are not actually from the wix installation but my sharpdevelop install. So my question is, is there a wix.target and wixtasks.dll that is distribute

Re: [WiX-users] Creating an installer through the command line

2012-06-27 Thread Dan Muller
I don't know what I was doing but I had tried msbuild but must have supplied the wrong argument. My problem now is that there is no w.target in my C:\Program Files\Windows Installer XML v3.6\bin directory. It exists in my sharp develop directory and I am sure I can find it in the visual studios dir

[WiX-users] Creating an installer through the command line

2012-06-27 Thread Dan Muller
Is there a way to build an installer directly from a wixproj? The normal method is to call candle on a wxs, then light on a wixobj, but in a project with multiple source files and therefore multiple wixobjs, is there a way to create the installer through the command line? What would be the process

Re: [WiX-users] Chaining 2 msi's **UPDATE**

2012-06-20 Thread Dan Muller
Found that the order that the fueatures are listed is the order in which they are installed. By making the merge module first, it guarantees that they files in the merge module are installed first. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Chai

Re: [WiX-users] Chaining 2 msi's

2012-06-20 Thread Dan Muller
Yeah, I had found that link and it was not the most useful, I eventually found some references and learned from them. I got a bundled exe, but I was wondering if there was a way to create a bundled msi instead? Also, can someone point me to a tutorial on changing the burn UI? http://schemas.mi

[WiX-users] Chaining 2 msi's

2012-06-19 Thread Dan Muller
Can someone please explain the process of chaining msi's? I assume that I have to create a Bundle then a Chain tag, but how do I continue from there? I have the two msi's finished, and one must be completed before the other. Thank you in advance for any help, Dan -- View this message in context

Re: [WiX-users] Sets of files installed at different times.

2012-06-15 Thread Dan Muller
Thank you for your in depth response. Since reading your post we have looked in to burn, and have a few questions that we hope someone could answer. An idea that is being thrown around is that of a first MSI that would lay down the necessary files in the form of perl scripts, and a second that wo

[WiX-users] Sets of files installed at different times.

2012-06-15 Thread Dan Muller
Our installer needs to run a set of scripts on install and uninstall, is there a way to write a specific set of files to the disk, then call them using some custom actions we made and depending on whether some of them produced proper files outputs, wix would then install the rest of the files to th

Re: [WiX-users] Perl Script on initialization **UPDATE**

2012-06-15 Thread Dan Muller
Thank you for your help! We eventually figured it out, here is a snippet of our working source We had to write our own exe to do it however, but that was not really a problem. Now we are trying to figure out how we can get the perl scripts into th