Hello,
we are running several Docker Container for our students, inside the contains we are using the NavUserPassword Authentication.
We often facing the problem that a student has forgotten his/her password.
Is there a possibility to reset the password for ohter accounts for example from powershell ?
At the moment the only way I see is to create a new user with a default password
$password = "QWERTZ"
$securePassword = ConvertTo-SecureString -String $password -AsPlainText -Force
$credential = New-Object System.Management.Automation.PSCredential -argumentList "breuer", $securePassword
New-BcContainerBcUser -Credential $credential -containerName BCAIT10380 -PermissionSetId SUPER -Verbose -ChangePasswordAtNextLogOn 0
Thank you in advance