You will have to try and fiddle around with the %Random% global variable - I am sure something could be done - I did a random 6 letter thing in AutoIT. You are welcome to edit and mess around with it to suit your requirements:
Code:
; AutoIt Version: 3.00
; Language: English
; Platform: WinXP
; Author: Matt
; Script Function: Random Letters Generator For Possible Password Use
$__msgbox = MsgBox(4, 'Random Letter Generator By Matt', 'This Will Generate 6 Random Letters For You, Continue?')
if ($__msgbox = 7) Then
Exit
EndIf
SplashTextOn("Random Letter Generator By Matt", "Thinking Of 6 Letters, Please Wait...", 300, 75)
Sleep(3000)
Dim $i = 0, $word = ""
For $i = 1 To 6
If Random() < 0.5 Then
$Letter = Chr(Random(Asc("A"), Asc("Z")))
Else
$Letter = Chr(Random(Asc("a"), Asc("z")))
EndIf
$word = $word & $Letter
Next
Splashoff()
Msgbox(64, "Your Random Letters Are:", $word)