I have looked up how to get a random letter form batch but it only gives me the same letter and rally changes.
here is the code
@echo off
rem // generate a random number between 65 and 90
set /a "ascii = %random% * 26 / 32768 + 65"
rem // set errorlevel to that number
cmd /c exit /b %ascii%
rem // get letter corresponding to that exit code
echo %=ExitCodeAscii%
pause
the out put was this
R
Press any key to continue . . .
but, I was looking for more then just this one every time I use it.