[WiX-users] Installing .NET Hotfix

2013-07-15 Thread Doug Witt
I am installing a .NET hotfix in a bootstrapper. I want to be able to determine if the hotfix has already been installed. I have tried to use the DetectCondition attribute of the ExePackage to check the Netfx4FullVersion but it always evaluates to false. I think my syntax may be wrong. Here

Re: [WiX-users] Newbie question

2013-07-15 Thread Sean Hall
Use a .wxi file. For more info, look at this StackOverflow question http://stackoverflow.com/questions/8495903/how-to-define-a-global-variable-in-wix Sean > Date: Mon, 15 Jul 2013 16:46:13 -0700 > From: kpet...@otaksoft.com > To: wix-users@lists.sourceforge.net > Subject: [WiX-users] Newbie q

[WiX-users] Newbie question

2013-07-15 Thread K Peters
Hi, I do above the product tag in my main.wxs file. I have a number of fragment files, each handling a large number of DLLs for certain product categories. I now want to refer to the LocalRootDir from within these fragment files I have not been able to do this without redefining Lo

[WiX-users] Get Repair to show up in ARP for a bundle

2013-07-15 Thread Sean Hall
ARP can show Uninstall, Change, and Repair for an entry. For my bundles, I can only get Uninstall and Change. Is there a way to get Burn to enable Repair, too? I'm using WiX 3.7 if that matters. Thanks, Sean -

[WiX-users] VS 2013 support

2013-07-15 Thread Ivanoff, Alex
Is there a version of WiX that supports VS 2013? -- See everything from the browser to the database with AppDynamics Get end-to-end visibility with application monitoring from AppDynamics Isolate bottlenecks and diagnose ro

Re: [WiX-users] Restart Service

2013-07-15 Thread John Cooper
I have done it with: 1) AppFabric monitoring and persistence services; and 2) IIS 7.x worker processes. -- John Merryweather Cooper Build & Install Engineer -- ESA Jack Henry & Associates, Inc.(r) Shawnee Mission, KS 66227 Office: 913-341-3434 x791011 jocoo...@jackhenry.com www.jackhenry.com

Re: [WiX-users] Restart Service

2013-07-15 Thread Hoover, Jacob
>From http://msdn.microsoft.com/library/aa371634.aspx, it appears to be >possible (Name = This column is the string naming the service. This column can >be used to control a service that is not installed. ). Have you tried adding >a ServiceControl element in the same component that contains you

[WiX-users] Restart Service

2013-07-15 Thread Parkes, Kevin
Is it possible to restart (ie stop and then start) a service (*not* installed by the MSI) using or would it require a custom action? (The MSI installs a configuration file for the service in question, which must be restarted for the new settings to take effect.) Thanks