This little script written in AutoIt aims to provide password auto-typing for IBM Notes (former Lotus Notes) on Windows only
I'm sick of having to open Keepass just to make it autotype my password into Notes login form (yes... it doesn't allow pasting).
That's why i created this script that opens Notes and types the password right away :)
-
Download the executable here and place it in a folder of your choice (in my case it will be
C:\Users\Luca Salvarani\Desktop\Script\notesOpen.exe
) -
Now just launch it making sure to specify the password with the
-p
parameter (otherwise it will print an error and exit).Example:
- In the field "Destination" of a Windows shorcut or in a CLI applicaion (Command Prompt, PowerShell):
"C:\Users\Luca Salvarani\Desktop\Script\notesOpen.exe" -p=your_password
- Inside Cygwin:
$(cygpath -u "C:\Users\Luca Salvarani\Desktop\Script\notesOpen.exe") -p=your_password
- In the field "Destination" of a Windows shorcut or in a CLI applicaion (Command Prompt, PowerShell):
If the password or any other parameter value contains a SPACE character, make sure to enclose it first in single quotes, then in double quotes.
Example:
"C:\Users\Luca Salvarani\Desktop\Script\notesOpen.exe" -p='"your password with spaces"'