Removed , ; from charset to avoid csv conflicts

This commit is contained in:
ArescomML 2025-02-05 11:34:03 +01:00
parent ee7d0499e2
commit 2e037fe448

View File

@ -34,7 +34,7 @@ function GenPass { #Genere un mdp aléatoire selon les parametres indiqués
U = [Char[]]'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
L = [Char[]]'abcdefghijklmnopqrstuvwxyz'
N = [Char[]]'0123456789'
S = [Char[]]'!"#$%&()*+,-.:;<=>?@[]^_`{}~'
S = [Char[]]'!"#$%&()*+-.:<=>?@[]^_`{}~'
}
$Upper = Get-Random -Count 5 -InputObject $TokenSet.U