Re: [WiX-users] How do I create an MSMQ Private Queue

2011-05-05 Thread Matthew Slane
A quick search would have led to the Msmq extension. Use it like this http://schemas.microsoft.com/wix/MsmqExtension"; xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";> /SNIP/ -Original Message- From: Gregg Swanson [mailto:gregg.swan...@microsoft.com]

Re: [WiX-users] custom actions after reboot

2011-03-10 Thread Matthew Slane
f you really need to install msmq for your user use a bootstrapper that installs it before your msi is called. -Original Message- From: Matthew Slane [mailto:matthew.sl...@thetrainline.com] Sent: 09 March 2011 16:58 To: General discussion for Windows Installer XML toolset. Subject: Re:

Re: [WiX-users] custom actions after reboot

2011-03-09 Thread Matthew Slane
mas.microsoft.com/wix/UtilExtension";> NOT MSMQAVAILABLE NOT MSMQAVAILABLE NOT MSMQAVAILABLE NOT MSMQAVAILABLE NOT MSMQAVAILABLE -----Original Message-

Re: [WiX-users] Wix and MSMQ: MSMQ Detection

2011-03-09 Thread Matthew Slane
Hi, I've recently done something similar. I look at the registry to see if MSMQ is installed and store the result in a property: Note, this is for windows7, other version may be different. Then if it isn't available I use custom actions to install it using DISM, this is only ava

[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

Re: [WiX-users] Creating MSMQ

2011-03-03 Thread Matthew Slane
Hi, As I usually do, I solved this for myself after getting up and making a coffee. I was using the wrong schema in the wxs file. http://schemas.microsoft.com/wix/MsmqExtension is what I needed. Matt -Original Message- From: Matthew Slane [mailto:matthew.sl...@thetrainline.com] Sent

[WiX-users] Creating MSMQ

2011-03-03 Thread Matthew Slane
Hi, I need to create a few msmq private queues as part of the installation procedure. However I'm getting the following error running candle on my wxs file: error CNDL0200: The Component element contains an unhandled extension element 'pca:MessageQueue'. Please ensure that the extension fo

Re: [WiX-users] Heat generated fragment and source file location

2011-03-02 Thread Matthew Slane
I figured it out, heat.exe -var env.appdir and candle.exe -dappdir=..\_Release\Application candle are what I needed, unless there's a better way? -Original Message- From: Matthew Slane [mailto:matthew.sl...@thetrainline.com] Sent: 02 March 2011 10:13 To: wix-users@lists.sourceforg

[WiX-users] Heat generated fragment and source file location

2011-03-02 Thread Matthew Slane
Hi, I'm using Wix for the first time to build an installation tool for a project . There are several output folders that have the release builds built in a directory parallel to the wix source directory. I'm using Heat to generate a fragment as there's too much to do by hand. When I try to bu