Following script will generate 15 alphabetic character random string using powershell :
$r = New-Object System.Random
1..15 | % { $pass += [char]$r.next(97,122) }
$pass
$r = New-Object System.Random
1..15 | % { $pass += [char]$r.next(97,122) }
$pass
No comments:
Post a Comment