zoukankan      html  css  js  c++  java
  • Wix: Using Patch Creation Properties

    Source Reference: wix help document  -- WiX Toolset License

    Using Patch Creation Properties 

    A patch contains the differences between one or more pairs of Windows Installer packages. The tool PatchWiz.dll in the Windows SDK compares pairs of packages and produces a patch using a file called a Patch Creation Properties (PCP) file.

    It is recommended that you download the latest Windows SDK to get the newest tools for building patches.

    Setting Up the Sample

    A Patch Creation Properties (PCP) file instructs PatchWiz.dll to generate a patch from differences in one or more pairs of packages. A patch contains the differences between the target and upgrade packages, and will transform the target package to the upgrade package. Both the target and upgrade packages are created below.

    Create a directory that will contain the sample

    Create a directory from which you plan on running the sample. This will be the sample root.

    md C:sample

    Create two subdirectories

    Under the sample root create two subdirectories called "1.0" and "1.1".

    md C:sample1.0

    md C:sample1.1

    Create a text file called Sample.txt for 1.0

    Create a text file in the "1.0" directory called Sample.txt and put some text in it telling you that it is the 1.0 version of the file.

    echo This is version 1.0 > C:sample1.0Sample.txt

    Create a text file called Sample.txt for 1.1

    Create a text file in the "1.1" directory called Sample.txt and put some text in it telling you that it is the 1.1 version of the file.

    echo This is version 1.1 > C:sample1.1Sample.txt

    Create your product authoring in the sample root folder

    Create your product authoring in the sample root folder called Product.wxs with the following contents:

    <?xml version="1.0" encoding="UTF-8"?>
    
    <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    
        <Product Id="48C49ACE-90CF-4161-9C6E-9162115A54DD"
    
            Name="WiX Patch Example Product"
    
            Language="1033"
    
            Version="1.0.0"
    
            Manufacturer="Dynamo Corporation"
    
            UpgradeCode="48C49ACE-90CF-4161-9C6E-9162115A54DD">
    
            <Package Description="Installs a file that will be patched."
    
                Comments="This Product does not install any executables"
    
                InstallerVersion="200"
    
                Compressed="yes" />
    
     
    
            <Media Id="1" Cabinet="product.cab" EmbedCab="yes" />
    
            <FeatureRef Id="SampleProductFeature"/>
    
        </Product>
    
     
    
        <Fragment>
    
            <Feature Id="SampleProductFeature" Title="Sample Product Feature" Level="1">
    
                <ComponentRef Id="SampleComponent" />
    
            </Feature>
    
        </Fragment>
    
     
    
        <Fragment>
    
            <DirectoryRef Id="SampleProductFolder">
    
                <Component Id="SampleComponent" Guid="{C28843DA-EF08-41CC-BA75-D2B99D8A1983}" DiskId="1">
    
                    <File Id="SampleFile" Name="Sample.txt" Source=".$(var.Version)Sample.txt" />
    
                </Component>
    
            </DirectoryRef>
    
        </Fragment>
    
     
    
        <Fragment>
    
            <Directory Id="TARGETDIR" Name="SourceDir">
    
                <Directory Id="ProgramFilesFolder" Name="PFiles">
    
                    <Directory Id="SampleProductFolder" Name="Patch Sample Directory">
    
                    </Directory>
    
                </Directory>
    
            </Directory>
    
        </Fragment>
    
    </Wix>

    Create your patch authoring in the sample root

    Create your Patch Creation Properties (PCP) authoring in the sample root called Patch.wxs with the following content:

    <?xml version="1.0" encoding="utf-8"?>
    
    <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    
        <PatchCreation
    
            Id="224C316C-5894-4771-BABF-21A3AC1F75FF"
    
            CleanWorkingFolder="yes"
    
            OutputPath="patch.pcp"
    
            WholeFilesOnly="yes"
    
            >
    
     
    
            <PatchInformation
    
                Description="Small Update Patch"
    
                Comments="Small Update Patch"
    
                ShortNames="no"
    
                Languages="1033"
    
                Compressed="yes"
    
                Manufacturer="Dynamo Corp"/>
    
     
    
            <PatchMetadata
    
                AllowRemoval="yes"
    
                Description="Small Update Patch"
    
                ManufacturerName="Dynamo Corp"
    
                TargetProductName="Sample"
    
                MoreInfoURL="http://www.dynamocorp.com/"
    
                Classification="Update"
    
                DisplayName="Sample Patch"/>
    
     
    
            <Family DiskId="5000"
    
                MediaSrcProp="Sample"
    
                Name="Sample"
    
                SequenceStart="5000">
    
                <UpgradeImage SourceFile="C:sample1.1adminproduct.msi" Id="SampleUpgrade">
    
                    <TargetImage SourceFile="C:sample1.0adminproduct.msi" Order="2"     
    
                        Id="SampleTarget" IgnoreMissingFiles="no" />
    
                </UpgradeImage>
    
            </Family>
    
     
    
            <PatchSequence PatchFamily="SamplePatchFamily"
    
                Sequence="1.0.0.0"
    
                Supersede="yes" />
    
     
    
        </PatchCreation>
    
    </Wix>

    Note that SequenceStart must be greater than the last sequence in the File table in the target package or the patch will not install.

    Build the Target and Upgrade Packages

    Open a command prompt and make sure the following WiX and Windows Installer SDK tools are in your PATH.

    • Candle.exe
    • Light.exe
    • MsiMsp.exe
    • PatchWiz.dll
    • MSPatchC.dll
    • MakeCab.exe

    Build the target package

    candle.exe -dVersion=1.0 product.wxs

    light.exe product.wixobj -out 1.0product.msi

    Perform an administrative installation of the target package

    Msiexec.exe is used to perform an administrative installation but nothing is actually registered on your system. It is mainly file extraction.

    msiexec.exe /a 1.0product.msi /qb TARGETDIR=C:sample1.0admin

    Build the upgrade package

    candle.exe -dVersion=1.1 product.wxs

    light.exe product.wixobj -out 1.1product.msi

    Perform an administrative installation of the upgrade package

    msiexec.exe /a 1.1product.msi /qb TARGETDIR=C:sample1.1admin

    Build the Patch

    The Patch.wxs file is compiled into a PCP file that is then processed by MsiMsp.exe to product the patch package.

    candle.exe patch.wxs

    light.exe patch.wixobj -out patch1.1patch.pcp

    msimsp.exe -s patchpatch.pcp -p patch1.1patch.msp -l patch.log

    Verify the Patch

    To verify that the patch works, install the product and then the patch.

    Install the 1.0 product

    msiexec.exe /i 1.0product.msi /l*vx install.log

    Verify version 1.0

    Go to "Program FilesPatch Sample Directory" and open Sample.txt. Verify that this is the 1.0 version. Close Sample.txt.

    Install the patch

    msiexec.exe /p patchpatch.msp /l*vx patch.log

    Verify version 1.1

    Go to "Program FilesPatch Sample Directory" and open Sample.txt. Verify that this is now the 1.1 version. Close Sample.txt.

    Uninstall the patch

    On Windows XP Service Pack 2 and Windows Server 2003, go to "Add/Remove Programs" in the Control Panel and make sure that Show Updates is checked. On Windows Vista and newer, go to "Programs" then "View installed updates" in the Control panel. Select "Sample Patch" from under "WiX Patch Example Product" and click the Uninstall button.

    Go to "Program filesPatch Sample Directory" and open Sample.txt. Verify that this is again the 1.0 version. Close Sample.txt.

    Uninstall the product

    On Windows XP Service Pack 2 and Windows Server 2003, go to "Add/Remove Programs" in the Control Panel. On Windows Vista and newer, go to "Programs" then "Uninstall a program" in the Control Panel. Select "WiX Patch Example Product" and click the Uninstall button.

    Restrictions

    Please review restrictions on how patches must be built to avoid problem during patch installation.

  • 相关阅读:
    IE不支持 ES6 Promise 对象的解决方案
    微信小程序使用阿里图标
    IE浏览器 ajax传参数值为中文时出现乱码的解决方案
    一行代码解决各种IE兼容问题,IE6,IE7,IE8,IE9,IE10
    常见的一些浏览器兼容问题
    移动端rem设置(部分安卓机型不兼容)
    element ui el-menu样式调整
    原生login页面
    elemet ui去除table 样式
    项目上线
  • 原文地址:https://www.cnblogs.com/cindy-hu-23/p/3985886.html
Copyright © 2011-2022 走看看