[WiX-users] Unable to start httpd.exe service ?

2014-03-04 Thread Dhawal Arora
Hi all, This is my code http://schemas.microsoft.com/wix/2006/wi";>

[WiX-users] Case Sensitive dll name

2014-03-04 Thread Ravishankar
Hi, Am facing a strange issue, i have a dll(VB6 created) with name = LITA300.dll and when i extract using Heat.exe it generates a set of Component ID and FileID Now if i change my dll name = lita300.dll , the heat.exe is generating a different set of Component ID and FileID "C:\Program Files (x

Re: [WiX-users] Windows Service Fails to Start

2014-03-04 Thread Pavan Konduru
This worked for me in my installer. Try changing your --Pavan -Original Message- From: Greg Edwards [mailto:gedwa...@polariswireless.com] Sent: Tuesday, March 04, 2014 3:05 PM To: General discussi

Re: [WiX-users] Getting current downloading package name in BA for Web installer

2014-03-04 Thread Saravanan
Hi, I have a problem in Uninstalling the msi which are installed by custom BA. While uninstalling the setup from Control Panel -> Add or remove programs, it will uninstall the bundle only. It doesn't uninstall the MSI files. Is bootstrapper uninstall the installed MSI files by default or we need

Re: [WiX-users] Windows Service Fails to Start

2014-03-04 Thread Gonzalez, John
That happens to be more of a generic message. I had that happen just last week and turned out to be missing VC 2012 runtime. Thanks, John   -Original Message- From: Greg Edwards [mailto:gedwa...@polariswireless.com] Sent: Tuesday, March 04, 2014 4:05 PM To: General discussion about the

[WiX-users] Windows Service Fails to Start

2014-03-04 Thread Greg Edwards
I recently upgraded to Windows 8.1 and my Service Installer now fails to start the service. It seems to get installed but failes to start I receive the following message box from the installer: "Service 'Altus Service' (AltusService) failed to start. Verify that you have sufficient privileges t

Re: [WiX-users] DTF custom action not working but an almost identical is...

2014-03-04 Thread Steven Ogilvie
I don't know whether I should cry or shout for joy... Sigh... Renamed the actual DLLEntry method name to ServicesConnectionStrings Now my custom action is being called and is "working" what I am trying to do isn't getting the right xml element but at least it is "working" :) Steve -Origin

Re: [WiX-users] DTF custom action not working but an almost identical is...

2014-03-04 Thread Steve-Ogilvie
Phil, One custom action is working the other isn't... it is using the SAME custom action DLL so: 1. Are you referencing the correct DLL in the Binary table? yes 2. Are you referencing the correct exported function name? yes 3. Is your class public?

Re: [WiX-users] DTF custom action not working but an almost identical is...

2014-03-04 Thread Phil Wilson
You've seen this? http://stackoverflow.com/questions/3560370/custom-action-in-c-sharp-used-via-wix-fails-with-error-1154 --- Phil Wilson On Tue, Mar 4, 2014 at 10:47 AM, Steve-Ogilvie wrote: > Hi folks, > > I have spent WAY TOO much time on this... > > I get an error 1154 (please

[WiX-users] DTF custom action not working but an almost identical is...

2014-03-04 Thread Steve-Ogilvie
Hi folks, I have spent WAY TOO much time on this... I get an error 1154 (please don't tell me to refer to blah blah) I have 2 custom actions... 1 works, the other doesn't The custom action CA_UPGRADE_GET_WEBPORTNUM works, the CA_UPGRADE_GET_CONNECTSTR doesn't... scenario: When we run an upgrad

Re: [WiX-users] MSU / raw cab

2014-03-04 Thread Keith.Douglas
Yes, I realize. Unfortunately, even getting people to the point where they'd be willing to give some effort to learn this stuff is proving very difficult (despite the fact that these systems I am working on are vital). Also, I doubt that I could get funding. (See signature.) Shame; I do intend

Re: [WiX-users] MSU / raw cab

2014-03-04 Thread Keith.Douglas
I have wanted to use the built in stuff, and even built a "front end" to make things easier. But my colleagues insist (1) that no MSUs are available or (2) "this is a special case, we can't accommodate". I want to make absolutely certain this is really a matter of WSUS (and SCCM) being all that

Re: [WiX-users] MSU / raw cab

2014-03-04 Thread Hoover, Jacob
Shameless plug for Rob, but I hear Fire Giant (http://www.firegiant.com/) has all kinds of experience and insight into WiX and Windows Installer. If you were looking at getting your team up to speed/more comfortable, it may be an option to look into. -Original Message- From: keith.doug.

Re: [WiX-users] MSU / raw cab

2014-03-04 Thread Phill Hogland
FYI - One strategy to learn that I have used is, a) I download the Wix 3.8 source tree, and b) when trying to do a particular task, I use Notepad++ Find-in-Files pointed at the Wix 3.8 source tree to search for similar details to what I am trying to learn. This has helped me understand both the C#

