共计 1165 个字符,预计需要花费 3 分钟才能阅读完成。
WIX 软件打包必定多很多同学也都不生疏,但如何应用 WIX 对数据可视化大屏进行 OEM 打包,有很多同学不太分明具体过程,明天这里就为大家介绍一下,对于如何用 WIX 打包工具实现对 Wyn 安装包的打包。
1. 浏览帮忙文档 OEM 流程与示例
2. 在官网(https://wixtoolset.org/)下载 WiX Toolset build tools 进行装置,点击 Install 进行装置
3.Visual Studio 装置 Wix Toolset Extension 扩大性能
4. 在 vs 中创立我的项目,设置项目名称
5. 将 Wyn 安装包,OEM 文件放入我的项目中,新建的 WynInstaller 文件夹中
6. 编写 WXS 文件
<?xml version="1.0" encoding="UT+F-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Bundle Name="Bootstrapper1" Version="1.0.0.0" Manufacturer="x" UpgradeCode="62b192e0-f131-40d9-89e9-57bfd33c3f0f">
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense" />
<Chain>
<PackageGroupRef Id="WynEnterpriseInstaller"/>
</Chain>
</Bundle>
<Fragment>
<PackageGroup Id="WynEnterpriseInstaller">
<ExePackage
Id="WynEnterprise"
Cache="no"
PerMachine="yes"
Compressed="yes"
Vital="no"
SourceFile=".\WynInstaller\WynEnterprise-x64-5.0.01242.0.exe"
InstallCommand='/q -i -f"[InstallFolder]\Wyn-export.zip"-k 0007-5794-9394-2918-0494-7301'>
<ExitCode Behavior="forceReboot" Value="1004" />
</ExePackage>
</PackageGroup>
</Fragment>
</Wix>
6. 选中项目名称,右键生成。
7. 获取安装包
在我的项目的 debug 文件夹中会生成对应的 oem 安装包。
对于其中 WIX 生成我的项目中更多应用问题,大家能够自行钻研。此教程属于根底版 OEM 安装包生成过程。
大家如果对更多数据可视化大屏内容感兴趣,欢送拜访:
http://wyn.grapecity.com.cn/p…
正文完