Re: [WiX-users] What can cause WcaInitialize to fail?

2010-06-25 Thread Blair
Does your CA DLL have a VERSION resource? -Original Message- From: Tim Krehl [mailto:tim.kr...@shavlik.com] Sent: Thursday, June 24, 2010 9:00 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] What can cause WcaInitialize to fail? Yes it is being

Re: [WiX-users] What can cause WcaInitialize to fail?

2010-06-25 Thread Tim Krehl
- From: Tim Krehl [mailto:tim.kr...@shavlik.com] Sent: Thursday, June 24, 2010 9:00 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] What can cause WcaInitialize to fail? Yes it is being called in DllMain switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH

Re: [WiX-users] What can cause WcaInitialize to fail?

2010-06-25 Thread Blair
Installer XML toolset. Subject: Re: [WiX-users] What can cause WcaInitialize to fail? It does not have a version resource. I also noticed that even on a working system running with /l*vx or /lvoicewarmupx the install log never contains the logging of ::WcaLog(LOGMSG_STANDARD, Working on MyCA); I had

Re: [WiX-users] What can cause WcaInitialize to fail?

2010-06-24 Thread Tim Krehl
Yes it is being called in DllMain switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: ::WcaGlobalInitialize(hModule); break; case DLL_PROCESS_DETACH: ::WcaGlobalFinalize(); break; } Thanks, Tim On Wed, Jun 23, 2010 at 9:58 PM, Rob Mensching r...@robmensching.com wrote: Did you call

[WiX-users] What can cause WcaInitialize to fail?

2010-06-23 Thread Fangren
Hoping someone can shed some light on WcaInitialize. I have a WiX based installer that works on hundreds of different machines, but on a couple it appears that WcaInitialize is failing. The log entry after WcaInitialize is not written to the logs even with verbose logging. What conditions can

Re: [WiX-users] What can cause WcaInitialize to fail?

2010-06-23 Thread Rob Mensching
Did you call WcaGlobalInitialize() in your DllMain()? / WcaGlobalInitialize() - initializes the Wca library, should be called once per custom action Dll during DllMain on