How to remove password expire from users by udm cli
UDM does not support to remove the password expire of affected users directly.
This can be mitigated by setting pwdChangeNextLogin to 1 and afterwards to 0 – this will implicitly also unlock the user:
udm users/user modify --dn "${DN?}" --set pwdChangeNextLogin=1
udm users/user modify --dn "${DN?}" --set pwdChangeNextLogin=0