[WiX-users] Does XmlConfig works on DCML format?

2009-07-31 Thread Romeo S.
Hi, I want to know if XmlConfig or XmlFile works with DCML format of XML? Like: ?xml version=1.0 standalone=no? !DOCTYPE DCML SYSTEM ../DCML.dtd DCML Type=MyType DescriptionDescription 1/Description NameObejct1/Name DescriptionDescription for

[WiX-users] wxs in 2008 server

2009-07-31 Thread Eswari
Hi, I have msi file which registers two dlls(32 bit and 64 bit) which actually displays the customized context menus.. This is working in Vista 64 bit but same is not working in 2008 server 64 bit.. Any hints/solutions for this. Regards, Subramanyeswari

Re: [WiX-users] wxs in 2008 server

2009-07-31 Thread Michael Clark
What exactly isn't working, could you provide a log file of the failure -Michael 2243 -Original Message- From: Eswari [mailto:sravi...@yahoo.com] Sent: Friday, July 31, 2009 5:59 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] wxs in 2008 server Hi, I have msi file which

[WiX-users] The results of your email commands

2009-07-31 Thread Konstantin Vlasenko
Trying to make my own WixExtension. Do the same as in the SQL extension project (have added my.xsd and made EmbeddedFlattenedResource, XsdGenSource steps). I get the error when I run this cli: candle -ext MyExtension test.wxs error CNDL0200 : The Product element contains an uhandled

[WiX-users] Determine if DTF CA called immediate or deferred

2009-07-31 Thread Tom Crozier
Is there a way to determine whether a DTF custom action was called via an immediate or deferred action other than a try catch around accessing the inappropriate session data and handling the Cannot access session details from a non-immediate custom action exception? The following will throw a

Re: [WiX-users] Is there a walkthrough that works for installingdrivers in an MSI, wix v 3 (5120)?

2009-07-31 Thread Mark Roden
I've upgraded to the July 4th build.Still no joy. On Thu, Jul 30, 2009 at 10:42 PM, Blairos...@live.com wrote: Under msbuild, the build succeeds but there is no MsiDriverPackages table, while from Visual Studio there now is a table? Can you try an upgrade to 3.0.5419.0 (the released

Re: [WiX-users] Determine if DTF CA called immediate or deferred

2009-07-31 Thread John Nannenga
Take a peek at CurrentSession.GetMode, passing it what you're interested in detecting. InstallRunMode.Scheduled I believe is 'deferred', InstallRunMode.Commit is commit, etc... For immediate I use InstallRunMode.Operations || InstallRunMode.Maintenance. -Original Message- From: Tom

Re: [WiX-users] The results of your email commands

2009-07-31 Thread lambda025
On Fri, 31 Jul 2009 08:22:18 -0500 Konstantin Vlasenko konstantin.vlase...@gmail.com wrote: Trying to make my own WixExtension. Do the same as in the SQL extension project (have added my.xsd and made EmbeddedFlattenedResource, XsdGenSource steps). I get the error when I run this cli:

Re: [WiX-users] The results of your email commands

2009-07-31 Thread Blair
In your .xsd file, what is your targetNamespace value? (exactly, case matters). It would be easier to help you if you supply the xs:schema element (we don't need the children) and enough of the test.wxs file to see what you called. -Original Message- From: Konstantin Vlasenko

[WiX-users] strategy for moving/migrating to WIX from other installer

2009-07-31 Thread warne warne
Hi, I have a new version of our product (version2) for which I created a new WIX 3.0 installer. The previous installer for version1 was created with an unknown old installer program. It is an msi though so I can open it in Orca to view product upgrade Ids etc. I can also see that the

Re: [WiX-users] MSI Log Error 1722

2009-07-31 Thread Blair
It usually means your exe returned a non-zero return code (either itself or the OS launcher). Any/all additional diagnostics have to come from your EXE itself. Depending on your OS, that EXE may not be launched on any interactive desktop (since it is running in-script), so you may not be able to

Re: [WiX-users] MSI Log Error 1722

2009-07-31 Thread achandrapano
Well it looks like this is happening during the generatescript portion. Is the EXE actually running at this stage? To confirm this I put MessageBox inside my Exe right when it enters main() and it does not show. Also event viewer does not show any SxS errors. I am on windows xp. Blair-2

Re: [WiX-users] Is there a walkthrough that works for installingdrivers in an MSI, wix v 3 (5120)?

2009-07-31 Thread Blair
I don't know. Walking the codepath, I don't see how you can build without errors without generating that table. Open a bug? -Original Message- From: Mark Roden [mailto:mmro...@gmail.com] Sent: Friday, July 31, 2009 6:36 AM To: General discussion for Windows Installer XML toolset.

Re: [WiX-users] Is there a walkthrough that works for installingdrivers in an MSI, wix v 3 (5120)?

2009-07-31 Thread Mark Roden
I guess so. By the way, the build server does not have visual studio installed, I'm just running directly off of msbuild via the compiler that comes with .NET. I don't know if that functionatlity is supported; I'm going to be installing visual studio on the build server later today, just to test

[WiX-users] How to get consistent behavior from ARPxxxx properties

2009-07-31 Thread Jacques Eloff
Hi I never set any of the ARPxxx properties in my installer code. I noticed that by default, the entry for my application under HKLM\Microsoft\Windows\CurrentVersion\Uninstall\{guid} always contains an entry for NoModify set to 0x0001. On Vista and W2K8 I get both Repair/Remove options in

Re: [WiX-users] MSI Log Error 1722

2009-07-31 Thread Blair
Even on XP the exe will have been launched from a different desktop. Try passing MB_SERVICE_NOTIFICATION to your messagebox (won't work on Vista). -Original Message- From: achandrapano [mailto:achan...@panologic.com] Sent: Friday, July 31, 2009 2:15 PM To: wix-users@lists.sourceforge.net

Re: [WiX-users] Is there a walkthrough that works for installingdrivers in an MSI, wix v 3 (5120)?

2009-07-31 Thread Mark Roden
So, bug submitted. We're going to try the vs build environment thing anyway, because I need this to work. On Fri, Jul 31, 2009 at 3:51 PM, Blairos...@live.com wrote: The core toolset and the extensions don’t depend on VS (unlike building native C++) and are supposed to run in a pure msbuild