| Trigger Examples
Examples of how to use the trigger system.
|
[Documentation contributed by Paul Tannard]
Backup
your database when you open KeePass
- Open KeePass and navigate to 'Tools' -> 'Triggers...'.
- Add a trigger.
- Call it something meaningful, like "Backup database on open".
- Tick the 'Enabled' and 'Initially on' boxes.
- Navigate to the 'Events' tab and add an event.
- Select 'Opened database file'. Don't bother with the comparison or filter.
- Navigate to the 'Actions' tab and add an action.
- Select 'Execute command line / URL'.
- In the 'File/URL' field enter this:
%comspec%
- In the 'Arguments' field enter this:
/c copy "{DB_PATH}" "C:\Backup\{DB_BASENAME}.{DT_SIMPLE}"
KeePass will now backup all databases when opening them.
How it works.
KeePass runs the command specified and replaces the placeholders as
shown:
{DB_PATH} = the full path and name of the opened database.
{DB_BASENAME} = the first part of the database name only, e.g.
"Database.kdbx" would become "Database".
{DT_SIMPLE} = YYYYMMDDHHMMSS.
If your database was on drive E: and was called MyDB.kdbx, this is what
you get as a command line:
%comspec% /c copy "E:\MyDB.kdbx" "C:\Backup\MyDB.20090626"
If you want to save the database to a different location, change the
'C:\Backup' to the correct location.
Note: this command will fail if the location you specify does not exist.
USB Key
If you have your database on a USB key and use it on many machines, you
don't want to leave a back up on the hard disk.
You need to backup your database to the USB key before you save any
changes.
10. In the 'Arguments' field enter this:
/c copy "{DB_PATH}" "{DB_DIR}\{DB_BASENAME}.{DT_SIMPLE}"
How it works.
KeePass runs the command specified and replaces the placeholders as
shown:
{DB_DIR} = the full path of the opened database.
{DB_BASENAME} = the first part of the database name only, e.g.
"Database.kdbx" would become "Database".
{DT_SIMPLE} = YYYYMMDDHHMMSS.
Keep only the most recent 3 or 5 or 7 backups.
10. In the 'Arguments' field enter this:
/c for /f "skip=7 tokens=*" %X in ('dir "C:\Backup\{DB_BASENAME}.*" /b
/o:-d') do del "C:\Backup\%X"
How it works.
This performs a "dir" in reverse date order on the backup files, skips the
first 7 items and deletes the rest. The path and file name are quoted in
case you have spaces in there.
Note: you need to set the the path in 2 places so that it matches your
backup location.
Export
to a different format when you save
- Open KeePass and navigate to 'Tools' -> 'Triggers...'.
- Add a trigger.
- Call it something meaningful, like "Export database on save".
- Tick the 'Enabled' and 'Initially on' boxes.
- Navigate to the 'Events' tab and add an event.
- Select 'Saved database file'. Don't bother with the comparison or filter.
- Navigate to the 'Actions' tab and add an action.
- Select 'Export active database'.
- In the 'File/URL' field a full path, file name and extension, e.g.
C:\Export\Database.txt
- In the 'File format' field enter the required format. See format names
below.
Note: format names must be exact.
KeePass will now export the current database after it has been saved.
Format Names.
- Version 1 database format (uses the same password/key as the existing database): KeePass KDB (1.x)
- Version 2 database format (uses the same password/key as the existing database): KeePass KDBX (2.x)
- Version 1 CSV format: KeePass CSV (1.x)
- Version 2 XML format: KeePass XML (2.x)
- For more format names, see the import/export dialog.
Auditing
KeePass changes
Should the auditors be on your case - aren't they always - you can set up
a trigger to log changes to the KeePass database. This will not list the
specific changes, but it does show who made the changes and when. If you
also save copies of the changed database, you can view the modified time
attribute to see what was changed.
- Open KeePass and navigate to 'Tools' -> 'Triggers'.
- Add a trigger.
- Call it something meaningful, like "Auditors do it because it annoys you".
- Tick the 'Enabled' and 'Initially on' boxes.
- Navigate to the 'Events' tab and add an event.
- Select 'Saved database file'. Don't bother with the comparison or
filter.
- Navigate to the 'Actions' tab and add an action.
- Select 'Execute command line / URL'.
- In the 'File/URL' field enter this:
%comspec%
- In the 'Arguments' field enter this:
/c echo DBS change on %DATE% %TIME% by %USERDNSDOMAIN% %USERDOMAIN%
%USERNAME% >> "\\servername\share\directory\KpLogRecord.txt"
- Add another action.
- Select 'Execute command line / URL'.
- In the 'File/URL' field enter this:
%comspec%
- In the 'Arguments' field enter this:
/c copy "{DB_PATH}"
"\\servername\share\directory\{DB_BASENAME}.{DT_SIMPLE}"
To be sure the audit logs are retained, set up
"\\servername\share\directory" with only write permission.
How it works.
KeePass runs the command specified and replaces the placeholders as
shown:
%DATE% = the current date.
%TIME% = the current time.
%USERDNSDOMAIN% = the logon domain of the current user,
if they are in a domain.
%USERDOMAIN% = the logon machine/domain of the current user.
%USERNAME% = the logon name of the current user.
This information is appended to the log file KpLogRecord.txt.
The second action copies the saved database to the audit location and
appends the date and time.
Preventing
infinite loops
KeePass can fall into an infinite loop if an action re-triggers itself, e.g.
a save triggering a sync event will loop because the sync is classed as a save.
To prevent this you need to disable the trigger whilst your event is running,
then re-enable the trigger.
- Open KeePass and navigate to 'Tools' -> 'Triggers...'.
- Edit your existing trigger.
- Navigate to the 'Action' tab and add a new action.
- Select 'Change trigger on/off state'.
- Leave the 'Trigger name' field empty (this way the action applies to
the currently running trigger).
- In the 'New state' field change the state to 'off'.
- Click 'OK' to save the action.
- Highlight the new action and move it to the top of the 'Actions' list
by clicking on the 'up arrow' on the right.
- Add a new action.
- Select 'Change trigger on/off state'.
- Leave the 'Trigger name' field empty.
- In the 'New state' field change the state to 'on'.
- Click 'OK' to save the action.
- Make sure the action is at the bottom of the 'Actions' list.
- Save the event.
KeePass will now disable the trigger whilst the actions are performed.
Synchronizing
with Dropbox / other PC synchronization software
Dropbox will synchronize files between computers, but it can't determine what
changes KeePass has made, only that the database has changed. To ensure that
KeePass changes are not lost by Dropbox, you need to use a second copy of the
database that is just for the Dropbox synchronization. Then use a KeePass
trigger to move changes between KeePass and Dropbox.
- Create a new directory to use for the Dropbox synchronization, e.g.
C:\Documents and Settings\Tom\My Documents\DropboxSync
Note: Do not use the current database location, you must have 2 copies
of the database.
- Copy (do not move) the KeePass database you want to sync to the new
directory.
- Open KeePass and navigate to 'Tools' -> 'Triggers...'.
- Add a trigger.
- Call it something meaningful, like "Prevent data loss by Dropbox".
- Navigate to the 'Events' tab and add an event.
- Select 'Saved database file'.
- If you only want to sync a certain database, set the 'File/URL comparison'
to 'Equals' and the 'File/URL comparison' field to the required
database name. Otherwise don't change the fields.
- Navigate to the 'Action' tab and add a new action.
- Select 'Change trigger on/off state'.
- Leave the 'Trigger name' field empty.
- In the 'New state' field change the state to 'Off'.
- Click 'OK' to save the action.
- Add a new action.
- Select 'Synchronize active database with a file/URL'.
- Enter the full path and name of your copy of the KeePass database in
the 'File/URL' field,
e.g.
C:\Documents and Settings\Tom\My Documents\DropboxSync\MyDatabase.kdbx
- Click 'OK' to save the action.
- Add a new action.
- Select 'Change trigger on/off state'.
- Leave the 'Trigger name' field empty.
- In the 'New state' field change the state to 'On'.
- Click 'OK' to save the action.
- Save the event.
- Set Dropbox to synchronize the database in the Dropbox sync directory.
- Perform these steps on all PCs that you will sync with Dropbox.
How it works.
KeePass will always have the latest data created on the local PC master database
and this cannot be overwritten by Dropbox. When KeePass synchronizes the local
databases, Dropbox will migrate the changes to the other PCs local copies.
KeePass on the other PCs will pick up these changes. Unless the databases on
multiple PCs change very often, Dropbox will eventually catch up.
The only way to lose data is if the same entry is changed on multiple databases
before a Dropbox sync has occurred.
KeePass is responsible for a reasonable behavior in this case
(when such a conflict occurs, KeePass uses the latest data based on the
last modification time and puts the other changes into history entries;
details can be found on the synchronization
help page).
|