Re: [WiX-users] MSU / raw cab

2014-03-04 Thread Phill Hogland
I'm still pretty new to wix, msi, and C#/wpf also, having come from a C++/Installscript background. I felt overwhelmed for the first several months, but persistence pays off. As I study the source code and the schemas things start to make more sense. I think it will be worth the struggle. --

Re: [WiX-users] MSU / raw cab

2014-03-04 Thread Phill Hogland
I do not really know the answer to your latest questions. In a wix context I think I would use the Wix:MsuPackage and let it handle those details (but I have not had the ocassion to do that yet). I have previously installed msu packages in a non-wix setup using wusa.exe "package-name.msu" /quiet

Re: [WiX-users] MSU / raw cab

2014-03-04 Thread Keith.Douglas
Thanks for the input, Phill. I fear am fighting an uphill battle on this. WiX is new to people (including our installation team) and people are unsure what to make of all of this. Keith Douglas Statistics Canada | 170 Tunney's Pasture Driveway, Ottawa ON K1A 0T6 Statistique Canada | 170, prome

[WiX-users] How to add custom action in BootStrapper

2014-03-04 Thread karthikrangaraj
Hi Guys, How can i check if a third party application is installed in the system and propose a message ok proceed to Install & cancel to quit the installation. Please share me some example. It's really important for my project. Thank you This the Bootstrapper bundle: [code]

Re: [WiX-users] MSU / raw cab

2014-03-04 Thread Keith.Douglas
Hi Phill, This, while helpful to some degree doesn't tell me whether or not I should be using the CAB files (how?) in my WiX bootstrappers or whether I should use the MSUs. I see that to use pkgmgr correctly one needs a XML file (manifest) to do so. Since I was not given such a thing outside t

Re: [WiX-users] MSU / raw cab

2014-03-04 Thread Phill Hogland
More information: http://blogs.msdn.com/b/astebner/archive/2008/03/11/8163455.aspx You might run into this issue: http://support.microsoft.com/kb/928636 I appreciated the information posted in another thread on this general issue about the Wix::MsuPackage element. -- View this message in conte

[WiX-users] MSU / raw cab

2014-03-04 Thread Keith.Douglas
My "OS update" colleagues are telling me I can just install a raw CAB of updates (hotfixes, etc.) and somehow use pkgmgr correctly (transactionally, removably, etc.) without an MSU. Is this really the case? I cannot see this anywhere at Microsoft or in the WiX documentation. All the hotfix stuff

Re: [WiX-users] How WiX created its own setup package?

2014-03-04 Thread David Watson
http://wix.codeplex.com/SourceControl/latest#src/Setup/ -Original Message- From: Bo Zhang [fabbricadigitale] [mailto:b.zh...@fabbricadigitale.it] Sent: 04 March 2014 11:31 To: General discussion about the WiX toolset. Subject: [WiX-users] How WiX created its own setup package? Hi folks,

[WiX-users] How WiX created its own setup package?

2014-03-04 Thread Bo Zhang [fabbricadigitale]
Hi folks, so, as written, I am very curious about this: Is the WiX installer writtn in WiX? Is the sourcecode available? Could you provide a link if you know it? Great thanks. Bo -- Subversion Kills Productivity. Get of