Difference between revisions of "KeepassXC"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Let KeePassXC safely store your passwords and auto-fill them into your favorite apps, so you can forget all about them.)
 
 
Line 15: Line 15:
  
 
     <variable name="VERSION"        value="2.7.8" />
 
     <variable name="VERSION"        value="2.7.8" />
    <variable name="PKG_SOURCE"        value="%SOFTWARE%\keepassxc" />
 
    <variable name="INSTALL_PATH" value="%PROGRAMFILES%\keepassxc\uninstall.exe" />
 
  
 
     <check type="uninstall" condition="versiongreaterorequal" path="KeePassXC" value="%VERSION%"/>
 
     <check type="uninstall" condition="versiongreaterorequal" path="KeePassXC" value="%VERSION%"/>
  
 
     <commands>
 
     <commands>
       <command type="install" cmd='msiexec /qn /i %PKG_SOURCE%\KeePassXC-%VERSION%-Win64.msi' />
+
       <command type="install" cmd='msiexec /qn /i %SOFTWARE%\keepassxc\KeePassXC-%VERSION%-Win64.msi' />
  
 
       <command type="upgrade" include="install" />
 
       <command type="upgrade" include="install" />
  
       <command type="remove" cmd="msiexec /qn /x %PKG_SOURCE%\KeePassXC-%version%-Win64.msi" />
+
       <command type="remove" cmd="msiexec /qn /x %SOFTWARE%\keepassxc\KeePassXC-%version%-Win64.msi" />
  
 
     </commands>
 
     </commands>

Latest revision as of 22:02, 10 June 2024

KeePassXC Download

 

<?xml version="1.0" encoding="UTF-8"?>
<packages:packages xmlns:packages="http://www.wpkg.org/packages"
        xmlns:wpkg="http://www.wpkg.org/wpkg" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.wpkg.org/packages ../xsd/packages.xsd">

  <package
      id="keepassxc"
      name="KeePassXC"
      revision="%VERSION%"
      reboot="false"
      priority="5">

    <variable name="VERSION"        value="2.7.8" />

    <check type="uninstall" condition="versiongreaterorequal" path="KeePassXC" value="%VERSION%"/>

    <commands>
      <command type="install" cmd='msiexec /qn /i %SOFTWARE%\keepassxc\KeePassXC-%VERSION%-Win64.msi' />

      <command type="upgrade" include="install" />

      <command type="remove" cmd="msiexec /qn /x %SOFTWARE%\keepassxc\KeePassXC-%version%-Win64.msi" />

    </commands>
  </package>

</packages:packages>