Windows Installer XML示例
时间: 2024-02-04 13:03:36 浏览: 108
Windows Installer XML (WiX) 是一个用于创建 Windows 安装程序的开源工具集。以下是一个简单的 WiX 示例,用于创建一个包含一个文件和一个快捷方式的安装程序。
首先,创建一个名为 "MyApp.wxs" 的 XML 文件,其中包含以下内容:
```xml
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="My App" Language="1033" Version="1.0.0.0" Manufacturer="My Company" UpgradeCode="PUT-GUID-HERE">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<MediaTemplate EmbedCab="yes" />
<Feature Id="ProductFeature" Title="My App" Level="1">
<ComponentGroupRef Id="ProductComponents" />
</Feature>
</Product>
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLFOLDER" Name="My App" />
</Directory>
<Directory Id="ProgramMenuFolder">
<Directory Id="ApplicationProgramsFolder" Name="My App" />
</Directory>
</Directory>
</Fragment>
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<Component Id="MainExecutable" Guid="PUT-GUID-HERE">
<File Id="MyAppEXE" Source="MyApp.exe" />
</Component>
</ComponentGroup>
</Fragment>
<Fragment>
<DirectoryRef Id="ApplicationProgramsFolder">
<Component Id="ApplicationShortcut" Guid="PUT-GUID-HERE">
<Shortcut Id="ApplicationStartMenuShortcut" Name="My App" Description="Launch My App" Target="[INSTALLFOLDER]MyApp.exe" WorkingDirectory="INSTALLFOLDER" />
<RemoveFolder Id="ApplicationProgramsFolder" On="uninstall" />
<RegistryValue Root="HKCU" Key="Software\My Company\My App" Name="installed" Type="integer" Value="1" KeyPath="yes" />
</Component>
</DirectoryRef>
</Fragment>
</Wix>
```
其中,`Product` 元素定义了产品的名称、版本号、安装范围等信息。`Feature` 元素定义了产品的功能,此处只包含一个组件组引用。`Fragment` 元素定义了其他元素,例如目录、组件和快捷方式。
要使用 WiX 将此 XML 文件编译为安装程序,需要打开命令提示符并运行以下命令:
```
candle MyApp.wxs
light MyApp.wixobj
```
这将生成一个名为 "MyApp.msi" 的安装程序。可以运行此程序来安装 "My App" 并在开始菜单中创建一个快捷方式。
请注意,此示例仅涵盖 WiX 的基础知识,并且实际的安装程序通常会包含更多组件和功能。
阅读全文