Skip to content

Commit

Permalink
Remove Invalid character from DevCheck Password Gen (#4903)
Browse files Browse the repository at this point in the history
  • Loading branch information
kythant authored Nov 21, 2024
1 parent e4c3de9 commit 999df08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/DevCheck/DevCheck.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ function Repair-DevTestPfx
}
else
{
$charSet = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%)'
$charSet = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@'
$passwordLength = 20
$password = New-Object -TypeName System.Security.SecureString
# Generate random characters and append to SecureString
Expand Down

0 comments on commit 999df08

Please sign in to comment.