Re: [WiX-users] Msiexec command prompt when running setup

2013-08-09 Thread Natalie Carr
Hi Guys, I am not running my setup from the command line, I am double clicking on the MSI file. I have attached an image of the prompt that appears. Thank you for all your help. Natalie -Original Message- From: Phil Wilson [mailto:phil.wil...@mvps.org] Sent: 08 August 2013 19:15 To:

Re: [WiX-users] Heat and harvesting

2013-08-09 Thread JoeMarks
Found the answer, I was doing it all wrong. The code that got it working: Keep in mind that I'm still working on my heat commands, but it this is the way that heat is called on wix. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Heat-and-harves

Re: [WiX-users] Burn Built-in Variables & Custom Boostrapper UI

2013-08-09 Thread Veli-Matti Visuri
Mr. Murri that was just the thing I was looking for. Thanks. Why isn't stuff like this documented or given examples anywhere though? On Thu, Aug 8, 2013 at 11:47 PM, Blair Murri wrote: > String fooString = > Bootstrapper.Engine.FormatString(Bootstrapper.Engine.StringVariables["FooVariable"]);

Re: [WiX-users] is there a way to set a variable by selecting a different radiobutton in BURN?

2013-08-09 Thread StevenOgilvie
Rob do you have any ideas? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/is-there-a-way-to-set-a-variable-by-selecting-a-different-radiobutton-in-BURN-tp7587887p7587910.html Sent from the wix-users mailing list archive at Nabble.com. ---

Re: [WiX-users] How can I Register a Component in Both 32 and 64 Bit Using a Single MSI

2013-08-09 Thread Kariuki, Andrew (KFIA 611)
Hi Wix Gurus, I have a .Net Assembly that is exposed to COM, and is compiled as ANYCPU. I would like to register it in both 32 and 64 bit registry views so that it can be consumed by both 32 and 64 bit applications. Is there a way I can create one single MSI using Wix to install the binaries in

[WiX-users] Validate browser

2013-08-09 Thread Christopher M. Bunn
Does anyone see anything wrong with the following code? I'm trying to check the version of the browser in BURN ( bootstrapper app) and see if it is greater than or equal to 8. Otherwise stop the install and display message. It evaluates to false every time even if I change it to an expression tha

Re: [WiX-users] [WiX-devs] How can I Register a Component in Both 32 and 64 Bit Using a Single MSI

2013-08-09 Thread Kariuki, Andrew (KFIA 611)
Hi Wix Gurus, I have a .Net Assembly that is exposed to COM, and is compiled as ANYCPU. I would like to register it in both 32 and 64 bit registry views so that it can be consumed by both 32 and 64 bit applications. Is there a way I can create one single MSI using Wix to install the binaries in

Re: [WiX-users] Validate browser

2013-08-09 Thread Steven Ogilvie
What does the burn runtime log file have ? -Original Message- From: Christopher M. Bunn [mailto:cmb...@torchmarkcorp.com] Sent: August-09-13 10:18 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Validate browser Does anyone see anything wrong with the following code? I'm try

Re: [WiX-users] Validate browser

2013-08-09 Thread Christopher M. Bunn
Where is the burn runtime log file? I'm not seeing a log file anywhere -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Friday, August 09, 2013 9:24 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Validate browser What

Re: [WiX-users] Validate browser

2013-08-09 Thread Steven Ogilvie
Check your %temp% i.e. C:\Users\\AppData\Local\Temp name would be: MY_INSTALLER_20130809114750.log Steve -Original Message- From: Christopher M. Bunn [mailto:cmb...@torchmarkcorp.com] Sent: August-09-13 11:41 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-

Re: [WiX-users] Validate browser

2013-08-09 Thread Christopher M. Bunn
Great - Thanks Steven! - found it - That is helpful! The expression is false, I'm guessing because it's comparing a string with a number. Is there any way to get the version as a integer/number? [03E0:05EC][2013-08-09T10:53:26]i000: Setting string variable 'IEVersion' to value '6.0.2900.5512' 0

[WiX-users] Heat error

