早上好,美丽的人!
我的系统管理员决定我们应该对.msi做所有事情,而我一直试图制作一个wix项目来安装基于.inf的驱动程序。
我看到一些帖子简要地解释了如何做到这一点:
WIX Installer for a INF based printer Driver
但是,我真的很想要一个完整的示例(整个slns文件)来使我理解我需要做的结构。现在,它甚至无法编译。这是我product.wxs的内容(PS:抱歉,格式混乱):
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="DriversTest" Language="1033" Version="1.0.0.0"
Manufacturer="" UpgradeCode="8caa9c0d-c692-4aa6-9267-a13577f51cb6">
<Package InstallerVersion="200" Compressed="yes"
InstallScope="perMachine" />
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is
already installed." />
<MediaTemplate />
<Feature Id="ProductFeature" Title="DriversTest" Level="1">
<ComponentGroupRef Id="ProductComponents" />
</Feature>
</Product>
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLFOLDER" Name="DriversTest" />
</Directory>
</Directory>
</Fragment>
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<!-- TODO: Remove the comments around this Component element and the
ComponentRef below in order to add resources to this installer. -->
<!-- <Component Id="ProductComponent"> -->
<!-- TODO: Insert files, registry keys, and other resources
here. -->
<!-- </Component> -->
</ComponentGroup>
</Fragment>
</Wix>
<Component Id="google-usb" Guid="{4fba0d21-64bb-458d-9b78-23aed7a39d14}"
Directory = "C:\drivers-folder\google">
<difx:Driver Legacy='yes' />
<File Id="Catalog" Name="androidwinusba64.cat"
Source="androidwinusba64.cat" />
<File Id="Info" Name="android_winusb.inf" KeyPath="yes"
Source="android_winusb.inf" />
</Component>
<Component Id="google-usb" Guid="{4fba0d21-64bb-458d-9b78-23aed7a39d14}" Directory = "C:\drivers-folder\google">
<difx:Driver Legacy='yes' />
<File Id="Catalog" Name="androidwinusba64.cat" Source="androidwinusba64.cat" />
<File Id="Info" Name="android_winusb.inf" KeyPath="yes" Source="android_winusb.inf" />
</Component>
然后我将其作为批处理文件调用:
@ECHO OFF
ECHO ------------生成驱动程序安装----------------
“%WIX%bin \ candle” -ext WixDifxAppExtension * .wxs -o obj \ “%WIX%bin \ light” -ext WixUIExtension -ext WixDifxAppExtension * .wixobj difxapp_x64.wixlib -o bin \ google-usb.msi
暂停
由于以下错误而失败:
Product.wxs C:\ test \ DriversTest \ DriversTest \ DriversTest \ Product.wxs(32):错误CNDL0104:不是有效的源文件;详细信息:有多个根元素。第32行,位置2。 light.exe:错误LGHT0103:系统找不到类型为“源”的文件“ * .wixobj”。 按任意键继续 。 。
我真的可以用一只手。我对此完全不了解,我认为我需要一些指导。我很迷恋XML。
答案 0 :(得分:0)
您的XML格式不正确。根元素<Wix>
应该是在底部关闭的最后一个标签,但是在文件结尾之前一定距离已关闭。这就是为什么编译器抱怨“多个根元素”的原因。
如果您拥有能够理解XML并进行语法突出显示/着色的编辑器,则可能会帮助您修复文件,使所有内容都位于<Wix>
元素内。
以下是格式正确的Wix源文件的示例。
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<DirectoryRef Id="INSTALLDIRECTORY"/>
<ComponentGroup Id="cgDeviceLayer" Directory="INSTALLDIRECTORY">
<ComponentGroupRef Id="cgPostSharp"/>
<ComponentGroupRef Id="cgReactiveAscom" />
<ComponentGroupRef Id="cgPostSharpAspects" />
<ComponentGroupRef Id="cgNLog" />
<Component Id="cmpDeviceControlLayer" Guid="*" Win64="no">
<File Id="filDeviceLayerAssembly"
Source="$(var.DeviceLayer.TargetPath)"
KeyPath="yes"
Vital="yes"
Assembly=".net"
AssemblyApplication="filDeviceLayerAssembly" />
</Component>
</ComponentGroup>
</Fragment>
</Wix>
注意:这不是完整的产品定义,它是一个来自大型安装程序的文件,用作示例,显示所有内容应如何放在<Wix>
标记内。