I want to create a random number in a batch file, that is not based on the system clock time.
I have been trying to use %RANDOM%
but its not working well for my needs.
The reason is that I want to write file names that I'm recieving in muliple threads to files, and when I use the system time %RANDOM%
method I get clashes between the files, since the system time is based on seconds and not milliseconds.
So I need a way to generate random number based on something else other than system time...