Created
September 30, 2021 16:56
-
-
Save FriedrichWeinmann/4220fbdd48f2c08ac49707d0bb2db386 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function New-Password | |
{ | |
<# | |
.SYNOPSIS | |
Generate a new, complex password. | |
.DESCRIPTION | |
Generate a new, complex password. | |
.PARAMETER Length | |
The length of the password calculated. | |
Defaults to 32 | |
.PARAMETER AsSecureString | |
Returns the password as secure string. | |
.EXAMPLE | |
PS C:\> New-Password | |
Generates a new 32 character password. | |
#> | |
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseShouldProcessForStateChangingFunctions", "")] | |
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSAvoidUsingConvertToSecureStringWithPlainText", "")] | |
[CmdletBinding()] | |
Param ( | |
[int] | |
$Length = 32, | |
[switch] | |
$AsSecureString | |
) | |
begin | |
{ | |
$characters = @{ | |
0 = @('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z') | |
1 = @('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') | |
2 = @(0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9) | |
3 = @('#','$','%','&',"'",'(',')','*','+',',','-','.','/',':',';','<','=','>','?','@') | |
4 = @('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z') | |
5 = @('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') | |
6 = @(0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9) | |
7 = @('#','$','%','&',"'",'(',')','*','+',',','-','.','/',':',';','<','=','>','?','@') | |
} | |
} | |
process | |
{ | |
$letters = foreach ($number in (1..$Length)) { | |
$characters[(($number % 4) + (1..4 | Get-Random))] | Get-Random | |
} | |
$letters = $letters | Sort-Object { Get-Random } | |
if ($AsSecureString) { $letters -join "" | ConvertTo-SecureString -AsPlainText -Force } | |
else { $letters -join "" } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment