Hyflex 2 Posted April 3, 2011 I need a random string generater to make a 10-15 random number/letter password Share this post Link to post Share on other sites
somdcomputerguy 103 Posted April 3, 2011 Search thru here and the Examples category as well. You'll be overwhelmed with all the returned results. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change. Share this post Link to post Share on other sites
enaiman 16 Posted April 4, 2011 wow - 300+ posts and you're asking for a random string generator? Did you make all these posts in the Chat forum? Really, I would expect from somebody being around for such a long time to have the basic knowledge to do such a thing - because this is a basic script. SNMP_UDF ... for SNMPv1 and v2c so far, GetBulk and a new example scriptwannabe "Unbeatable" Tic-Tac-ToePaper-Scissor-Rock ... try to beat it anyway :) Share this post Link to post Share on other sites
wakillon 403 Posted April 4, 2011 @enaimanSometimes people leave autoit some time and when they come back, the return is hard ! AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites
UEZ 1,278 Posted April 4, 2011 Try this: $pwd = "" Dim $aSpace[3] $digits = 15 For $i = 1 To $digits $aSpace[0] = Chr(Random(65, 90, 1)) ;A-Z $aSpace[1] = Chr(Random(97, 122, 1)) ;a-z $aSpace[2] = Chr(Random(48, 57, 1)) ;0-9 $pwd &= $aSpace[Random(0, 2, 1)] Next ConsoleWrite("Your password (" & $digits & " digits): " & $pwd & @CRLF) MsgBox(0, "Password Generator", "Your password (" & $digits & " digits): " & $pwd) Br, UEZ Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ Share this post Link to post Share on other sites