Using the dynamic variable %Random%, we can get a random integer from 0 to 32767. For example:
echo %random%
This obviously, returns an integer from 0 to 32767. But sometimes we want it to be in a specific range, say from 1 to 100.
Generating Random Numbers Within Specific Range
The basic me...