Re: [WiX-users] Wix Changes after converting VSDB to SQLPROJ

2014-05-22 Thread John H Bergman (XPedient)
Change the command line to run the SqlPublisher, and update the installer to include the redistributables. -Original Message- From: Vani Rao [mailto:vani...@microsoft.com] Sent: Thursday, May 22, 2014 2:21 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Wix Changes after conv

Re: [WiX-users] WIX UI Support [P]

2014-05-22 Thread Steven Ogilvie
Classification: Public Sweet, thanks -Original Message- From: Greg Edwards [mailto:gedwa...@polariswireless.com] Sent: May-22-14 2:58 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] WIX UI Support [P] Steve, This looks very interesting. I will review it and prov

Re: [WiX-users] WIX UI Support [P]

2014-05-22 Thread Greg Edwards
Steve, This looks very interesting. I will review it and provide some feedback on this DL. Probably early next week. Thank you. -Greg -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Thursday, May 22, 2014 10:09 AM To: General discussion about the WiX too

Re: [WiX-users] [WiX-devs] Query- Wix 3.5 integration with VS 2013

2014-05-22 Thread Rob Mensching
One more thing. I don't often directly promote my company here but based on your comments below I think you might find the dedicated support for the WiX toolset from FireGiant particularly useful: http://www.firegiant.com/our-services/#support-contracts There are really good people at FireGiant

Re: [WiX-users] CAQuietExec - Requires VC runtime redist?

2014-05-22 Thread Neil Sleightholm
Does this happen on an upgrade or a new install? I find this often happens on upgrade if the service hasn't stopped (my iTunes install does this on every upgrade). Neil -Original Message- From: Gabi Ganam [mailto:gabi.ga...@aternity.com] Sent: 22 May 2014 16:08 To: General discussion a

Re: [WiX-users] Wix Changes after converting VSDB to SQLPROJ

2014-05-22 Thread John Cooper
You'll need: 1) storage of SqlPackage.exe and it's binary dependencies in the Binary Table; 2) a custom action to stream these bits to a convenient place to run them; 3) a custom action to stream the DACPAC, DLL, and publish.xml file to a convenient place; 4) a custom action to setup your SqlCmdV

Re: [WiX-users] WIX UI Support [P]

