Difference between revisions of "Keepass"
From WPKG | Open Source Software Deployment and Distribution
m (simplified the overly complex location in %SOFTWARE% and removed the version # from the WPKG 'name') |
(→Version 2.16) |
||
Line 1: | Line 1: | ||
KeePass is a free open source password manager, which helps you to manage your passwords in a secure way. You can put all your passwords in one database, which is locked with one master key or a key file. So you only have to remember one single master password or select the key file to unlock the whole database. The databases are encrypted using AES and Twofish. | KeePass is a free open source password manager, which helps you to manage your passwords in a secure way. You can put all your passwords in one database, which is locked with one master key or a key file. So you only have to remember one single master password or select the key file to unlock the whole database. The databases are encrypted using AES and Twofish. | ||
− | =Version 2. | + | =Version 2.16= |
==WPKG Package== | ==WPKG Package== | ||
<source lang="xml"> | <source lang="xml"> | ||
Line 14: | Line 14: | ||
<packages> | <packages> | ||
− | <package id=" | + | <package id="keepass2" |
− | name=" | + | name="KeePass" |
− | revision=" | + | revision="00216" |
reboot="false" | reboot="false" | ||
priority="1"> | priority="1"> | ||
− | <check type="uninstall" condition="exists" path="KeePass Password Safe 2. | + | <check type="uninstall" condition="exists" path="KeePass Password Safe 2.16" /> |
− | <install cmd='"%SOFTWARE%\ | + | <install cmd='"%SOFTWARE%\keepass\KeePass-2.16-Setup.exe" /sp- /silent /norestart' /> |
− | <upgrade cmd='"%SOFTWARE%\ | + | <upgrade cmd='"%SOFTWARE%\keepass\KeePass-2.16-Setup.exe" /sp- /silent /norestart' /> |
<remove cmd='"%PROGRAMFILES%\KeePass Password Safe 2\unins000.exe" /sp- /silent /norestart' /> | <remove cmd='"%PROGRAMFILES%\KeePass Password Safe 2\unins000.exe" /sp- /silent /norestart' /> | ||
</package> | </package> |
Revision as of 19:06, 20 July 2011
KeePass is a free open source password manager, which helps you to manage your passwords in a secure way. You can put all your passwords in one database, which is locked with one master key or a key file. So you only have to remember one single master password or select the key file to unlock the whole database. The databases are encrypted using AES and Twofish.
Version 2.16
WPKG Package
<?xml version="1.0" encoding="UTF-8"?>
<!--
Download Location: http://sourceforge.net/projects/keepass/files/
Install Type: InnoSetup
http://unattended.sourceforge.net/InnoSetup_Switches_ExitCodes.html
-->
<packages>
<package id="keepass2"
name="KeePass"
revision="00216"
reboot="false"
priority="1">
<check type="uninstall" condition="exists" path="KeePass Password Safe 2.16" />
<install cmd='"%SOFTWARE%\keepass\KeePass-2.16-Setup.exe" /sp- /silent /norestart' />
<upgrade cmd='"%SOFTWARE%\keepass\KeePass-2.16-Setup.exe" /sp- /silent /norestart' />
<remove cmd='"%PROGRAMFILES%\KeePass Password Safe 2\unins000.exe" /sp- /silent /norestart' />
</package>
</packages>