Skip to content

Instantly share code, notes, and snippets.

@iraSenthil
Created March 20, 2011 00:13
Show Gist options
  • Save iraSenthil/877936 to your computer and use it in GitHub Desktop.
Save iraSenthil/877936 to your computer and use it in GitHub Desktop.
;Auto type Master Password by sending AutoType command to KeePass
;Auto type Master Password by sending AutoType command to KeePass
;Call method CheckPassword every 2 second
SetTimer, CheckPassword, 2000
CheckPassword:
{
IfWinExist, Password Required
{
IfWinExist Open Database - Senthil.kdbx
return
Sleep 100
WinActivate, Password Required,
IfWinActive, Password Required
{
Send !^a
}
}
return
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment