CoffeeJoe Posted October 27, 2021 Author Share Posted October 27, 2021 1 minute ago, jchd said: there have been dramatic improvements since 2015 I got what I have from Autoit with 'some' explanation of how to use SQLiteDLL.au3 https://www.autoitscript.com/autoit3/pkgmgr/sqlite/ Looking at the dates its counter intuitive (to me)... my oversight - yes .8 is > .2 but not greater than .22 I'll grab the new release and see if I can work out how to change it in my test project. should be simple enough. I dropped the DLL in the Windows directory and will likely do a file install to make that part of the program - unless I get I better idea before then. Thanks for the heads up. Link to comment Share on other sites More sharing options...
seadoggie01 Posted October 29, 2021 Share Posted October 29, 2021 Ooops, thought my script was in my signature I added it to GitHub a while ago: https://github.com/seadoggie01/KPScript and a topic on our forums: I've made some changes recently, but I need to test before I upload. There aren't any examples, but it's not too hard to use... (Note: no error checking here, add your own) Local Const $sKPScript = @AppDataDir & "\KeePass\KPScript.exe" Local Const $sKeePass = @UserProfileDir & "\Documents\KeePass.kdbx" ; Using Windows based Authentication Local $aUnlockKey = _KPScript_UnlockKey(Default, Default, Default, True) ; Like a search expression for _KPScript_EntryStringGet Local $aIdentification = _KPScript_EntryIdentify("Title", "<Value of Title>") ; Now actually unlock the database and perform the search Local $sUserName = _KPScript_EntryStringGet($sKPScript, $sKeePass, $aUnlockKey, "UserName", $aIdentification) Local $sPassword = _KPScript_EntryStringGet($sKPScript, $sKeePass, $aUnlockKey, "Password", $aIdentification) TheDcoder 1 All my code provided is Public Domain... but it may not work. Use it, change it, break it, whatever you want. Spoiler My Humble Contributions:Personal Function Documentation - A personal HelpFile for your functionsAcro.au3 UDF - Automating Acrobat ProToDo Finder - Find #ToDo: lines in your scriptsUI-SimpleWrappers UDF - Use UI Automation more Simply-erKeePass UDF - Automate KeePass, a password managerInputBoxes - Simple Input boxes for various variable types Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now