MSP update display version
Hi all,
I am creating MSP patch for one of my installations and it works fine - the 
patch replace the files of the GA version
But when I am looking in the add/remove programs "click here for support 
information" the Version change and keeps the GA version

* the GA version is 1.0.0
* the SP version is 1.0.1
* When I am installing just the new version (from MSI) version the 
"DisplayVerion" in the registry is correct 1.0.1


I am using WIX and the process looks like this:
1. msiexec /a "%cd%\original\GA.msi" /qn TARGETDIR="%cd%\temp\admin_images\GA"
2. msiexec /a "%cd%\original\SP4.msi" /qn TARGETDIR="%cd%\temp\admin_images\SP4"
3. torch.exe -p -nologo -a "%cd%\temp\admin_images\GA\GA.msi" 
"%cd%\temp\admin_images\SP4\SP4.msi" -xo -out temp\diff.wixmst
4. candle.exe -nologo patch\patch.wxs -out temp\patch.wixobj
5. light.exe -nologo temp\patch.wixobj -out temp\patch.wixmsp
6. pyro.exe -nologo temp\patch.wixmsp -out out\patch.msp -t RTM temp\diff.wixmst

the patch.wxs:
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";>
    <Patch
        AllowRemoval="yes"
        Manufacturer="Verint"
        MoreInfoURL="http://www.ver.com/";
        DisplayName="Ver Data Service msp"
        Description="Ver Data Service msp"
        Classification="Update">

        <Media Id="5000" Cabinet="RTM.cab">
          <PatchBaseline Id="RTM" />
        </Media>
        <PatchFamilyRef Id="SamplePatchFamily"/>
    </Patch>

    <Fragment>
      <PatchFamily Id='SamplePatchFamily' Version='1.0.1' Supersede='no'>
          <ComponentRef Id="AppConfigurationFile" />
          <ComponentRef Id="DLLFiles"/>
          <ComponentRef Id="AppDataModelWebService" />
                <ComponentRef Id="RegisterWDModel"/>
        </PatchFamily>
    </Fragment>
</Wix>



This electronic message may contain proprietary and confidential information of 
Verint Systems Inc., its affiliates and/or subsidiaries.
The information is intended to be for the use of the individual(s) or
entity(ies) named above.  If you are not the intended recipient (or authorized 
to receive this e-mail for the intended recipient), you may not use, copy, 
disclose or distribute to anyone this message or any information contained in 
this message.  If you have received this electronic message in error, please 
notify us by replying to this e-mail.


------------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to