2013-08-09 Thread Jeremiahf
The Class element's ForeignServer or Server attribute was not found; one of these is required. Hello all, I have looked around online and found some developers have run into this. I have not been able to find a solution to get around this error. I am harvesting a directory using the Pre-build E

Re: [WiX-users] Heat error

2013-08-09 Thread Jeremiahf
Added -scom and got around the issue. :) J On Fri, Aug 9, 2013 at 11:21 AM, Jeremiahf wrote: > The Class element's ForeignServer or Server attribute was not found; one > of these is required. > > > Hello all, > > I have looked around online and found some developers have run into this. > I hav

Re: [WiX-users] Validate browser

2013-08-09 Thread Steven Ogilvie
I am getting the version of IIS and see what it is in burn this is what I have: Log results: [1394:1F58][2013-08-09T13:17:00]i000: Setting string variable 'IISVersion' to value '7' [1394:1F58][2013-08-09T13:17:00]i000: Setting string variable 'IISx64Version' to va

Re: [WiX-users] Burn Built-in Variables & Custom Boostrapper UI

2013-08-09 Thread Blair Murri
Burn, being the newest shiny tool in the belt, hasn't had much documentation written for it yet. As we mop up scenarios and bugs we will turn to more documentation. We are always looking for contributors. > Date: Fri, 9 Aug 2013 13:06:37 +0300 > From: veli-matti.vis...@futuremark.com > To: wi

Re: [WiX-users] Validate browser

2013-08-09 Thread Blair Murri
In Burn, when comparing versions: IEVersion >= v5 or IEVersion >= v5.0.0.0 AND IEVersion < v6.0.0.0 etc. Constants that look like version strings that have a v prefixed are treated as a "version" type. That type (for conditions) is NOT available in MSIs. > From: steven.ogil...@titus.

Re: [WiX-users] [WiX-devs] How can I Register a Component in Both 32 and 64 Bit Using a Single MSI

2013-08-09 Thread Blair Murri
Duplicate the registration code in parallel 32-bit component(s). > From: andrew.kari...@credit-suisse.com > To: wix-users@lists.sourceforge.net > Date: Fri, 9 Aug 2013 14:21:21 + > Subject: Re: [WiX-users] [WiX-devs] How can I Register a Component in Both 32 > and 64 Bit Using a Single MSI >

Re: [WiX-users] Validate browser

2013-08-09 Thread Christopher M. Bunn
Great that worked! Thanks for the help Blair and Steven -Original Message- From: Blair Murri [mailto:os...@live.com] Sent: Friday, August 09, 2013 1:27 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Validate browser In Burn, when comparing versions:

[WiX-users] Which is being released?

2013-08-09 Thread StevenOgilvie
On the wixtoolset.org web site I see a 3.8 release and a 4.0. When are you going to release 3.8 and what is the release timeframe for 4.0 and what is the difference between the two? thanks, Steve -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/W

Re: [WiX-users] Which is being released?

2013-08-09 Thread Nicolás Alvarez
2013/8/9 StevenOgilvie : > On the wixtoolset.org web site I see a 3.8 release and a 4.0. > > When are you going to release 3.8 and what is the release timeframe for 4.0 > and what is the difference between the two? 3.8 will just have bugfixes, according to http://robmensching.com/blog/posts/2012/1

[WiX-users] Problems using commandline tools after updating to 3.7.1224.0

2013-08-09 Thread jd.randolph
Earlier this month I finally updated a project to WiX 3.7.1224. After I installed the new version wixproj was no longer recognized in VS2008, so I also upgraded my project to VS2012. Everything has been working without issue under Votive/MSBuild, but today I started working on being able to patch

Re: [WiX-users] Msiexec command prompt when running setup

2013-08-09 Thread Phil Wilson
Attachments don't usually work here - I can't see it. Phil W -Original Message- From: Natalie Carr [mailto:natalie.c...@measuresoft.com] Sent: Friday, August 09, 2013 1:02 AM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Msiexec command prompt wh

[WiX-users] Wix Cabinet Caching Not Working.

2013-08-09 Thread Jeff Nevins
I can't seem to get wix cabinet caching to work. I have 3 cabs True in the wixproj. in the wxs and a component that I know 100% never ever changes marked with http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk ___