Created
March 20, 2011 00:13
-
-
Save iraSenthil/877936 to your computer and use it in GitHub Desktop.
;Auto type Master Password by sending AutoType command to KeePass
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;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