Re: [WiX-users] Burn : SQL Express 2008 R2 certificate problem

2013-07-11 Thread Tobias S
At first glance I'd say to SuppressSignatureVerification=yes but that's already done. What about keeping the SQL install locally without downloading and therefore modify the ExePackage definition accordingly? (Remove everything beginning with RemotePayload... Or what about re-sign the SQL

Re: [WiX-users] MsiPackage InstallCondition

2013-07-11 Thread Gabriel Ivanes
Tim, LANG is just a burn's parameter i choose sets in installation's command line. My need was to get logonuser's language not UserLanguageID (installation is in system context) But custom actions are not possible in Burn and i usually need a script to know which user (hkusers\sid) to look for.

Re: [WiX-users] Resolve Light 1056 Warning

2013-07-11 Thread John Cooper
Yes, I really hate merge modules. Wixlibs are much better. Always have issues with merge modules I haven't authored. -- John Merryweather Cooper Build Install Engineer - ESA Jack Henry Associates, Inc.® Shawnee Mission, KS  66227 Office:  913-341-3434 x791011 jocoo...@jackhenry.com

Re: [WiX-users] Resolve Light 1056 Warning

2013-07-11 Thread Steven Ogilvie
Sigh, I am confused... When I was using InstallShield (for many years) I was told to always use Merge Modules, easier for upgrading, and easier for grouping features. I have a Server MSI and a Services MSI which is bundled in burn so the bootstrapper can take care of the pre reqs etc... In

Re: [WiX-users] Resolve Light 1056 Warning

2013-07-11 Thread David Watson
Merge modules are only really of use these days to share components with other installation technology. If you are totally wix based use wixlibs or wix fragments. -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: 11 July 2013 13:48 To: General discussion

Re: [WiX-users] ?ifdef not working for ?(env.variable)

2013-07-11 Thread TimM
I am running in to something the same and the logic is screwing me up. I have the following: ?ifdef $(env.PRODUCT_CODE) ? ?define GenProductCode = $(env.PRODUCT_CODE) ? ?else? ?define GenProductCode = * ? ?endif? If the environment variable PRODUCT_CODE exists then

Re: [WiX-users] Resolve Light 1056 Warning

2013-07-11 Thread Rob Mensching
Steve, basically, yes: http://robmensching.com/blog/posts/2008/10/10/what-are-.wixlibs-and-why-would-you-use-them On Thu, Jul 11, 2013 at 5:48 AM, Steven Ogilvie steven.ogil...@titus.comwrote: Sigh, I am confused... When I was using InstallShield (for many years) I was told to always use

Re: [WiX-users] Burn : SQL Express 2008 R2 certificate problem

2013-07-11 Thread Rob Mensching
Since you're using a RemotePayload element, the SuppressSignatureVerification isn't going to do anything. You will want to remove the certificate information from the RemotePayload and populate the Hash instead. On Wed, Jul 10, 2013 at 11:58 PM, Tobias S tobias.s1...@gmail.com wrote: At first

[WiX-users] Custom Action syntax Issue

2013-07-11 Thread Marc Beaudry
Hello All, I have what should be a simple request, even though from all my google searches I cannot get the proper syntax. I can correctly call a custom action without any parameters. I am converting an old Wise MSI to WIX: Essentially in Wise I call my dll with 2 parameters, I really want to

Re: [WiX-users] ?ifdef not working for ?(env.variable)

2013-07-11 Thread TimM
Oh, sorry I had the wrong syntax... It should have been: ?ifdef env.PRODUCT_CODE ? ?define GenProductCode = $(env.PRODUCT_CODE) ? ?else? ?define GenProductCode = * ? ?endif? After the correction it worked as expected... -- View this message in context:

Re: [WiX-users] Burn : SQL Express 2008 R2 certificate problem

2013-07-11 Thread Loïc DELAMBRE
Dear Tobias, Dear Rob, Thank you for the tip, I removed the remotePayload node, added SourceFile attribute and it is working now. Best regards, Loïc -Message d'origine- De : Rob Mensching [mailto:r...@robmensching.com] Envoyé : jeudi 11 juillet 2013 15:26 À : General discussion for

Re: [WiX-users] Resolve Light 1056 Warning

2013-07-11 Thread Steven Ogilvie
Each merge Module contains 3 file elements (one or two dll's and a .config file) and a bunch of Custom Actions I have about 10 wixlibs that are shared between the Merge Modules (dll's that are shared between the merge modules but are installed to different directories) Each merge module is a

Re: [WiX-users] Custom Action syntax Issue

2013-07-11 Thread Hoover, Jacob
You don't/can't. Before elaborating, if you want to install a service then why not use the ServiceInstall/ServiceControl elements which exist today? Getting code right which modifies machine state is hard to do, as you have to handle the install/upgrade/repair/remove operations along with

Re: [WiX-users] Custom Action syntax Issue

2013-07-11 Thread Marc Beaudry
Thanks for your reply, The services I am installing are kernel services and not regular services. From the ServiceInstalll documentation this is not yet supported: ownProcess A Win32 service that runs its own process. shareProcess A Win32 service that shares a process. kernelDriver A kernel

Re: [WiX-users] Custom Action syntax Issue

2013-07-11 Thread Hoover, Jacob
You might want to take a look at the DIFxApp, though I haven't ever used it myself (nor have I ever written/installed a kernel driver). Ref: http://www.mail-archive.com/wix-users@lists.sourceforge.net/msg05576.html -Original Message- From: Marc Beaudry [mailto:mbeau...@matrox.com]

[WiX-users] Windows updates

2013-07-11 Thread Keith.Douglas
Hi folks, Is there a way to bundle-and-install the standalone updates that one would get from Microsoft to update Windows (e.g. security updates with the Windows Update Standalone file type or whatever it is exactly)? If so, where should I start looking to do this? (We have machines which are

Re: [WiX-users] Windows updates

2013-07-11 Thread Alain Forget
Grab the appropriate Service Packs for the OSes you're supporting from http://search.microsoft.com/en-us/DownloadResults.aspx?q=service+pack , and Bundle them into an installer with burn? Sound like it could end up a pretty massive installer though, so you might want to look into the WiX

Re: [WiX-users] Dynamically bind UI Control values

2013-07-11 Thread Raghu
that explains, thanks everyone   Raghu Microsoft Corp, Redmond. From: Hoover, Jacob jacob.hoo...@greenheck.com To: Raghu raghu_ti...@yahoo.com; General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Cc:

Re: [WiX-users] Windows updates

2013-07-11 Thread Keith.Douglas
So Burn is needed? (I am not surprised, given that it would be several files to install that are likely internally transactional and the rest, but just wanted to confirm.) We don't have internet access on the machines; that's sort of the point - to get them a collection of stand-alones over

Re: [WiX-users] Guidance on WiX and NuGet integration

2013-07-11 Thread andy smith
That's really helpful Wilbert, thanks. To be honest I hadn't got my head round the fact that it was really only for developers. I've now got an example project pulling down the packages from an external private feed and being compiled by the build so can now get on with the wix part! :) On Wed,

Re: [WiX-users] Duplicate symbol when using CompilerCore.CreateWixSimpleReferenceRow

2013-07-11 Thread John Ludlow
@Nick: Yes, I'm trying to use the extension in a library which is then used in a setup project. The resulting project relationships would be something like this: https://docs.google.com/file/d/0BzqWyEdx-NBBeDM5ZlJGejRoNE0/edit?usp=sharing The reason for this is that the setup project is just

Re: [WiX-users] Windows updates

2013-07-11 Thread Keith.Douglas
Following up to myself here to ask a question about burn. I had forgotten burn got released in 3.6, since we've never needed to use it (until the below question). Can 3.6 be installed side by side with 3.5? If it matters, I don't need Votive except, perhaps, in 3.6. Keith Douglas Statistics

Re: [WiX-users] Windows updates

2013-07-11 Thread Hoover, Jacob
The answer is kind of. IE, you don't need it installed to use it (assuming you don't need the Visual Studio integration). Take a look in the help docs (in 3.7, look for the topic Integrating WiX Projects Into Daily Builds). -Original Message- From: keith.doug...@statcan.gc.ca

Re: [WiX-users] Windows updates [P]

2013-07-11 Thread Steven Ogilvie
Classification: Public If you are going to use Burn, why not skip 3.6 and go to 3.7? -Original Message- From: keith.doug...@statcan.gc.ca [mailto:keith.doug...@statcan.gc.ca] Sent: July-11-13 12:52 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Windows updates Following

Re: [WiX-users] Windows updates

2013-07-11 Thread Keith.Douglas
So I download the wix37-binaries.zip and follow those sorts of instructions? Keith Douglas Statistics Canada | 170 Tunney's Pasture Driveway, Ottawa ON K1A 0T6 Statistique Canada | 170, promenade Tunney's Pasture, Ottawa ON K1A 0T6 keith.doug...@statcan.gc.ca Telephone | Téléphone 613-951-4405

Re: [WiX-users] Windows updates [P]

2013-07-11 Thread Keith.Douglas
I think we would, but I was just looking at when burn was available and had 3.6 on the brain. Keith Douglas Statistics Canada | 170 Tunney's Pasture Driveway, Ottawa ON K1A 0T6 Statistique Canada | 170, promenade Tunney's Pasture, Ottawa ON K1A 0T6 keith.doug...@statcan.gc.ca Telephone |

Re: [WiX-users] Guidance on WiX and NuGet integration

2013-07-11 Thread John Cooper
I also have a short article on how to write NuGet packages for application to Wixproj Wix project files at my blog at: http://borgsdemons.com/blog/2013/06/13/wix-and-nuget-creating-nuget-packages-to-deploy-wix-wixlibs-and-msbuild-tool-task-assemblies-to-wix-wixprojs/ -- John Merryweather

Re: [WiX-users] Resolve Light 1056 Warning

2013-07-11 Thread Rob Mensching
Wixlibs are missing the redirect directory feature of Merge Modules so converting wouldn't be that straight forward in this case. In general, .wixlibs work better but there are specific cases where using specific features of a Merge Module means you'll want to stick with a Merge Module (and keep

Re: [WiX-users] Windows updates

2013-07-11 Thread Hoover, Jacob
That or upgrade to 3.7 and use the old binaries for your existing builds. -Original Message- From: keith.doug...@statcan.gc.ca [mailto:keith.doug...@statcan.gc.ca] Sent: Thursday, July 11, 2013 12:05 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Windows updates So I