Jump to content

Command Crate ¿about?

Generate random 10-character alphanumeric strings (PowerShell)

1..4 | ForEach-Object { -join ((65..90) + (97..122) + (48..57) | Get-Random -Count 10 | % {[char]$_}) }

Generates random 10-character alphanumeric strings in PowerShell

utilities [kb:253]