Hmmm...easier than expected.

Nothing more than a random string generator but it works. Maybe I will add a parameter for simple and more complicated passwords but for now, I do not have a need for that.

 Code:
Break on

? RandomString(10)

Sleep 10

Function RandomString($lenght)
	Dim $characters, $i, $str

	$characters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789<>/{}=+&%$#@!*~"
	For $i = 1 to $lenght + 1
		$str = $str + SubStr($characters, Rnd(Len($characters)), 1)
	Next
	$RandomString = $str
EndFunction


Interpretation/translation of https://www.learnqtp.com/forums/Thread-VB-Script-random-string
_________________________
Mart

- Chuck Norris once sold ebay to ebay on ebay.