Answer the question
In order to leave comments, you need to log in
Autohotkey - How to make a script that enters a double random (two words)?
On the Internet, I found such a script, for a simple, the same type of random house:
F1::
Send, % GenerateRandomString()
GenerateRandomString(length = 5)
{
characters := "QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm1234567890"
StringSplit, chars, characters
Loop, %length%
{
Random, rand, 1, 36
password .= chars%rand%
}
return password
}
Send {ENTER}
return
Answer the question
In order to leave comments, you need to log in
something like this
;генерирует два пароля через пробел при нажатии `F1`
F1::
Send, % GenerateRandomString()
GenerateRandomString(length = 12)
{
characters := "QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm1234567890"
StringSplit, chars, characters
Loop, %length%
{
Random, rand, 1, 63
Random, rand1, 1, 63
password .= chars%rand%
password1 .= chars%rand1%
}
return password A_Space password1
}
Send {ENTER}
return
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question