2018-05-26 22:14:28 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
2018-06-24 17:52:58 +02:00
<Product Id="*" Name="[XenCenter] [BRANDING_PRODUCT_VERSION]" Language="1033" Version="0.0.0.0" Manufacturer="[Citrix]" UpgradeCode="47087771-7e34-407c-9d04-94a87316378f">
2018-05-26 22:14:28 +02:00
<Package InstallerVersion="300" Compressed="yes" InstallScope="perMachine" />
<MajorUpgrade AllowSameVersionUpgrades="yes" DowngradeErrorMessage="A newer version of [XenCenter] is already installed." Schedule="afterInstallInitialize" RemoveFeatures="ALL" />
<MediaTemplate EmbedCab="yes" />
<Feature Id="ProductFeature" Title="[XenCenter]" Level="1">
2018-05-29 23:58:20 +02:00
<ComponentGroupRef Id="XCPngFiles" />
2018-05-26 22:14:28 +02:00
<ComponentRef Id="ApplicationShortcutDesktop" />
<ComponentRef Id="ApplicationShortcut" />
</Feature>
<Icon Id="AppIcon.ico" SourceFile="AppIcon.ico"/>
<Property Id="ARPPRODUCTICON" Value="AppIcon.ico" />
<WixVariable Id="WixUILicenseRtf" Value="license.rtf" />
2018-07-06 22:22:06 +02:00
<WixVariable Id="WixUIDialogBmp" Value="background.bmp" />
<WixVariable Id="WixUIBannerBmp" Value="banner.bmp" />
2018-05-26 22:14:28 +02:00
</Product>
<Fragment>
<Property Id="ROOTDRIVE">
<![CDATA[C:\]]>
</Property>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="DesktopFolder" Name="Desktop"/>
<Directory Id="ProgramFiles" Name="Program Files">
<Directory Id="INSTALLLOCATION" Name="[XenCenter]">
<Directory Id="ProgramMenuFolder">
<Directory Id="ApplicationProgramsFolder" Name="[XenCenter]" />
</Directory>
<Component Id="cmpMain" Guid="{2FC55E1C-1E54-415C-AC94-C1794388CD42}" KeyPath="yes" Feature="ProductFeature"/>
</Directory>
</Directory>
</Directory>
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLLOCATION"></Property>
<UIRef Id="WixUI_Minimal"/>
<DirectoryRef Id="ApplicationProgramsFolder">
<Component Id="ApplicationShortcut" Guid="{2010795F-AB74-4166-89F0-B555B3DEB9C8}">
2018-11-08 23:14:05 +01:00
<Shortcut Id="startmenuxcpng"
Name="[XenCenter]"
2019-02-09 12:13:53 +01:00
Target="[INSTALLLOCATION]$(var.splash-xcp-ng.TargetFileName)"
2018-11-08 23:14:05 +01:00
WorkingDirectory="INSTALLLOCATION" />
2018-05-26 22:14:28 +02:00
<RemoveFolder Id="ApplicationProgramsFolder" On="uninstall" />
2018-05-26 22:14:28 +02:00
<RegistryValue Root="HKCU" Key="Software\[BRANDING_COMPANY_NAME_SHORT]\[XenCenter]" Name="installed" Type="integer" Value="1" KeyPath="yes" />
2018-05-26 22:14:28 +02:00
</Component>
</DirectoryRef>
</Fragment>
<Fragment>
<Component Id="ApplicationShortcutDesktop" Directory="INSTALLLOCATION" Guid="*">
<RegistryValue Id="RegShortcutDesktop"
Root="HKCU"
2018-05-26 22:14:28 +02:00
Key="Software\[BRANDING_COMPANY_NAME_SHORT]\[XenCenter]"
2018-05-26 22:14:28 +02:00
Name="[XenCenter]_Shortcut"
Value="1"
Type="integer"
KeyPath="yes" />
<Shortcut Id="ApplicationShortcutDesktop"
2019-02-09 12:13:53 +01:00
Target="[INSTALLLOCATION]$(var.splash-xcp-ng.TargetFileName)"
2018-11-08 23:14:05 +01:00
WorkingDirectory="INSTALLLOCATION"
2018-05-26 22:14:28 +02:00
Directory="DesktopFolder"
Name="[XenCenter]"
Advertise="no"/>
</Component>
</Fragment>
</Wix>