Re: [WiX-users] error 1334 due to file sequencing.

2007-09-12 Thread kalle . niemitalo
To keep File.Sequence consistent with the order of files in the CAB, we make administrative images of both databases and then run the following command on them before executing MSIMSP: WiRunSQL.vbs package.msi "UPDATE `File` SET `Sequence` = 0" "UPDATE `Media` SET `LastSequence` = 0" Because all

Re: [WiX-users] error 1334 due to file sequencing.

2007-09-11 Thread Rob Mensching
There is currently no solution to the file sequencing problems that adding files in Merge Modules introduce for patching. To see how merge module files are ordered take a look at the Binder. ProcessMergeModules() method. From: Sandip Shahane Sent: Monday, September 10, 2007 17:46 To: Heath Stew

Re: [WiX-users] error 1334 due to file sequencing.

2007-09-10 Thread Sandip Shahane
True, this is what is happening, but what I can't figure out is why this is happening or is there anything I am doing wrong here. Can anybody tell if the following is indeed a bug and if so, is it fixed or any workaround? http://sourceforge.net/mailarchive/message.php?msg_id=E1FZMWn-0007MY-CR%40s

Re: [WiX-users] error 1334 due to file sequencing.

2007-09-10 Thread Heath Stewart
The "why" is because PatchWiz.dll (like when you use msimsp.exe) will automatically update the file sequences to begin the last sequence number of the target product (as authored in PCP files for older PatcWiz.dll, or automatically with newer versions of PatchWiz.dll). If those sequence numbers

Re: [WiX-users] error 1334 due to file sequencing.

2007-09-10 Thread Sandip Shahane
<+wix-dev mailing list and setupsup> Note that file sequencing was changed in SP1 (after RTM was released) for few files in one of the merge modules used. I fixed it so that the merge modules file sequencing is now exactly the same as before (though some merge modules have now additional files

Re: [WiX-users] error 1334 due to file sequencing.

2007-09-07 Thread Sandip Shahane
Hi, Is there any document on how wix creates the MSI generally and File table in particular. I am interested in understanding how the files are ordered in the File table by the Wix. I want to troubleshoot this issue I am facing (seems like it is similar to http://sourceforge.net/mailarchive/mess

[WiX-users] error 1334 due to file sequencing.

2007-09-07 Thread Sandip Shahane
I noticed that file sequencing was changed for few files in one of the merge modules used. I fixed it so that both the merge modules file sequencing is now exactly the same. But after integrating the merge module into MSI the sequencing seems to have changed. Why is this happening and how do I e