Re: [WiX-users] Running wix tools on non-english windows.

2011-02-10 Thread Rob Mensching
It would be considered a bug if they did not. On Thu, Feb 10, 2011 at 5:34 AM, Elmar Pohl wrote: > Works well on German OS. I've been using WiX 2.0 thru 3.6. > Elmar > > -Ursprüngliche Nachricht- > Von: sangeeta1 [mailto:snmsn...@gmail.com] > Gesendet: Mittwoch, 9. Februar 2011 23:14 > A

Re: [WiX-users] Custom Dialog

2011-02-10 Thread Rob Mensching
There is documentation in the WiX CHM how to do that. There are also blog posts on the internet I've heard. On Thu, Feb 10, 2011 at 9:51 PM, subrat agasti wrote: > Hi, > I want to show a custom dialog which will have two text box.After the user > types these information(and clicks next) , I want

Re: [WiX-users] InstallValidate Action sequence

2011-02-10 Thread Rob Mensching
InstallValidate has a standard sequence. You can schedule custom actions relative to it. On Thu, Feb 10, 2011 at 9:43 PM, Mark Turek wrote: > How do I control the sequence of InstallValidate action. I want my custom > action to execute before InstallValidate displays filesInuse dialog. So far >

[WiX-users] Custom Dialog

2011-02-10 Thread subrat agasti
Hi, I want to show a custom dialog which will have two text box.After the user types these information(and clicks next) , I want to save the data in an xml file. How can i do that? Thanks, Subrat -- The ultimate all-in-one

[WiX-users] InstallValidate Action sequence

2011-02-10 Thread Mark Turek
How do I control the sequence of InstallValidate action. I want my custom action to execute before InstallValidate displays filesInuse dialog. So far I played couple of different tricks with the sequence attribute but it does not seem to have any effect. ---

Re: [WiX-users] Sequence no is not retained in MSI from MSM

2011-02-10 Thread Rob Mensching
Merge Modules do not work well in patching. Melt.exe exists in the WiX toolset to convert MSMs into .wixlibs which allows us to manage the file sequences better than the mergemod.dll can. On Thu, Feb 10, 2011 at 2:06 PM, Narina, Chandra < chandra.nar...@wolterskluwer.com> wrote: > Everybody, > >

[WiX-users] FW: WIX Installer issue.

2011-02-10 Thread Rohit Ghule
Hi Everybody, Let me please explain you all the complete scenario. 1. We have created a WIX installer for one of our products. It works according to design. 2. The WIX installer that we have designed has been primarily designed to work on command line. 3.

Re: [WiX-users] Wix and "tricky" environment variables

2011-02-10 Thread John Robbins
Mark, As someone who's concentrated on debugging and debuggers his whole career, it warms my heart to hear people talking about _NT_SYMBOL_PATH. :) However, _NT_SYMBOL_PATH is only used by debuggers. The .NET StackTrace class, which is generating the call stacks in your exceptions, will only lo

Re: [WiX-users] DIFXAPP: ERROR: Failed to calculate strong name.

2011-02-10 Thread Wilson, Phil
This may be one of the errors you see when the Cryptographic Services service isn't running. Phil Wilson -Original Message- From: James Johnston [mailto:johnst...@inn-soft.com] Sent: Thursday, February 10, 2011 11:22 AM To: 'General discussion for Windows Installer XML toolset.' Subje

Re: [WiX-users] Sequence no is not retained in MSI from MSM

2011-02-10 Thread Narina, Chandra
Everybody, We also have similar issue. When we consume this MSM and create MSI by referring to one of MSM, some times the sequence no is exactly same in MSM and MSI and sometimes it changes. This is changing the image structure between different versions of the MSI which is causing issues in apply

Re: [WiX-users] DIFXAPP: ERROR: Failed to calculate strong name.

2011-02-10 Thread James Johnston
If it's only one PC and it works fine on other computers of similar configuration (same version of Windows, etc.) then maybe also check some registry entries: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DIFxApp HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DIFx HKCU\Software\Microsoft\Window

Re: [WiX-users] DIFXAPP: ERROR: Failed to calculate strong name.

2011-02-10 Thread Jury BURA
INF file doesn't specify cat-file (only DLL and SYS). This problem appear for only one PC configuration. Ok, I'll try install this driver using DPInst and I'll read the topic. Thanks a lot. 10.02.2011 18:52, James Johnston пишет: > Someone more familiar with DIFx might be able to shed some more

Re: [WiX-users] DIFXAPP: ERROR: Failed to calculate strong name.

2011-02-10 Thread James Johnston
Someone more familiar with DIFx might be able to shed some more light here. Your WiX code looks OK to me. If this problem is reproducible on multiple computers then I would blame the driver package. You could also try installing the driver using DPInst and see if that works or not. But I'm su

Re: [WiX-users] DIFXAPP: ERROR: Failed to calculate strong name.

