Remoed '"' from charset

This commit is contained in:
2025-09-30 16:15:08 +02:00
parent 0ca671b477
commit 0ccfde6200

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