Powershell code to generate 20 strings of 24 random letters and numbers.
for($i=1; $i -le 20; $i++){([char[]]([char]'a'..[char]'z' + [char]'A'..[char]'Z') + 0..9 | sort {get-random})[0..23] -join ''}
This will generate strings similar to this:
Powershell code to generate 20 strings of 24 random letters and numbers.
for($i=1; $i -le 20; $i++){([char[]]([char]'a'..[char]'z' + [char]'A'..[char]'Z') + 0..9 | sort {get-random})[0..23] -join ''}
This will generate strings similar to this: