2024-04-02 18:10:09 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
|
|
|
|
<?include ../Includes.wxi?>
|
2024-04-03 14:27:35 +08:00
|
|
|
|
2024-04-02 18:10:09 +08:00
|
|
|
<Fragment>
|
|
|
|
|
|
|
|
<Property Id="AddRemovePropertiesFile" Value="1" />
|
|
|
|
|
2024-04-12 17:42:26 +08:00
|
|
|
<!--STOP_SERVICE is set to 'Y'. Because the cofig value may be empty or 'Y'-->
|
|
|
|
<Property Id="STOP_SERVICE" Value="'Y'" />
|
|
|
|
|
2024-04-02 18:10:09 +08:00
|
|
|
<!--
|
2024-04-03 14:27:35 +08:00
|
|
|
Support entries shown when clicking "Click here for support information"
|
2024-04-11 11:51:35 +08:00
|
|
|
in Control Panel's Add/Remove Programs https://learn.microsoft.com/en-us/windows/win32/msi/property-reference
|
2024-04-03 14:27:35 +08:00
|
|
|
-->
|
2024-04-11 11:51:35 +08:00
|
|
|
<!--<Property Id="ARPCOMMENTS" Value="!(loc.AR_Comment)" />
|
2024-04-02 18:10:09 +08:00
|
|
|
<Property Id="ARPCONTACT" Value="https://github.com/rustdesk/rustdesk" />
|
|
|
|
<Property Id="ARPHELPLINK" Value="https://github.com/rustdesk/rustdesk" />
|
|
|
|
<Property Id="ARPREADME" Value="https://github.com/rustdesk/rustdesk" />
|
|
|
|
<Property Id="ARPURLINFOABOUT" Value="https://github.com/rustdesk/rustdesk" />
|
2024-04-11 11:51:35 +08:00
|
|
|
<Property Id="ARPURLUPDATEINFO" Value="https://github.com/rustdesk/rustdesk" />-->
|
2024-04-02 18:10:09 +08:00
|
|
|
|
|
|
|
<Property Id="ARPPRODUCTICON" Value="AppIcon" />
|
2024-04-12 17:42:26 +08:00
|
|
|
|
2024-04-11 11:51:35 +08:00
|
|
|
<!--$ArpStart$-->
|
|
|
|
<!--$ArpEnd$-->
|
2024-04-02 18:10:09 +08:00
|
|
|
|
2024-04-16 13:09:20 +08:00
|
|
|
<Property Id="APP_WINDOWS_INSTALLER">
|
|
|
|
<RegistrySearch Id="AppWindowsInstallerFolderSearch" Root="HKLM" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\$(var.Product)" Name="WindowsInstaller" Type="raw" />
|
2024-04-02 18:10:09 +08:00
|
|
|
</Property>
|
|
|
|
</Fragment>
|
|
|
|
</Wix>
|