2011-02-10 Thread Jury BURA
Wix code for my driver: Driver isn't WHQL signed. And... typical error message for missed cat file is: DIFXAPP: ERROR: Failed to calculate strong name from 'file-path'. This error message doesn't contain file path. Thanks! 10.02.2011 17:39, James Johnston пишет: > http://www.advancedinst

Re: [WiX-users] DIFXAPP: ERROR: Failed to calculate strong name.

2011-02-10 Thread James Johnston
http://www.advancedinstaller.com/forums/viewtopic.php?f=2&t=2820 Maybe there are some issues with the driver package itself? i.e. bad/missing catalog file. Be sure that the driver files is completely installed & that all required files are in the appropriate locations. If the driver isn't WHQL

Re: [WiX-users] IIS Sites and Component Rules

2011-02-10 Thread Rob Mensching
Okay, your understanding is what I would expect as well. Take a look at a verbose log file. That should the state changes for the Components and explain why they are being removed. A verbose log tells all. On Wed, Feb 9, 2011 at 8:31 AM, Pierson Lee (PIE) wrote: > No. Let me see if I can expla

Re: [WiX-users] Wix and "tricky" environment variables

2011-02-10 Thread Christopher Painter
You can also set up your own symbol server.   You might want to look at that as you could just set all your servers in the farm to point to your symbol server and then outside of your install deploy the symbols to the server ( say as part of your higher level build and deployment process )   ---

Re: [WiX-users] Wix and "tricky" environment variables

2011-02-10 Thread Christopher Painter
For that type of software, personally I like the  "Visual Studio Tools Command Prompt"  pattern.   Give a shortcut to a shell with the right environment and if a user decides to incorporate it into his default environment then he can port the settings over.    I have no problem clicking the VS 

Re: [WiX-users] Wix and "tricky" environment variables

2011-02-10 Thread Mark Modrall
Well, you caught me flat footed with the App Path stuff, so I could be misunderstanding the Symbol Server stuff :) But here's my understanding of what that's about: 1) Microsoft has a public service that will vend .pdb files for Microsoft components and you can set _NT_SYMBOL_PATH to pull from

Re: [WiX-users] Wix and "tricky" environment variables

2011-02-10 Thread Wilbert van Dolleweerd
2011/2/10 Christopher Painter : > I'll be honest,  it's 2011 and I'm hard pressed to understand why software > applications still cling to the need to be in the "PATH"... a concept that > originated some 30 years earlier. How about software that operates on the commandline? In that case it is not

Re: [WiX-users] Wix and "tricky" environment variables

2011-02-10 Thread Christopher Painter
I'm no expert wrt to symbols so treat this advice as an old drunk sailor sitting at the bar telling a story. :-) I did a google search and a lot of people seem to not like _NT_SYMBOL_PATH.   There seems to be some good things to be said about Symbol Server.   Can I assume that your install

Re: [WiX-users] Wix and "tricky" environment variables

2011-02-10 Thread Mark Modrall
Hi Chris... Thanks for the tip on App Path; I didn't know about that one. Unfortunately, I used PATH as an example because I thought that's the one people would be most familiar with, but there are a number of environment variables that function similarly. My own fault for not

Re: [WiX-users] Running wix tools on non-english windows.

2011-02-10 Thread Elmar Pohl
Works well on German OS. I've been using WiX 2.0 thru 3.6. Elmar -Ursprüngliche Nachricht- Von: sangeeta1 [mailto:snmsn...@gmail.com] Gesendet: Mittwoch, 9. Februar 2011 23:14 An: wix-users@lists.sourceforge.net Betreff: [WiX-users] Running wix tools on non-english windows. Hi,

Re: [WiX-users] Including non project assemblies in output

2011-02-10 Thread Neil Sleightholm
Afraid not, I raised a bug about this a while back. Neil Neil Sleightholm X2 Systems Limited n...@x2systems.com From: Ian Lovell [mailto:ian.lov...@coldharbour-systems.co.uk] Sent: Thu 10/02/2011 10:00 To: wix-users@lists.sourcef

Re: [WiX-users] Wix and "tricky" environment variables

2011-02-10 Thread Christopher Painter
I'll be honest,  it's 2011 and I'm hard pressed to understand why software applications still cling to the need to be in the "PATH"... a concept that originated some 30 years earlier. Can you redesign your application to not need to be in the path?  Or, can you use AppPaths to make certain exec

[WiX-users] Including non project assemblies in output

2011-02-10 Thread Ian Lovell
Hi, I have a WiX setup package (3.5) configured in Visual Studio 2010, and I have added all of the solutions projects as references to the setup project, and set the 'Harvest' property to True, so that these assemblies are included in the output .msi file. This works fine. I now want to add a

Re: [WiX-users] Sequence no is not retained in MSI from MSM

2011-02-10 Thread wix user
Hi All, Did not receive any help on this so far? Can somebody share some knowledge in this area? Is there a way to retain the sequence no from merge module into msi? How does WIX assigns sequence no when you create merge module? Is it in the order that you've component/file elements in the module