Skip to content

Instantly share code, notes, and snippets.

@massihm
massihm / psRandomString.psm1
Last active May 21, 2021 12:58 — forked from marcgeld/psRandomAlphaNumeric.ps1
Powershell: Generate a random Alphanumeric string
# Generate a random Alphanumeric string
Function Get-RandomString {
[CmdletBinding()]
Param (
[int] $length = 8,
[switch]$alphabet,
[switch]$number,
[switch]$symbol
)