2014-05-22 Thread Steven Ogilvie
Classification: Public Hey Greg Someone at work sent me this article, I have no idea how good it is etc... Steve -Original Message- From: Greg Edwards [mailto:gedwa...@polarisw

Re: [WiX-users] Fwd: Error CNDL0200: WiX Standard Bootstrapper Application

2014-05-22 Thread Sean Hall
You can either use MSBuild with the .wixproj, or you can run candle/light manually (they don't look at the WixProject file). If you're running candle/light manually, then you have to specify the extension on the command line: http://wixtoolset.org/documentation/manual/v3/howtos/general/extension_u

Re: [WiX-users] Is there some existing tool I can use when I work with WiX localization? [P]

2014-05-22 Thread Steven Ogilvie
Classification: Public Oh then you want to use something like SharpDevelop I use that to create new dialogs for my MSI's < http://www.icsharpcode.net/OpenSource/SD/Download/> Steve -Original Message- From: Uni Gauldoth [mailto:unigauld...@gmail.com] Sent: May-22-14 12:32 PM To: General d

Re: [WiX-users] Is there some existing tool I can use when I work with WiX localization?

2014-05-22 Thread Uni Gauldoth
Thank you for the information, Steve. I'm using WiX to author msi package, and there is not a bundle yet. Can ThmViewer.exe be used with WiX's msi project? I've started to write one, hope it will solve my needs. Regards, Uni On Tue, May 20, 2014 at 12:24 AM, Steve-Ogilvie wrote: > Check out th

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

2014-05-22 Thread TimM
This does not work if the file you want launched is installed through a merge module or wixlib as you can not specify the FileKey to an Id that does not exist in your main wxs project. So what other methods are there to launch an installed app at the end of the install that requires arguments that

[WiX-users] WIX UI Support

2014-05-22 Thread Greg Edwards
I'm sure this has been asked of the group before, so be kind, Similar to the old Microsoft Installer, has there been any movement towards making the WIX toolkit an integrated part of Visual Studio with full user interface support? Thank you. -Greg --

[WiX-users] Fwd: Error CNDL0200: WiX Standard Bootstrapper Application

2014-05-22 Thread Leonardo Pereira
My wxs file content: http://schemas.microsoft.com/wix/BalExtension" xmlns="http://schemas.microsoft.com/wix/2006/wi"> When I run *candle.e

Re: [WiX-users] Passing command line arguments to an app launched after setup

2014-05-22 Thread TimM
Bob, what was the 'normal' custom action that you used at the end of the install to launch your app with arguments? I was also using LaunchApplication to trigger the launch of my application at the end of the UI by check box selection, but I also needed to supply arguments and therefore it did not

Re: [WiX-users] CAQuietExec - Requires VC runtime redist?

2014-05-22 Thread Phil Wilson
You should post your WiX source in case you've got something like Remove="both" or "install" in your ServiceControl code. --- Phil Wilson On Thu, May 22, 2014 at 8:08 AM, Gabi Ganam wrote: > OK, thanks Neil! > > Perhaps you can assist me with a different issue I'm having with WiX; >

[WiX-users] Is it possible to change the startup type of an existing windows service using ServiceControl?

2014-05-22 Thread David Welton
I am trying to start the RemoteRegistry service on a Win7 machine using the ServiceControl element. The service initially has a Startup Type of Disabled. My code simply looks like... VersionNT = 601 I am logged in as an administrat

Re: [WiX-users] CAQuietExec - Requires VC runtime redist?

2014-05-22 Thread Gabi Ganam
OK, thanks Neil! Perhaps you can assist me with a different issue I'm having with WiX; I'm installing an unmanaged c++ windows service, using the standard MSI InstallServices action (in wix, "ServiceInstall" element). Right after "InstallServices" I have a custom action that sets this service's

Re: [WiX-users] CAQuietExec - Requires VC runtime redist?

2014-05-22 Thread Neil Sleightholm
There isn't any way to force part of an msi to run first. Could you rebuild whatever it is you are calling to make it not require the VC runtime. Neil -Original Message- From: Gabi Ganam [mailto:gabi.ga...@aternity.com] Sent: 22 May 2014 15:30 To: General discussion about the WiX tools

Re: [WiX-users] CAQuietExec - Requires VC runtime redist?

2014-05-22 Thread Gabi Ganam
It is too big a change, is there a way to force the merge modules to be installed first? They are gathered as 1 "Feature", and my entire product is another "Feature". And it seems that you're correct - it's not the CA that requires the VC, it is my program (which the CA executes). I guess I'll b

Re: [WiX-users] CAQuietExec - Requires VC runtime redist?

2014-05-22 Thread Neil Sleightholm
I'd suggest you need a bundle which installs the vcredist first (using the exe version) and then runs your msi. (It is not CAQuietExec that requires VC I would assume it is whatever you are running with it.) Neil -Original Message- From: Gabi Ganam [mailto:gabi.ga...@aternity.com] Sen

[WiX-users] CAQuietExec - Requires VC runtime redist?

2014-05-22 Thread Gabi Ganam
In a machine without VCRedist, I get the following error: MSI (s) (D8:C8) [14:31:44:359]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIBA1E.tmp, Entrypoint: CAQuietExec CAQuietExec: CAQuietExec: ?? ??

Re: [WiX-users] Burn StandardBA Dynamic LaunchTarget

2014-05-22 Thread Phill Hogland
I use an mba now, so not using WixStdBA for a while. You can use a formated Burn variable to set LaunchTarget, and you can modify a Burn variable based on user dialog selections using the BAFunctions.DLL. https://wixextba.codeplex.com/ has details and samples related to using the code hosted thei

Re: [WiX-users] Burn StandardBA Dynamic LaunchTarget

2014-05-22 Thread Tom Brezinski
I do not need to install a different MSI, I already pass the values using MsiProperty and install as appropriate. What I need is to change LaunchTarget so the Launch button on the StdBA success screen launches a different executable. Is there a way to change a variable in Burn from the executi

[WiX-users] Wix Changes after converting VSDB to SQLPROJ

2014-05-22 Thread Vani Rao
Hi, I am new to Wix. I have requirement. We have converted the VS2010 .dbproj to SQLPROJ. I need to make changes to the existing wix project to install this SSDT. What are the changes that I need to do for the Wix project? Thanks, Vani --

Re: [WiX-users] [WiX-devs] Query- Wix 3.5 integration with VS 2013

2014-05-22 Thread Neil Sleightholm
I¹d be more worried about the upgrade from VS2010 to VS2013 than the WiX upgrade. Neil >I too am curious why upgrading is a big deal. We work hard to maintain >backwards compatibility in the minor version updates. > --