In 7Mode there is way to set the min and max password age for each user. After which they are forced to change it or they cant login.
But the question here is, how to know get how long it has been since the age was set, or in how many days will the password needs to be changed ?
If this was set today, I know the PasswordMaximumAgeTS : 75.00:00:00 will expire in 75days and can start sending notifications 7 days earlier. So the question is, how to get that days left before the password expire using any of the following.
Powershell commdlet, CLI or SDK.
PS H:\> get-nauser test123 -GetCapabilities | Format-list
Name : test123
FullName :
Comment :
UseradminGroups : {Administrators}
AllowedCapabilities : {login-*, cli-*, api-*, security-*}
PasswordMaximumAgeTS : 75.00:00:00
PasswordMinimumAgeTS : 00:00:00
Rid : 131135
Status : enabled
Regards
Adai