bundleWithWinfsp.wxs 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0"?>
  2. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
  3. <!-- see https://wixtoolset.org/documentation/manual/v3/xsd/wix/bundle.html-->
  4. <!-- Attributes explicitly not used:
  5. Condition - the single msi files have their own install conditions, no need to copy them here
  6. -->
  7. <Bundle Name="Cryptomator" UpgradeCode="29eea626-2e5b-4449-b5f8-4602925ddf7b" Version="$(var.BundleVersion)" Manufacturer="$(var.BundleVendor)"
  8. AboutUrl="$(var.AboutUrl)" HelpUrl="$(var.HelpUrl)" UpdateUrl="$(var.UpdateUrl)" Copyright="$(var.BundleCopyright)" IconSourceFile="bundle\resources\Cryptomator.ico">
  9. <!-- detect outdated WinFsp installations -->
  10. <?include "resources\winFspMetaData.wxi" ?>
  11. <util:ProductSearch
  12. Variable="InstalledWinFspVersion"
  13. Result="version"
  14. UpgradeCode="82F812D9-4083-4EF1-8BC8-0F1EDA05B46B"
  15. />
  16. <!-- Note: The bundle engine takes the Message format literaly -->
  17. <bal:Condition Message=
  18. "The WinFsp driver used by Cryptomator is outdated and must be removed before the installation.
  19. 1. Open the view of installed apps
  20. 2. Search for &quot;WinFsp&quot;
  21. 3. Uninstall the listed application
  22. 4. Reboot your device
  23. 5. Restart this installer">(InstalledWinFspVersion = v0.0.0.0) OR ($(var.BundledWinFspVersion) &lt;= InstalledWinFspVersion)</bal:Condition>
  24. <!-- for definition of the standard themes, see https://github.com/wixtoolset/wix3/blob/master/src/ext/BalExtension/wixstdba/Resources/-->
  25. <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLargeLicense">
  26. <!-- see https://wixtoolset.org/documentation/manual/v3/xsd/bal/wixstandardbootstrapperapplication.html -->
  27. <!-- Possible Attributes: LaunchTarget -->
  28. <bal:WixStandardBootstrapperApplication
  29. LicenseFile="bundle\resources\license.rtf"
  30. ShowVersion="yes"
  31. SuppressOptionsUI="yes"
  32. ThemeFile="bundle\customBootstrapperTheme.xml"
  33. LocalizationFile="bundle\customBootstrapperTheme.wxl"
  34. LogoFile="bundle\resources\logo.png"
  35. />
  36. <Payload SourceFile="bundle\resources\logoSide.png" />
  37. </BootstrapperApplicationRef>
  38. <Chain>
  39. <!-- see https://wixtoolset.org/documentation/manual/v3/xsd/wix/msipackage.html-->
  40. <MsiPackage
  41. SourceFile="resources\Cryptomator.msi"
  42. CacheId="cryptomator-bundle-cryptomator"
  43. DisplayInternalUI="no"
  44. Visible="no"
  45. />
  46. <MsiPackage
  47. SourceFile="resources\winfsp.msi"
  48. CacheId="cryptomator-bundle-winfsp"
  49. Visible="yes"
  50. DisplayInternalUI="no"
  51. Vital="no"
  52. Permanent="yes"
  53. />
  54. </Chain>
  55. </Bundle>
  56. </Wix>