Skip to content

Instantly share code, notes, and snippets.

View philrice's full-sized avatar

Phil Rice philrice

  • Nottingham
View GitHub Profile
@marcgeld
marcgeld / psRandomAlphaNumeric.ps1
Created April 5, 2017 13:05
Powershell: Generate a random Alphanumeric string
# Generate a random Alphanumeric string
Function Get-RandomAlphanumericString {
[CmdletBinding()]
Param (
[int] $length = 8
)
Begin{