我按照简单的YouTube说明视频,了解如何进行非常基本的WiX设置以创建msi文件。 目的是将某些文件放入某些目录并生成4个注册表项。我用VS 2015中内置的安装项目做了这个,效果很好。但WiX项目不起作用。这是我第一次使用XML。
例如,我在这里定义了目录:
<Fragment>
<Directory Id="ProgramFilesFolder" Name="Programfiles">
<Directory Id="MSOFFICEFOLDER" Name="Microsoft Office">
<Directory Id="OFFICE14FOLDER" Name="Office14" />
<Directory Id="LIBRARY" Name="Library">
<Directory Id="MAKRO" Name="Makro">
</Directory>
</Directory>
</Directory>
</Directory>
</Fragment>
这里我把文件放到文件夹中:
<!-- Adding files to Office14 folders -->
<Fragment>
<DirectoryRef Id="OFFICE14FOLDER">
<Component Id="umrch.hlp" Guid="*">
<File Id="umrch.hlp" Source="MySourceFiles\UMRCH.HLP" KeyPath="yes"
Checksum="yes"/>
</Component>
</DirectoryRef>
<DirectoryRef Id="LIBRARY">
<Component Id="umrch.xla" Guid="*">
<File Id="umrch.xla" Source="MySourceFiles\umrch.xla" KeyPath="yes"
Checksum="yes"/>
</Component>
</DirectoryRef>
<DirectoryRef Id="MAKRO">
<Component Id="umrch.xla" Guid="*">
<File Id="umrch.xla" Source="MySourceFiles\umrch.xla" KeyPath="yes"
Checksum="yes"/>
</Component>
</DirectoryRef>
<!-- Adding files to Company folders-->
<DirectoryRef Id="DATA">
<Component Id="DATAfiles" Guid="*">
<File Id="defumrch.dat" Source="MySourceFiles\defumrch.dat"
KeyPath="yes" Checksum="yes"/>
<File Id="LL_UMRCH.DAT" Source="MySourceFiles\LL_UMRCH.DAT"
KeyPath="no" Checksum="yes"/>
</Component>
</DirectoryRef>
<DirectoryRef Id="VERSION">
<Component Id="VERSIONfiles" Guid="*">
<File Id="umrch_Readme.doc" Source="MySourceFiles\umrch_Readme.doc"
KeyPath="yes" Checksum="yes"/>
<File Id="umrch_Version.txt" Source="MySourceFiles\umrch_Version.txt"
KeyPath="no" Checksum="yes"/>
</Component>
</DirectoryRef>
<!-- Adding files to Windows folder-->
<DirectoryRef Id="WindowsFolder">
<Component Id="WINDOWSfiles" Guid="">
<File Id="umrch.dll" Source="MySourceFiles\umrch.dll" KeyPath="yes"
Checksum="yes"/>
<File Id="umrch.lib" Source="MySourceFiles\umrch.lib" KeyPath="no"
Checksum="yes"/>
<File Id="umrch.mif" Source="MySourceFiles\umrch.mif" KeyPath="no"
Checksum="yes"/>
</Component>
</DirectoryRef>
</Fragment>
在这里他们应该安装:
<Fragment>
<!-- Tell WiX to install the files -->
<Feature Id="xlahelp" Title="XLA and help files" Level="1">
<ComponentRef Id="umrch.hlp" />
<ComponentRef Id="umrch.xla" />
</Feature>
<Feature Id="COMPANYfiles" Title="Company files" Level="1">
<ComponentRef Id="DATAfiles" />
<ComponentRef Id="VERSIONfiles" />
</Feature>
<Feature Id="WindowsFiles" Title="Windows files" Level="1">
<ComponentRef Id="WINDOWSfiles" />
</Feature>
<Feature Id="Registry" Title="umrch" Level="1">
<ComponentGroupRef Id="Registry"/>
</Feature>
</Fragment>
是否缺少某些引用或者我是否错误地使用了XML?
编辑:这是产品wix
<Product Id="*" Name="UMRCH" Language="1033" Version="1.0.0.0" Manufacturer="Sample" UpgradeCode="ee45fb60-6741-4424-8136-dfc0d679629a">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<MediaTemplate />
</Product>
为SteinÅsmul编辑:
应在此处定义DATA和VERSION:
<Fragment>
<Directory Id="WindowsVolume" Name="WindowsVolume">
<Directory Id="!(bind.property.Manufacturer)" Name="!(bind.property.Manufacturer)">
<Directory Id="UMRCH" Name="!(bind.property.ProductName)" />
<Directory Id="DATA" Name="data">
<Directory Id="VERSION" Name="version" />
</Directory>
</Directory>
</Directory>
使用WiX时也可以编译。构建.msi文件时不会发生任何错误。 当用SuperOrca打开它时,它显示一个选项卡_Validation,因为我对此非常新,我不知道如何阅读Orca中的.msi。
我现在还为github添加了一个要点,以提高可见度。
答案 0 :(得分:0)
使用WiX时,此文件是否完全编译?您似乎尚未定义安装的某些目录。例如DATA和VERSION。如果你得到一个输出MSI文件,当你用Orca打开它时会是什么样子?您是否在MSI上运行验证?
一旦您更详细地更新了问题,我将“演变”此答案。让我们尽量减少对“讨论”的评论使用。