Sample code for 30+ languages & platforms
PowerShell

Generating Random ASCII Strings

See more PRNG Examples

Demonstrates how to generate random us-ascii strings.

Chilkat PowerShell Downloads

PowerShell
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"

$success = $false

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

$success = $false

$fortuna = New-Object Chilkat.Prng

# Generate random strings having only lowercase chars (a-z)
# Disallow digits and uppercase and only allow lowercase
$bDigits = $false
$bUppercase = $false
$bLowercase = $true

$("-- only lowercase alpha (a-z)")
for ($i = 1; $i -le 10; $i++) {
    # Generate 20-character strings.
    $($fortuna.RandomString(20,$bDigits,$bLowercase,$bUppercase))
}

# Allow both lowercase and uppercase alpha chars
$bUppercase = $true
$("-- lower and uppercase alpha (a-zA-Z)")
for ($i = 1; $i -le 10; $i++) {
    # Generate 20-character strings.
    $($fortuna.RandomString(20,$bDigits,$bLowercase,$bUppercase))
}

# Allow digits (0-9)
$bDigits = $true
$("-- digits and lower/uppercase alpha (0-9a-zA-Z)")
for ($i = 1; $i -le 10; $i++) {
    # Generate 20-character strings.
    $($fortuna.RandomString(20,$bDigits,$bLowercase,$bUppercase))
}

# Allow only digits (0-9)
$bUppercase = $false
$bLowercase = $false
$("-- only digits (0-9)")
for ($i = 1; $i -le 10; $i++) {
    # Generate 20-character strings.
    $($fortuna.RandomString(20,$bDigits,$bLowercase,$bUppercase))
}