PoshCode Archive  Artifact [9cc661a906]

Artifact 9cc661a9062a5438ad0edfd719ad4564e740752b34f0decf850f01b739a7d109:

  • File Get-RandomPassword.ps1 — part of check-in [59ac08011a] at 2018-06-10 14:01:44 on branch trunk — Powershell function I made to generate a random password that enforces one of each of UPPER, lower, and number characters, with optional special characters. (user: BattleChicken size: 2205)

# encoding: ascii
# api: powershell
# title: Get-RandomPassword
# description: Powershell function I made to generate a random password that enforces one of each of UPPER, lower, and number characters, with optional special characters.
# version: 0.1
# type: function
# author: BattleChicken
# license: CC0
# function: Get-RandomPassword
# x-poshcode-id: 5806
# x-archived: 2015-04-03T14:51:21
# x-published: 2015-04-01T18:06:00
#
# It is written to be simple to understand.  Modify $aSCharacter if you plan to use special characters since I did not bother to cut that list down to ‘standard’ special characters in this example.
#
Function Get-RandomPassword {
  Param(
    [parameter()]
    [ValidateRange(8,100)]
    [int]$Length=12,

    [parameter()]
    [switch]$SpecialChars

  )
    $aUpper      = [char[]]'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
    $aLower      = [char[]]'abcdefghijklmnopqrstuvwxyz'
    $aNumber     = [char[]]'1234567890'
    $aSCharacter = [char[]]'!@#$%^&*()_+|~-=\{}[]:;<>,./' # Depending on usage, you may want to strip out some of the special characters if they are not supported
    $aClasses    = [char[]]'ULN' #represents the different classes of characters
    $thePass     = ""
    if ($SpecialChars){
        $aClasses += 'S'
    }
    $notOneOfEach = $true
    while ($notOneOfEach){
        $pPattern = ''
        for ($i=0; $i-lt $Length; $i++){
            $pPattern += get-random -InputObject $aClasses
        }
        if (($pPattern -match 'U' -and $pPattern -match 'L' -and $pPattern -match 'N' -and (-not $specialChars)) -or ($pPattern -match 'U' -and $pPattern -match 'L' -and $pPattern -match 'N' -and $pPattern -match 'S')){
            $notOneOfEach = $false
        }
    }
    foreach ($chr in [char[]]$pPattern){
        switch ($chr){
            U {$thePass += get-random -InputObject $aUpper; break}
            L {$thePass += get-random -InputObject $aLower; break}
            N {$thePass += get-random -InputObject $aNumber; break}
            S {$thePass += get-random -InputObject $aSCharacter; break}
        }
    }
    $thePass
}

for ($i=0; $i -le 20; $i++){Get-RandomPassword -length 12}