Hi DW,
I experience some random problem with generating passwords when importing user. I get this error:
Job Failed with the following message: Index was outside the bounds of the array.
I have located the error to this code from Base.vb:
For Each ch As Char In newPwd.ToCharArray()
If punctuations.Contains(ch) Then
Dim rndIndex = CInt(Int((alphabet.Length * Rnd()) + 1))
newPwd = newPwd.Replace(ch, alphabet(rndIndex))
End If
Next
Best regards, Anders