Difference between revisions of "Keepass"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Created page with '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…')
 
m (simplified the overly complex location in %SOFTWARE% and removed the version # from the WPKG 'name')
Line 15: Line 15:
  
 
<package id="gplkeepass"  
 
<package id="gplkeepass"  
name="GPL KeePass 2.12"  
+
name="GPL KeePass"  
 
revision="00212"  
 
revision="00212"  
 
reboot="false"  
 
reboot="false"  
 
priority="1">
 
priority="1">
 
<check type="uninstall" condition="exists" path="KeePass Password Safe 2.12" />
 
<check type="uninstall" condition="exists" path="KeePass Password Safe 2.12" />
<install cmd='"%SOFTWARE%\Tools\Database\GPL.Keepass.2.12\KeePass-2.12-Setup.exe" /sp- /silent /norestart' />
+
<install cmd='"%SOFTWARE%\GPL.Keepass\KeePass-2.12-Setup.exe" /sp- /silent /norestart' />
<upgrade cmd='"%SOFTWARE%\Tools\Database\GPL.Keepass.2.12\KeePass-2.12-Setup.exe" /sp- /silent /norestart' />
+
<upgrade cmd='"%SOFTWARE%\GPL.Keepass\KeePass-2.12-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 12:45, 10 August 2010

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.12

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="gplkeepass" 
	name="GPL KeePass" 
	revision="00212" 
	reboot="false" 
	priority="1">
		<check type="uninstall" condition="exists" path="KeePass Password Safe 2.12" />
		<install cmd='"%SOFTWARE%\GPL.Keepass\KeePass-2.12-Setup.exe" /sp- /silent /norestart' />
		<upgrade cmd='"%SOFTWARE%\GPL.Keepass\KeePass-2.12-Setup.exe" /sp- /silent /norestart' />
		<remove cmd='"%PROGRAMFILES%\KeePass Password Safe 2\unins000.exe" /sp- /silent /norestart' />
	</package>
	
</packages>

External Links