RE: Snippet for generating random password
Jean Lalonde > 2024-05-23 13:44
Yes, you could do it with more control using one of the pieces of code pointed by Dale, if you know AutoHotkey.
In QAP, the {RandomNumber:x|y} placeholder "is replaced with an integer number between integers x and y". It would not include the letters or special characters often required for strong passwords.
Another option would be to use the {GUID} placeholder that is replaced with a random string of 32 letters and numbers. With the snippet in Macro mode, you could shorten it with the {Backspace} command and add a punctuation character if this is required. The command would be something like "{GUID}{Backspace 17}!". This would make a pretty string password.